gdb/fortran: Remove some duplicate tests

Make the test names unique in gdb.fortran/types.exp by removing a few
duplicate tests.

gdb/testsuite/ChangeLog:

	* gdb.fortran/types.exp (test_float_literal_types_accepted):
	Remove duplicate tests.
This commit is contained in:
Andrew Burgess 2019-01-16 13:20:28 +00:00
parent 912ebfa0d7
commit 84ec972406
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
* gdb.fortran/types.exp (test_float_literal_types_accepted):
Remove duplicate tests.
2019-03-06 Alan Hayward <alan.hayward@arm.com>
* lib/gdb.exp (builtin_cd): rename of cd.

View File

@ -63,12 +63,8 @@ proc test_float_literal_types_accepted {} {
gdb_test "pt .44" "type = real\\*\[0-9\]+"
gdb_test "pt 44.0" "type = real\\*\[0-9\]+"
gdb_test "pt 10D20" "type = real\\*\[0-9\]+"
gdb_test "pt 10D20" "type = real\\*\[0-9\]+"
gdb_test "pt 10d20" "type = real\\*\[0-9\]+"
gdb_test "pt 10d20" "type = real\\*\[0-9\]+"
gdb_test "pt 10E20" "type = real\\*\[0-9\]+"
gdb_test "pt 10E20" "type = real\\*\[0-9\]+"
gdb_test "pt 10e20" "type = real\\*\[0-9\]+"
gdb_test "pt 10e20" "type = real\\*\[0-9\]+"
}