mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
try exclude again
This commit is contained in:
parent
24b966cf86
commit
24ac76ccd4
|
@ -56,4 +56,4 @@ after_success:
|
|||
- 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 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
|
||||
|
|
|
@ -59,9 +59,9 @@ public:
|
|||
TS_ASSERT_EQUALS(c1, 3);
|
||||
|
||||
TS_ASSERT(c2 <= 4);
|
||||
TS_ASSERT(!(c2 <= 3));
|
||||
TS_ASSERT(!(c2 < 3));
|
||||
TS_ASSERT(c1 >= 3);
|
||||
TS_ASSERT(!(c1 >= 4));
|
||||
TS_ASSERT(!(c1 > 4));
|
||||
|
||||
TS_ASSERT(4 >= c2);
|
||||
TS_ASSERT(!(3 >= c2));
|
||||
|
|
Loading…
Reference in New Issue
Block a user