diff options
author | Tom de Vries <tdevries@suse.de> | 2021-06-24 12:55:08 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-06-24 12:55:08 +0200 |
commit | 013270a16a84656d4014bcc5d546a766b581dd1a (patch) | |
tree | d84fc737ec2e2cfc4984ff9a9269ac2ebf1d0e8e /gdb/testsuite/gdb.base | |
parent | 657dcee4cff07db1622081e6fa84e177273e2089 (diff) | |
download | gdb-013270a16a84656d4014bcc5d546a766b581dd1a.zip gdb-013270a16a84656d4014bcc5d546a766b581dd1a.tar.gz gdb-013270a16a84656d4014bcc5d546a766b581dd1a.tar.bz2 |
[gdb/testsuite] Fix duplicate in gdb.base/info-macros.exp
When running test-case gdb.base/info-macros.exp, I run into:
...
PASS: gdb.base/info-macros.exp: info macro --
PASS: gdb.base/info-macros.exp: info macro --
DUPLICATE: gdb.base/info-macros.exp: info macro --
PASS: gdb.base/info-macros.exp: info macro --
...
These messages come from gdb_test calls using the following commands:
- "info macro --"
- "info macro -- "
- "info macro -- ".
Apparantly the test names get stripped of trailing whitespace, and the first
two end up identical.
Fix this by explicitly specifying an <EOL> after the trailing whitespace in
the test name, such that we have:
...
PASS: gdb.base/info-macros.exp: info macro --
PASS: gdb.base/info-macros.exp: info macro -- <EOL>
PASS: gdb.base/info-macros.exp: info macro -- <EOL>
...
Tested on x86_64-linux.
gdb/testsuite/ChangeLog:
2021-06-24 Tom de Vries <tdevries@suse.de>
* gdb.base/info-macros.exp: Add <EOL> after trailing whitespace in
test names.
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/info-macros.exp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/info-macros.exp b/gdb/testsuite/gdb.base/info-macros.exp index 44b0b45..19f1681 100644 --- a/gdb/testsuite/gdb.base/info-macros.exp +++ b/gdb/testsuite/gdb.base/info-macros.exp @@ -61,9 +61,11 @@ gdb_test "info macro --" \ "You must follow.*with the name.*you want to see.*\[^\r\n\]*\[\r\n\]" gdb_test "info macro -- " \ - "You must follow.*with the name.*you want to see.*\[^\r\n\]*\[\r\n\]" + "You must follow.*with the name.*you want to see.*\[^\r\n\]*\[\r\n\]" \ + "info macro -- <EOL>" gdb_test "info macro -- " \ - "You must follow.*with the name.*you want to see.*\[^\r\n\]*\[\r\n\]" + "You must follow.*with the name.*you want to see.*\[^\r\n\]*\[\r\n\]" \ + "info macro -- <EOL>" gdb_test "info macro -invalid-option" \ "Unrecognized option.*Try \"help info macro\"\." |