summaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl/CLCommandQueueTest.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-09-23 23:02:30 +0200
committerMichael Bien <[email protected]>2010-09-23 23:02:30 +0200
commit049de167b6b8366418eda993cde30aaa84eba6ca (patch)
tree15d40638e542358a334ca88f7475bede88d4a0b0 /test/com/jogamp/opencl/CLCommandQueueTest.java
parentd92af6dd7116883d674d1536c72bf7d62116d7dc (diff)
added junit timeouts to CLGLTest (JOGL deadlock on mac) and CLCommandQueueTest
Diffstat (limited to 'test/com/jogamp/opencl/CLCommandQueueTest.java')
-rw-r--r--test/com/jogamp/opencl/CLCommandQueueTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/com/jogamp/opencl/CLCommandQueueTest.java b/test/com/jogamp/opencl/CLCommandQueueTest.java
index 89075c0f..d25d5aae 100644
--- a/test/com/jogamp/opencl/CLCommandQueueTest.java
+++ b/test/com/jogamp/opencl/CLCommandQueueTest.java
@@ -1,5 +1,8 @@
package com.jogamp.opencl;
+import org.junit.Rule;
+import org.junit.rules.MethodRule;
+import org.junit.rules.Timeout;
import java.util.concurrent.CountDownLatch;
import com.jogamp.opencl.util.MultiQueueBarrier;
import com.jogamp.opencl.CLCommandQueue.Mode;
@@ -23,6 +26,8 @@ import static com.jogamp.common.nio.Buffers.*;
*/
public class CLCommandQueueTest {
+ @Rule
+ public MethodRule methodTimeout= new Timeout(20000);
@Test
public void enumsTest() {