aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/tuples.exp
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1995-03-15 21:23:14 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1995-03-15 21:23:14 +0000
commita59f104ed89fc57cfc877f863ffff7a9afd6d3f9 (patch)
treee736099981d8fd2703f200ecc071b3514e02d0ef /gdb/testsuite/gdb.chill/tuples.exp
parentb1dda26e87e0d020b2350b8320b9c0362faf48fc (diff)
downloadgdb-a59f104ed89fc57cfc877f863ffff7a9afd6d3f9.zip
gdb-a59f104ed89fc57cfc877f863ffff7a9afd6d3f9.tar.gz
gdb-a59f104ed89fc57cfc877f863ffff7a9afd6d3f9.tar.bz2
* gdb.base/printcmds.exp (test_character_literals_accepted): Test
printing of '\'' (which is what the comment says we are testing, even though we were not), not '''. (test_integer_literals_rejected): Test that printing ''' is an error. * gdb.fortran/exprs.exp, gdb.fortran/types.exp, gdb.chill/chexp.exp, gdb.base/printcmds.exp, gdb.c++/cplusfuncs.exp, gdb.chill/callch.exp, gdb.chill/misc.exp, gdb.chill/pr-6292.exp, gdb.chill/string.exp, gdb.chill/tuples.exp: Use gdb_test not test_print_accept. * lib/gdb.exp: Remove test_print_accept.
Diffstat (limited to 'gdb/testsuite/gdb.chill/tuples.exp')
-rw-r--r--gdb/testsuite/gdb.chill/tuples.exp4
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 \[\]"
}