* gdb.base/gdb1250.exp: Use runto {allow-pending}.
authorDaniel Jacobowitz <drow@false.org>
Wed, 24 Mar 2004 18:41:50 +0000 (18:41 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 24 Mar 2004 18:41:50 +0000 (18:41 +0000)
* lib/gdb.exp (runto, gdb_breakpoint): Support {allow-pending}.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/gdb1250.exp
gdb/testsuite/lib/gdb.exp

index 6c85be82dcc4d7b56a2861788ca90f1d8f531dd7..2b2d4b440223379381a3b33300e62812147bdbed 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-24  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdb.base/gdb1250.exp: Use runto {allow-pending}.
+       * lib/gdb.exp (runto, gdb_breakpoint): Support {allow-pending}.
+
 2004-03-22  Andrew Cagney  <cagney@redhat.com>
 
        * gdb.base/watchpoint.exp (test_stepping): Delete bogus XFAILs
index 60a6f5971c31f15fd1a5733192f36787f7f927ed..4ffdf2baffc5c3ac669fcfc5789a5bfce0bd3092 100644 (file)
@@ -42,7 +42,7 @@ gdb_start
 gdb_reinitialize_dir $srcdir/$subdir
 gdb_load ${binfile}
 
-if ![runto abort] then {
+if ![runto abort {allow-pending}] then {
     perror "couldn't run to breakpoint"
     continue
 }
index 72d9143ab21854a354c74f2d3922e24957e24403..f49cbbf9855448554a4ad43f6e3af219fad2a381 100644 (file)
@@ -265,18 +265,32 @@ proc gdb_run_cmd {args} {
     }
 }
 
-proc gdb_breakpoint { function } {
+# Set a breakpoint at FUNCTION.  If there is an additional argument it is
+# a list of options; the only currently supported option is allow-pending.
+
+proc gdb_breakpoint { function args } {
     global gdb_prompt
     global decimal
 
+    set pending_response n
+    if {[lsearch -exact [lindex $args 0] allow-pending] != -1} {
+       set pending_response y
+    }
+
     send_gdb "break $function\n"
     # The first two regexps are what we get with -g, the third is without -g.
     gdb_expect 30 {
        -re "Breakpoint \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
        -re "Breakpoint \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
        -re "Breakpoint \[0-9\]* at .*$gdb_prompt $" {}
+       -re "Breakpoint \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
+               if {$pending_response == "n"} {
+                       fail "setting breakpoint at $function"
+                       return 0
+               }
+       }
        -re "Make breakpoint pending.*y or \\\[n\\\]. $" { 
-               send_gdb "n\n"
+               send_gdb "$pending_response\n"
                exp_continue
        }
        -re "$gdb_prompt $" { fail "setting breakpoint at $function" ; return 0 }
@@ -289,15 +303,16 @@ proc gdb_breakpoint { function } {
 # Since this is the only breakpoint that will be set, if it stops
 # at a breakpoint, we will assume it is the one we want.  We can't
 # just compare to "function" because it might be a fully qualified,
-# single quoted C++ function specifier.
+# single quoted C++ function specifier.  If there's an additional argument,
+# pass it to gdb_breakpoint.
 
-proc runto { function } {
+proc runto { function args } {
     global gdb_prompt
     global decimal
 
     delete_breakpoints
 
-    if ![gdb_breakpoint $function] {
+    if ![gdb_breakpoint $function [lindex $args 0]] {
        return 0;
     }
 
This page took 0.033828 seconds and 4 git commands to generate.