OSDN Git Service

* gdb.java/jv-print.exp: Fix p '' and p ''' tests to deal with
authorkettenis <kettenis>
Thu, 15 Aug 2002 17:18:49 +0000 (17:18 +0000)
committerkettenis <kettenis>
Thu, 15 Aug 2002 17:18:49 +0000 (17:18 +0000)
2002-07-24 change that removes final dots from error messages.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.java/jv-print.exp

index 5b4a518..fb29d27 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-15  Mark Kettenis  <kettenis@elgar.kettenis.dyndns.org>
+
+       * gdb.java/jv-print.exp: Fix p '' and p ''' tests to deal with
+       2002-07-24 change that removes final dots from error messages.
+
 2002-08-13  Tom Tromey  <tromey@redhat.com>
 
        * gdb.base/readline.exp: New file.
index fb5dad7..00da1f3 100644 (file)
@@ -89,8 +89,8 @@ proc test_integer_literals_rejected {} {
     global gdb_prompt
 
     test_print_reject "p 0x" 
-    gdb_test "p ''" "Empty character constant\\."
-    gdb_test "p '''" "Empty character constant\\."
+    gdb_test "p ''" "Empty character constant"
+    gdb_test "p '''" "Empty character constant"
     test_print_reject "p '\\'"
 
     # Note that this turns into "p '\\\'" at gdb's input.