aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2019-01-16 13:20:28 +0000
committerAndrew Burgess <andrew.burgess@embecosm.com>2019-03-06 18:11:30 +0000
commit84ec972406ec519b509f986780481899115847c2 (patch)
tree8beaef0256c7f07dc147c688df37e6ac0dba568e /gdb/testsuite
parent912ebfa0d748b4a762dbc4311364c38692c7f626 (diff)
downloadgdb-84ec972406ec519b509f986780481899115847c2.zip
gdb-84ec972406ec519b509f986780481899115847c2.tar.gz
gdb-84ec972406ec519b509f986780481899115847c2.tar.bz2
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.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.fortran/types.exp4
2 files changed, 5 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index ea98977..1a6b440 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -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.
diff --git a/gdb/testsuite/gdb.fortran/types.exp b/gdb/testsuite/gdb.fortran/types.exp
index 2e1f2e1..f786bd3 100644
--- a/gdb/testsuite/gdb.fortran/types.exp
+++ b/gdb/testsuite/gdb.fortran/types.exp
@@ -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\]+"
}