summaryrefslogtreecommitdiff
path: root/tests/chmod/thru-dangling
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-07 17:43:50 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:50:08 +0100
commit50610144b02763f5dd5f6198ceceb88c27c393aa (patch)
treea1b26be1db751817c2b9a4eba7c2a1b18033c5aa /tests/chmod/thru-dangling
parent68a959262aefc5377f5a654d72e71dd42376183e (diff)
downloadcoreutils-50610144b02763f5dd5f6198ceceb88c27c393aa.tar.xz
tests: adjust \`...' quoting to '...' to adapt to latest gnulib
Run this: git grep -l "\\\\\`[^']*'" tests \ |xargs perl -pi -e 's/\\\`(.*?'\'')/'\''$1/g
Diffstat (limited to 'tests/chmod/thru-dangling')
-rwxr-xr-xtests/chmod/thru-dangling2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chmod/thru-dangling b/tests/chmod/thru-dangling
index f8c02f552..78124009f 100755
--- a/tests/chmod/thru-dangling
+++ b/tests/chmod/thru-dangling
@@ -25,7 +25,7 @@ ln -s non-existent dangle || framework_failure_
# This operation cannot succeed since the symbolic link dangles.
chmod 644 dangle 2> out && fail=1
-echo "chmod: cannot operate on dangling symlink \`dangle'" > exp
+echo "chmod: cannot operate on dangling symlink 'dangle'" > exp
compare exp out || fail=1
Exit $fail