diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-25 18:04:39 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-25 18:04:39 +0000 |
commit | 2dbc26b0e5e04e99354cad43b71ba2e3ca09d9ca (patch) | |
tree | e528a04047da58d7c3b68593e5c236e9d1a1e7bb /t/io | |
parent | 04dd828ab436fbdf52e0820b2469be5ff1c1d3ca (diff) | |
download | perl-2dbc26b0e5e04e99354cad43b71ba2e3ca09d9ca.tar.gz |
More correct now, but actually the two new tests
need to be moved, since they are perlio-only...
p4raw-id: //depot/perl@15497
Diffstat (limited to 't/io')
-rwxr-xr-x | t/io/open.t | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/t/io/open.t b/t/io/open.t index fc4ca4309d..d85c9c5f4e 100755 --- a/t/io/open.t +++ b/t/io/open.t @@ -10,7 +10,7 @@ $| = 1; use warnings; $Is_VMS = $^O eq 'VMS'; -plan tests => 107; +plan tests => 106; my $Perl = which_perl(); @@ -261,8 +261,6 @@ like( $@, qr/Bad filehandle:\s+afile/, ' right error' ); SKIP: { local $TODO = "in-memory stdhandles not implemented yet"; - skip($TODO, 3); - # test in-memory open over STDOUT open OLDOUT, ">&STDOUT" or die "cannot dup STDOUT: $!"; #close STDOUT; |