1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

tests: change `...' to '...' on lines not matching /[=\$]/

Exempt lines with '$' or '=', since those are prone to improper
conversion.  Run this:
  git grep -l "\`[^']*'" tests \
   |xargs perl -pi -e '/[=\$]/ and next;s/\`([^'\''"]*?'\'')/'\''$1/g'
This commit is contained in:
Jim Meyering
2012-01-07 17:47:58 +01:00
parent 50610144b0
commit dd0e4c5621
155 changed files with 371 additions and 371 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/sh
# On GNU, `id' must fail for processes with zero UIDs.
# On GNU, 'id' must fail for processes with zero UIDs.
# Copyright (C) 2011-2012 Free Software Foundation, Inc.
@@ -23,7 +23,7 @@ require_gnu_
sush - true || skip_ "the 'sush' command does not work"
# Run `id' with zero UIDs. It should exit with a non-zero status.
# Run 'id' with zero UIDs. It should exit with a non-zero status.
sush - id > out && fail=1
Exit $fail