diff options
author | Tom Tromey <tromey@adacore.com> | 2024-09-24 12:27:24 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-09-24 12:27:24 -0600 |
commit | 1db505de9387421347e3f46d5d189cc93a549b02 (patch) | |
tree | b0cc192034f8fcf0d845ae68b5c5fe6358ce9110 /gdb | |
parent | 94aedcf7ea5b1dbd8bf79247a8ed247b75b3dfb0 (diff) | |
download | gdb-1db505de9387421347e3f46d5d189cc93a549b02.zip gdb-1db505de9387421347e3f46d5d189cc93a549b02.tar.gz gdb-1db505de9387421347e3f46d5d189cc93a549b02.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/gdb.ada/complete.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.ada/complete.exp b/gdb/testsuite/gdb.ada/complete.exp index 41ea8ae..dc3cc4e 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" |