[jboss-svn-commits] JBL Code SVN: r29959 - labs/jbosstm/trunk/qa.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Nov 4 11:05:06 EST 2009


Author: jhalliday
Date: 2009-11-04 11:05:05 -0500 (Wed, 04 Nov 2009)
New Revision: 29959

Modified:
   labs/jbosstm/trunk/qa/TaskImpl.properties
   labs/jbosstm/trunk/qa/run-tests.xml
Log:
Wire up some more tests. JBTM-390


Modified: labs/jbosstm/trunk/qa/TaskImpl.properties
===================================================================
--- labs/jbosstm/trunk/qa/TaskImpl.properties	2009-11-04 15:42:45 UTC (rev 29958)
+++ labs/jbosstm/trunk/qa/TaskImpl.properties	2009-11-04 16:05:05 UTC (rev 29959)
@@ -61,18 +61,21 @@
 #
 # properties that modify the behaviour of the product being tested:
 #
-COMMAND_LINE_10=-Dcom.arjuna.ats.arjuna.coordinator.maintainHeuristics=NO
-COMMAND_LINE_11=-Dcom.arjuna.ats.arjuna.recovery.periodicRecoveryPeriod=10
-COMMAND_LINE_12=-Dcom.arjuna.ats.arjuna.recovery.recoveryBackoffPeriod=5
+COMMAND_LINE_10=-DCoordinatorEnvironmentBean.maintainHeuristics=NO
+# shorten recovery interval to speed crash rec tests
+COMMAND_LINE_11=-DRecoveryEnvironmentBean.periodicRecoveryPeriod=10
+COMMAND_LINE_12=-DRecoveryEnvironmentBean.recoveryBackoffPeriod=5
+# statistics are required for some txcore tests
+COMMAND_LINE_13=-DCoordinatorEnvironmentBean.enableStatistics=true
 #
 # enable these to debug spawned processes. You may need to pause the test
 # framework in a debugger too, or it may spawn multiple procs on the same
 # debug port.
 #
-#COMMAND_LINE_13=-Xdebug
-#COMMAND_LINE_14=-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006
+#COMMAND_LINE_14=-Xdebug
+#COMMAND_LINE_15=-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006
 
-COMMAND_LINE_13=-Dqa.debug=true
+COMMAND_LINE_14=-Dqa.debug=true
 
 #
 # task arg properties substitutions - you probably don't need to mess with these.
@@ -88,3 +91,5 @@
 # for JTA set to -local for JTS leave blank
 LOCAL_PARAMETER=
 #LOCAL_PARAMETER=-local
+# CALLS is used by some txcore* tests
+CALLS=10
\ No newline at end of file

Modified: labs/jbosstm/trunk/qa/run-tests.xml
===================================================================
--- labs/jbosstm/trunk/qa/run-tests.xml	2009-11-04 15:42:45 UTC (rev 29958)
+++ labs/jbosstm/trunk/qa/run-tests.xml	2009-11-04 16:05:05 UTC (rev 29959)
@@ -42,11 +42,6 @@
     <!-- handy utility space where you can copy one or more test groups if you want to run something ad-hoc -->
     <target name="scratch">
 
-        <antcall target="junit-tests">
-            <param name="tests" value="jtatests01"/>
-            <param name="names" value="Test00[2|3]"/>
-        </antcall>
-        
     </target>
 
     <!-- a faster subset of the tests for smoke testing. aim to keep to under one hour total. -->
@@ -86,6 +81,17 @@
     -->
     <target name="junit">
 
+        <!-- txcore : 28 tests, 2 minutes -->
+        <antcall target="junit-tests"><param name="tests" value="txcore"/></antcall>
+        <!-- txcore_lockrecord : 128 tests, 3 minutes -->
+        <antcall target="junit-tests"><param name="tests" value="txcore_lockrecord"/></antcall>
+        <!-- txcore_abstractrecord : 40 tests, 1 minute -->
+        <antcall target="junit-tests"><param name="tests" value="txcore_abstractrecord"/></antcall>
+        <!-- txcore_statemanager : 80 tests, 2 minutes -->
+        <antcall target="junit-tests"><param name="tests" value="txcore_statemanager"/></antcall>
+        <!-- txcore_utility : 40 tests, 1 minute -->
+        <antcall target="junit-tests"><param name="tests" value="txcore_utility"/></antcall>
+
         <!-- currenttests01 : 36 tests, 3 minutes -->
         <antcall target="junit-tests"><param name="tests" value="currenttests01"/></antcall>
         <!-- jtatests01 : 6 tests, 1 minute -->
@@ -349,4 +355,25 @@
 
     </target>
 
+<!--
+
+unused groups, pending cleanup and wiring:
+
+ait01_ots_transactionmanager.java
+aitresources01.java
+crashrecovery13.java
+jdbclocals01_ibmdb2_jndi.java
+jdbclocals01_ms_sql_jndi.java
+jdbclocals01_mysql_jndi.java
+jdbclocals01_oracle_jndi.java
+jdbclocals01_postgresql_jndi.java
+jdbclocals01_sybase_jndi.java
+jdbcresources03_oracle_thin_jndi.java
+jdbcresources04_oracle_thin_jndi.java
+
+txcore_recovery.java - JBTM-522 and rec module
+txoj.java - thse should be unit tests.
+
+-->
+
 </project>



More information about the jboss-svn-commits mailing list