summaryrefslogtreecommitdiff
path: root/tests/rm/i-1
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-08-15 03:04:06 +0000
committerJim Meyering <jim@meyering.net>1998-08-15 03:04:06 +0000
commitf2d4fc8016ca7a7b2525ccfccd6e8ee5710277e1 (patch)
treeabe4125e50c6b5952dfb24fe84126cca6c10bf7b /tests/rm/i-1
parentbf57f4af46f5a8f174cfdf60a33da497bfa87f4b (diff)
downloadcoreutils-f2d4fc8016ca7a7b2525ccfccd6e8ee5710277e1.tar.xz
Avoid bug in Ultrix4.3a /bin/sh,
not initializing output redirection of : command.
Diffstat (limited to 'tests/rm/i-1')
-rwxr-xr-xtests/rm/i-12
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/i-1 b/tests/rm/i-1
index f16aaf2ed..4020132c5 100755
--- a/tests/rm/i-1
+++ b/tests/rm/i-1
@@ -15,7 +15,7 @@ tmp=$RM_TMPDIR/t-rm.$$
test_failure=0
mkdir $tmp || test_failure=1
-: > $tmp/a || test_failure=1
+echo > $tmp/a || test_failure=1
test -f $tmp/a || test_failure=1
if test $test_failure = 1; then