[CI] update travis.yml

This commit is contained in:
Edouard DUPIN 2016-04-28 23:21:58 +02:00
parent e98c82d380
commit 01344576d6
3 changed files with 6 additions and 5 deletions

View File

@ -70,10 +70,11 @@ after_script:
- if [ "$GCOV" != "" ]; then
./ci/warning_send.py --find-path ./out/Linux_x86_64/$CONF/build/$BUILDER/exml/;
fi
- ./out/Linux_x86_64/$CONF/staging/$BUILDER/exml-test/exml-test.app/bin/exml-test --etk-log-level=3 | tee out_test.txt
- if [ "$GCOV" != "" ]; then
- if [ "$GCOV" == "" ]; then
./out/Linux_x86_64/$CONF/staging/$BUILDER/exml-test/exml-test.app/bin/exml-test --elog-level=3 | tee out_test.txt
else
./ci/test_send.py --file=out_test.txt;
lutin -C -P -t $TARGET -c $BUILDER $COMPILATOR_OPTION $BUS -m $CONF -p exml?gcov;
lutin -C -P -t $TARGET -c $BUILDER $COMPILATOR_OPTION $BUS -m $CONF -p exml-*?build?run exml?gcov;
./ci/coverage_send.py --json=out/Linux_x86_64/$CONF/build/$BUILDER/exml/exml_coverage.json;
fi

View File

@ -27,7 +27,7 @@ The file naming is manage by @ref etk::FSNode that provide "DATA:" start string
Read an XML Stream {#exml_tutorial_read_stream}
==================
Reading a file is done like this:
Reading a stream is done like this:
@snippet read.cpp exml_sample_read_stream1
In C and C++ it is very hard to read string with the \\" then to simplify parsing of xml the parser engine support the use of simple ' interface:

View File

@ -10,7 +10,7 @@ def get_sub_type():
return "SAMPLE"
def get_desc():
return "e-signal sample 1"
return "e-xml sample"
def get_licence():
return "APACHE-2"