You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2010/01/01 09:49:50 UTC

svn commit: r894981 - in /incubator/pivot/trunk: build.xml wtk/test/org/apache/pivot/wtk/text/

Author: tvolkert
Date: Fri Jan  1 08:49:49 2010
New Revision: 894981

URL: http://svn.apache.org/viewvc?rev=894981&view=rev
Log:
Added tests project to build script, removed empty folder

Removed:
    incubator/pivot/trunk/wtk/test/org/apache/pivot/wtk/text/
Modified:
    incubator/pivot/trunk/build.xml

Modified: incubator/pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/build.xml?rev=894981&r1=894980&r2=894981&view=diff
==============================================================================
--- incubator/pivot/trunk/build.xml (original)
+++ incubator/pivot/trunk/build.xml Fri Jan  1 08:49:49 2010
@@ -217,7 +217,7 @@
 
     <!-- Compile all classes (tests included) -->
     <target name="compile" description="Compiles all projects"
-        depends="charts, core, demos, tools, tutorials, web, web-server, wtk, wtk-terra"/>
+        depends="charts, core, demos, tests, tools, tutorials, web, web-server, wtk, wtk-terra"/>
 
     <!-- Package JAR files -->
     <target name="package" description="Packages all projects into JAR files" depends="compile">
@@ -236,6 +236,7 @@
     <target name="test" description="Executes unit tests" depends="compile">
         <test project="core"/>
         <test project="web"/>
+        <test project="wtk"/>
     </target>
 
     <!-- Clean -->
@@ -243,6 +244,7 @@
         <clean project="charts"/>
         <clean project="core"/>
         <clean project="demos"/>
+        <clean project="tests"/>
         <clean project="tools"/>
         <clean project="tutorials"/>
         <clean project="web"/>
@@ -291,6 +293,10 @@
         <compile project="demos"/>
     </target>
 
+    <target name="tests" depends="core, web, wtk, wtk-terra">
+        <compile project="tests"/>
+    </target>
+
     <target name="tools" depends="core, wtk">
         <compile project="tools"/>
     </target>