From: Jim Meyering Date: Wed, 2 Feb 2000 14:03:56 +0000 (+0000) Subject: sheesh X-Git-Tag: SH-UTILS-2_0f~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=177daedd5eb60fb77f27d6c9929cd7b21bfc91b0;p=thirdparty%2Fcoreutils.git sheesh --- diff --git a/tests/touch/fifo b/tests/touch/fifo index b1a436d97b..69c83bdb6a 100755 --- a/tests/touch/fifo +++ b/tests/touch/fifo @@ -8,8 +8,9 @@ fi framework_failure=0 -rm -rf fifo -mkfifo fifo || framework_failure=1 +tmp=fifo-$$ +rm -rf $tmp +mkfifo $tmp || framework_failure=1 if test $framework_failure = 1; then echo 'failure in testing framework' @@ -18,7 +19,7 @@ fi fail=0 -touch fifo || fail=1 -rm -rf fifo +touch $tmp || fail=1 +rm -rf $tmp exit $fail