From: Ulrich Weigand Date: Sat, 10 Mar 2007 01:13:43 +0000 (+0000) Subject: * gdb.base/long_long.exp: Accept optional symbol name in <...> X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70ed37372e3753a302a1d7b01c27ecb2993bd100;p=binutils-gdb.git * gdb.base/long_long.exp: Accept optional symbol name in <...> for /a format output. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e827efdb24f..189425dfd98 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-03-09 Ulrich Weigand + + * gdb.base/long_long.exp: Accept optional symbol name in <...> + for /a format output. + 2007-03-09 Daniel Jacobowitz * gdb.base/checkpoint.exp: Rewrite 600 checkpoint test to diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp index 4d46a68cad6..bc87eaff6e2 100644 --- a/gdb/testsuite/gdb.base/long_long.exp +++ b/gdb/testsuite/gdb.base/long_long.exp @@ -229,7 +229,7 @@ gdb_test_char "p/d *(char *)c" "1" gdb_test_char "p/u *(char *)c" "1" gdb_test_char "p/o *(char *)c" "01" gdb_test_char "p/t *(char *)c" "1" -gdb_test_char "p/a *(char *)c" "0x1" +gdb_test_char "p/a *(char *)c" "0x1( <.*>)?" gdb_test_char "p/f *(char *)c" "1" gdb_test_char "p/c *(char *)c" "1 '.001'" @@ -238,7 +238,7 @@ gdb_test_short "p/d *(short *)s" "" "291" "" gdb_test_short "p/u *(short *)s" "" "291" "" gdb_test_short "p/o *(short *)s" "" "0443" "" gdb_test_short "p/t *(short *)s" "" "100100011" "" -gdb_test_short "p/a *(short *)s" "" "0x123" "" +gdb_test_short "p/a *(short *)s" "" "0x123( <.*>)?" "" gdb_test_short "p/f *(short *)s" "" "291" "" gdb_test_short "p/c *(short *)s" "" "35 '.'" ""