Exluding BrowserManagerTest from the dev tests. It is brought when we compile the user files (we need to compile hello sample for dev tests) because BrowserManagerTest is actually in user/src, not user/test.
Patch by: jlabanca
Review by: kprobst
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6464 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/build.xml b/dev/build.xml
index ae7b7aa..014a432 100755
--- a/dev/build.xml
+++ b/dev/build.xml
@@ -6,7 +6,8 @@
<property name="alldeps.jar" location="${project.build}/alldeps.jar" />
<property name="gwt.junit.testcase.dev.core.includes" value="**/com/google/**/*Test.class" />
- <property name="gwt.junit.testcase.dev.core.excludes" value="" />
+ <!-- BrowserManagerTest is brought in from user and is not instantiable. -->
+ <property name="gwt.junit.testcase.dev.core.excludes" value="**/BrowserManagerTest.class" />
<target name="clean" description="Cleans this project's intermediate and output files">
<delete dir="${project.build}" failonerror="false" />