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/mv/part-fail | |
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/mv/part-fail')
-rwxr-xr-x | tests/mv/part-fail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mv/part-fail b/tests/mv/part-fail index 4fe6ddc4e..ed74e02b5 100755 --- a/tests/mv/part-fail +++ b/tests/mv/part-fail @@ -38,7 +38,7 @@ printf \ # On some (less-compliant) systems, we get EPERM in this case. # Accept either diagnostic. cat <<EOF > exp2 -mv: cannot move \`k' to \`$other_partition_tmpdir/k': Permission denied +mv: cannot move 'k' to '$other_partition_tmpdir/k': Permission denied EOF if cmp out exp >/dev/null 2>&1; then |