diff options
author | Jim Meyering <meyering@redhat.com> | 2012-01-07 17:43:50 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-01-09 21:50:08 +0100 |
commit | 50610144b02763f5dd5f6198ceceb88c27c393aa (patch) | |
tree | a1b26be1db751817c2b9a4eba7c2a1b18033c5aa /tests/chown | |
parent | 68a959262aefc5377f5a654d72e71dd42376183e (diff) | |
download | coreutils-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/chown')
-rwxr-xr-x | tests/chown/basic | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chown/basic b/tests/chown/basic index d602e188b..f5958b768 100755 --- a/tests/chown/basic +++ b/tests/chown/basic @@ -30,12 +30,12 @@ set _ `ls -n f`; shift; test "$3:$4" = 0:1 || fail=1 # Make sure the correct diagnostic is output # Note we output a name even though an id was specified. chown -v --from=42 43 f > out || fail=1 -printf "ownership of \`f' retained as `id -nu`\n" > exp +printf "ownership of 'f' retained as `id -nu`\n" > exp compare exp out || fail=1 # Ensure diagnostics work for non existent files. chown -v 0 nf > out && fail=1 -printf "failed to change ownership of \`nf' to 0\n" > exp +printf "failed to change ownership of 'nf' to 0\n" > exp compare exp out || fail=1 chown --from=0:1 2:010 f || fail=1 |