summaryrefslogtreecommitdiffstats
path: root/tests/coroutine.test
diff options
context:
space:
mode:
authormig <mig>2013-02-28 14:19:04 (GMT)
committermig <mig>2013-02-28 14:19:04 (GMT)
commitf64e191a21656662cf0198592bf14af07fe7de0e (patch)
tree3f7954f54b60010d3ffbea05da554f31c9506e4b /tests/coroutine.test
parentd26dbcc674a5cac3ff627bf6fde8f8423cb15759 (diff)
downloadtcl-f64e191a21656662cf0198592bf14af07fe7de0e.zip
tcl-f64e191a21656662cf0198592bf14af07fe7de0e.tar.gz
tcl-f64e191a21656662cf0198592bf14af07fe7de0e.tar.bz2
fix coroutine-4.6 so that it runs in isolation, [Bug 3606395]
Diffstat (limited to 'tests/coroutine.test')
-rw-r--r--tests/coroutine.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/coroutine.test b/tests/coroutine.test
index 8272717..1d9040b 100644
--- a/tests/coroutine.test
+++ b/tests/coroutine.test
@@ -439,7 +439,7 @@ test coroutine-4.5 {bug #2724403} -constraints {memory} \
} -result 0
test coroutine-4.6 {compile context, bug #3282869} -setup {
- unset ::x
+ unset -nocomplain ::x
proc f x {
coroutine D eval {yield X$x;yield Y}
}