* gdb.base/interp.exp: Always consume both prompts.

This commit is contained in:
Daniel Jacobowitz 2008-08-20 18:55:57 +00:00
parent 41a7d9f3fc
commit 97a2d1d342
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-08-20 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.base/interp.exp: Always consume both prompts.
2008-08-20 Pedro Alves <pedro@codesourcery.com>
* gdb.base/pending.exp: Test pending breakpoints without symbols

View File

@ -21,7 +21,16 @@ if $tracelevel then {
gdb_start
gdb_test "interpreter-exec mi \"-var-update *\"" "\\^done,changelist=[].*"
# Do not use gdb_test for this test, since it has two prompts.
set cmd "interpreter-exec mi \"-var-update *\""
gdb_test_multiple $cmd $cmd {
-re "\\^done,changelist=\\\[\\\]\r\n$gdb_prompt " {
pass "$cmd"
gdb_expect 1 {
-re "\r\n$gdb_prompt $" { }
}
}
}
gdb_test "interpreter-exec console \"show version\"" "GNU gdb .*"
gdb_exit