summaryrefslogtreecommitdiff
path: root/t/io/pipe.t
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-11-03 14:56:25 +0000
committerSteve Peters <steve@fisharerojo.org>2005-11-03 14:56:25 +0000
commit3fb41248088529e4dffd3e393588e067e2934fc0 (patch)
tree8b8d3c218b1463088a15e7dc0174680ab1f7308b /t/io/pipe.t
parentce6987d0ee9b127be2a1769a57aa5a88de5b51ef (diff)
downloadperl-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/pipe.t')
-rwxr-xr-xt/io/pipe.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t
index fd355124fe..d411719fff 100755
--- a/t/io/pipe.t
+++ b/t/io/pipe.t
@@ -167,6 +167,7 @@ SKIP: {
# Test new semantics for missing command in piped open
# 19990114 M-J. Dominus mjd@plover.com
{ local *P;
+ no warnings 'pipe';
ok( !open(P, "| "), 'missing command in piped open input' );
ok( !open(P, " |"), ' output');
}