diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1996-02-04 16:38:11 -0500 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-02-04 16:38:11 -0500 |
commit | b8440792c4a62245d0033c065af6c1ecb58e6474 (patch) | |
tree | 8e0b2f3bfe903378e731442dafbbade447efd25b /t/io/argv.t | |
parent | 91bba347dac85baf813d9e41a1de89280909a30c (diff) | |
download | perl-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-x | t/io/argv.t | 2 |
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'; |