📄 testall
字号:
#!/bin/sh -# $Id: testall,v 1.3 2001/09/13 14:49:36 dda Exp $## Run all the C++ regression testsecode=0prefixarg=""stdinarg=""while :do case "$1" in --prefix=* ) prefixarg="$1"; shift;; --stdin ) stdinarg="$1"; shift;; * ) break esacdonefiles="`find . -name \*.cpp -print`"for file in $files; do name=`echo $file | sed -e 's:^\./::' -e 's/\.cpp$//'` if grep $name ignore > /dev/null; then echo " **** cxx test $name ignored" else echo " ==== cxx test $name" if ! sh ./testone $prefixarg $stdinarg $name; then ecode=1 fi fidoneexit $ecode
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -