diff options
author | Lancelot SIX <lsix@lancelotsix.com> | 2021-11-19 23:22:53 +0000 |
---|---|---|
committer | Lancelot SIX <lsix@lancelotsix.com> | 2022-01-07 22:43:32 +0000 |
commit | 08c8808ae274801163a259bdc425165ac8fbf097 (patch) | |
tree | f7a40ba28ca28b675dfd1f83f1059a23ac627c03 | |
parent | 2bb68cff48ff87b444552ba71fd6edce50e57ca2 (diff) | |
download | binutils-08c8808ae274801163a259bdc425165ac8fbf097.zip binutils-08c8808ae274801163a259bdc425165ac8fbf097.tar.gz binutils-08c8808ae274801163a259bdc425165ac8fbf097.tar.bz2 |
gdb/testsuite: Remove duplicates from gdb.base/pending.exp
When running the testsuite, I have:
Running .../gdb/testsuite/gdb.base/pending.exp ...
DUPLICATE: gdb.base/pending.exp: disable other breakpoints
Fix by adjusting the test names.
Tested on x86_64-linux.
-rw-r--r-- | gdb/testsuite/gdb.base/pending.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/pending.exp b/gdb/testsuite/gdb.base/pending.exp index 3330077..c9178fc 100644 --- a/gdb/testsuite/gdb.base/pending.exp +++ b/gdb/testsuite/gdb.base/pending.exp @@ -244,8 +244,8 @@ gdb_test "continue" \ # be 3 then. # -gdb_test "disable 7" "" "disable other breakpoints" -gdb_test "disable 5" "" "disable other breakpoints" +gdb_test "disable 7" "" "disable breakpoint 7" +gdb_test "disable 5" "" "disable breakpoint 5" gdb_test "continue" \ ".*Breakpoint.*pendfunc1.*\\\(x=3\\\) at.*pendshr.c:$bp3_loc.*printf.*;" \ |