1
0
Fork 0
arangodb/Installation/travisCI/after_failure.sh

10 lines
186 B
Bash
Executable File

#!/bin/bash
echo "$0: checking for core file"
if [[ -f core ]]; then
echo "$0: found a core file"
sudo echo "thread apply all bt full" | gdb -c core bin/arangod
fi
echo "$0: done"