all.sh

来自「支持SSL v2/v3, TLS, PKCS #5, PKCS #7, PKCS」· Shell 代码 · 共 36 行

SH
36
字号
#!/bin/sh## Run all our tests#CURDIR=`pwd`TESTS="sdr ssl cipher smime"cd common. ./init.shexport MOZILLA_ROOTexport COMMONexport DISTexport SECURITY_ROOTexport TESTDIRexport OBJDIRexport HOSTDIRLOGFILE=${HOSTDIR}/output.logexport LOGFILEtouch ${LOGFILE}tail -f ${LOGFILE}  &TAILPID=$!trap "kill ${TAILPID}; exit" 2 for i in ${TESTS}do	echo "Running Tests for $i"## All tells the test suite to run through all their tests.# file tells the test suite that the output is going to a log, so any#  forked() children need to redirect their output to prevent them from#  being over written.	(cd ${CURDIR}/$i ; ./${i}.sh all file >> ${LOGFILE} 2>&1)#	cd ${CURDIR}/$i ; ./${i}.sh donekill ${TAILPID}

⌨️ 快捷键说明

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