gdb/testsuite: resolve duplicate test names in gdb.guile/*.exp
authorAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 19 May 2021 12:39:27 +0000 (13:39 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 19 May 2021 12:41:00 +0000 (13:41 +0100)
This commit:

  commit ecf25064e87a3d2d59871b3ea7126fa0dee0001d
  Date:   Thu May 13 15:42:20 2021 +0100

      gdb: fix pretty printing max depth behaviour

Introduced a couple of duplicate tests, this commit resolves them by
providing unique test names.

gdb/testsuite/ChangeLog:

* gdb.guile/scm-pretty-print.exp: Add test names to resolve
duplicate test names.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.guile/scm-pretty-print.exp

index 609b40a0a4aac16de3d257fa9a6f7e7e78b0c0a5..4ed43e57973e6a9d2645a95e1fadd509e2f1c045 100644 (file)
@@ -1,3 +1,8 @@
+2021-05-19  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * gdb.guile/scm-pretty-print.exp: Add test names to resolve
+       duplicate test names.
+
 2021-05-19  Tom de Vries  <tdevries@suse.de>
 
        * gdb.base/info-types.exp.tcl: Scan info types output line-by-line.
index 7bd9d469ff6c4f6f02aaa8d46755e13fd19e23c2..00229efd8067b30977c6963d5aa2e0e1e3de895c 100644 (file)
@@ -90,10 +90,11 @@ proc run_lang_tests {exefile lang} {
        }
 
        gdb_test "print x" " = \"this is x\""
-       gdb_test "print cstring" " = \"const string\""
-
+       gdb_test "print cstring" " = \"const string\"" \
+           "print cstring with max-depth unlimited"
        gdb_test_no_output "set print max-depth 0"
-       gdb_test "print cstring" " = \"const string\""
+       gdb_test "print cstring" " = \"const string\"" \
+           "print cstring with max-depth 0"
        gdb_test_no_output "set print max-depth unlimited"
 
        gdb_test "print estring" " = \"embedded x\\\\201\\\\202\\\\203\\\\204\""