try exclude again

This commit is contained in:
Thomas Fussell 2016-07-09 14:38:47 -04:00
parent 24b966cf86
commit 24ac76ccd4
2 changed files with 3 additions and 3 deletions

View File

@ -56,4 +56,4 @@ after_success:
- if [ "$COMPILER" = "g++-4.9" ]; then cd .. && ./build/bin/xlnt.test ; fi - if [ "$COMPILER" = "g++-4.9" ]; then cd .. && ./build/bin/xlnt.test ; fi
- if [ "$COMPILER" = "g++-4.9" ]; then export OLDWD=$(pwd) ; fi - if [ "$COMPILER" = "g++-4.9" ]; then export OLDWD=$(pwd) ; fi
- if [ "$COMPILER" = "g++-4.9" ]; then cd "build/CMakeFiles/xlnt.static.dir$(pwd)" ; pwd ; fi - if [ "$COMPILER" = "g++-4.9" ]; then cd "build/CMakeFiles/xlnt.static.dir$(pwd)" ; pwd ; fi
- if [ "$COMPILER" = "g++-4.9" ]; then coveralls --root $OLDWD --verbose -x ".cpp" --gcov-options '\-p' --exclude include --exclude third-party --exclude tests --exclude samples --exclude benchmarks --exclude-pattern "^source/.*/tests/*.hpp$" ; fi - if [ "$COMPILER" = "g++-4.9" ]; then coveralls --root $OLDWD --verbose -x ".cpp" --gcov-options '\-p' --exclude include --exclude third-party --exclude tests --exclude samples --exclude benchmarks -E ".*/source/.*/tests/.*" ; fi

View File

@ -59,9 +59,9 @@ public:
TS_ASSERT_EQUALS(c1, 3); TS_ASSERT_EQUALS(c1, 3);
TS_ASSERT(c2 <= 4); TS_ASSERT(c2 <= 4);
TS_ASSERT(!(c2 <= 3)); TS_ASSERT(!(c2 < 3));
TS_ASSERT(c1 >= 3); TS_ASSERT(c1 >= 3);
TS_ASSERT(!(c1 >= 4)); TS_ASSERT(!(c1 > 4));
TS_ASSERT(4 >= c2); TS_ASSERT(4 >= c2);
TS_ASSERT(!(3 >= c2)); TS_ASSERT(!(3 >= c2));