Skip to content

Commit

Permalink
fixup gdb lines in .travis.yml
Browse files Browse the repository at this point in the history
they should use -q and run in batch mode
  • Loading branch information
cbeck88 committed Jul 5, 2014
1 parent 697ecb7 commit 2fbe31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -44,9 +44,9 @@ after_failure:
- echo "$TEST_ERROR_CODE"
- 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 gdb -q -batch -ex start -ex continue -ex bt -ex 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 time gdb -q -batch -ex start -ex continue -ex bt -ex quit --args ./test-debug; fi
notifications:
email: false
irc:
Expand Down

0 comments on commit 2fbe31e

Please sign in to comment.