diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/IO/lib/IO/t/io_unix.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/lib/IO/t/io_unix.t b/ext/IO/lib/IO/t/io_unix.t index 2f6def0af7..c996e6dc59 100644 --- a/ext/IO/lib/IO/t/io_unix.t +++ b/ext/IO/lib/IO/t/io_unix.t @@ -27,7 +27,7 @@ BEGIN { eval {IO::Socket::pack_sockaddr_un('/tmp/foo') || 1} or $@ !~ /not implemented/ or $reason = 'compiled without TCP/IP stack v4'; - } elsif ($^O eq 'qnx') { + } elsif ($^O =~ m/^(?:qnx|nto)$/ ) { $reason = 'Not implemented'; } undef $reason if $^O eq 'VMS' and $Config{d_socket}; |