From b304ac184b051eb855fdbea3265005a72c0b2ad9 Mon Sep 17 00:00:00 2001 From: Felix Lee Date: Fri, 5 Jun 1998 04:54:03 +0000 Subject: * chexp.exp: fix tests that assume >16-bit ints. --- gdb/testsuite/gdb.chill/ChangeLog | 4 ++++ gdb/testsuite/gdb.chill/chexp.exp | 12 +++++++----- 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'gdb/testsuite/gdb.chill') diff --git a/gdb/testsuite/gdb.chill/ChangeLog b/gdb/testsuite/gdb.chill/ChangeLog index f63076b..9db44ea 100644 --- a/gdb/testsuite/gdb.chill/ChangeLog +++ b/gdb/testsuite/gdb.chill/ChangeLog @@ -1,3 +1,7 @@ +Thu May 21 02:45:18 1998 Felix Lee + + * chexp.exp: fix tests that assume >16-bit ints. + Wed Sep 10 15:01:55 1997 Bob Manson * *.exp: The end-all be-all of quoting fixes. Ha. diff --git a/gdb/testsuite/gdb.chill/chexp.exp b/gdb/testsuite/gdb.chill/chexp.exp index d78d459..bed4aba 100644 --- a/gdb/testsuite/gdb.chill/chexp.exp +++ b/gdb/testsuite/gdb.chill/chexp.exp @@ -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" } -- cgit v1.1