From: Maciej W. Rozycki Date: Fri, 2 Dec 2011 23:58:01 +0000 (+0000) Subject: * lib/gdb.exp (gdb_expect): Pass all the exception conditions up X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d6d7a51a335f4002a7c0181d4eb789f6239cce29;p=binutils-gdb.git * lib/gdb.exp (gdb_expect): Pass all the exception conditions up to the caller. (gdb_test_multiple): Likewise. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 8b291cb1b14..80f744079d7 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2011-12-02 Maciej W. Rozycki + + * lib/gdb.exp (gdb_expect): Pass all the exception conditions up + to the caller. + (gdb_test_multiple): Likewise. + 2011-12-02 Jan Kratochvil Fix gdb.mi/mi-solib.exp without system debug info installed. diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 61152858692..8ac32db793d 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -844,11 +844,7 @@ proc gdb_test_multiple { command message user_code } { 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} { + } elseif {$code > 1} { return -code $code $string } return $result @@ -2640,11 +2636,7 @@ proc gdb_expect { args } { 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} { + } else { return -code $code $string } }