diff options
author | Nicolas R <atoomic@cpan.org> | 2020-01-17 10:31:35 -0700 |
---|---|---|
committer | Nicolas R <nicolas@atoomic.org> | 2020-01-17 14:02:17 -0700 |
commit | 037138fac4b4b8bf94c6dd36b73041ce4bab6860 (patch) | |
tree | e4392c334a55fbbe05db286c281bb8c19c400c73 /dist | |
parent | 68ce2ab964838e77cdf58bd0a42e1716fc4ed49c (diff) | |
download | perl-037138fac4b4b8bf94c6dd36b73041ce4bab6860.tar.gz |
Disable dist/IO/t/io_sock.t on windows
Fixes #17429
Test is out of sequence.
Note: ENV were set too early.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/IO/t/io_sock.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dist/IO/t/io_sock.t b/dist/IO/t/io_sock.t index 37c8dad84e..c7b9557e0b 100644 --- a/dist/IO/t/io_sock.t +++ b/dist/IO/t/io_sock.t @@ -18,6 +18,7 @@ BEGIN { elsif (!$can_fork) { $reason = 'no fork'; } + $reason = q[Test out of sequence on windows] if $^O eq 'MSWin32' && $ENV{CONTINUOUS_INTEGRATION}; if ($reason) { print "1..0 # Skip: $reason\n"; exit 0; |