summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-08-10 10:59:03 +0200
committerSven Gothel <[email protected]>2023-08-10 10:59:03 +0200
commit2ae7f2ea923aab662a0c273578456216bc8cd633 (patch)
tree533c2fe1a5561f05bc7b04f3131edc0136b421da /make
parentc30f0db4b785f21288f9cc5f7fd65393781d93c3 (diff)
Bug 1450: Add test snippets covering the issues: test2.h for Bindingtest2, TestJCPP and new TestCParser
Diffstat (limited to 'make')
-rw-r--r--make/build.xml4
-rwxr-xr-xmake/scripts/runtest.sh3
2 files changed, 4 insertions, 3 deletions
diff --git a/make/build.xml b/make/build.xml
index a4afadb..516daa1 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -699,7 +699,7 @@
-->
<target name="generate.java">
<!-- Generate the Java files -->
- <antlr target="${output.dir}/${target}" outputdirectory="${output.dir}">
+ <antlr target="${output.dir}/${target}" outputdirectory="${output.dir}" debug="no" trace="no">
<classpath refid="antlr.classpath" />
</antlr>
</target>
@@ -715,7 +715,7 @@
-->
<target name="generate.java.override">
<!-- Generate the Java files -->
- <antlr target="${output.dir}/${target}" glib="${output.dir}/${override}" outputdirectory="${output.dir}">
+ <antlr target="${output.dir}/${target}" glib="${output.dir}/${override}" outputdirectory="${output.dir}" debug="no" trace="no">
<classpath refid="antlr.classpath" />
</antlr>
</target>
diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh
index cb480f4..32a57b3 100755
--- a/make/scripts/runtest.sh
+++ b/make/scripts/runtest.sh
@@ -150,7 +150,8 @@ 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
#onetest com.jogamp.gluegen.jcpp.IncludeAbsoluteTest 2>&1 | tee -a $LOG