File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -281,15 +281,20 @@ jobs:
281281 if : always()
282282 run : |
283283 shopt -s nullglob
284- pwd
285- ls -l
286284 for c in $(find . -name 'core.*' -maxdepth 6); do
287285 exe=$(echo "$c" | sed -n 's/.*core\.\(.*\)\.[0-9]\+/\1/p')
288286 echo "---- $c (exe guess: $exe) ----"
289- exe_full_path="${c%/*}/$exe"
290- echo "$exe_full_path"
291- command -v gdb >/dev/null && gdb -batch -q "$exe_full_path" "$c" -ex 'info reg' -ex 'bt' || true
292- command -v objdump >/dev/null && objdump -d "$exe_full_path" | head -n 60 || true
287+ for ff in f d; do
288+ exe_full_path="${c%/*}/build.none_${ff}_inl0_hrd0/$exe"
289+ echo ""
290+ echo "==============="
291+ echo "$exe_full_path"
292+ echo "==============="
293+ command -v gdb >/dev/null && gdb -batch -q "$exe_full_path" "$c" -ex 'info reg' -ex 'bt' || true
294+ echo ""
295+ command -v objdump >/dev/null && objdump -d "$exe_full_path" | head -n 60 || true
296+ echo ""
297+ done
293298 done
294299
295300 - name : tmad_test
You can’t perform that action at this time.
0 commit comments