# HG changeset patch # User chegar # Date 1529404573 -3600 # Node ID 51005613a367eeff99d513838ebc58a486a73205 # Parent 02ab5f60fbcd9c8da5049c19339eba79338e4d58 http-client-branch: review comment: reduce iterations in NoBody tests diff -r 02ab5f60fbcd -r 51005613a367 test/jdk/java/net/httpclient/AbstractNoBody.java --- a/test/jdk/java/net/httpclient/AbstractNoBody.java Tue Jun 19 09:50:40 2018 +0100 +++ b/test/jdk/java/net/httpclient/AbstractNoBody.java Tue Jun 19 11:36:13 2018 +0100 @@ -57,7 +57,7 @@ String https2URI_chunk; static final String SIMPLE_STRING = "Hello world. Goodbye world"; - static final int ITERATION_COUNT = 10; + static final int ITERATION_COUNT = 3; // a shared executor helps reduce the amount of threads created by the test static final Executor executor = Executors.newFixedThreadPool(ITERATION_COUNT * 2); static final ExecutorService serverExecutor = Executors.newFixedThreadPool(ITERATION_COUNT * 4);