diff options
author | Sven Gothel <[email protected]> | 2009-09-25 12:29:16 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-09-25 12:29:16 -0700 |
commit | c752f7117dc38eed1caa870d7c96a084cea04f88 (patch) | |
tree | 6b238f787c0b8c01cf209f495541b4bf7e44407f /java-run-noawt.sh | |
parent | b4b7d23fd7a6e1bb8c6545a0e82d811244b5e2a7 (diff) |
Fix generic no awt test case
Diffstat (limited to 'java-run-noawt.sh')
-rwxr-xr-x | java-run-noawt.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/java-run-noawt.sh b/java-run-noawt.sh new file mode 100755 index 0000000..a895914 --- /dev/null +++ b/java-run-noawt.sh @@ -0,0 +1,22 @@ +#! /bin/sh + +MOSX=0 +uname -a | grep -i Darwin && MOSX=1 + +CPOK=0 +echo $CLASSPATH | grep jogl && CPOK=1 + +if [ $CPOK -eq 0 ] ; then + # Only valid for autobuild .. otherwise run manually with build-dir + . ./setenv-jogl.sh JOGL_ALL + echo $CLASSPATH | grep jogl && CPOK=1 +fi +if [ $CPOK -eq 0 ] ; then + echo No JOGL in CLASSPATH +else + if [ $MOSX -eq 1 ] ; then + X_ARGS="-XstartOnFirstThread" + fi + + java $X_ARGS -Djava.awt.headless=true $* 2>&1 | tee java-run-noawt.log +fi |