2006-11-09 Vladimir Prus <vladimir@codesourcery.com>

* gdb.stabs/weird.exp (print_weird_var): Use
        gdb_test_multiple instead of gdb_expect.
This commit is contained in:
Vladimir Prus 2006-11-09 19:31:14 +00:00
parent 027fc1bcc3
commit 8c394015eb
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2006-11-09 Vladimir Prus <vladimir@codesourcery.com>
* gdb.stabs/weird.exp (print_weird_var): Use
gdb_test_multiple instead of gdb_expect.
2006-11-09 Vladimir Prus <vladimir@codesourcery.com>
* gdb.base/help.exp (help_test_raw): New.

View File

@ -228,16 +228,13 @@ proc print_weird_var { var } {
# Make sure that the variable gets printed out correctly, without
# any sort of warning message.
send_gdb "print $var\n"
gdb_expect {
gdb_test_multiple "print $var\n" "variable $var printed property" {
-re "^print $var\r*\n.\[0-9\]* = 42.*$gdb_prompt $" {
pass "variable $var printed properly"
}
-re ".*$gdb_prompt $" {
fail "variable $var printed properly"
}
timeout { fail "variable $var printed properly (timeout)" }
eof { fail "variable $var printed properly (eof)" }
}
# Make sure that the stabs did get loaded in a sensible way.