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/chgrp | |
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/chgrp')
-rwxr-xr-x | tests/chgrp/no-x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chgrp/no-x b/tests/chgrp/no-x index 56357fe84..200fa3221 100755 --- a/tests/chgrp/no-x +++ b/tests/chgrp/no-x @@ -46,7 +46,7 @@ sed "s/^$prog: cannot read directory /$prog: /" out > t && mv t out sed 's,d/no-x/y,d/no-x,' out > t && mv t out cat <<EOF > exp -$prog: \`d/no-x': Permission denied +$prog: 'd/no-x': Permission denied EOF compare exp out || fail=1 |