diff options
author | Sven Gothel <[email protected]> | 2011-04-01 20:07:41 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-04-01 20:07:41 +0200 |
commit | 4c3aaeaa5e105b462d5212d049db9dcd058c94c7 (patch) | |
tree | d929da5cedac758fd57169013bb53b01b25dfa25 /make/build-test.xml | |
parent | 5857d93e2d41608b247ec18cb9129f3a6624d9ac (diff) |
archive tga results
Diffstat (limited to 'make/build-test.xml')
-rw-r--r-- | make/build-test.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index f996ba2c1..b6c728870 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -42,6 +42,7 @@ <target name="clean" description="Remove all build products" depends="declare.common"> <delete includeEmptyDirs="true" quiet="true"> <fileset dir="${build.test}" /> + <fileset dir="." includes="*.tga" /> </delete> </target> @@ -58,6 +59,7 @@ <delete quiet="true"> <fileset dir="${results.test}" includes="**"/> <fileset file="${build}/${test.archive.name}.7z"/> + <fileset dir="." includes="*.tga" /> </delete> <mkdir dir="${results.test}" /> @@ -473,6 +475,10 @@ <!-- updates / create the test results zip file --> <target name="test-zip-archive" depends="declare.common"> + <move todir="${results.test}"> + <fileset dir="." includes="*.tga" /> + </move> + <mkdir dir="${results.test}" /> <archive.7z destfile="${build}/${test.archive.name}.7z" basedir="${results.test}" includes="**" /> |