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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  while
  2. #
  3. # This file contains the original set of tests for Tcl's while command.
  4. # Since the while command is now compiled, a new set of tests covering
  5. # the new implementation is in the file "while.test". Sourcing this file
  6. # into Tcl runs the tests and generates output for errors.
  7. # No output means no errors were found.
  8. #
  9. # Copyright (c) 1991-1993 The Regents of the University of California.
  10. # Copyright (c) 1994-1996 Sun Microsystems, Inc.
  11. # Copyright (c) 1998-1999 by Scriptics Corporation.
  12. #
  13. # See the file "license.terms" for information on usage and redistribution
  14. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  15. #
  16. # RCS: @(#) $Id: while-old.test,v 1.6 2000/04/10 17:19:06 ericm Exp $
  17. if {[lsearch [namespace children] ::tcltest] == -1} {
  18.     package require tcltest
  19.     namespace import -force ::tcltest::*
  20. }
  21. test while-old-1.1 {basic while loops} {
  22.     set count 0
  23.     while {$count < 10} {set count [expr $count+1]}
  24.     set count
  25. } 10
  26. test while-old-1.2 {basic while loops} {
  27.     set value xxx
  28.     while {2 > 3} {set value yyy}
  29.     set value
  30. } xxx
  31. test while-old-1.3 {basic while loops} {
  32.     set value 1
  33.     while {"true"} {
  34. incr value;
  35. if {$value > 5} {
  36.     break;
  37. }
  38.     }
  39.     set value
  40. } 6
  41. test while-old-1.4 {basic while loops, multiline test expr} {
  42.     set value 1
  43.     while {($tcl_platform(platform) != "foobar1") && 
  44.     ($tcl_platform(platform) != "foobar2")} {
  45.         incr value
  46.         break
  47.     }
  48.     set value
  49. } {2}
  50. test while-old-1.5 {basic while loops, test expr in quotes} {
  51.     set value 1
  52.     while "0 < 3" {set value 2; break}
  53.     set value
  54. } {2}
  55. test while-old-2.1 {continue in while loop} {
  56.     set list {1 2 3 4 5}
  57.     set index 0
  58.     set result {}
  59.     while {$index < 5} {
  60. if {$index == 2} {set index [expr $index+1]; continue}
  61. set result [concat $result [lindex $list $index]]
  62. set index [expr $index+1]
  63.     }
  64.     set result
  65. } {1 2 4 5}
  66. test while-old-3.1 {break in while loop} {
  67.     set list {1 2 3 4 5}
  68.     set index 0
  69.     set result {}
  70.     while {$index < 5} {
  71. if {$index == 3} break
  72. set result [concat $result [lindex $list $index]]
  73. set index [expr $index+1]
  74.     }
  75.     set result
  76. } {1 2 3}
  77. test while-old-4.1 {errors in while loops} {
  78.     set err [catch {while} msg]
  79.     list $err $msg
  80. } {1 {wrong # args: should be "while test command"}}
  81. test while-old-4.2 {errors in while loops} {
  82.     set err [catch {while 1} msg]
  83.     list $err $msg
  84. } {1 {wrong # args: should be "while test command"}}
  85. test while-old-4.3 {errors in while loops} {
  86.     set err [catch {while 1 2 3} msg]
  87.     list $err $msg
  88. } {1 {wrong # args: should be "while test command"}}
  89. test while-old-4.4 {errors in while loops} {
  90.     set err [catch {while {"a"+"b"} {error "loop aborted"}} msg]
  91.     list $err $msg
  92. } {1 {can't use non-numeric string as operand of "+"}}
  93. test while-old-4.5 {errors in while loops} {
  94.     catch {unset x}
  95.     set x 1
  96.     set err [catch {while {$x} {set x foo}} msg]
  97.     list $err $msg
  98. } {1 {expected boolean value but got "foo"}}
  99. test while-old-4.6 {errors in while loops} {
  100.     set err [catch {while {1} {error "loop aborted"}} msg]
  101.     list $err $msg $errorInfo
  102. } {1 {loop aborted} {loop aborted
  103.     while executing
  104. "error "loop aborted""}}
  105. test while-old-5.1 {while return result} {
  106.     while {0} {set a 400}
  107. } {}
  108. test while-old-5.2 {while return result} {
  109.     set x 1
  110.     while {$x} {set x 0}
  111. } {}
  112. # cleanup
  113. ::tcltest::cleanupTests
  114. return