diff options
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -92,7 +92,8 @@ EOF ARGS="--load-script npc/dev/test.txt " ARGS="--load-plugin script_mapquit $ARGS --load-script npc/dev/ci_test.txt" echo "Running Hercules with command line: ./map-server --run-once $ARGS" - ASAN_OPTIONS=detect_leaks=0 ./map-server --run-once $ARGS 2>runlog.txt || aborterror "Test failed." + ASAN_OPTIONS=detect_leaks=0 ./map-server --run-once $ARGS 2>runlog.txt + export errcode=$? export teststr=$(cat runlog.txt) if [[ -n "${teststr}" ]]; then echo "Sanitizer errors found." @@ -101,6 +102,10 @@ EOF else echo "No sanitizer errors found." fi + if [ ${errcode} -ne 0 ] + echo "server terminated with exit code ${errcode}" + aborterror "Test failed" + fi ;; getplugins) echo "Cloning plugins repository..." |