diff options
Diffstat (limited to 'gdb/testsuite/gdb.chill/tuples.exp')
-rw-r--r-- | gdb/testsuite/gdb.chill/tuples.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.chill/tuples.exp b/gdb/testsuite/gdb.chill/tuples.exp index 2251a04..9f7c747 100644 --- a/gdb/testsuite/gdb.chill/tuples.exp +++ b/gdb/testsuite/gdb.chill/tuples.exp @@ -103,10 +103,10 @@ proc do_tests {} { send "break printdow\n" ; expect -re "$prompt $" send "continue\n" ; expect -re "$prompt $" send "set var w:= dow\[monday\]\n" ; expect -re "$prompt $" - test_print_accept "print w" "\\\[monday\\\]" \ + gdb_test "print w" " = \\\[monday\\\]" \ "print bitstring after assignment" send "set var w:=\[\]\n" ; expect -re "$prompt $" - test_print_accept "print w" "\\\[\\\]" \ + gdb_test "print w" " = \\\[\\\]" \ "print bitstring after assignment of \[\]" } |