diff options
Diffstat (limited to 'tests/async.test')
| -rw-r--r-- | tests/async.test | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/async.test b/tests/async.test index db21333..cb67cc2 100644 --- a/tests/async.test +++ b/tests/async.test @@ -16,10 +16,11 @@ if {[lsearch [namespace children] ::tcltest] == -1} {      namespace import -force ::tcltest::*  } +::tcltest::loadTestedCommands +catch [list package require -exact Tcltest [info patchlevel]] +  testConstraint testasync [llength [info commands testasync]] -testConstraint threaded [expr { -    [info exists ::tcl_platform(threaded)] && $::tcl_platform(threaded) -}] +testConstraint threaded [::tcl::pkgconfig get threaded]  proc async1 {result code} {      global aresult acode @@ -196,7 +197,7 @@ test async-4.3 {async interrupting loop-less bytecode sequence} -constraints {  	set aresult {Async event not delivered}  	testasync marklater $handle  	set i 0 -    } [string repeat {;incr i;} 1500000] { +    } "[string repeat {;incr i;} 1500000]after 10;" {  	return $aresult      }]] $hm  } -result {test pattern} -cleanup {  | 
