diff options
author | Nick Burch <nick@apache.org> | 2006-11-28 15:53:54 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2006-11-28 15:53:54 +0000 |
commit | 21d06261482fd16157a6c4de4e1285a817879686 (patch) | |
tree | 3d417ef85613bd2794b02c1daa188f2bf5c8fa9a /build.xml | |
parent | 49fb78cc39752ce094869b5d27e1708cbf6adb0c (diff) | |
download | poi-21d06261482fd16157a6c4de4e1285a817879686.tar.gz poi-21d06261482fd16157a6c4de4e1285a817879686.zip |
We need to ensure we have the main code compiled before running contrib and scratchpad tests
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@480101 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -456,7 +456,7 @@ </uptodate> </target> - <target name="test-scratchpad" depends="compile-scratchpad,-test-scratchpad-check" unless="scratchpad.test.notRequired"> + <target name="test-scratchpad" depends="compile-main,compile-scratchpad,-test-scratchpad-check" unless="scratchpad.test.notRequired"> <junit printsummary="yes" fork="no" haltonfailure="${halt.on.test.failure}" failureproperty="scratchpad.test.failed"> <classpath> <path refid="scratchpad.classpath"/> @@ -517,7 +517,7 @@ </uptodate> </target> - <target name="test-contrib" depends="compile-contrib,-test-contrib-check" unless="contrib.test.notRequired"> + <target name="test-contrib" depends="compile-main,compile-contrib,-test-contrib-check" unless="contrib.test.notRequired"> <junit printsummary="yes" fork="no" haltonfailure="${halt.on.test.failure}" failureproperty="contrib.test.failed"> <classpath> <path refid="contrib.classpath"/> |