diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-11-03 14:56:25 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-11-03 14:56:25 +0000 |
commit | 3fb41248088529e4dffd3e393588e067e2934fc0 (patch) | |
tree | 8b8d3c218b1463088a15e7dc0174680ab1f7308b /t/io/read.t | |
parent | ce6987d0ee9b127be2a1769a57aa5a88de5b51ef (diff) | |
download | perl-3fb41248088529e4dffd3e393588e067e2934fc0.tar.gz |
More core test cleanups. Mainly fixes to remove code that caused
warnings, but there were a few bug fixes that were hidden by
no using warnings.
p4raw-id: //depot/perl@25973
Diffstat (limited to 't/io/read.t')
-rwxr-xr-x | t/io/read.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/io/read.t b/t/io/read.t index 63ffee1d5a..6d590ff688 100755 --- a/t/io/read.t +++ b/t/io/read.t @@ -35,6 +35,7 @@ SKIP: { skip "no EBADF", 1 if (!exists &Errno::EBADF); $! = 0; + no warnings 'unopened'; read(B,$b,1); ok($! == &Errno::EBADF); } |