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/du | |
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/du')
-rwxr-xr-x | tests/du/no-x | 2 | ||||
-rwxr-xr-x | tests/du/slink | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/du/no-x b/tests/du/no-x index 1737c0124..9ba70770d 100755 --- a/tests/du/no-x +++ b/tests/du/no-x @@ -41,7 +41,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 diff --git a/tests/du/slink b/tests/du/slink index 4117d8ee0..99677f96c 100755 --- a/tests/du/slink +++ b/tests/du/slink @@ -27,7 +27,7 @@ require_local_dir_ if df --type=xfs . >/dev/null 2>&1; then # At least on Irix-6.5.19, when using an xfs file system, # each created symlink (name lengths up to 255) would have a size of `0'. - skip_ "\`.' is on an XFS file system" + skip_ "'.' is on an XFS file system" fi symlink_name_lengths='1 15 16 31 32 59 60 63 64 127 128 255 256 511 512 1024' |