diff options
author | fvogel <fvogelnew1@free.fr> | 2022-06-19 19:27:47 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2022-06-19 19:27:47 (GMT) |
commit | 25c43cd6a37ec36d3140b22c8cace2a94a630b34 (patch) | |
tree | 97f87d9cb46d11dee4eb3c0ad8632c7f3a517b26 | |
parent | d38d35f4f5547eb00de798acbc092f1f0bbcb0f3 (diff) | |
download | tk-25c43cd6a37ec36d3140b22c8cace2a94a630b34.zip tk-25c43cd6a37ec36d3140b22c8cace2a94a630b34.tar.gz tk-25c43cd6a37ec36d3140b22c8cace2a94a630b34.tar.bz2 |
Add debug output since unixEmbed-11.2 still failed once at GitHub Actions on macOS with clang (mem, --enable-aqua).
-rw-r--r-- | tests/constraints.tcl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/constraints.tcl b/tests/constraints.tcl index d9461c0..b931afb 100644 --- a/tests/constraints.tcl +++ b/tests/constraints.tcl @@ -253,6 +253,9 @@ namespace eval tk { incr count after 50 } + if {$count > 9} { + puts "waitForMap $w: timeout!" + } } proc waitForUnmap {w} { set count 0 @@ -261,6 +264,9 @@ namespace eval tk { incr count after 50 } + if {$count > 9} { + puts "waitForUnmap $w: timeout!" + } } } |