diff options
author | Sven Gothel <[email protected]> | 2023-03-07 04:05:10 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-07 04:05:10 +0100 |
commit | 14a47f60d2dc7c4f6b2d910fcc8489726443db22 (patch) | |
tree | 22a766ffe9424cd60855c4b5502afa10349966ae /make/scripts/tests-linux-aarch64.sh | |
parent | fb03e913c0c55a9a96e93a00ef6590b9bea9a62a (diff) |
Graph Perf Test: {Test->Perf}TextRendererNEWT00: Drop junit, ... (WIP)
Also tested w/ alternative JVM (Azul) .. works well, no big difference (but slower startup time, but might be OpenJDK 17->19 related as well).
Printing usual system infos to make the test record useful.
Cmdline is: com.jogamp.opengl.test.junit.graph.PerfTextRendererNEWT00 -es2 -Nperf -long_text -loop 40
Diffstat (limited to 'make/scripts/tests-linux-aarch64.sh')
-rwxr-xr-x | make/scripts/tests-linux-aarch64.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/make/scripts/tests-linux-aarch64.sh b/make/scripts/tests-linux-aarch64.sh index f1b4de19d..bc59dacf0 100755 --- a/make/scripts/tests-linux-aarch64.sh +++ b/make/scripts/tests-linux-aarch64.sh @@ -1,8 +1,11 @@ #! /bin/bash -spath=`dirname $0` +SDIR=`dirname $0` -. $spath/tests.sh `which java` -DummyArg ../build-linux-aarch64 $* -#. $spath/tests.sh /usr/lib/jvm/java-11-openjdk-arm64/bin/java -DummyArg ../build-linux-aarch64 $* +#JAVA_CMD=/opt-linux-arm64/zulu19.32.13-ca-jdk19.0.2-linux_aarch64/bin/java +#JAVA_CMD=/usr/lib/jvm/java-11-openjdk-arm64/bin/java +JAVA_CMD=`which java` + +. $SDIR/tests.sh $JAVA_CMD -DummyArg ../build-linux-aarch64 $* |