Fixing the duplicate emma test drivers: only test.hosted.emma remains, not the implicit emma test in test.hosted. Its output is (correctly) $os-hosted-mode-emma, not $os-hosted-mode. Review by: amitmanjhi git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5280 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/build.xml b/user/build.xml index 5d96a0f..46c237c 100755 --- a/user/build.xml +++ b/user/build.xml
@@ -110,7 +110,7 @@ </target> <target name="test.hosted.emma" depends="compile, compile.tests" description="Run all hosted-mode tests in emma mode."> - <gwt.junit test.args="${test.args}" test.out="${junit.out}/${build.host.platform}-hosted-mode" test.cases="default.hosted.emma.tests" > + <gwt.junit test.args="${test.args}" test.out="${junit.out}/${build.host.platform}-hosted-mode-emma" test.cases="default.hosted.emma.tests" > <extraclasspaths> <pathelement location="${gwt.build}/out/dev/core/bin-test" /> <pathelement location="${gwt.tools.redist}/emma/emma.jar" /> @@ -124,12 +124,6 @@ <pathelement location="${gwt.build}/out/dev/core/bin-test" /> </extraclasspaths> </gwt.junit> - <gwt.junit test.args="${test.args}" test.out="${junit.out}/${build.host.platform}-hosted-mode-emma" test.cases="default.emma.tests" > - <extraclasspaths> - <pathelement location="${gwt.build}/out/dev/core/bin-test" /> - <pathelement location="${gwt.tools.redist}/emma/emma.jar" /> - </extraclasspaths> - </gwt.junit> </target> <target name="test.noserver" depends="compile, compile.tests" description="Run noserver hosted-mode tests for this project.">