From 959d879f05da0e40270782e823435ca6946707ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20Ka=CC=88fer?= Date: Thu, 23 Oct 2014 06:16:13 -0700 Subject: show more debug information --- scripts/run_tests.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index df0bf25216..fcd7fae096 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -2,20 +2,21 @@ set -e set -o pipefail - - +c cd build/${BUILDTYPE:-Release} for TEST in ./test_* ; do # allow writing core files ulimit -c unlimited -S + ulimit -c + cat /proc/sys/kernel/core_pattern + sysctl kernel.core_pattern RESULT=0 ${TEST} || RESULT=$? if [[ ${RESULT} != 0 ]]; then echo "The program crashed with exit code ${RESULT}. We're now trying to output the core dump." - ls -la fi # output core dump if we got one -- cgit v1.2.1