Updated the filter in the ant task for running hosted mode tests in emma mode. The filter now correctly excludes CoverageTest.class

Patch by: amitmanjhi



git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4636 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/build.xml b/user/build.xml
index 67c8337..6bbec08 100755
--- a/user/build.xml
+++ b/user/build.xml
@@ -14,7 +14,7 @@
        includes="**/EmmaClassLoadingTest.class" />
   
   <fileset id="default.hosted.emma.tests" dir="${javac.junit.out}" 
-      excludes="**/*jjs.test.CoverageTest.class" includes="**/*Test.class" />
+      excludes="**/CoverageTest.class" includes="**/*Test.class" />
   <!-- everything succeeds except CoverageTest.java. It fails due to a javac bug in sun/OpenJDK's Java. See the file contents for details -->
   
   <!--