testall

来自「mysql-5.0.22.tar.gz源码包」· 代码 · 共 33 行

TXT
33
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?