diff --git a/jdk/test/com/sun/nio/sctp/SctpChannel/ReceiveIntoDirect.java b/jdk/test/com/sun/nio/sctp/SctpChannel/ReceiveIntoDirect.java index 00810cb5991..e7b23d0aaed 100644 --- a/jdk/test/com/sun/nio/sctp/SctpChannel/ReceiveIntoDirect.java +++ b/jdk/test/com/sun/nio/sctp/SctpChannel/ReceiveIntoDirect.java @@ -23,7 +23,7 @@ /* @test * @bug 8034181 - * @summary SIGBUS at Java_sun_nio_ch_SctpChannelImpl_receive0 + * @summary SIGBUS in SctpChannelImpl receive * @author chegar */ @@ -49,6 +49,9 @@ public class ReceiveIntoDirect { /* suitably small message to NOT overrun small buffers */ final byte[] msgBytes = "Hello".getBytes(US_ASCII); + /* number of client connections/combinations (accepted by the server) */ + final int NUM_CONNECTIONS = 75; + void test(String[] args) throws IOException { SocketAddress address = null; Server server; @@ -178,7 +181,7 @@ public class ReceiveIntoDirect { @Override public void run() { try { - for (int i=0; i<75; i++) { // there are 75 client combinations + for (int i=0; i