stack.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Tests that the stack size is big enough for the application.
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1998-2000 Ajuba Solutions.
  8. #
  9. # See the file "license.terms" for information on usage and redistribution
  10. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11. #
  12. # RCS: @(#) $Id: stack.test,v 1.15.2.1 2004/05/03 18:01:36 kennykb Exp $
  13. if {[lsearch [namespace children] ::tcltest] == -1} {
  14.     package require tcltest 2
  15.     namespace import -force ::tcltest::*
  16. }
  17. # Note that a failure in this test results in a crash of the executable.
  18. # In order to avoid that, we do a basic check of the current stacksize.
  19. # This size can be changed with ulimit (ksh/bash/sh) or limit (csh/tcsh).
  20. # This doesn't catch all cases, for example threads of lower stacksize
  21. # can still squeak through.  A core check is really needed. -- JH
  22. if {[string equal $::tcl_platform(platform) "unix"]} {
  23.     set stackSize [exec /bin/sh -c "ulimit -s"]
  24.     if {[string is integer $stackSize] && ($stackSize < 2400)} {
  25.         puts stderr "WARNING: the default application stacksize of $stackSize
  26.                 may cause Tcl toncrash due to stack overflow before the
  27.                 recursion limit is reached.nA minimum stacksize of 2400
  28.                 kbytes is recommended.nSkipping infinite recursion test."
  29.         ::tcltest::testConstraint minStack2400 0
  30.     } else {
  31.         ::tcltest::testConstraint minStack2400 1
  32.     }
  33. } else {
  34.     ::tcltest::testConstraint minStack2400 1
  35. }
  36. test stack-1.1 {maxNestingDepth reached on infinite recursion} {minStack2400} {
  37.     proc recurse {} { return [recurse] }
  38.     catch {recurse} rv
  39.     rename recurse {}
  40.     set rv
  41. } {too many nested evaluations (infinite loop?)}
  42. test stack-2.1 {maxNestingDepth reached on infinite recursion} {minStack2400} {
  43.     # do this in a slave to not mess with parent
  44.     set slave stack-2.1
  45.     interp create $slave
  46.     $slave eval { interp alias {} unknown {} notaknownproc }
  47.     set msg [$slave eval { catch {foo} msg ; set msg }]
  48.     interp delete $slave
  49.     set msg
  50. } {too many nested evaluations (infinite loop?)}
  51. # Make sure that there is enough stack to run regexp even if we're
  52. # close to the recursion limit. [Bug 947070]
  53. test stack-3.1 {enough room for regexp near recursion limit} 
  54.     -constraints { win } 
  55.     -setup {
  56. set ::limit [interp recursionlimit {} 10000]
  57. set ::depth 0
  58. proc a { max } {
  59.     if { [info level] < $max } {
  60. set ::depth [info level]
  61. a $max
  62.     } else {
  63. regexp {^ ?} x
  64.     }
  65. }
  66. list [catch { a 10001 }]
  67. incr depth -3
  68. set depth2 $depth
  69.     } -body {
  70. list [catch { a $::depth } result] 
  71.     $result [expr { $::depth2 - $::depth }]
  72.     } -cleanup {
  73. interp recursionlimit {} $::limit
  74.     } -result {0 1 1}
  75. # cleanup
  76. ::tcltest::cleanupTests
  77. return
  78. # Local Variables:
  79. # mode: tcl
  80. # End: