* [committed][gdb/testsuite] Fix duplicate test-names in gdb.fortran
@ 2020-05-12 8:54 Tom de Vries
0 siblings, 0 replies; only message in thread
From: Tom de Vries @ 2020-05-12 8:54 UTC (permalink / raw)
To: gdb-patches
Hi,
In gdb.fortran we have:
...
DUPLICATE: gdb.fortran/complex.exp: whatis $
DUPLICATE: gdb.fortran/complex.exp: whatis $
DUPLICATE: gdb.fortran/complex.exp: whatis $
DUPLICATE: gdb.fortran/complex.exp: whatis $
...
Fix this by using with_test_prefix.
Tested on x86_64-linux.
Committed to trunk.
Thanks,
- Tom
[gdb/testsuite] Fix duplicate test-names in gdb.fortran
gdb/testsuite/ChangeLog:
2020-05-12 Tom de Vries <tdevries@suse.de>
* gdb.fortran/complex.exp: Use with_test_prefix.
---
gdb/testsuite/gdb.fortran/complex.exp | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/gdb/testsuite/gdb.fortran/complex.exp b/gdb/testsuite/gdb.fortran/complex.exp
index a88e553e58..f1e754e163 100644
--- a/gdb/testsuite/gdb.fortran/complex.exp
+++ b/gdb/testsuite/gdb.fortran/complex.exp
@@ -38,21 +38,29 @@ gdb_test "print c16" " = \\(-874,19\\)"
gdb_test "whatis c" "type = complex\\(kind=4\\)"
gdb_test "print \$_creal (c)" " = 1000"
-gdb_test "whatis \$" " = real"
+with_test_prefix "c" {
+ gdb_test "whatis \$" " = real"
+}
gdb_test "whatis c4" "type = complex\\(kind=4\\)"
gdb_test "print \$_creal (c4)" " = 1000"
-gdb_test "whatis \$" " = real"
-
+with_test_prefix "c4" {
+ gdb_test "whatis \$" " = real"
+}
gdb_test "whatis c8" "type = complex\\(kind=8\\)"
gdb_test "print \$_creal (c8)" " = 321"
-gdb_test "whatis \$" " = real\\*8"
-
+with_test_prefix "c8" {
+ gdb_test "whatis \$" " = real\\*8"
+}
gdb_test "whatis dc" "type = complex\\(kind=8\\)"
gdb_test "print \$_creal (dc)" " = 321"
-gdb_test "whatis \$" " = real\\*8"
+with_test_prefix "dc" {
+ gdb_test "whatis \$" " = real\\*8"
+}
gdb_test "whatis c16" "type = complex\\(kind=16\\)"
gdb_test "print \$_creal (c16)" " = -874"
-gdb_test "whatis \$" " = real\\*16"
+with_test_prefix "c16" {
+ gdb_test "whatis \$" " = real\\*16"
+}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-05-12 8:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-12 8:54 [committed][gdb/testsuite] Fix duplicate test-names in gdb.fortran Tom de Vries
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox