diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-19 21:56:36 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-19 21:56:36 (GMT) |
commit | 4fb6d54c3cbe8ac23f1789bc21de3b5d104859ce (patch) | |
tree | d32a5f5a8c9697ebb117154a74d05b95161df3f6 /tests/interp.test | |
parent | bb3bf75ad9ba1ebd99869d5a4298148d0825919c (diff) | |
download | tcl-4fb6d54c3cbe8ac23f1789bc21de3b5d104859ce.zip tcl-4fb6d54c3cbe8ac23f1789bc21de3b5d104859ce.tar.gz tcl-4fb6d54c3cbe8ac23f1789bc21de3b5d104859ce.tar.bz2 |
Enable a test of limiting tight loops.
Diffstat (limited to 'tests/interp.test')
-rw-r--r-- | tests/interp.test | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/interp.test b/tests/interp.test index 8c0f7b7..6313780 100644 --- a/tests/interp.test +++ b/tests/interp.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: interp.test,v 1.33 2004/05/19 20:29:17 dkf Exp $ +# RCS: @(#) $Id: interp.test,v 1.34 2004/05/19 21:56:37 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2.1 @@ -2898,7 +2898,7 @@ test interp-34.2 {basic test of limits - bytecoded commands} -body { } -returnCodes error -result {command count limit exceeded} -cleanup { interp delete $i } -test interp-34.3 {basic test of limits - pure bytecode loop} knownBug { +test interp-34.3 {basic test of limits - pure bytecode loop} -body { set i [interp create] $i eval { proc foobar {} { @@ -2907,11 +2907,12 @@ test interp-34.3 {basic test of limits - pure bytecode loop} knownBug { } } } - $i limit command -value 1000 - set msg [list [catch {$i eval foobar} msg] $msg] + # We use a time limit here; command limits don't trap this case + $i limit time -seconds [expr {[clock seconds]+2}] + $i eval foobar +} -returnCodes error -result {time limit exceeded} -cleanup { interp delete $i - set msg -} {1 {command count limit exceeded}} +} test interp-34.4 {limits with callbacks: extending limits} -setup { set i [interp create] set a 0 |