summaryrefslogtreecommitdiff
path: root/tests/misc/uniq
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-04-03 21:34:57 +0200
committerJim Meyering <meyering@redhat.com>2012-04-04 12:22:24 +0200
commitb1e9cb9cd2945832b914922fa43808d6f467ba19 (patch)
tree30638ff9760d11dc100c01a091de0e63c4137d27 /tests/misc/uniq
parente43d30eab3215bc9ff49ec7db3d3e2baa95ba070 (diff)
downloadcoreutils-b1e9cb9cd2945832b914922fa43808d6f467ba19.tar.xz
tests: use perl's qx!...! rather than `...`
* tests/misc/expr: As above. * tests/misc/ls-misc: Likewise. * tests/misc/pwd-long: Likewise. * tests/misc/uniq: Likewise.
Diffstat (limited to 'tests/misc/uniq')
-rwxr-xr-xtests/misc/uniq2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/uniq b/tests/misc/uniq
index f7211a330..91028a9c7 100755
--- a/tests/misc/uniq
+++ b/tests/misc/uniq
@@ -86,7 +86,7 @@ my $locale = $ENV{LOCALE_FR};
and CuSkip::skip "$prog: skipping this test -- no appropriate locale\n";
# See if isblank returns true for nbsp.
-my $x = `env printf '\xa0'| LC_ALL=$locale tr '[:blank:]' x`;
+my $x = qx!env printf '\xa0'| LC_ALL=$locale tr '[:blank:]' x!;
# If so, expect just one line of output in the schar test.
# Otherwise, expect two.
my $in = " y z\n\xa0 y z\n";