* chexp.exp: fix tests that assume >16-bit ints.
authorFelix Lee <flee@cygnus>
Fri, 5 Jun 1998 04:54:03 +0000 (04:54 +0000)
committerFelix Lee <flee@cygnus>
Fri, 5 Jun 1998 04:54:03 +0000 (04:54 +0000)
gdb/testsuite/gdb.chill/ChangeLog
gdb/testsuite/gdb.chill/chexp.exp

index f63076b..9db44ea 100644 (file)
@@ -1,3 +1,7 @@
+Thu May 21 02:45:18 1998  Felix Lee  <flee@zog.cygnus.com>
+
+       * chexp.exp: fix tests that assume >16-bit ints.
+
 Wed Sep 10 15:01:55 1997  Bob Manson  <manson@charmed.cygnus.com>
 
        * *.exp: The end-all be-all of quoting fixes. Ha.
index d78d459..bed4aba 100644 (file)
@@ -66,7 +66,7 @@ proc test_integer_literals_accepted {} {
     gdb_test "p d'123" " = 123"
     gdb_test "p -D'123" " = -123"
     gdb_test "p -d'123" " = -123"
-    gdb_test "p 123_456" " = 123456"
+    gdb_test "p 12_345" " = 12345"
     gdb_test "p __1_2_3__" " = 123"
     gdb_test "p/d 123" " = D'123"
 
@@ -107,10 +107,12 @@ proc test_integer_literals_accepted {} {
     gdb_test "p H'_1_2_3_" " = 291"
     gdb_test "p h'_1_2_3_" " = 291"
     gdb_test "p -h'_1_2_3_" " = -291"
-    gdb_test "p H'ABCDEF" " = 11259375"
-    gdb_test "p H'abcdef" " = 11259375"
-    gdb_test "p H'AbCdEf" " = 11259375"
-    gdb_test "p H'_A_b_C_d_E_f_" " = 11259375"
+    gdb_test "p H'ABC" " = 2748"
+    gdb_test "p H'abc" " = 2748"
+    gdb_test "p H'AbC" " = 2748"
+    gdb_test "p H'_A_b_C_" " = 2748"
+    gdb_test "p H'_D_e_F_" " = 3567"
+    gdb_test "p H'_d_E_f_" " = 3567"
     gdb_test "p/x H'123" " = H'123"
 }