diff options
author | Sven Gothel <[email protected]> | 2023-09-20 00:03:54 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-09-20 00:03:54 +0200 |
commit | fedfc22ba3a3583a3ecf4b55f7f8a822045b690c (patch) | |
tree | 419f3940844cbc317cbc7659885870f524ba2c2b /make/scripts/runtest.sh | |
parent | afe9f7e1694d93ac68fd34ff29b5cf3ee2fbd64d (diff) |
Add WorkerThread: A re-start'able, pause'able and interrupt'able worker thread with an optional minimum execution duration
Diffstat (limited to 'make/scripts/runtest.sh')
-rwxr-xr-x | make/scripts/runtest.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh index a4c1d55..786c30a 100755 --- a/make/scripts/runtest.sh +++ b/make/scripts/runtest.sh @@ -119,6 +119,7 @@ function onetest() { #onetest com.jogamp.common.util.TestLongIntHashMap 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestPlatform01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestRunnableTask01 2>&1 | tee -a $LOG +onetest com.jogamp.common.util.TestWorkerThread01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIOUtil01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestTempJarCache 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestJarUtil 2>&1 | tee -a $LOG @@ -150,7 +151,7 @@ function onetest() { #onetest com.jogamp.common.os.TestElfReader01 $* 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.test.junit.internals.TestType 2>&1 | tee -a $LOG -onetest com.jogamp.gluegen.test.junit.generation.TestJCPP $* 2>&1 | tee -a $LOG +#onetest com.jogamp.gluegen.test.junit.generation.TestJCPP $* 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.test.junit.generation.TestCParser $* 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.jcpp.CppReaderTest 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.jcpp.ErrorTest 2>&1 | tee -a $LOG |