Subject: | t/ipc.t fails on Windows |
As reported by this CPAN tester, t/ipc.t fails on Windows with Perl
5.8.8 because the list-form of open-pipe is not supported. Just
disabling this test case on Windows is sufficient (note that it was
repeated in the file).
--- ipc.t 2004-03-01 00:10:08.000000000 -0500
+++ /tmp/ipc.t 2007-04-23 23:40:32.000000000 -0400
@@ -25,10 +25,8 @@
$str = slurp '-|', 'echo input data';
is $str, $data, $desc;
-TEST "scalar slurp from '-|', 'system', 'command', 'etc'";
-$str = slurp '-|', qw(echo input data);
-is $str, $data, $desc;
-
-TEST "scalar slurp from '-|', 'system', 'command', 'etc'";
-$str = slurp '-|', qw(echo input data);
-is $str, $data, $desc;
+if ($^O ne 'MSWin32') {
+ TEST "scalar slurp from '-|', 'system', 'command', 'etc'";
+ $str = slurp '-|', qw(echo input data);
+ is $str, $data, $desc;
+}