PR gdb/1736
authorDaniel Jacobowitz <drow@false.org>
Mon, 9 Aug 2004 13:16:16 +0000 (13:16 +0000)
committerDaniel Jacobowitz <drow@false.org>
Mon, 9 Aug 2004 13:16:16 +0000 (13:16 +0000)
* lib/gdb.exp (gdb_test_multiple): Handle return -code return.
* gdb.base/sigaltstack.exp (finish_test): Consume output until
the prompt.
* gdb.base/sigstep.exp: Add KFAIL for gdb/1736.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/sigaltstack.exp
gdb/testsuite/gdb.base/sigstep.exp
gdb/testsuite/lib/gdb.exp

index 014ed6f..ecb008e 100644 (file)
@@ -1,5 +1,13 @@
 2004-08-08  Daniel Jacobowitz  <dan@debian.org>
 
+       PR gdb/1736
+       * lib/gdb.exp (gdb_test_multiple): Handle return -code return.
+       * gdb.base/sigaltstack.exp (finish_test): Consume output until
+       the prompt.
+       * gdb.base/sigstep.exp: Add KFAIL for gdb/1736.
+
+2004-08-08  Daniel Jacobowitz  <dan@debian.org>
+
        * gdb.cp/templates.exp: Handle (char)115 for template argument 's'.
 
 2004-08-08  Daniel Jacobowitz  <dan@debian.org>
index 3b32d08..0e5eb09 100644 (file)
@@ -79,8 +79,10 @@ gdb_expect_list "backtrace" ".*$gdb_prompt $" {
 }
 
 proc finish_test { pattern msg } {
+    global gdb_prompt
+
     gdb_test_multiple "finish" $msg {
-       -re "Cannot insert breakpoint 0" {
+       -re "Cannot insert breakpoint 0.*${gdb_prompt} $" {
            # Some platforms use a special read-only page for signal
            # trampolines.  We can't set a breakpoint there, and we
            # don't gracefully fall back to single-stepping.
index ea16ec6..0e0c2d8 100644 (file)
@@ -112,6 +112,14 @@ proc advancei { i } {
 
     set test "$i into signal trampoline"
     gdb_test_multiple "$i" "${test}" {
+        -re "Cannot insert breakpoint 0.*${gdb_prompt} $" {
+            # Some platforms use a special read-only page for signal
+            # trampolines.  We can't set a breakpoint there, and we
+            # don't gracefully fall back to single-stepping.
+            setup_kfail "i?86-*-linux*" gdb/1736
+            fail "$test (could not set breakpoint)"
+           return
+        }
        -re "done = 1;.*${gdb_prompt} $" {
            send_gdb "$i\n"
            exp_continue
index b71af8d..22893dd 100644 (file)
@@ -700,7 +700,17 @@ proc gdb_test_multiple { command message user_code } {
     }
 
     set result 0
-    gdb_expect $tmt $code
+    set code [catch {gdb_expect $tmt $code} string]
+    if {$code == 1} {
+       global errorInfo errorCode;
+       return -code error -errorinfo $errorInfo -errorcode $errorCode $string
+    } elseif {$code == 2} {
+       return -code return $string
+    } elseif {$code == 3} {
+       return
+    } elseif {$code > 4} {
+       return -code $code $string
+    }
     return $result
 }