summaryrefslogtreecommitdiff
path: root/tests/rm/deep-1
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-14 06:26:34 +0000
committerJim Meyering <jim@meyering.net>2003-05-14 06:26:34 +0000
commit01d63f13e81d0623d753d6521076c79d355d1921 (patch)
treec1965f26944090986585ef48750d58fb794a7ad4 /tests/rm/deep-1
parent00a770a30e17ee037bff676b48390bdfff466187 (diff)
downloadcoreutils-01d63f13e81d0623d753d6521076c79d355d1921.tar.xz
Use tr's \n notation rather than \012.
Diffstat (limited to 'tests/rm/deep-1')
-rwxr-xr-xtests/rm/deep-14
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rm/deep-1 b/tests/rm/deep-1
index 21702ad0e..f653be9ba 100755
--- a/tests/rm/deep-1
+++ b/tests/rm/deep-1
@@ -31,14 +31,14 @@ 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..." |tr -d '\012'
+echo "creating a hierarchy 400 deep in $tmp..." |tr -d '\n'
mkdir -p $deep || fail=1
echo done
# Make sure the deep dir was created.
test -d $deep || fail=1
-echo "deleting $tmp..." |tr -d '\012'
+echo "deleting $tmp..." |tr -d '\n'
rm -r $tmp || fail=1
echo done