summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-05-15 14:48:16 +0100
committerCarl Hetherington <cth@carlh.net>2017-05-15 14:48:16 +0100
commitacdaad960f383cea49bc40a63be0aa472ea988d2 (patch)
tree0dcc6255861bf38102157daf34756a4f8ee7b7fc
parent2782fe916d8369b77f90aa7e07aecb0d00f41f88 (diff)
Try to fix return code from jenkins test run.
-rwxr-xr-xrun/tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/run/tests b/run/tests
index d9815a449..b8bb094a0 100755
--- a/run/tests
+++ b/run/tests
@@ -9,7 +9,7 @@ if [ "$1" == "--debug" ]; then
gdb --args build/test/unit-tests --catch_system_errors=no $*
elif [ "$1" == "--backtrace" ]; then
shift;
- gdb -batch -ex "run" -ex "thread apply all bt" --args build/test/unit-tests --catch_system_errors=no $*
+ gdb -batch -ex "run" -ex "thread apply all bt" -return-child-result --args build/test/unit-tests --catch_system_errors=no $*
elif [ "$1" == "--valgrind" ]; then
shift;
valgrind --tool="memcheck" --leak-check=full build/test/unit-tests $*