]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix gdb.ada/attr_ref_and_charlit.exp typo
authorKeith Seitz <keiths@redhat.com>
Mon, 11 May 2020 19:22:25 +0000 (12:22 -0700)
committerKeith Seitz <keiths@redhat.com>
Mon, 11 May 2020 19:22:25 +0000 (12:22 -0700)
... 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  <keiths@redhat.com>

* gdb.ada/attr_ref_and_charlit.exp: Fix typo.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.ada/attr_ref_and_charlit.exp

index 2a0d84d814644be3f5641f3e0058a76b1efdd4f0..188d0dfa7772bb94db1dedc3c0d5e114b2563318 100644 (file)
@@ -1,3 +1,7 @@
+2020-05-11  Keith Seitz  <keiths@redhat.com>
+
+       * gdb.ada/attr_ref_and_charlit.exp: Fix typo.
+
 2020-05-11  Tom de Vries  <tdevries@suse.de>
 
        * gdb.cp/cpexprs.exp: Move everything except flags setting ...
index 9e3cda808a7d647cf27588355a736fe8f85885f1..bbe7d5ece25275c6d0c017fe0168259d13b94332 100644 (file)
@@ -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"
 }