diff options
author | Sven Gothel <[email protected]> | 2010-11-25 18:53:48 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-25 18:53:48 +0100 |
commit | 2aa90676e4954269f86ec23b39e638b12e178e92 (patch) | |
tree | b65426b867b68fae2e7a5675b6b6ab674b38107f /make | |
parent | d1d10e7eeb2a46acf16ae125395e95189e011f1f (diff) |
Refined VersionInfo usage
Diffstat (limited to 'make')
-rw-r--r-- | make/scripts/tests.sh | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index ba44f3871..790ec614f 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -40,23 +40,31 @@ function jrun() { #D_ARGS="-Djogl.debug.GraphicsConfiguration" #D_ARGS="-Djogl.debug.GLCanvas" #X_ARGS="-Dsun.java2d.noddraw=true -Dsun.java2d.opengl=true" - java $awtarg $X_ARGS $D_ARGS $* 2>&1 | tee -a java-run.log + echo + echo "Test Start: $*" + echo + java $awtarg $X_ARGS $D_ARGS $* + echo + echo "Test End: $*" + echo } function testnoawt() { - jrun -Djava.awt.headless=true $* + jrun -Djava.awt.headless=true $* 2>&1 | tee -a java-run.log } function testawt() { - jrun -Djava.awt.headless=false $* + jrun -Djava.awt.headless=false $* 2>&1 | tee -a java-run.log } # # newt (testnoawt and testawt) # -#testnoawt com.jogamp.newt.opengl.GLWindow $* -#testawt com.jogamp.newt.opengl.GLWindow $* -#testnoawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* +testnoawt com.jogamp.nativewindow.NativeWindowVersion $* +testnoawt com.jogamp.opengl.JoglVersion $* +testnoawt com.jogamp.newt.NewtVersion $* +testnoawt com.jogamp.newt.opengl.GLWindow $* +testnoawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* #testawt com.jogamp.test.junit.jogl.acore.TestGLProfile01NEWT $* #testnoawt com.jogamp.test.junit.jogl.glsl.TestTransformFeedbackVaryingsBug407NEWT $* #testnoawt com.jogamp.test.junit.jogl.glsl.TestGLSLSimple01NEWT $* @@ -78,9 +86,9 @@ function testawt() { # # awt (testawt) # -#testawt javax.media.opengl.awt.GLCanvas $* +testawt javax.media.opengl.awt.GLCanvas $* #testawt com.jogamp.test.junit.jogl.awt.TestAWT01GLn $* -testawt com.jogamp.test.junit.jogl.awt.TestAWT03GLCanvasRecreate01 $* +#testawt com.jogamp.test.junit.jogl.awt.TestAWT03GLCanvasRecreate01 $* #testawt com.jogamp.test.junit.jogl.awt.TestAWT02WindowClosing #testawt com.jogamp.test.junit.jogl.awt.TestSwingAWT01GLn #testawt com.jogamp.test.junit.jogl.demos.gl2.gears.TestGearsAWT |