all

来自「linux 下的源代码分析阅读器 red hat公司新版」· 代码 · 共 33 行

TXT
33
字号
## Old test suite for [incr Tcl] v1.5# ----------------------------------------------------------------------#   AUTHOR:  Michael J. McLennan#            Bell Labs Innovations for Lucent Technologies#            mmclennan@lucent.com#            http://www.tcltk.com/itcl##      RCS:  $Id: all 144 2003-02-05 10:56:26Z mdejong $# ----------------------------------------------------------------------#            Copyright (c) 1993-1998  Lucent Technologies, Inc.# ======================================================================# See the file "license.terms" for information on usage and# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.variable WATCHglobal TEST_ABS_TOL TEST_REL_TOLset TEST_ABS_TOL 1.0e-6set TEST_REL_TOL 1.0e-5if {![file readable "testlib.tcl"]} {	error "ERROR: execute test suite in \"tests\" directory"}lappend auto_path .foreach i [lsort [glob ./*.test]] {	source $i}puts stdout "== ALL TESTS SUCCESSFUL =="exit

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?