Author: [email protected]
Date: Fri Jul 10 19:19:32 2009
New Revision: 5717
Modified:
trunk/dev/build.xml
trunk/jni/build.xml
Log:
More ant tweaks, this time to speed dev and jni tests by not attempting to
test the OS'es we're not on.
Review by: rjrjr
Modified: trunk/dev/build.xml
==============================================================================
--- trunk/dev/build.xml (original)
+++ trunk/dev/build.xml Fri Jul 10 19:19:32 2009
@@ -3,6 +3,13 @@
<property name="project.tail" value="dev" />
<import file="${gwt.root}/platforms.ant.xml" />
+
+ <target name="test" description="Tests this project, but only on this
platform">
+ <gwt.ant dir="core" target="test"/>
+ <gwt.ant dir="oophm" target="test"/>
+ <gwt.ant dir="${build.host.platform}" target="test"/>
+ </target>
+
<target name="clean" description="Cleans this project's intermediate and
output files">
<delete dir="${project.build}" failonerror="false" />
<delete failonerror="false">
Modified: trunk/jni/build.xml
==============================================================================
--- trunk/jni/build.xml (original)
+++ trunk/jni/build.xml Fri Jul 10 19:19:32 2009
@@ -2,4 +2,9 @@
<property name="gwt.root" location=".." />
<property name="project.tail" value="jni" />
<import file="${gwt.root}/platforms.ant.xml" />
+
+ <target name="test" description="Tests this project, but only on this
platform">
+ <gwt.ant dir="core" target="test"/>
+ <gwt.ant dir="${build.host.platform}" target="test"/>
+ </target>
</project>
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---