The test target in user now runs sequentially because browser manager queues up too many requests in parallel.

Patch by: jlabanca
Review by: jgw



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6376 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/build.xml b/user/build.xml
index 1c9b22b..466e008 100755
--- a/user/build.xml
+++ b/user/build.xml
@@ -417,14 +417,14 @@
     <property.ensure name="distro.built" location="${gwt.dev.staging.jar}"
         message="GWT must be built before performing any tests.  This can be fixed by running ant in the ${gwt.root} directory." />
     <limit failonerror="true" hours="${test.timeout}">
-    <parallel threadsPerProcessor="${gwt.threadsPerProcessor}">
+    <sequential>
       <antcall target="test.dev"/>
       <antcall target="test.emma"/>
       <antcall target="test.web"/>
       <antcall target="test.draft"/>
       <antcall target="test.nometa"/>
       <antcall target="test.noserver"/>
-    </parallel>
+    </sequential>
     </limit>
   </target>