diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-05 16:21:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-05 16:21:23 +0000 |
commit | 4795aa1810e72e5d2948f440b0caa5ed93b6a696 (patch) | |
tree | 941105bae297e9279163c224cb0e0e8e77c9d422 /tests | |
parent | 84b0d3667b3021660ce98a159bd54737bcb4ec42 (diff) | |
download | coreutils-4795aa1810e72e5d2948f440b0caa5ed93b6a696.tar.xz |
Add a comment explaining why this test fails when using Tru64's broken sed.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/rm/rm3 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/rm/rm3 b/tests/rm/rm3 index 0f0bce83b..d0a87d8cc 100755 --- a/tests/rm/rm3 +++ b/tests/rm/rm3 @@ -49,6 +49,8 @@ EOF # Both of these should fail. rm -ir z < in > out 2>&1 || fail=1 +# The following loses with Tru64's sed, since that sed mistakenly +# tacks a newline onto the end of the file. tr '?' '\012' < out |sed 's/^ //' |sort > o2 mv o2 out |