summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/ci/scripts/runtest.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/ci/scripts/runtest.sh b/tools/ci/scripts/runtest.sh
index bfb8d370e..64b27d453 100755
--- a/tools/ci/scripts/runtest.sh
+++ b/tools/ci/scripts/runtest.sh
@@ -1,6 +1,8 @@
#!/bin/bash
export SDL_VIDEODRIVER="dummy"
+ulimit -c unlimited -S
+rm -rf core*
./src/manaplus --renderer=0 >logs/run.log 2>&1 &
export PID=$!
@@ -11,7 +13,10 @@ if [ "$?" != 0 ]; then
echo "Error: process look like crashed"
cat logs/run.log
echo "Run with gdb"
- gdb -ex=run --args ./src/manaplus
+ COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1)
+ if [[ -f "$COREFILE" ]]; then
+ gdb -c "$COREFILE" ./src/manaplus -ex "thread apply all bt" -ex "set pagination 0" -batch
+ fi
exit 1
fi
kill -s SIGTERM ${PID}