diff options
author | Sven Gothel <[email protected]> | 2013-06-24 11:53:59 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-24 11:53:59 +0200 |
commit | c27157bf7fa9776b0f212c2ccfcf80c4e734eedc (patch) | |
tree | 0f5439b0013fbb09df637b058fd0f07d49c9feab | |
parent | 835cea627f80d8f8a851514734f53e6336d9d6d9 (diff) |
UITestCase: Increase SINGLE_INSTANCE_LOCK_TO from 3 to 6 minutes!
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/util/UITestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java b/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java index a81dec874..82a80ff49 100644 --- a/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java +++ b/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java @@ -62,7 +62,7 @@ public abstract class UITestCase { public static final String SINGLE_INSTANCE_LOCK_FILE = "UITestCase.lock"; public static final int SINGLE_INSTANCE_LOCK_PORT = 59999; - public static final long SINGLE_INSTANCE_LOCK_TO = 3*60*1000; // wait up to 3 min + public static final long SINGLE_INSTANCE_LOCK_TO = 6*60*1000; // wait up to 6 mins public static final long SINGLE_INSTANCE_LOCK_POLL = 1000; // poll every 1s private static volatile SingletonInstance singletonInstance; |