diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 10:26:59 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 10:26:59 +0000 |
commit | 181ea953f5037d8eebef8af5f5ba67f9ff02a565 (patch) | |
tree | 5d7303f203cb37b400c785691010c63eeca0b2ba /t/io | |
parent | be94a90153eca0a67ea73e2ec074645fb9e0b70d (diff) | |
download | perl-181ea953f5037d8eebef8af5f5ba67f9ff02a565.tar.gz |
allow /0|NaN/ on some bigfloatpm.t tests for portability; other
misc fixes
p4raw-id: //depot/perl@2942
Diffstat (limited to 't/io')
-rwxr-xr-x | t/io/argv.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/io/argv.t b/t/io/argv.t index cb2ffb346e..c6565dc9c7 100755 --- a/t/io/argv.t +++ b/t/io/argv.t @@ -46,7 +46,7 @@ else open(try, '>Io.argv.tmp') or die "Can't open temp file: $!"; close try; @ARGV = 'Io.argv.tmp'; -$^I = ''; +$^I = '.bak'; $/ = undef; while (<>) { s/^/ok 6\n/; @@ -56,4 +56,4 @@ open(try, '<Io.argv.tmp') or die "Can't open temp file: $!"; print while <try>; close try; -END { unlink 'Io.argv.tmp' } +END { unlink 'Io.argv.tmp', 'Io.argv.tmp.bak' } |