aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-03-06 11:22:30 +0100
committerSven Gothel <[email protected]>2023-03-06 11:22:30 +0100
commit95250b79766f62d9e5a0f1f46f98ea1f5983a77f (patch)
treec0a38796345a4bcf91b6d7b0bca67f18d845e8de
parent2920be3622adf2b14cfad7d0261c11dc7e8151db (diff)
Adapt to GlueGen dropping Platform.currentTimeMicros(), use Platform.currentTimeMillis()
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteAWT.java28
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteNEWT.java20
2 files changed, 26 insertions, 22 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteAWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteAWT.java
index d136f3edf..77292d0b9 100644
--- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteAWT.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteAWT.java
@@ -43,6 +43,7 @@ import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
import com.jogamp.common.os.Platform;
+import com.jogamp.junit.util.JunitTracer;
import com.jogamp.opengl.JoglVersion;
import com.jogamp.opengl.test.junit.jogl.demos.es2.GearsES2;
import com.jogamp.opengl.test.junit.util.UITestCase;
@@ -66,6 +67,7 @@ public class TestShutdownCompleteAWT extends UITestCase {
final Animator animator = new Animator(glCanvas);
javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
+ @Override
public void run() {
frame.setSize(256, 256);
frame.setVisible(true);
@@ -85,11 +87,13 @@ public class TestShutdownCompleteAWT extends UITestCase {
animator.stop();
Assert.assertEquals(false, animator.isAnimating());
javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
+ @Override
public void run() {
frame.setVisible(false);
}});
Assert.assertEquals(false, frame.isVisible());
javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
+ @Override
public void run() {
frame.remove(glCanvas);
frame.dispose();
@@ -99,29 +103,29 @@ public class TestShutdownCompleteAWT extends UITestCase {
@AfterClass
public static void afterAll() {
if(waitForKey) {
- UITestCase.waitForKey("Exit");
+ JunitTracer.waitForKey("Exit");
}
}
protected void oneLife(final boolean glInfo) throws InterruptedException, InvocationTargetException {
- final long t0 = Platform.currentTimeMicros();
+ final long t0 = Platform.currentTimeMillis();
GLProfile.initSingleton();
- final long t1 = Platform.currentTimeMicros();
+ final long t1 = Platform.currentTimeMillis();
if(!initOnly) {
runTestGL();
}
- final long t2 = Platform.currentTimeMicros();
+ final long t2 = Platform.currentTimeMillis();
if(glInfo) {
System.err.println(JoglVersion.getDefaultOpenGLInfo(null, null, false).toString());
}
- final long t3 = Platform.currentTimeMicros();
+ final long t3 = Platform.currentTimeMillis();
GLProfile.shutdown();
- final long t4 = Platform.currentTimeMicros();
- System.err.println("Total: "+ (t4-t0)/1e3 +"ms");
- System.err.println(" GLProfile.initSingleton(): "+ (t1-t0)/1e3 +"ms");
- System.err.println(" Demo Code: "+ (t2-t1)/1e3 +"ms");
- System.err.println(" GLInfo: "+ (t3-t2)/1e3 +"ms");
- System.err.println(" GLProfile.shutdown(): "+ (t4-t3)/1e3 +"ms");
+ final long t4 = Platform.currentTimeMillis();
+ System.err.println("Total: "+ (t4-t0) +"ms");
+ System.err.println(" GLProfile.initSingleton(): "+ (t1-t0) +"ms");
+ System.err.println(" Demo Code: "+ (t2-t1) +"ms");
+ System.err.println(" GLInfo: "+ (t3-t2) +"ms");
+ System.err.println(" GLProfile.shutdown(): "+ (t4-t3) +"ms");
}
@Test
@@ -158,7 +162,7 @@ public class TestShutdownCompleteAWT extends UITestCase {
}
if(waitForKey) {
- UITestCase.waitForKey("Start");
+ JunitTracer.waitForKey("Start");
}
final String tstname = TestShutdownCompleteAWT.class.getName();
org.junit.runner.JUnitCore.main(tstname);
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteNEWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteNEWT.java
index d0c230609..2562c83c8 100644
--- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteNEWT.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestShutdownCompleteNEWT.java
@@ -94,9 +94,9 @@ public class TestShutdownCompleteNEWT extends UITestCase {
if(waitForEach) {
JunitTracer.waitForKey("Start One Life");
}
- final long t0 = Platform.currentTimeMicros();
+ final long t0 = Platform.currentTimeMillis();
GLProfile.initSingleton();
- final long t1 = Platform.currentTimeMicros();
+ final long t1 = Platform.currentTimeMillis();
// Test minimum requirement, having a default device with profile
{
@@ -113,18 +113,18 @@ public class TestShutdownCompleteNEWT extends UITestCase {
if(!initOnly) {
runTestGL(true);
}
- final long t2 = Platform.currentTimeMicros();
+ final long t2 = Platform.currentTimeMillis();
if(glInfo) {
System.err.println(JoglVersion.getDefaultOpenGLInfo(null, null, false).toString());
}
- final long t3 = Platform.currentTimeMicros();
+ final long t3 = Platform.currentTimeMillis();
GLProfile.shutdown();
- final long t4 = Platform.currentTimeMicros();
- System.err.println("Total: "+ (t4-t0)/1e3 +"ms");
- System.err.println(" GLProfile.initSingleton(): "+ (t1-t0)/1e3 +"ms");
- System.err.println(" Demo Code: "+ (t2-t1)/1e3 +"ms");
- System.err.println(" GLInfo: "+ (t3-t2)/1e3 +"ms");
- System.err.println(" GLProfile.shutdown(): "+ (t4-t3)/1e3 +"ms");
+ final long t4 = Platform.currentTimeMillis();
+ System.err.println("Total: "+ (t4-t0) +"ms");
+ System.err.println(" GLProfile.initSingleton(): "+ (t1-t0) +"ms");
+ System.err.println(" Demo Code: "+ (t2-t1) +"ms");
+ System.err.println(" GLInfo: "+ (t3-t2) +"ms");
+ System.err.println(" GLProfile.shutdown(): "+ (t4-t3) +"ms");
}
@Test