diff options
Diffstat (limited to 't/io/pipe.t')
-rwxr-xr-x | t/io/pipe.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t index fc3c0e5221..d89bad8c4f 100755 --- a/t/io/pipe.t +++ b/t/io/pipe.t @@ -89,11 +89,12 @@ if ($^O eq 'VMS') { exit; } -if ($Config{d_sfio} || $^O eq machten || $^O eq beos) { +if ($Config{d_sfio} || $^O eq 'machten' || $^O eq 'beos' || $^O eq 'posix-bc') { # Sfio doesn't report failure when closing a broken pipe # that has pending output. Go figure. MachTen doesn't either, # 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"; } else { |