diff options
author | Marc Khouzam <marc.khouzam@ericsson.com> | 2008-04-01 15:18:30 +0000 |
---|---|---|
committer | Marc Khouzam <marc.khouzam@ericsson.com> | 2008-04-01 15:18:30 +0000 |
commit | 6c2d1a6bc97ac98486be4689e3a1fa054dcd4f01 (patch) | |
tree | ffb880040b8260d0758e9b24515a9dd09eca7bf5 /gdb/testsuite/gdb.mi/mi2-var-display.exp | |
parent | 61ad90e1f5a7f42c3b78d2bd36de9322b902c66c (diff) | |
download | gdb-6c2d1a6bc97ac98486be4689e3a1fa054dcd4f01.zip gdb-6c2d1a6bc97ac98486be4689e3a1fa054dcd4f01.tar.gz gdb-6c2d1a6bc97ac98486be4689e3a1fa054dcd4f01.tar.bz2 |
2008-04-01 Marc Khouzam <marc.khouzam@ericsson.com>
* gdb.mi/mi-var-display.exp: Stop at end of do_special_tests
instead of beginning to make an extra test pass.
* gdb.mi/mi2-var-display.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.mi/mi2-var-display.exp')
-rw-r--r-- | gdb/testsuite/gdb.mi/mi2-var-display.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.mi/mi2-var-display.exp b/gdb/testsuite/gdb.mi/mi2-var-display.exp index 6be3bf4..e98b3cf 100644 --- a/gdb/testsuite/gdb.mi/mi2-var-display.exp +++ b/gdb/testsuite/gdb.mi/mi2-var-display.exp @@ -331,15 +331,15 @@ mi_gdb_test "-var-delete weird" \ # Stop in "do_special_tests" -set line_dst_a_1 [gdb_get_line_number "a = 1;"] +set line_dst_incr_a_2 [gdb_get_line_number "incr_a(2);"] -mi_gdb_test "200-break-insert do_special_tests" \ - "200\\^done,bkpt=\{number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"do_special_tests\",file=\".*var-cmd.c\",line=\"$line_dst_a_1\",times=\"0\"\}" \ +mi_gdb_test "200-break-insert $line_dst_incr_a_2" \ + "200\\^done,bkpt=\{number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"do_special_tests\",file=\".*var-cmd.c\",line=\"$line_dst_incr_a_2\",times=\"0\"\}" \ "break-insert operation" send_gdb "-exec-continue\n" gdb_expect { - -re "\\^running\r\n${mi_gdb_prompt}\\*stopped,reason=\"breakpoint-hit\",bkptno=\"2\",thread-id=\"\[01\]\",frame=\{addr=\"$hex\",func=\"do_special_tests\",args=\\\[\\\],file=\".*var-cmd.c\",fullname=\"${fullname_syntax}${srcfile}\",line=\"$line_dst_a_1\"\}\r\n$mi_gdb_prompt$" { + -re "\\^running\r\n${mi_gdb_prompt}\\*stopped,reason=\"breakpoint-hit\",bkptno=\"2\",thread-id=\"\[01\]\",frame=\{addr=\"$hex\",func=\"do_special_tests\",args=\\\[\\\],file=\".*var-cmd.c\",fullname=\"${fullname_syntax}${srcfile}\",line=\"$line_dst_incr_a_2\"\}\r\n$mi_gdb_prompt$" { pass "continue to do_special_tests" } timeout { |