You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by br...@apache.org on 2009/08/13 23:09:15 UTC

svn commit: r804028 - /incubator/pivot/trunk/build.xml

Author: brindy
Date: Thu Aug 13 21:09:15 2009
New Revision: 804028

URL: http://svn.apache.org/viewvc?rev=804028&view=rev
Log:
Include the test folder in the classpath for the core-test so that the .json resources are picked up.

Modified:
    incubator/pivot/trunk/build.xml

Modified: incubator/pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/build.xml?rev=804028&r1=804027&r2=804028&view=diff
==============================================================================
--- incubator/pivot/trunk/build.xml (original)
+++ incubator/pivot/trunk/build.xml Thu Aug 13 21:09:15 2009
@@ -133,7 +133,7 @@
             <junit fork="true">
                 <classpath>
                     <classpath-elements/>
-                </classpath>
+               </classpath>
 
                 <formatter type="brief" usefile="false" if="test.formatter"/>
 
@@ -266,6 +266,7 @@
     <target name="core-test" depends="core">
         <test project="core">
             <pathelement location="core/${folder.bin}"/>
+            <pathelement location="core/test"/>
         </test>
     </target>