summaryrefslogtreecommitdiff
blob: e8f7600398e223c296ad5e139f71d4da593d2d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--- build.xml	2008-06-11 05:25:20.000000000 +0200
+++ build.xml.new	2008-08-22 15:59:53.000000000 +0200
@@ -102,6 +102,7 @@
     <path id="empty.classpath"/>
 
     <path id="class.path">
+	<fileset dir="lib" includes="*.jar"/>
       <pathelement location="${specificjar}"/>
       <pathelement location="."/>
     </path>
@@ -487,14 +488,14 @@
     <!-- JUnit unit tests                                             -->
     <!-- ============================================================ -->
 
-    <target name="init-unittest" depends="init">
+    <target name="init-unittest" depends="init" unless="notest">
         <delete dir="${unittest.datadir}"/>
         <delete dir="${unittest.reportsdir}"/>
         <mkdir dir="${unittest.datadir}"/>
         <mkdir dir="${unittest.reportsdir}"/>
     </target>
 
-    <target name="clean-unittest" depends="init-unittest">
+    <target name="clean-unittest" depends="init-unittest" unless="notest">
         <delete dir="${unittest.destdir}"/>
         <mkdir dir="${unittest.destdir}"/>
         <delete dir="${unittest.testserialdir}"/>
@@ -503,7 +504,7 @@
         <mkdir dir="${unittest.testevolvedir}"/>
     </target>
 
-    <target name="compile-unittest" depends="compile-src">
+    <target name="compile-unittest" depends="compile-src" unless="notest">
       <ant antfile="ant/compile.xml" dir="." inheritall="false">
         <property name="srcdir" value="${unittest.srcdir}"/>
         <property name="destdir" value="${unittest.destdir}"/>
@@ -597,7 +598,7 @@
     </path>
 
     <target name="test"
-            depends="compile-unittest, init-unittest, jar">
+            depends="compile-unittest, init-unittest, jar" unless="notest">
 
       <!-- Determine which tests to run. -->
       <condition property="alltests">