diff options
author | Jim Meyering <jim@meyering.net> | 2006-02-11 20:55:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-02-11 20:55:58 +0000 |
commit | 29dc2a0dfc7adfb4359159421b90b20afe960e62 (patch) | |
tree | 9e6c843ed603a74b32de0cd599b89d90af8e741c /tests/rm | |
parent | 15ee70a510b3050c695b3a4887b50a4c8d0831a9 (diff) | |
download | coreutils-29dc2a0dfc7adfb4359159421b90b20afe960e62.tar.xz |
Adjust two expected diagnostics, now that they're
a tiny bit less precise: cannot remove `a/1': ... instead of
cannot open directory `a/1': ...
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/rm2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rm/rm2 b/tests/rm/rm2 index 37aefed94..00ea855b7 100755 --- a/tests/rm/rm2 +++ b/tests/rm/rm2 @@ -35,8 +35,8 @@ fail=0 # Both of these should fail. rm -rf a b > out 2>&1 && fail=1 cat <<\EOF > exp -rm: cannot open directory `a/1': Permission denied -rm: cannot open directory `b': Permission denied +rm: cannot remove `a/1': Permission denied +rm: cannot remove `b': Permission denied EOF cat <<\EOF > exp-solaris |