summaryrefslogtreecommitdiff
path: root/t/io/argv.t
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.ohio-state.edu>1996-02-04 16:38:11 -0500
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-02-04 16:38:11 -0500
commitb8440792c4a62245d0033c065af6c1ecb58e6474 (patch)
tree8e0b2f3bfe903378e731442dafbbade447efd25b /t/io/argv.t
parent91bba347dac85baf813d9e41a1de89280909a30c (diff)
downloadperl-b8440792c4a62245d0033c065af6c1ecb58e6474.tar.gz
Patches for test suit for better portability
This does not change actual tests, but improves support code such that an early bail out does not happen if environment is not Unixish.
Diffstat (limited to 't/io/argv.t')
-rwxr-xr-xt/io/argv.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/argv.t b/t/io/argv.t
index cee43fc46e..40ed23b373 100755
--- a/t/io/argv.t
+++ b/t/io/argv.t
@@ -33,4 +33,4 @@ if ($y eq "1a line\n2a line\n3a line\n")
else
{print "not ok 5\n";}
-`/bin/rm -f Io.argv.tmp`;
+`/bin/rm -f Io.argv.tmp` if -x '/bin/rm';