From: Keith Seitz Date: Mon, 11 May 2020 19:22:25 +0000 (-0700) Subject: Fix gdb.ada/attr_ref_and_charlit.exp typo X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=53f539a3d77c2fc3278f3c60fea83cd96c4464d6;p=deliverable%2Fbinutils-gdb.git Fix gdb.ada/attr_ref_and_charlit.exp typo ... introduced by my last commit: -gdb_test "print s'last" " = 3" + gdb_test "print s'last" " = 3Z gdb/testsuite/ChangeLog 2020-05-11 Keith Seitz * gdb.ada/attr_ref_and_charlit.exp: Fix typo. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 2a0d84d814..188d0dfa77 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2020-05-11 Keith Seitz + + * gdb.ada/attr_ref_and_charlit.exp: Fix typo. + 2020-05-11 Tom de Vries * gdb.cp/cpexprs.exp: Move everything except flags setting ... diff --git a/gdb/testsuite/gdb.ada/attr_ref_and_charlit.exp b/gdb/testsuite/gdb.ada/attr_ref_and_charlit.exp index 9e3cda808a..bbe7d5ece2 100644 --- a/gdb/testsuite/gdb.ada/attr_ref_and_charlit.exp +++ b/gdb/testsuite/gdb.ada/attr_ref_and_charlit.exp @@ -31,7 +31,7 @@ set bp_location [gdb_get_line_number "BREAK" "${testdir}/foo.adb"] runto "foo.adb:$bp_location" with_test_prefix "run" { gdb_test "print s'first" " = 2" - gdb_test "print s'last" " = 3Z + gdb_test "print s'last" " = 3" gdb_test "print s(s'first) = 'a'" " = true" gdb_test "print s(s'last) /= 'b'" " = false" }