< prev index next >

test/jdk/jdk/net/Sockets/ExtOptionTest.java

Print this page
rev 59105 : imported patch corelibs

@@ -46,15 +46,10 @@
                 ss.setOption(TCP_QUICKACK, true);
                 if (!ss.getOption(TCP_QUICKACK)) {
                     throw new RuntimeException("Test failed, TCP_QUICKACK should"
                             + " have been set");
                 }
-            } else if (operSys.equals("SunOS")) {
-                if (ss.supportedOptions().contains(SO_FLOW_SLA)) {
-                    throw new RuntimeException("Test failed, SO_FLOW_SLA is not "
-                            + "applicable for ServerSocket");
-                }
             } else {
                 if (ss.supportedOptions().contains(TCP_QUICKACK)) {
                     ss.setOption(TCP_QUICKACK, true);
                     if (!ss.getOption(TCP_QUICKACK)) {
                         throw new RuntimeException("Test failed, TCP_QUICKACK should"
< prev index next >