--- old/test/com/sun/nio/sctp/SctpMultiChannel/SendFailed.java Mon Mar 16 16:11:43 2015 +++ new/test/com/sun/nio/sctp/SctpMultiChannel/SendFailed.java Mon Mar 16 16:11:42 2015 @@ -43,11 +43,16 @@ void test(String[] args) throws IOException { SocketAddress address = null; + String os = System.getProperty("os.name").toLowerCase(); if (!Util.isSCTPSupported()) { out.println("SCTP protocol is not supported"); out.println("Test cannot be run"); return; + } else if (os.startsWith("sunos")) { + out.println("Test not supported on Solaris"); + out.println("Test cannot be run"); + return; } System.out.println("remote address: " + remoteAddress);