diff options
author | Sven Gothel <[email protected]> | 2012-02-24 18:19:36 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-24 18:19:36 +0100 |
commit | 4af25334965ac9f2b47c7f098b556c02057616cb (patch) | |
tree | d6c0259605bfe98f4962a60f792ca7c322eccba5 /make/build-test.xml | |
parent | 7d0aacbf139d52c8a1ef76c3fa9d753ecfab234a (diff) |
If junit.is.disabled, copy a dummy TEST xml file, otherwisa Jenkins claims failure.
Diffstat (limited to 'make/build-test.xml')
-rw-r--r-- | make/build-test.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index 21f1cb3..51b4f83 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -407,8 +407,11 @@ ${line.separator} <target name="junit.run.if.enabled" unless="junit.is.disabled"> <antcall target="junit.run.tests" inheritRefs="true" inheritAll="true"/> </target> + <target name="junit.run.if.disabled" if="junit.is.disabled"> + <copy todir="${build}/test/results" file="${gluegen.root}/make/lib/TEST-com.jogamp.junit.DisabledTest.xml"/> + </target> - <target name="junit.run" depends="junit.run.settings, junit.run.if.enabled"> + <target name="junit.run" depends="junit.run.settings, junit.run.if.enabled, junit.run.if.disabled"> <antcall target="test-zip-archive" inheritRefs="true" /> </target> |