2001-10-29 Orjan Friberg <orjanf@axis.com>
* gdb.base/setvar.exp: Escape curly braces. * gdb.stabs/weird.exp: Ditto.
This commit is contained in:
parent
cdf1fe3060
commit
cb135b8327
3 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-10-29 Orjan Friberg <orjanf@axis.com>
|
||||||
|
|
||||||
|
* gdb.base/setvar.exp: Escape curly braces.
|
||||||
|
* gdb.stabs/weird.exp: Ditto.
|
||||||
|
|
||||||
2001-10-27 Daniel Jacobowitz <drow@mvista.com>
|
2001-10-27 Daniel Jacobowitz <drow@mvista.com>
|
||||||
|
|
||||||
* gdb.mi/mi-hack-cli.exp: Remove excess newlines from test strings.
|
* gdb.mi/mi-hack-cli.exp: Remove excess newlines from test strings.
|
||||||
|
|
|
@ -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 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)=123" ""
|
||||||
gdb_test "set variable *(v_signed_short_pointer+1)=-456" ""
|
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"
|
"set variable signed short pointer"
|
||||||
gdb_test "print *(v_signed_short_pointer+1)" ".\[0-9\]*.*=.*-456"
|
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" ""
|
gdb_test "set variable *(v_unsigned_short_pointer+1)=-456" ""
|
||||||
# DTS 10060CLLbs - bad type info from cc
|
# DTS 10060CLLbs - bad type info from cc
|
||||||
if {$hp_cc_compiler} {setup_xfail hppa*-*-*11* 10060CLLbs}
|
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"
|
"set variable unsigned short pointer"
|
||||||
# DTS 10060CLLbs - bad type info from cc
|
# DTS 10060CLLbs - bad type info from cc
|
||||||
if {$hp_cc_compiler} {setup_xfail hppa*-*-*11* 10060CLLbs}
|
if {$hp_cc_compiler} {setup_xfail hppa*-*-*11* 10060CLLbs}
|
||||||
|
|
|
@ -170,9 +170,9 @@ field3 = 0x77888877\}" "print struct constant"
|
||||||
|
|
||||||
# GDB does not yet support arrays indexed by anything at all unusual
|
# GDB does not yet support arrays indexed by anything at all unusual
|
||||||
setup_xfail "*-*-*"
|
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 "*-*-*"
|
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 does not yet support this feature
|
||||||
gdb_test "whatis one_var" "type = inttype_one" \
|
gdb_test "whatis one_var" "type = inttype_one" \
|
||||||
|
|
Loading…
Reference in a new issue