diff options
author | mig <mig> | 2013-02-28 14:19:04 (GMT) |
---|---|---|
committer | mig <mig> | 2013-02-28 14:19:04 (GMT) |
commit | f64e191a21656662cf0198592bf14af07fe7de0e (patch) | |
tree | 3f7954f54b60010d3ffbea05da554f31c9506e4b | |
parent | d26dbcc674a5cac3ff627bf6fde8f8423cb15759 (diff) | |
download | tcl-f64e191a21656662cf0198592bf14af07fe7de0e.zip tcl-f64e191a21656662cf0198592bf14af07fe7de0e.tar.gz tcl-f64e191a21656662cf0198592bf14af07fe7de0e.tar.bz2 |
fix coroutine-4.6 so that it runs in isolation, [Bug 3606395]
-rw-r--r-- | tests/coroutine.test | 2 |
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} } |