diff options
author | Jim Meyering <meyering@redhat.com> | 2012-04-03 21:34:57 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-04-04 12:22:24 +0200 |
commit | b1e9cb9cd2945832b914922fa43808d6f467ba19 (patch) | |
tree | 30638ff9760d11dc100c01a091de0e63c4137d27 /tests/misc/pwd-long | |
parent | e43d30eab3215bc9ff49ec7db3d3e2baa95ba070 (diff) | |
download | coreutils-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/pwd-long')
-rwxr-xr-x | tests/misc/pwd-long | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/pwd-long b/tests/misc/pwd-long index a030a1856..051509a7d 100755 --- a/tests/misc/pwd-long +++ b/tests/misc/pwd-long @@ -97,7 +97,7 @@ my $pwd_binary = "$build_src_dir/pwd"; -x $pwd_binary or die "$ME: $pwd_binary is not an executable file\n"; -chomp (my $actual = `$pwd_binary`); +chomp (my $actual = qx!$pwd_binary!); # Convert the absolute name from pwd into a $CWD-relative name. # This is necessary in order to avoid a spurious failure when run |