Commit cfdaf7b7 authored by ciody's avatar ciody

find core dumps location

parent 25a0be0f
......@@ -136,6 +136,7 @@ script:
after_failure:
# find and print core file
- ls -lta /var/crash
- COREFILE=$(find ./ -maxdepth 1 -name "core*" -print | head -n 1)
- if [[ -f "$COREFILE" ]]; then
gdb -c "$COREFILE" -ex "thread apply all bt" -ex "set pagination 0" -batch;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment