diff options
author | Sven Gothel <[email protected]> | 2010-12-12 07:54:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-12 07:54:24 +0100 |
commit | 994d64debb649ee73ee013b1fbcda22376f4eb6c (patch) | |
tree | 8795c0dbe359cee2870b44b28ff6dbbc385c7a9d /make/scripts/tests-javaws.sh | |
parent | d720b43f8c75753e5ceed94c234688266786ba08 (diff) |
script updates
Diffstat (limited to 'make/scripts/tests-javaws.sh')
-rw-r--r-- | make/scripts/tests-javaws.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/make/scripts/tests-javaws.sh b/make/scripts/tests-javaws.sh index 467b9255d..a1b1b1e2e 100644 --- a/make/scripts/tests-javaws.sh +++ b/make/scripts/tests-javaws.sh @@ -1,8 +1,16 @@ javaws -uninstall +rm -f ~/.java/deployment/log/* + JNLP=Gears.jnlp # JNLP=TextCube.jnlp # JNLP=JRefractNoOGL.jnlp -javaws -J-verbose:class -J-verbose:jni -J-Dsun.java2d.noddraw=true -J-Dsun.awt.noerasebackground=true -J-Dsun.java2d.opengl=false -J-Djnlp.jogl.debug=all http://risa/deployment/test/jau01s/jogl-demos/$JNLP 2>&1 | tee tests-javaws.log +D_FLAGS="-J-Djnlp.nativewindow.debug=all -J-Djnlp.jogl.debug=all -J-Djnlp.newt.debug=all" + +#X_FLAGS="-J-Dsun.java2d.noddraw=true -J-Dsun.awt.noerasebackground=true -J-Dsun.java2d.opengl=false" +#X_FLAGS="-J-verbose:jni" +X_FLAGS= + +javaws $X_FLAGS $D_FLAGS http://risa/deployment/test/jau01s/jogl-demos/$JNLP 2>&1 | tee tests-javaws.log |