Removed test from the build / run targets but left in for dist.

Refactored ant build chain to allow building / running without execution of tests but ensure tests are run during dist. Note that tests are still runnable under the test target itself. Resolves #8.
This commit is contained in:
Sam Pottinger
2019-11-25 18:09:01 -08:00
parent 9361bfc2da
commit 7efe9b0c85
4 changed files with 16 additions and 8 deletions
+2 -2
View File
@@ -124,7 +124,7 @@
<compilecommon srcdir="src; test/processing" destdir="bin-test" classpath="classpath.test" />
</target>
<target name="test" depends="test-compile">
<target name="test" depends="build, test-compile">
<junit haltonfailure="true">
<classpath refid="classpath.test" />
<formatter type="brief" usefile="false" />
@@ -137,7 +137,7 @@
</junit>
</target>
<target name="compile" depends="test" description="Compile sources">
<target name="compile" description="Compile sources" depends="preproc">
<compilecommon srcdir="src" destdir="bin" classpath="classpath.base" />
</target>