Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* Testsuite: Don't use global command in gdb_expect
@ 2008-12-15  6:07 Jie Zhang
  2008-12-15  7:53 ` Joel Brobecker
  0 siblings, 1 reply; 5+ messages in thread
From: Jie Zhang @ 2008-12-15  6:07 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 807 bytes --]

The Tcl global command has no effect unless executed in the context of a 
proc body. So the global commands in the following code are useless. 
Even worse, they would cause unexpected result. When gdb_expect gets 
something containing "global", it will try to execute hex as a command, 
which will cause an error.

gdb_expect {
     global hex
     global nl
     global bp_addr
     global gdb_prompt

     -re "$hex.*${nl}($hex).*$gdb_prompt $" {
         set bp_addr $expect_out(1,string)
         pass "get breakpoint address for foo"
     }
     -re ".*$gdb_prompt $" {
         fail "get breakpoint address for foo"
         return 0;
     }
     timeout {
         fail "get breakpoint address for foo (timeout)"
         return 0;
     }
}

This patch should fix this issue. Is it OK?


Thanks,
Jie

[-- Attachment #2: gdb-testsuite-consecutive.diff --]
[-- Type: text/x-patch, Size: 719 bytes --]

2008-12-15  Jie Zhang  <jie.zhang@analog.com>

	* gdb.base/consecutive.exp: Don't use global in gdb_expect.

Index: gdb.base/consecutive.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.base/consecutive.exp,v
retrieving revision 1.7
diff -u -p -r1.7 consecutive.exp
--- gdb.base/consecutive.exp	6 Aug 2008 12:52:07 -0000	1.7
+++ gdb.base/consecutive.exp	15 Dec 2008 05:51:49 -0000
@@ -64,11 +64,6 @@ set stop_addr 0
 
 send_gdb "x /2i \$pc\n"
 gdb_expect {
-    global hex
-    global nl
-    global bp_addr
-    global gdb_prompt
-
     -re "$hex.*${nl}($hex).*$gdb_prompt $" {
 	set bp_addr $expect_out(1,string)
 	pass "get breakpoint address for foo"

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-12-18 19:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-15  6:07 Testsuite: Don't use global command in gdb_expect Jie Zhang
2008-12-15  7:53 ` Joel Brobecker
2008-12-15  8:50   ` Andreas Schwab
2008-12-15 13:16   ` Jie Zhang
2008-12-18 19:57   ` Michael Snyder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox