all
来自「这是一个Linux下的集成开发环境」· 代码 · 共 22 行
TXT
22 行
# This file contains a top-level script to run all of the Tcl# tests. Execute it by invoking "source all" when running tclTest# in this directory.## SCCS: @(#) all 1.7 96/02/16 08:55:38# ------------------------------------------------------------------# THIS SCRIPT IS NOW DEPRECATED! It is kept for older Tcl# installations that don't have the "tcltest" package.# Instead, use the "all.tcl" script to run the test suite.# ------------------------------------------------------------------foreach i [lsort [glob *.test]] { if [string match l.*.test $i] { # This is an SCCS lock file; ignore it. continue } puts stdout $i if [catch {source $i} msg] { puts $msg } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?