From 4f21b8d169f762608680a1f98f0b4dbc73a3f405 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 5 Jun 2020 09:13:02 +0300 Subject: Show runlog.txt on libconfig tests crash --- tools/ci/travis.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tools/ci/travis.sh') diff --git a/tools/ci/travis.sh b/tools/ci/travis.sh index 10c653925..489e15bc7 100755 --- a/tools/ci/travis.sh +++ b/tools/ci/travis.sh @@ -71,7 +71,8 @@ function run_server { function run_test { echo "Running: test_$1" sysctl -w kernel.core_pattern=core || true - ./test_$1 2>runlog.txt + rm -rf core* || true + CRASH_PLEASE=1 ./test_$1 2>runlog.txt export errcode=$? export teststr=$(head -c 10000 runlog.txt) if [[ -n "${teststr}" ]]; then @@ -83,6 +84,13 @@ function run_test { fi if [ ${errcode} -ne 0 ]; then echo "test $1 terminated with exit code ${errcode}" + echo cat runlog.txt + cat runlog.txt + echo crash dump + COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1) + if [[ -f "$COREFILE" ]]; then + gdb -c "$COREFILE" $1 -ex "thread apply all bt" -ex "set pagination 0" -batch + fi aborterror "Test failed" fi } -- cgit v1.2.3-70-g09d2