From 177daedd5eb60fb77f27d6c9929cd7b21bfc91b0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 2 Feb 2000 14:03:56 +0000 Subject: [PATCH] sheesh --- tests/touch/fifo | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 2.47.3