diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 3d62eeb30e..d0251e5668 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-10-29 Orjan Friberg + + * gdb.base/setvar.exp: Escape curly braces. + * gdb.stabs/weird.exp: Ditto. + 2001-10-27 Daniel Jacobowitz * gdb.mi/mi-hack-cli.exp: Remove excess newlines from test strings. diff --git a/gdb/testsuite/gdb.base/setvar.exp b/gdb/testsuite/gdb.base/setvar.exp index b418d6ab47..259700a654 100644 --- a/gdb/testsuite/gdb.base/setvar.exp +++ b/gdb/testsuite/gdb.base/setvar.exp @@ -320,7 +320,7 @@ test_set "set v_short_pointer=v_short_array" "set variable *(v_short_pointer)=12 gdb_test "set v_signed_short_pointer=v_signed_short_array" "" gdb_test "set variable *(v_signed_short_pointer)=123" "" gdb_test "set variable *(v_signed_short_pointer+1)=-456" "" -gdb_test "print v_signed_short_array" ".\[0-9\]* =.*\{123,.*-456\}" \ +gdb_test "print v_signed_short_array" ".\[0-9\]* =.*\\{123,.*-456\\}" \ "set variable signed short pointer" gdb_test "print *(v_signed_short_pointer+1)" ".\[0-9\]*.*=.*-456" # @@ -331,7 +331,7 @@ gdb_test "set variable *(v_unsigned_short_pointer)=123" "" gdb_test "set variable *(v_unsigned_short_pointer+1)=-456" "" # DTS 10060CLLbs - bad type info from cc if {$hp_cc_compiler} {setup_xfail hppa*-*-*11* 10060CLLbs} -gdb_test "print v_unsigned_short_array" ".\[0-9\]* =.*\{123,.*65080\}" \ +gdb_test "print v_unsigned_short_array" ".\[0-9\]* =.*\\{123,.*65080\\}" \ "set variable unsigned short pointer" # DTS 10060CLLbs - bad type info from cc if {$hp_cc_compiler} {setup_xfail hppa*-*-*11* 10060CLLbs} diff --git a/gdb/testsuite/gdb.stabs/weird.exp b/gdb/testsuite/gdb.stabs/weird.exp index 3bfee49ce0..0e5d52218a 100644 --- a/gdb/testsuite/gdb.stabs/weird.exp +++ b/gdb/testsuite/gdb.stabs/weird.exp @@ -170,9 +170,9 @@ field3 = 0x77888877\}" "print struct constant" # GDB does not yet support arrays indexed by anything at all unusual setup_xfail "*-*-*" - gdb_test "p array0" " = \{42, 43, 44, 45, 46, 47\}" "array0 with strange index" + gdb_test "p array0" " = \\{42, 43, 44, 45, 46, 47\\}" "array0 with strange index" setup_xfail "*-*-*" - gdb_test "p array1" " = \{42, 43, 44\}" "array1 with strange index" + gdb_test "p array1" " = \\{42, 43, 44\\}" "array1 with strange index" # GDB does not yet support this feature gdb_test "whatis one_var" "type = inttype_one" \