From: Tom Tromey Date: Tue, 24 Sep 2024 18:27:24 +0000 (-0600) Subject: Fix typo in gdb.ada/complete.exp test X-Git-Tag: gdb-16-branchpoint~815 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1db505de9387421347e3f46d5d189cc93a549b02;p=thirdparty%2Fbinutils-gdb.git Fix typo in gdb.ada/complete.exp test I noticed that two tests in gdb.ada/complete.exp are testing the same thing: the completion of "p pck.inne". The second such test has this comment: # A fully qualified package name I believe the intent here was to test "p pck.inner" (note the trailing "r"). This patch makes this change. --- diff --git a/gdb/testsuite/gdb.ada/complete.exp b/gdb/testsuite/gdb.ada/complete.exp index 41ea8ae7c62..dc3cc4eaa81 100644 --- a/gdb/testsuite/gdb.ada/complete.exp +++ b/gdb/testsuite/gdb.ada/complete.exp @@ -124,7 +124,7 @@ test_gdb_complete "pck.my" \ "p pck.my_global_variable" # A fully qualified package name -test_gdb_complete "pck.inne" \ +test_gdb_complete "pck.inner" \ "p pck.inner.inside_variable" \ "complete fully qualified package name"