📄 assert-2
字号:
#!/bin/sh# This variant of `assert' would get a UMR reliably in 2.0.9.# Due to a race condition in the test, the `assert' script would get# the UMR on Solaris only some of the time, and not at all on Linux/GNU.if test "$VERBOSE" = yes; then set -x tail --versionfitmp=tail-as2.$$pwd=`pwd`trap "cd $pwd; rm -rf $tmp" 0 1 2 3 15test_failure=0mkdir $tmp || test_failure=1cd $tmp || test_failure=1if test $test_failure = 1; then echo 'failure in testing framework' exit 1fiok='ok ok ok'touch atail --follow=name a foo > err 2>&1 &tail_pid=$!# Arrange for the tail process to die after 12 seconds.(sleep 12; kill $tail_pid) &echo $ok > fecho sleeping for 7 seconds...sleep 7mv f foo# echo waiting....waitcase "`cat err`" in *$ok) fail=0;; *) fail=1;;esactest $fail = 1 && cat errexit $fail
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -