Revision: 6242 Author: [email protected] Date: Mon Sep 28 17:01:43 2009 Log: Fix inadvertent removal of -batch module from remoteweb and selenium tests.
Patch by: jat Review by: fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=6242 Modified: /branches/farewellSwt/user/build.xml ======================================= --- /branches/farewellSwt/user/build.xml Mon Sep 28 16:56:34 2009 +++ /branches/farewellSwt/user/build.xml Mon Sep 28 17:01:43 2009 @@ -107,7 +107,7 @@ <target name="test.remoteweb" description="Run a remoteweb test at the given host and path" if="gwt.remote.browsers"> <echo message="Performing remote browser testing at ${gwt.remote.browsers}" /> <fileset id="test.remoteweb.tests" dir="${javac.junit.out}" includes="${gwt.junit.testcase.web.includes}" excludes="${gwt.junit.testcase.web.excludes}" /> - <gwt.junit test.args="${test.args} -out www -web -runStyle RemoteWeb:${gwt.remote.browsers}" test.out="${junit.out}/remoteweb" test.cases="test.remoteweb.tests" > + <gwt.junit test.args="${test.args} -out www -web -runStyle RemoteWeb:${gwt.remote.browsers} -batch module" test.out="${junit.out}/remoteweb" test.cases="test.remoteweb.tests" > <extraclasspaths> <path refid="test.extraclasspath" /> </extraclasspaths> @@ -121,7 +121,7 @@ <target name="test.selenium" description="Run a remote test using Selenium RC test at the given host and path" if="gwt.selenium.hosts"> <echo message="Performing remote browser testing using Selenium RC at ${gwt.selenium.hosts}" /> <fileset id="test.selenium.tests" dir="${javac.junit.out}" includes="${gwt.junit.testcase.web.includes}" excludes="${gwt.junit.testcase.web.excludes}" /> - <gwt.junit test.args="${test.args} -out www -web -runStyle Selenium:${gwt.selenium.hosts}" test.out="${junit.out}/selenium" test.cases="test.selenium.tests" > + <gwt.junit test.args="${test.args} -out www -web -runStyle Selenium:${gwt.selenium.hosts} -batch module" test.out="${junit.out}/selenium" test.cases="test.selenium.tests" > <extraclasspaths> <path refid="test.extraclasspath" /> </extraclasspaths> --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
