⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runtests

📁 早期freebsd实现
💻
字号:
:#!/bin/sh##       @(#)runtests	1.2 90/01/03 NFS Rev 2 testsuite## If the initialization file is present, assume we are in the distribution# tree and that we must copy the tests to the test directory.  Otherwise,# we are in the test directory and can just run the testsInitFile="../tests.init"if test -f $InitFilethen	. $InitFile	echo "SPECIAL TESTS: directory $NFSTESTDIR"	mkdir $NFSTESTDIR	if test ! -d $NFSTESTDIR	then		echo "Can't make directory $NFSTESTDIR"		exit 1	fi	make copy DESTDIR=$NFSTESTDIR	cd $NFSTESTDIRelse	NFSTESTDIR=`pwd`	export PATH	echo "SPECIAL TESTS: directory $NFSTESTDIR"fiexec sh runtests.wrk FROM_RUNTESTS

⌨️ 快捷键说明

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