diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-22 11:49:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-22 11:49:22 +0200 |
commit | a56ca5cfed0303157d1c4c28c00545204b7b03b5 (patch) | |
tree | 744327fb24374d531bcf551c091873ceb4f8b764 /solenv | |
parent | af9bea21390800e5bbc73e07ce9828189d8dabf3 (diff) |
Revert "Temporary debg output to find out why tinderboxes still don't find program"
This reverts commit d36dc7b3ce28e6fe1590aa7cb72e53e2d745c073. Turns out e.g.
tb75-lilith has a 'file' command that doesn't print "execfn:" information, just
> /home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/workdir/UITest/calc_demo/done.core/core.24697: ELF 64-bit LSB core file x86-64, version 1 (SYSV), SVR4-style, from '/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/instdir/program/soffice'
(<https://ci.libreoffice.org/job/lo_tb_master_linux_dbg/13930/console>), but
with a truncated "from:" path, so would probably be little benefit to try to get
the path from the "from:" instead of (or in addition to) the "execfn:"
information (where the latter appears to be more accurate at least with my local
file-5.29-4.fc25.x86_64).
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/gdb-core-bt.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/solenv/bin/gdb-core-bt.sh b/solenv/bin/gdb-core-bt.sh index 149f819224a6..45b612128e6f 100755 --- a/solenv/bin/gdb-core-bt.sh +++ b/solenv/bin/gdb-core-bt.sh @@ -25,7 +25,6 @@ then GDBCOMMANDFILE=$(mktemp) printf "info registers\nthread apply all backtrace full\n" \ >"$GDBCOMMANDFILE" -file "$COREFILE" guess=$(file "$COREFILE") guess=${guess#* execfn: \'} guess=${guess%%\'*} |