diff options
Diffstat (limited to 'gdb/testsuite/gdb.ada/arrayptr.exp')
-rw-r--r-- | gdb/testsuite/gdb.ada/arrayptr.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.ada/arrayptr.exp b/gdb/testsuite/gdb.ada/arrayptr.exp index e13ba8d..ed91fe0 100644 --- a/gdb/testsuite/gdb.ada/arrayptr.exp +++ b/gdb/testsuite/gdb.ada/arrayptr.exp @@ -32,15 +32,15 @@ if ![runto "foo.adb:$bp_location" ] then { gdb_test "print string_p" \ "= \\(foo\\.string_access\\) 0x\[0-9a-zA-Z\]+" -gdb_test "print string_p (3..4)" "= \"ll\"" +gdb_test "print string_p(3..4)" "= \"ll\"" gdb_test "print null_string" "= \\(foo\\.string_access\\) 0x0" gdb_test "print arr_ptr" "= \\(access foo\\.little_array\\) 0x\[0-9a-zA-Z\]+" -gdb_test "print arr_ptr (2)" "= 22" +gdb_test "print arr_ptr(2)" "= 22" -gdb_test "print arr_ptr (3..4)" "= \\(3 => 23, 24\\)" +gdb_test "print arr_ptr(3..4)" "= \\(3 => 23, 24\\)" gdb_test "ptype string_access" "= access array \\(<>\\) of character" |