diff options
author | Sven Gothel <[email protected]> | 2019-12-09 07:40:14 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-09 07:40:14 +0100 |
commit | c5fabde01babfdd07c72347ff17ac0705b8c6c5a (patch) | |
tree | eea0d6354309a71e056f6681c72e760dce1b8bd4 /make/scripts/junit-linux-x86_64-headless.sh | |
parent | 61eb1825663701fd50023328f6f3e8e8b24272b9 (diff) |
Bug 1411 DRM/GBM JOGL: Fix 'junit.run.console' unit test target, use it in respective (renamed) scripts.
Added junit.run.console target in build.xml
build-test.xml
- Moves all results.test artifact moving from current directory into test-zip-archive target,
reducing duplication.
- junit.run.console: Added proper dependencies etc
Renamed scripts to match junit.run.console:
junit-linux-x86_64-headless.sh -> junit-linux-x86_64-console.sh
junit-linux-armv6hf-headless.sh -> junit-linux-armv6hf-console.sh
Diffstat (limited to 'make/scripts/junit-linux-x86_64-headless.sh')
-rwxr-xr-x | make/scripts/junit-linux-x86_64-headless.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/make/scripts/junit-linux-x86_64-headless.sh b/make/scripts/junit-linux-x86_64-headless.sh deleted file mode 100755 index 561043c49..000000000 --- a/make/scripts/junit-linux-x86_64-headless.sh +++ /dev/null @@ -1,26 +0,0 @@ -#! /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-headless.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" - -# BUILD_ARCHIVE=true \ -ant \ - -Dsetup.noAWT=true \ - -Dsetup.noSWT=true \ - -Drootrel.build=build-x86_64 \ - -Djunit.run.arg0="--illegal-access=warn" \ - junit.run 2>&1 | tee -a $LOGF - |