summaryrefslogtreecommitdiffstats
path: root/tests/unixNotfy.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unixNotfy.test')
-rw-r--r--tests/unixNotfy.test6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/unixNotfy.test b/tests/unixNotfy.test
index 9684bfe..2a17098 100644
--- a/tests/unixNotfy.test
+++ b/tests/unixNotfy.test
@@ -69,9 +69,8 @@ test unixNotfy-2.1 {Tcl_DeleteFileHandler} \
fileevent $f writable {set x 1}
vwait x
close $f
- set t [thread::create -preserved "thread::send [thread::id] {set x ok}"]
+ thread::create "thread::send [thread::id] {set x ok}"
vwait x
- thread::release $t
set x
} \
-result {ok} \
@@ -91,9 +90,8 @@ test unixNotfy-2.2 {Tcl_DeleteFileHandler} \
close $f1
vwait y
close $f2
- set t [thread::create -preserved "thread::send [thread::id] {set x ok}"]
+ thread::create "thread::send [thread::id] {set x ok}"
vwait x
- thread::release $t
set x
} \
-result {ok} \