diff options
author | Sven Gothel <[email protected]> | 2011-11-26 08:25:31 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-26 08:25:31 +0100 |
commit | 6fe980308f6042f7a3077b724d28f4c3719ba331 (patch) | |
tree | 6269b39ab84eb5f1e3489e348de233597a8b751a /src | |
parent | 26e6aac665d0fede32c322b66d90e82a622624ac (diff) |
TestScreenMode00bNEWT: Reduce getCurrentScreenMode loop 100 -> 50, due to slow processing on CentOS / HD3400
Diffstat (limited to 'src')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/newt/TestScreenMode00bNEWT.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/newt/TestScreenMode00bNEWT.java b/src/test/com/jogamp/opengl/test/junit/newt/TestScreenMode00bNEWT.java index 41bdfdfd7..e9e66da2c 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/TestScreenMode00bNEWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/TestScreenMode00bNEWT.java @@ -95,10 +95,10 @@ public class TestScreenMode00bNEWT extends UITestCase { System.err.println("orig: "+sm_o); System.err.println("curr: "+sm_c); - for(i=0; i<100; i++) { + for(i=0; i<50; i++) { sm_c = screen.getCurrentScreenMode(); Assert.assertNotNull(sm_c); - System.err.print("."); + System.err.print("."+i); } System.err.println("!"); |