📄 all.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -