diff options
author | Jim Meyering <jim@meyering.net> | 2002-06-02 20:35:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-06-02 20:35:07 +0000 |
commit | 09184490e99493b6b1cb9f39aa250417857a6b94 (patch) | |
tree | 6a403acbe5f3b08eb533cb2c9f5f46212aec801a /tests/rm | |
parent | c27d78e6e074105a38775a3542ff7255df0bd822 (diff) | |
download | coreutils-09184490e99493b6b1cb9f39aa250417857a6b94.tar.xz |
don't give a diagnostic about each parent
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/rm1 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/rm/rm1 b/tests/rm/rm1 index 1265242a4..8bcd6fd04 100755 --- a/tests/rm/rm1 +++ b/tests/rm/rm1 @@ -30,9 +30,8 @@ fail=0 # This should fail. rm -rf b > out 2>&1 && fail=1 -cat <<EOF > exp -rm: cannot remove \`b/a/p': Permission denied -rm: cannot remove directory \`b': Directory not empty +cat <<\EOF > exp +rm: cannot remove directory `b/a/p': Permission denied EOF cmp out exp || fail=1 |