#!/bin/sh
ulimit -c unlimited
make check $*
ret=$?
if [ $ret -eq 0 ] || ! (which gdb >/dev/null);then
exit $ret
fi
for i in $(find -name test-suite.log);do
error_cnt=$(sed -n 's/^# FAIL: *\([^ ]\+\)/\1/p' "$i")
if [ $error_cnt -gt 0 ];then
cat "$i"
test_path=$(dirname "$i")
core_path="$test_path/core"
failing_test=$(sed -n 's/^FAIL \([^ ]\+\) (exit status:.*/\1/p' ${test_path}/test-suite.log)
if [ -f "$core_path" -a ! -z "$failing_test" ];then
if [ -x "$test_path/.libs/$failing_test" ];then
failing_test_path="$test_path/.libs/$failing_test"
else
failing_test_path="$test_path/$failing_test"
fi
echo "Printing core dump:"
echo ""
gdb "$failing_test_path" -c "$core_path" \
-ex "set pagination off" \
-ex "thread apply all bt" \
-ex "quit"
fi
fi
done
exit $ret