fixup .travis.yml syntax error
This commit is contained in:
parent
381e5292b0
commit
93649ad2fe
1 changed files with 5 additions and 5 deletions
10
.travis.yml
10
.travis.yml
|
@ -40,11 +40,11 @@ script:
|
|||
- if [[ "$WML_TESTS" = true ]]; then time ./run_wml_tests -v -t "$WML_TEST_TIME"; fi
|
||||
after_failure:
|
||||
- if [ -f "errors.log" ]; then echo -e "\n*** \n*\n* Errors reported in wml unit tests, here is errors.log...\n*\n*** \n"; cat errors.log; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200]; then echo -e "\n***\n*\n* Encountered a segfault in the c++ unit test executable, attempting to get a backtrace in the remaining time...\n*\n***\n"; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200]; then time sudo apt-get install -qq gdb; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200]; then time gdb --eval-command=start --eval-command=continue --eval-command=bt --eval-command=quit --args ./test; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200]; then time scons build=debug extra_flags_debug="$EXTRA_FLAGS_RELEASE" test; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200]; then time gdb --eval-command=start --eval-command=continue --eval-command=bt --eval-command=quit --args ./test-debug; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200 ]; then echo -e "\n***\n*\n* Encountered a segfault in the c++ unit test executable, attempting to get a backtrace in the remaining time...\n*\n***\n"; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200 ]; then time sudo apt-get install -qq gdb; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200 ]; then time gdb --eval-command=start --eval-command=continue --eval-command=bt --eval-command=quit --args ./test; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200 ]; then time scons build=debug extra_flags_debug="$EXTRA_FLAGS_RELEASE" test; fi
|
||||
- if [ "$TEST_ERROR_CODE" = 200 ]; then time gdb --eval-command=start --eval-command=continue --eval-command=bt --eval-command=quit --args ./test-debug; fi
|
||||
notifications:
|
||||
email: false
|
||||
irc:
|
||||
|
|
Loading…
Add table
Reference in a new issue