diff options
author | nijtmans <nijtmans> | 2010-01-06 21:35:21 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-01-06 21:35:21 (GMT) |
commit | 0ca164f2c3f073eea996040b76aa89e44fe81e1a (patch) | |
tree | e6ad158e27cb4aae64737fd8c11326891a51ac7f /tests/stack.test | |
parent | 6c429a0ad16df02718539a22c3e9f8d9b92df937 (diff) | |
download | tcl-0ca164f2c3f073eea996040b76aa89e44fe81e1a.zip tcl-0ca164f2c3f073eea996040b76aa89e44fe81e1a.tar.gz tcl-0ca164f2c3f073eea996040b76aa89e44fe81e1a.tar.bz2 |
Various trivial fixes, discovered during CYGWIN porting attempt. All backported from trunk.
Diffstat (limited to 'tests/stack.test')
-rw-r--r-- | tests/stack.test | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/stack.test b/tests/stack.test index 2281c00..3a5c207 100644 --- a/tests/stack.test +++ b/tests/stack.test @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: stack.test,v 1.22 2007/12/13 15:26:07 dgp Exp $ +# RCS: @(#) $Id: stack.test,v 1.22.2.1 2010/01/06 21:35:25 nijtmans Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -23,15 +23,15 @@ if {[lsearch [namespace children] ::tcltest] == -1} { # This doesn't catch all cases, for example threads of lower stacksize # can still squeak through. A core check is really needed. -- JH -testConstraint minStack2400 1 +testConstraint minStack2034 1 if {[testConstraint unix]} { set stackSize [exec /bin/sh -c "ulimit -s"] - if {[string is integer $stackSize] && ($stackSize < 2400)} { + if {[string is integer $stackSize] && ($stackSize < 2034)} { puts stderr "WARNING: the default application stacksize of $stackSize\ may cause Tcl to\ncrash due to stack overflow before the\ - recursion limit is reached.\nA minimum stacksize of 2400\ + recursion limit is reached.\nA minimum stacksize of 2034\ kbytes is recommended.\nSkipping infinite recursion test." - testConstraint minStack2400 0 + testConstraint minStack2034 0 } } @@ -49,7 +49,7 @@ proc StackOverflow {- res} { } test stack-1.1 {maxNestingDepth reached on infinite recursion} -constraints { - minStack2400 + minStack2034 } -body { # do this in a sub process in case it segfaults exec [interpreter] << { @@ -60,7 +60,7 @@ test stack-1.1 {maxNestingDepth reached on infinite recursion} -constraints { } -match stackOverflow test stack-2.1 {maxNestingDepth reached on infinite recursion} -constraints { - minStack2400 + minStack2034 } -body { # do this in a sub process in case it segfaults exec [interpreter] << { |