[gdb/testsuite] Fix duplicate test-names in gdb.fortran

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.

gdb/testsuite/ChangeLog:

2020-05-12  Tom de Vries  <tdevries@suse.de>

	* gdb.fortran/complex.exp: Use with_test_prefix.
This commit is contained in:
Tom de Vries 2020-05-12 10:53:47 +02:00
parent af2d5cd8e9
commit 7549fed824
2 changed files with 19 additions and 7 deletions

View File

@ -1,3 +1,7 @@
2020-05-12 Tom de Vries <tdevries@suse.de>
* gdb.fortran/complex.exp: Use with_test_prefix.
2020-05-12 Tom de Vries <tdevries@suse.de>
* gdb.trace/passcount.exp: Fix test-names.

View File

@ -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"
}