2006-07-19 Andrew Stubbs <andrew.stubbs@st.com>

* gdb.base/ifelse.exp: Remove troublesome 'got here' messages.
This commit is contained in:
Andrew Stubbs 2006-07-19 13:05:21 +00:00
parent 401a54cf6e
commit 6d7fd486d7
2 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2006-07-19 Andrew Stubbs <andrew.stubbs@st.com>
* gdb.base/ifelse.exp: Remove troublesome 'got here' messages.
2006-07-18 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.arch/i386-size.c, gdb.arch/i386-size.exp: New files.

View File

@ -30,8 +30,8 @@ gdb_start
# with true condition
set message "if 1 with empty body"
gdb_test_multiple "if 1\nend\necho got here\\n" $message {
-re ".*got here.*$gdb_prompt $" {pass $message}
gdb_test_multiple "if 1\nend" $message {
-re "$gdb_prompt $" {pass $message}
eof {
fail "$message (crashed)"
gdb_exit
@ -41,8 +41,8 @@ gdb_test_multiple "if 1\nend\necho got here\\n" $message {
# with false condition
set message "if 0 with empty body"
gdb_test_multiple "if 0\nend\necho got here\\n" $message {
-re ".*got here.*$gdb_prompt $" {pass $message}
gdb_test_multiple "if 0\nend" $message {
-re "$gdb_prompt $" {pass $message}
eof {
fail "$message (crashed)"
gdb_exit
@ -62,8 +62,8 @@ gdb_test "if 1\necho true\\n\nelse\necho false\\n\nend" "true" ""
# with true condition
set message "if 1 .. else with empty body"
gdb_test_multiple "if 1\nelse\nend\necho got here\\n" $message {
-re ".*got here.*$gdb_prompt $" {pass $message}
gdb_test_multiple "if 1\nelse\nend" $message {
-re "$gdb_prompt $" {pass $message}
eof {
fail "$message (crashed)"
gdb_exit
@ -76,8 +76,8 @@ gdb_test "if 1\necho true\\n\nelse\necho false\\n\nend" "true" ""
# with false condition
set message "if 0 .. else with empty body"
gdb_test_multiple "if 0\nelse\nend\necho got here\\n" $message {
-re ".*got here.*$gdb_prompt $" {pass $message}
gdb_test_multiple "if 0\nelse\nend" $message {
-re "$gdb_prompt $" {pass $message}
eof {
fail "$message (crashed)"
gdb_exit