You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2006/09/03 19:11:07 UTC

svn commit: r439805 - /tapestry/tapestry5/tapestry-core/trunk/src/test/conf/testng.xml

Author: hlship
Date: Sun Sep  3 10:11:07 2006
New Revision: 439805

URL: http://svn.apache.org/viewvc?view=rev&rev=439805
Log:
Organize testng.xml so that the integration tests are more likely to run in parallel with the normal unit tests.

Modified:
    tapestry/tapestry5/tapestry-core/trunk/src/test/conf/testng.xml

Modified: tapestry/tapestry5/tapestry-core/trunk/src/test/conf/testng.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-core/trunk/src/test/conf/testng.xml?view=diff&rev=439805&r1=439804&r2=439805
==============================================================================
--- tapestry/tapestry5/tapestry-core/trunk/src/test/conf/testng.xml (original)
+++ tapestry/tapestry5/tapestry-core/trunk/src/test/conf/testng.xml Sun Sep  3 10:11:07 2006
@@ -14,10 +14,12 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-
-<suite name="Tapestry 5" parallel="true" thread-count="5" annotations="1.5" verbose="2">
-  <test name="General">
+<suite name="Tapestry" parallel="true" thread-count="10" annotations="1.5" verbose="2">
+  <test name="Tapestry Core">
     <packages>
+      <!-- Logically we'd like to do the General (unit) testing first, but practically,
+        it's great to have it all run in parallel. -->
+      <package name="org.apache.tapestry.integration"/>
       <package name="org.apache.tapestry"/>
       <package name="org.apache.tapestry.dom"/>
       <package name="org.apache.internal"/>
@@ -34,11 +36,6 @@
       <package name="org.apache.tapestry.runtime"/>
       <package name="org.apache.tapestry.internal.bindings"/>
       <package name="org.apache.tapestry.internal.model"/>
-    </packages>
-  </test>
-  <test name="Integration">
-    <packages>
-      <package name="org.apache.tapestry.integration"/>
     </packages>
   </test>
 </suite>