[gdb/testsuite] Skip dap tests for tcl 8.5
authorTom de Vries <tdevries@suse.de>
Mon, 24 Apr 2023 09:29:22 +0000 (11:29 +0200)
committerTom de Vries <tdevries@suse.de>
Mon, 24 Apr 2023 09:29:22 +0000 (11:29 +0200)
When running the dap tests on a system with tcl 8.5, we run into:
...
ERROR: tcl error sourcing gdb/testsuite/gdb.dap/memory.exp.
ERROR: bad class "entier": must be alnum, alpha, ascii, control, boolean, \
  digit, double, false, graph, integer, list, lower, print, punct, space, \
  true, upper, wideinteger, wordchar, or xdigit
    while executing
"string is entier $num"
    (procedure "num" line 16)
    invoked from within
...

Fix this by:
- requiring tcl 8.6 in allow_dap_tests, and
- adding the missing require allow_dap_tests in gdb.dap/memory.exp.

Tested on x86_64-linux.

gdb/testsuite/gdb.dap/memory.exp
gdb/testsuite/lib/gdb.exp

index fec552c4124d792594585f5621fb7a82fd8385cf..ab0516d6b3d5373248f188b211e7a3fdfae5a80c 100644 (file)
@@ -15,6 +15,8 @@
 
 # Test DAP read/write memory.
 
+require allow_dap_tests
+
 load_lib dap-support.exp
 
 standard_testfile
index 9ea0334759dffc124e8da51133ba5055c1d123d4..b59b4358ca4283a51c03b10dd4cc9167ecfc6619 100644 (file)
@@ -2515,6 +2515,11 @@ gdb_caching_proc allow_dap_tests {} {
        return 0
     }
 
+    # ton.tcl uses "string is entier", supported starting tcl 8.6.
+    if { ![tcl_version_at_least 8 6] } {
+       return 0
+    }
+
     # With set auto-connect-native-target off, we run into:
     # +++ run
     # Traceback (most recent call last):