summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1998-10-26 08:17:33 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1998-10-26 08:17:33 +0000
commit6fd78b6eb3a60e1522be87e57d28bf3e66c51afc (patch)
tree659fa0383f1a384b69fc82c5c69446cbb446300f /t/io
parent596b5faa343a16c038c94a635344969cdc33e92b (diff)
downloadperl-6fd78b6eb3a60e1522be87e57d28bf3e66c51afc.tar.gz
Indicate skipped subtests.
p4raw-id: //depot/cfgperl@2089
Diffstat (limited to 't/io')
-rwxr-xr-xt/io/pipe.t23
1 files changed, 11 insertions, 12 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t
index d89bad8c4f..08b312aec5 100755
--- a/t/io/pipe.t
+++ b/t/io/pipe.t
@@ -23,10 +23,9 @@ close PIPE;
if ($^O eq 'vmesa') {
# Doesn't work, yet.
- print "ok 3\n";
- print "ok 4\n";
- print "ok 5\n";
- print "ok 6\n";
+ for (3..6) {
+ print "ok $_ # skipped\n";
+ }
} else {
if (open(PIPE, "-|")) {
while(<PIPE>) {
@@ -82,10 +81,10 @@ print "ok 8\n";
# STDOUT. Someone should modify tests #9 to #12 to work with VMS.
if ($^O eq 'VMS') {
- print "ok 9\n";
- print "ok 10\n";
- print "ok 11\n";
- print "ok 12\n";
+ print "ok 9 # skipped\n";
+ print "ok 10 # skipped\n";
+ print "ok 11 # skipped\n";
+ print "ok 12 # skipped\n";
exit;
}
@@ -95,7 +94,7 @@ if ($Config{d_sfio} || $^O eq 'machten' || $^O eq 'beos' || $^O eq 'posix-bc') {
# but won't write to broken pipes, so nothing's pending at close.
# BeOS will not write to broken pipes, either.
# Nor does POSIX-BC.
- print "ok 9\n";
+ print "ok 9 # skipped\n";
}
else {
local $SIG{PIPE} = 'IGNORE';
@@ -112,9 +111,9 @@ else {
if ($^O eq 'vmesa') {
# These don't work, yet.
- print "ok 10\n";
- print "ok 11\n";
- print "ok 12\n";
+ print "ok 10 # skipped\n";
+ print "ok 11 # skipped\n";
+ print "ok 12 # skipped\n";
exit;
}