summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-10-03 04:49:21 +0200
committerSven Gothel <[email protected]>2014-10-03 04:49:21 +0200
commitdb12572b4f674884c3f7ad8f7e15ba9e97cf865a (patch)
treef3c34122a198261635280b249a1293f5d6f1feac
parent1630bc961747d227d166fa128effcb24e050f6cc (diff)
SingletonTestCase: SINGLE_INSTANCE_LOCK_TO (timeout) 6 -> 12 minutes
-rw-r--r--src/junit/com/jogamp/junit/util/SingletonTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/junit/com/jogamp/junit/util/SingletonTestCase.java b/src/junit/com/jogamp/junit/util/SingletonTestCase.java
index 69cb31f..16f2ab3 100644
--- a/src/junit/com/jogamp/junit/util/SingletonTestCase.java
+++ b/src/junit/com/jogamp/junit/util/SingletonTestCase.java
@@ -40,8 +40,8 @@ public abstract class SingletonTestCase extends JunitTracer {
public static final String SINGLE_INSTANCE_LOCK_FILE = "SingletonTestCase.lock";
public static final int SINGLE_INSTANCE_LOCK_PORT = 59999;
- 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
+ public static final long SINGLE_INSTANCE_LOCK_TO = 12*60*1000; // wait up to 12 mins
+ public static final long SINGLE_INSTANCE_LOCK_POLL = 1000; // poll every 1s
private static volatile SingletonInstance singletonInstance;