diff options
-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 |