diff options
author | Sven Gothel <[email protected]> | 2023-01-22 03:35:06 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-01-22 03:35:06 +0100 |
commit | 5b8f42a801de10c6b324edae0dacfbbdd2742467 (patch) | |
tree | 99de8427ec346941604e07d121b9dda0c364458e /make/scripts/tests.sh | |
parent | d509a3d435e8357a6148617d7792f164dbd0b529 (diff) |
scripts/tests*.sh: Put 'ulimit -c unlimited' in root script
Diffstat (limited to 'make/scripts/tests.sh')
-rw-r--r-- | make/scripts/tests.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index f3b6428d5..cbc394bc5 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -7,6 +7,8 @@ fi #set -x +ulimit -c unlimited + javaexe="$1" shift javaxargs=$1 @@ -958,11 +960,12 @@ function testawtswt() { #testawt com.jogamp.opengl.test.junit.jogl.acore.TestBug1398Deadlock02AWT $* # OSX OpenJDK17 x86_64 -testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextVBOES2NEWT5 $* +#testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextVBOES2NEWT5 $* #testawt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextWithJTabbedPaneAWT $* #testawt com.jogamp.opengl.test.junit.newt.event.TestNewtEventModifiersAWTCanvas $* #testawt com.jogamp.opengl.test.junit.newt.event.TestParentingFocus02SwingAWTRobot $* -#testswt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextVBOES2SWT3 $* + +testswt com.jogamp.opengl.test.junit.jogl.acore.TestSharedContextVBOES2SWT3 $* #testswt com.jogamp.opengl.test.junit.jogl.demos.es2.swt.TestGearsES2SWT $* #testswt com.jogamp.opengl.test.junit.jogl.swt.TestGLCanvasSWTNewtCanvasSWTPosInTabs $* #testawtswt com.jogamp.opengl.test.junit.jogl.swt.TestSWTBug643AsyncExec $* |