From: Bernd Edlinger <bernd.edlinger@hotmail.de>
To: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>,
Simon Marchi <simon.marchi@polymtl.ca>
Subject: [PATCH] Fix the crash at the end of the runtest
Date: Thu, 22 Jul 2021 13:10:11 +0200 [thread overview]
Message-ID: <AM8PR10MB4708EE0BEAE780592B55AD90E4E49@AM8PR10MB4708.EURPRD10.PROD.OUTLOOK.COM> (raw)
due to unknown reasons the runtest process crashes
at the end of the testrun when this script is
executed.
#0 0x00007fe176cd8b69 in exp_close (interp=interp@entry=0x5595b70269d0, esPtr=0x5595bb6968b0) at exp_command.c:370
#1 0x00007fe176ceef9a in exp_close_all (interp=0x5595b70269d0) at exp_chan.c:582
#2 0x00007fe176bd5b72 in InvokeExitHandlers () at ./generic/tclEvent.c:911
#3 0x00007fe176bd5c0a in Tcl_Exit (status=1) at ./generic/tclEvent.c:976
#4 0x00007fe176cdb959 in Exp_ExitObjCmd (clientData=<optimized out>, interp=0x5595b70269d0, objc=<optimized out>, objv=<optimized out>) at exp_command.c:2531
#5 0x00007fe176b4d5f2 in TclNRRunCallbacks (interp=interp@entry=0x5595b70269d0, result=0, rootPtr=0x0) at ./generic/tclBasic.c:4492
#6 0x00007fe176b4cfc5 in Tcl_EvalObjv (interp=interp@entry=0x5595b70269d0, objc=objc@entry=1, objv=objv@entry=0x5595b70342d0, flags=flags@entry=2097168) at ./generic/tclBasic.c:4215
#7 0x00007fe176b4e924 in TclEvalEx (interp=interp@entry=0x5595b70269d0, script=0x5595b70ade40 "# runtest.exp -- Test framework driver\n# Copyright (C) 1992-2016 Free Software Foundation, Inc.\n#\n# This file is part of DejaGnu.\n#\n# DejaGnu is free software; you can redistribute it and/or modify it"..., numBytes=<optimized out>, flags=flags@entry=0, line=1908, line@entry=1, clNextOuter=clNextOuter@entry=0x0, outerScript=0x5595b70ade40 "# runtest.exp -- Test framework driver\n# Copyright (C) 1992-2016 Free Software Foundation, Inc.\n#\n# This file is part of DejaGnu.\n#\n# DejaGnu is free software; you can redistribute it and/or modify it"...) at ./generic/tclBasic.c:5361
#8 0x00007fe176c08f79 in Tcl_FSEvalFileEx (encodingName=<optimized out>, pathPtr=0x5595b7063510, interp=0x5595b70269d0) at ./generic/tclIOUtil.c:1824
#9 Tcl_FSEvalFileEx (interp=0x5595b70269d0, pathPtr=0x5595b7063510, encodingName=<optimized out>) at ./generic/tclIOUtil.c:1724
#10 0x00007fe176c0784c in Tcl_EvalFile (interp=0x5595b70269d0, fileName=<optimized out>) at ./generic/tclIOUtil.c:424
#11 0x00007fe176ce856e in exp_interpret_cmdfilename (interp=0x5595b70269d0, filename=0x7fff61eef573 "/usr/share/dejagnu/runtest.exp") at exp_main_sub.c:953
#12 0x00005595b6cad2e9 in main (argc=4, argv=0x7fff61eeee38) at exp_main_exp.c:48
This started after
commit 9edb1e0191e ("gdb/testsuite: capture GDB tty name in default_gdb_spawn")
Temporarily renaming builtin_spawn to spawn fixes the issue.
2021-07-22 Bernd Edlinger <bernd.edlinger@hotmail.de>
* gdb.base/gnu-debugdata.exp (pipeline): Temporarily undo the effect of
commit 9edb1e0191e in this function.
---
Hi,
Is this OK for trunk, and the gdb-11-branch?
Thanks
Bernd.
gdb/testsuite/gdb.base/gnu-debugdata.exp | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gdb/testsuite/gdb.base/gnu-debugdata.exp b/gdb/testsuite/gdb.base/gnu-debugdata.exp
index f6d0cd7..0dc8191 100644
--- a/gdb/testsuite/gdb.base/gnu-debugdata.exp
+++ b/gdb/testsuite/gdb.base/gnu-debugdata.exp
@@ -52,11 +52,20 @@ proc pipeline {test args} {
}
verbose "cooked args are [list $program $arguments $input $output]"
+ # undo the effect of spawn_capture_tty_name
+ # this avoids a crash at the end of the test run
+ rename spawn dummy_spawn
+ rename builtin_spawn spawn
+
if {[run_on_host "$test - invoke $program" $program $arguments \
$input $output]} {
return -1
}
+ # restore the original spawn script
+ rename spawn builtin_spawn
+ rename dummy_spawn spawn
+
set input_file $output
}
return 0
--
1.9.1
next reply other threads:[~2021-07-22 11:10 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-22 11:10 Bernd Edlinger [this message]
2021-07-22 12:44 ` Andrew Burgess
2021-07-22 12:59 ` Bernd Edlinger
2021-07-22 13:20 ` Andrew Burgess
2021-07-22 15:14 ` Simon Marchi via Gdb-patches
2021-07-22 15:16 ` Bernd Edlinger
2021-07-22 16:53 ` [PATCHv2] " Andrew Burgess
2021-07-22 19:24 ` Simon Marchi via Gdb-patches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=AM8PR10MB4708EE0BEAE780592B55AD90E4E49@AM8PR10MB4708.EURPRD10.PROD.OUTLOOK.COM \
--to=bernd.edlinger@hotmail.de \
--cc=gdb-patches@sourceware.org \
--cc=simon.marchi@polymtl.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox