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

通讯编程

开发平台:

Visual C++

  1. # all.tcl --
  2. #
  3. # This file contains a top-level script to run all of the Tcl
  4. # tests.  Execute it by invoking "source all.test" when running tcltest
  5. # in this directory.
  6. #
  7. # Copyright (c) 1998-1999 by Scriptics Corporation.
  8. # Copyright (c) 2000 by Ajuba Solutions
  9. #
  10. # See the file "license.terms" for information on usage and redistribution
  11. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. # RCS: @(#) $Id: all.tcl,v 1.16 2002/04/10 19:57:15 hobbs Exp $
  13. set tcltestVersion [package require tcltest]
  14. namespace import -force tcltest::*
  15. if {$tcl_platform(platform) == "macintosh"} {
  16. tcltest::singleProcess 1
  17. }
  18. tcltest::testsDirectory [file dir [info script]]
  19. tcltest::runAllTests
  20. return