* [committed][gdb/testsuite] Fix DUPLICATEs in gdb.dwarf2/implptr-64bit.exp
@ 2021-09-24 10:41 Tom de Vries via Gdb-patches
0 siblings, 0 replies; only message in thread
From: Tom de Vries via Gdb-patches @ 2021-09-24 10:41 UTC (permalink / raw)
To: gdb-patches
Hi,
When running test-case gdb.dwarf2/implptr-64bit.exp with target board
unix/-m32, I noticed:
...
DUPLICATE: gdb.dwarf2/implptr-64bit.exp: failed to prepare
...
Fix this by using with_test_prefix.
Tested on x86_64-linux.
Committed to trunk.
Thanks,
- Tom
[gdb/testsuite] Fix DUPLICATEs in gdb.dwarf2/implptr-64bit.exp
---
gdb/testsuite/gdb.dwarf2/implptr-64bit.exp | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/gdb/testsuite/gdb.dwarf2/implptr-64bit.exp b/gdb/testsuite/gdb.dwarf2/implptr-64bit.exp
index 03bf8c8977e..19f5ecb7929 100644
--- a/gdb/testsuite/gdb.dwarf2/implptr-64bit.exp
+++ b/gdb/testsuite/gdb.dwarf2/implptr-64bit.exp
@@ -21,11 +21,9 @@ if {![dwarf2_support]} {
standard_testfile main.c
-proc test { dwarf_version offset_size addr_size ref_addr_size two_cu } {
+proc test_1 { name dwarf_version offset_size addr_size ref_addr_size two_cu } {
global testfile srcfile
- set name "d${dwarf_version}o${offset_size}a${addr_size}r${ref_addr_size}t${two_cu}"
-
# Make some DWARF for the test.
set asm_file [standard_output_file ${testfile}-${name}.S]
Dwarf::assemble $asm_file {
@@ -137,7 +135,23 @@ proc test { dwarf_version offset_size addr_size ref_addr_size two_cu } {
return -1
}
- gdb_test "p/x p->f" " = 0x1010101" $name
+ gdb_test "p/x p->f" " = 0x1010101"
+}
+
+proc test { dwarf_version offset_size addr_size ref_addr_size two_cu } {
+
+ set name \
+ [list \
+ "d${dwarf_version}" \
+ "o${offset_size}" \
+ "a${addr_size}" \
+ "r${ref_addr_size}" \
+ "t${two_cu}"]
+ set name [join $name "-"]
+ with_test_prefix $name {
+ test_1 $name \
+ $dwarf_version $offset_size $addr_size $ref_addr_size $two_cu
+ }
}
# DWARF_VERSION OFFSET_SIZE ADDR_SIZE REF_ADDR_SIZE TWO_CU
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-09-24 10:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-24 10:41 [committed][gdb/testsuite] Fix DUPLICATEs in gdb.dwarf2/implptr-64bit.exp Tom de Vries via Gdb-patches
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox