diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-03-16 10:17:07 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-03-26 14:04:18 +0000 |
commit | 3c2dcf90b55fea84260ac83ab968c5df3b44d34d (patch) | |
tree | 05900dd11cccf7c7a6c622d924425b22df5e225b /gdb/testsuite/gdb.cp/misc.exp | |
parent | 6b78370dcc18719d4a34d64ab759f30643d7b8d3 (diff) | |
download | gdb-3c2dcf90b55fea84260ac83ab968c5df3b44d34d.zip gdb-3c2dcf90b55fea84260ac83ab968c5df3b44d34d.tar.gz gdb-3c2dcf90b55fea84260ac83ab968c5df3b44d34d.tar.bz2 |
gdb/testsuite: resolve remaining duplicate test names in gdb.cp/*.exp
This commit resolves the remaining duplicate test names in
gdb.cp/*.exp. These are all the easy duplicates, I'm either giving
tests a new, unique name, extending an existing name to make it
unique, or changing an existing name to better reflect what the test
is actually doing, and thus, making this test name unique.
There should be no change in what is tested after this commit.
gdb/testsuite/ChangeLog:
* gdb.cp/breakpoint.exp: Extend test names to make them unique.
* gdb.cp/casts.exp: Give tests unique names.
* gdb.cp/filename.exp: Likewise.
* gdb.cp/gdb2495.exp: Likewise.
* gdb.cp/mb-ctor.exp: Extend test names to make them unique.
* gdb.cp/misc.exp: Rename test to make it unique.
* gdb.cp/nsnested.exp: Give tests unique names.
* gdb.cp/ovldbreak.exp: Likewise.
* gdb.cp/pr17494.exp: Rename test to reflect what is actually
being tested. This also removes the duplicate test name.
* gdb.cp/ref-types.exp: Likewise.
* gdb.cp/temargs.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.cp/misc.exp')
-rw-r--r-- | gdb/testsuite/gdb.cp/misc.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.cp/misc.exp b/gdb/testsuite/gdb.cp/misc.exp index aa83031..8219b23 100644 --- a/gdb/testsuite/gdb.cp/misc.exp +++ b/gdb/testsuite/gdb.cp/misc.exp @@ -111,6 +111,6 @@ gdb_test "print 'misc.cc'::v_bool" " = true" \ gdb_test "print *(v_bool_array + number_ref)" "\\$\[0-9\]* = false" \ "pointer addition with integer reference" gdb_test "print *(number_ref + v_bool_array)" "\\$\[0-9\]* = false" \ - "pointer addition with integer reference" + "integer reference addition with pointer" gdb_test "print *(v_bool_array - number_ref)" "\\$\[0-9\]* = false" \ "pointer subtraction with integer reference" |