diff options
author | Jim Meyering <jim@meyering.net> | 1998-01-22 08:33:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-01-22 08:33:02 +0000 |
commit | f7bb262cc8c3cfc4312e80efd781e2c79a5cbd43 (patch) | |
tree | ab3f7b40126058ec32c4417154244d767581da22 /tests/rm/ir-1 | |
parent | d5494d57f574c968f9ced4d81148461bf00b5f01 (diff) | |
download | coreutils-f7bb262cc8c3cfc4312e80efd781e2c79a5cbd43.tar.xz |
minor tweaks
Diffstat (limited to 'tests/rm/ir-1')
-rwxr-xr-x | tests/rm/ir-1 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/rm/ir-1 b/tests/rm/ir-1 index 9c54a9736..71418a305 100755 --- a/tests/rm/ir-1 +++ b/tests/rm/ir-1 @@ -15,7 +15,9 @@ tmp=$RM_TMPDIR/t-rm.$$ test_failure=0 mkdir $tmp $tmp/a $tmp/b $tmp/c || test_failure=1 -touch $tmp/a/a $tmp/b/bb $tmp/c/cc || test_failure=1 +> $tmp/a/a || test_failure=1 +> $tmp/b/bb || test_failure=1 +> $tmp/c/cc || test_failure=1 if test $test_failure = 1; then echo 'failure in testing framework' |