aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-02-24 18:05:51 +0100
committerSven Gothel <[email protected]>2012-02-24 18:05:51 +0100
commit08525c91032f87eaf21a8b5a9c31bad20385a354 (patch)
treee7815208e7c2bbfb95ce1f553d0addf9fbfccaa8 /make
parentbfa4628865e61636500ac5049c0a46c7338723cf (diff)
Even if 'junit.is.disabled', we need to produce the test archive (7z), otherwise the jenkins build fails.
Diffstat (limited to 'make')
-rw-r--r--make/build-test.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/make/build-test.xml b/make/build-test.xml
index 7433433ad..2cb3a8907 100644
--- a/make/build-test.xml
+++ b/make/build-test.xml
@@ -661,8 +661,11 @@ ${line.separator}
<mkdir dir="${results.test}" />
</target>
- <target name="junit.run" depends="junit.run.settings" unless="junit.is.disabled">
+ <target name="junit.run.if.enabled" unless="junit.is.disabled">
<antcall target="junit.run.tests" inheritRefs="true" inheritAll="true"/>
+ </target>
+
+ <target name="junit.run" depends="junit.run.settings, junit.run.if.enabled">
<mkdir dir="${results.test}" />
<move todir="${results.test}">
<fileset dir="." includes="*.tga" />