diff options
author | Jim Meyering <jim@meyering.net> | 1997-10-19 03:20:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-10-19 03:20:04 +0000 |
commit | 916300ba272725f4ee113d910f16cf91bb38abf5 (patch) | |
tree | 8efa55a7ca46503e38d4f4cb84137875dd29b399 /tests/rm | |
parent | 22b1971cbce2413f49457fee8688510ce99de489 (diff) | |
download | coreutils-916300ba272725f4ee113d910f16cf91bb38abf5.tar.xz |
*** empty log message ***
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/deep-1 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/rm/deep-1 b/tests/rm/deep-1 index 30d3bc08e..b567aab70 100755 --- a/tests/rm/deep-1 +++ b/tests/rm/deep-1 @@ -36,15 +36,18 @@ k_deep=$k200$k200 # Create a directory in $tmp with lots of `k' components. deep=$tmp$k_deep -echo "creating a hierarchy 400 deep in $tmp..." +echo "creating a hierarchy 400 deep in $tmp..." |tr -d '\012' $MKDIR -p $deep || fail=1 +echo done find $tmp > k # Make sure the deep dir was created. test -d $deep || fail=1 +echo "deleting $tmp..." |tr -d '\012' $RM -r $tmp || fail=1 +echo done # Make sure all of $tmp was deleted. test -d $tmp && fail=1 |