diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 89c453c5b7..090d7824e5 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-10-27 Jan Kratochvil + + * gdb.ada/access_to_packed_array.exp: Fix typos erroring the testfile. + 2015-10-26 Doug Evans PR symtab/17391 diff --git a/gdb/testsuite/gdb.ada/access_to_packed_array.exp b/gdb/testsuite/gdb.ada/access_to_packed_array.exp index 0dca7803b0..1bf3e224b2 100644 --- a/gdb/testsuite/gdb.ada/access_to_packed_array.exp +++ b/gdb/testsuite/gdb.ada/access_to_packed_array.exp @@ -26,8 +26,8 @@ clean_restart ${testfile} set bp_location [gdb_get_line_number "BREAK" ${testdir}/foo.adb] runto "foo.adb:$bp_location" -gdb_test "print pack.a" "\\(0 => 1, 2, 3, 4, 5, 6, 7, 8, 9, 10\\)") -gdb_test "pack.aa" "\\(access pack\\.array_type\\) 0x.* ") +gdb_test "print pack.a" " = \\(0 => 1, 2, 3, 4, 5, 6, 7, 8, 9, 10\\)" +gdb_test "print pack.aa" " = \\(access pack\\.array_type\\) 0x.* " -gdb_test "pack.a(2)" "3" -gdb_test "pack.aa(2)" "3" +gdb_test "print pack.a(2)" " = 3" +gdb_test "print pack.aa(2)" " = 3"