Skip to content

Commit

Permalink
Allow conc test length config
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsanw committed Dec 31, 2019
1 parent 2cfcda9 commit 264e669
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -19,7 +19,7 @@ public abstract class MpqSanityTest
{

public static final int SIZE = 8192 * 2;
static final int CONCURRENT_TEST_DURATION = 500;
static final int CONCURRENT_TEST_DURATION = Integer.getInteger("org.jctools.concTestDurationMs", 500);
static final int TEST_TIMEOUT = 30000;

private final MessagePassingQueue<Integer> queue;
Expand Down
Expand Up @@ -25,7 +25,7 @@ public abstract class QueueSanityTest
{

public static final int SIZE = 8192 * 2;
static final int CONCURRENT_TEST_DURATION = 500;
static final int CONCURRENT_TEST_DURATION = Integer.getInteger("org.jctools.concTestDurationMs", 500);
static final int TEST_TIMEOUT = 30000;

protected final Queue<Integer> queue;
Expand Down

0 comments on commit 264e669

Please sign in to comment.