Skip to content

Commit f4a9e6d

Browse files
committed
Debug
1 parent a9c7009 commit f4a9e6d

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/testsuite_oneprocess.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)