summaryrefslogtreecommitdiff
path: root/tests/rm/dir-no-w
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-07 17:47:58 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:50:08 +0100
commitdd0e4c5621ca2fa9255aef4eee0e7cf41cd335d2 (patch)
tree5194ff517669cfb08a3ba329658b45870ab063bd /tests/rm/dir-no-w
parent50610144b02763f5dd5f6198ceceb88c27c393aa (diff)
downloadcoreutils-dd0e4c5621ca2fa9255aef4eee0e7cf41cd335d2.tar.xz
tests: change `...' to '...' on lines not matching /[=\$]/
Exempt lines with '$' or '=', since those are prone to improper conversion. Run this: git grep -l "\`[^']*'" tests \ |xargs perl -pi -e '/[=\$]/ and next;s/\`([^'\''"]*?'\'')/'\''$1/g'
Diffstat (limited to 'tests/rm/dir-no-w')
-rwxr-xr-xtests/rm/dir-no-w6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rm/dir-no-w b/tests/rm/dir-no-w
index 74dfa0c13..0342956ba 100755
--- a/tests/rm/dir-no-w
+++ b/tests/rm/dir-no-w
@@ -26,13 +26,13 @@ mkdir --mode=0500 unwritable-dir || framework_failure_
# For rm from coreutils-5.0.1, this would prompt.
rm ---presume-input-tty unwritable-dir < /dev/null > out-t 2>&1 && fail=1
cat <<\EOF > exp || fail=1
-rm: cannot remove `unwritable-dir': Is a directory
+rm: cannot remove 'unwritable-dir': Is a directory
EOF
# When run by a non-privileged user we get this:
-# rm: cannot remove directory `unwritable-dir': Is a directory
+# rm: cannot remove directory 'unwritable-dir': Is a directory
# When run by root we get this:
-# rm: cannot remove `unwritable-dir': Is a directory
+# rm: cannot remove 'unwritable-dir': Is a directory
# Normalize the message.
sed 's/remove directory/remove/' out-t > out
rm -f out-t