diff options
Diffstat (limited to 'make/scripts/junit-linux-x86_64-console.sh')
-rwxr-xr-x | make/scripts/junit-linux-x86_64-console.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/make/scripts/junit-linux-x86_64-console.sh b/make/scripts/junit-linux-x86_64-console.sh new file mode 100755 index 000000000..076c3a088 --- /dev/null +++ b/make/scripts/junit-linux-x86_64-console.sh @@ -0,0 +1,29 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh +fi + +LOGF=junit.jogl.all.linux-x86_64-console.log +rm -f $LOGF + +export SOURCE_LEVEL=1.8 +export TARGET_LEVEL=1.8 +export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + +#TARGET=junit.run +TARGET=junit.run.console + +# BUILD_ARCHIVE=true \ +ant \ + -Dsetup.noAWT=true \ + -Dsetup.noSWT=true \ + -Drootrel.build=build-x86_64 \ + -Djunit.run.arg0="--illegal-access=warn" \ + $TARGET 2>&1 | tee -a $LOGF + |