From 0bb179669acc812b0580f68b168d0256d07899cb Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 25 Jun 2013 15:14:04 +0200 Subject: Test NEWT Key Events: Add TO of 5 minutes --- .../test/junit/newt/event/BaseNewtEventModifiers.java | 16 ++++++++-------- .../junit/newt/event/TestNewtKeyCodeModifiersAWT.java | 6 +++--- .../test/junit/newt/event/TestNewtKeyCodesAWT.java | 6 +++--- .../junit/newt/event/TestNewtKeyEventAutoRepeatAWT.java | 4 ++-- .../test/junit/newt/event/TestNewtKeyEventOrderAWT.java | 6 +++--- .../event/TestNewtKeyPressReleaseUnmaskRepeatAWT.java | 6 +++--- 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/test/com/jogamp/opengl/test/junit/newt/event/BaseNewtEventModifiers.java b/src/test/com/jogamp/opengl/test/junit/newt/event/BaseNewtEventModifiers.java index e6edd0da5..222152356 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/event/BaseNewtEventModifiers.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/event/BaseNewtEventModifiers.java @@ -386,7 +386,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { // run the tests for NewtCanvasAWT and NewtCanvasSWT until we can // pay more attention to the NEWT event modifier stuff. - @Test + @Test(timeout=300000) // TO 5 min public void testSingleButtonPressAndRelease() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -396,7 +396,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { } } ); } - @Test + @Test(timeout=300000) // TO 5 min public void testSingleButtonPressAndReleaseWithShift() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -406,7 +406,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { } } ); } - @Test + @Test(timeout=300000) // TO 5 min public void testSingleButtonPressAndReleaseWithCtrl() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -419,7 +419,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { /** * The META and ALT tests get too tied up with functions of the window system on X11, * so it's probably best to leave them commented out. - @Test + @Test(timeout=300000) // TO 5 min public void testSingleButtonPressAndReleaseWithMeta() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -429,7 +429,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { } } ); } - @Test + @Test(timeout=300000) // TO 5 min public void testSingleButtonPressAndReleaseWithAlt() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -459,7 +459,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { //////////////////////////////////////////////////////////////////////////// - @Test + @Test(timeout=300000) // TO 5 min public void testHoldOneButtonAndPressAnother() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -469,7 +469,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { } } ); } - @Test + @Test(timeout=300000) // TO 5 min public void testPressAllButtonsInSequence() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { @@ -479,7 +479,7 @@ public abstract class BaseNewtEventModifiers extends UITestCase { } } ); } - @Test + @Test(timeout=300000) // TO 5 min public void testSingleButtonClickAndDrag() throws Exception { execOffThreadWithOnThreadEventDispatch(new Runnable() { public void run() { diff --git a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodeModifiersAWT.java b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodeModifiersAWT.java index 226107000..d31b18ee8 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodeModifiersAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodeModifiersAWT.java @@ -95,7 +95,7 @@ public class TestNewtKeyCodeModifiersAWT extends UITestCase { public void releaseTest() { } - @Test + @Test(timeout=300000) // TO 5 min public void test01NEWT() throws AWTException, InterruptedException, InvocationTargetException { GLWindow glWindow = GLWindow.create(glCaps); glWindow.setSize(width, height); @@ -141,7 +141,7 @@ public class TestNewtKeyCodeModifiersAWT extends UITestCase { glWindow.destroy(); } - @Test + @Test(timeout=300000) // TO 5 min public void test02NewtCanvasAWT_Onscreen() throws AWTException, InterruptedException, InvocationTargetException { if( JAWTUtil.isOffscreenLayerRequired() ) { System.err.println("Platform doesn't support onscreen rendering."); @@ -150,7 +150,7 @@ public class TestNewtKeyCodeModifiersAWT extends UITestCase { testNewtCanvasAWT_Impl(true); } - @Test + @Test(timeout=300000) // TO 5 min public void test03NewtCanvasAWT_Offsccreen() throws AWTException, InterruptedException, InvocationTargetException { if( !JAWTUtil.isOffscreenLayerSupported() ) { System.err.println("Platform doesn't support offscreen rendering."); diff --git a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodesAWT.java b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodesAWT.java index c253bb79b..56debef87 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodesAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyCodesAWT.java @@ -91,7 +91,7 @@ public class TestNewtKeyCodesAWT extends UITestCase { public void releaseTest() { } - @Test + @Test(timeout=300000) // TO 5 min public void test01NEWT() throws AWTException, InterruptedException, InvocationTargetException { GLWindow glWindow = GLWindow.create(glCaps); glWindow.setSize(width, height); @@ -137,7 +137,7 @@ public class TestNewtKeyCodesAWT extends UITestCase { glWindow.destroy(); } - @Test + @Test(timeout=300000) // TO 5 min public void test02NewtCanvasAWT_Onscreen() throws AWTException, InterruptedException, InvocationTargetException { if( JAWTUtil.isOffscreenLayerRequired() ) { System.err.println("Platform doesn't support onscreen rendering."); @@ -146,7 +146,7 @@ public class TestNewtKeyCodesAWT extends UITestCase { testNewtCanvasAWT_Impl(true); } - @Test + @Test(timeout=300000) // TO 5 min public void test03NewtCanvasAWT_Offsccreen() throws AWTException, InterruptedException, InvocationTargetException { if( !JAWTUtil.isOffscreenLayerSupported() ) { System.err.println("Platform doesn't support offscreen rendering."); diff --git a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventAutoRepeatAWT.java b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventAutoRepeatAWT.java index a131d6db5..6675d89e9 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventAutoRepeatAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventAutoRepeatAWT.java @@ -108,7 +108,7 @@ public class TestNewtKeyEventAutoRepeatAWT extends UITestCase { public void releaseTest() { } - @Test + @Test(timeout=300000) // TO 5 min public void test01NEWT() throws AWTException, InterruptedException, InvocationTargetException { GLWindow glWindow = GLWindow.create(glCaps); glWindow.setSize(width, height); @@ -119,7 +119,7 @@ public class TestNewtKeyEventAutoRepeatAWT extends UITestCase { glWindow.destroy(); } - @Test + @Test(timeout=300000) // TO 5 min public void test02NewtCanvasAWT() throws AWTException, InterruptedException, InvocationTargetException { GLWindow glWindow = GLWindow.create(glCaps); diff --git a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventOrderAWT.java b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventOrderAWT.java index aeb9f4b25..6fbc3a330 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventOrderAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyEventOrderAWT.java @@ -94,7 +94,7 @@ public class TestNewtKeyEventOrderAWT extends UITestCase { public void releaseTest() { } - @Test + @Test(timeout=300000) // TO 5 min public void test01NEWT() throws AWTException, InterruptedException, InvocationTargetException { GLWindow glWindow = GLWindow.create(glCaps); glWindow.setSize(width, height); @@ -140,7 +140,7 @@ public class TestNewtKeyEventOrderAWT extends UITestCase { glWindow.destroy(); } - @Test + @Test(timeout=300000) // TO 5 min public void test02NewtCanvasAWT_Onscreen() throws AWTException, InterruptedException, InvocationTargetException { if( JAWTUtil.isOffscreenLayerRequired() ) { System.err.println("Platform doesn't support onscreen rendering."); @@ -149,7 +149,7 @@ public class TestNewtKeyEventOrderAWT extends UITestCase { testNewtCanvasAWT_Impl(true); } - @Test + @Test(timeout=300000) // TO 5 min public void test03NewtCanvasAWT_Offsccreen() throws AWTException, InterruptedException, InvocationTargetException { if( !JAWTUtil.isOffscreenLayerSupported() ) { System.err.println("Platform doesn't support offscreen rendering."); diff --git a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyPressReleaseUnmaskRepeatAWT.java b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyPressReleaseUnmaskRepeatAWT.java index d70259f13..33ae4d2da 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyPressReleaseUnmaskRepeatAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/event/TestNewtKeyPressReleaseUnmaskRepeatAWT.java @@ -89,7 +89,7 @@ public class TestNewtKeyPressReleaseUnmaskRepeatAWT extends UITestCase { public void releaseTest() { } - @Test + @Test(timeout=300000) // TO 5 min public void test01NEWT() throws AWTException, InterruptedException, InvocationTargetException { GLWindow glWindow = GLWindow.create(glCaps); glWindow.setSize(width, height); @@ -135,7 +135,7 @@ public class TestNewtKeyPressReleaseUnmaskRepeatAWT extends UITestCase { glWindow.destroy(); } - @Test + @Test(timeout=300000) // TO 5 min public void test02NewtCanvasAWT_Onscreen() throws AWTException, InterruptedException, InvocationTargetException { if( JAWTUtil.isOffscreenLayerRequired() ) { System.err.println("Platform doesn't support onscreen rendering."); @@ -144,7 +144,7 @@ public class TestNewtKeyPressReleaseUnmaskRepeatAWT extends UITestCase { testNewtCanvasAWT_Impl(true); } - @Test + @Test(timeout=300000) // TO 5 min public void test03NewtCanvasAWT_Offsccreen() throws AWTException, InterruptedException, InvocationTargetException { if( !JAWTUtil.isOffscreenLayerSupported() ) { System.err.println("Platform doesn't support offscreen rendering."); -- cgit v1.2.3