Revision: 5903 Author: [email protected] Date: Thu Aug 6 08:09:11 2009 Log: Fixing the testcases parameter to gwt.junit in the test.web.htmlunit target. They currently point to default.web.tests, which were removed.
Patch by: jlabanca Review by: jgw (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=5903 Modified: /trunk/user/build.xml ======================================= --- /trunk/user/build.xml Wed Aug 5 21:01:59 2009 +++ /trunk/user/build.xml Thu Aug 6 08:09:11 2009 @@ -196,7 +196,8 @@ <target name="test.web.htmlunit" depends="compile, compile.tests" description="Run htmlunit web-mode tests for this project."> <!-- TODO: add more browsers later --> - <gwt.junit test.args="${test.args} -htmlunit FF3" test.out="${junit.out}/${build.host.platform}-htmlunit-web-mode" test.cases="default.web.tests" > + <fileset id="test.web.htmlunit.tests" dir="${javac.junit.out}" includes="${gwt.junit.testcase.web.includes}" excludes="${gwt.junit.testcase.web.excludes}" /> + <gwt.junit test.args="${test.args} -htmlunit FF3" test.out="${junit.out}/${build.host.platform}-htmlunit-web-mode" test.cases="test.web.htmlunit.tests" > <extraclasspaths> <path refid="test.extraclasspath" /> <path refid="htmlunit.libs" /> --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
