diff options
author | Sven Gothel <[email protected]> | 2015-09-29 18:31:16 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-09-29 18:31:16 +0200 |
commit | d5dc8a6cad034107d41d9a2e5f621ec4e6ce1f4e (patch) | |
tree | 316dbe27b7a7de342ccd3ed2490014941d99252f /src/test | |
parent | fca9710b4e90691652ee6f32725f36a9c1cf08d3 (diff) |
Bug 1225: Unit test timeout := 3minutes
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug1225EventQueueInterruptedAWT.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug1225EventQueueInterruptedAWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug1225EventQueueInterruptedAWT.java index 2a14390ce..805af86fb 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug1225EventQueueInterruptedAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug1225EventQueueInterruptedAWT.java @@ -103,12 +103,12 @@ public class TestBug1225EventQueueInterruptedAWT extends UITestCase { } - @Test + @Test(timeout=180000) // TO 3 min public void test01_NoGL() throws InterruptedException, InvocationTargetException { testImpl(false); } - @Test + @Test(timeout=180000) // TO 3 min public void test02_WithGL() throws InterruptedException, InvocationTargetException { testImpl(true); } |