You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ru...@apache.org on 2007/11/26 18:33:15 UTC

svn commit: r598357 - /incubator/qpid/branches/M2.1/java/systests/pom.xml

Author: rupertlssmith
Date: Mon Nov 26 09:33:14 2007
New Revision: 598357

URL: http://svn.apache.org/viewvc?rev=598357&view=rev
Log:
Fixed broken plugin.

Modified:
    incubator/qpid/branches/M2.1/java/systests/pom.xml

Modified: incubator/qpid/branches/M2.1/java/systests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/java/systests/pom.xml?rev=598357&r1=598356&r2=598357&view=diff
==============================================================================
--- incubator/qpid/branches/M2.1/java/systests/pom.xml (original)
+++ incubator/qpid/branches/M2.1/java/systests/pom.xml Mon Nov 26 09:33:14 2007
@@ -91,53 +91,51 @@
             </plugin>
 
             <!-- Runs the framework based tests against an in-vm broker. -->
-	    <!--
             <plugin>
                 <groupId>uk.co.thebadgerset</groupId>
                 <artifactId>junit-toolkit-maven-plugin</artifactId>
-                <executions>
+
+                <configuration>
+                    <systemproperties>
+                        <property>
+                            <name>log4j.configuration</name>
+                            <value>${log4j.configuration}</value>
+                        </property>
+                    </systemproperties>
+                    
+                    <testrunner>uk.co.thebadgerset.junit.extensions.TKTestRunner</testrunner>
+                    
+                    <testrunneroptions>
+                        <option>-X:decorators "org.apache.qpid.test.framework.qpid.InVMBrokerDecorator:org.apache.qpid.test.framework.qpid.AMQPFeatureDecorator"</option>
+                        <option>-o</option>
+                        <option>--csv</option>
+                    </testrunneroptions>
+                    
+                    <testrunnerproperties>
+                        <property>
+                            <name>notApplicableAssertion</name>
+                            <value>warn</value>
+                        </property>
+                    </testrunnerproperties>
+                    
+                    <commands>
+                        <Immediate-Message-Test>-n Immediate-Test -s[1] org.apache.qpid.test.testcases.ImmediateMessageTest</Immediate-Message-Test>
+                        <Mandatory-Message-Test>-n Mandatory-Test -s[1] org.apache.qpid.test.testcases.MandatoryMessageTest</Mandatory-Message-Test>
+                        <Rollback-Test>-n Rollback-Test -s[1] org.apache.qpid.test.testcases.RollbackTest</Rollback-Test>
+                    </commands>
+                    
+                </configuration>
+
+                <executions>                    
                     <execution>
                         <id>framework_tests</id>
-                        <phase>test</phase>
-
-                        <configuration>
-                            <systemproperties>
-                                <property>
-                                    <name>log4j.configuration</name>
-                                    <value>${log4j.configuration}</value>
-                                </property>
-                            </systemproperties>
-                            
-                            <testrunner>uk.co.thebadgerset.junit.extensions.TKTestRunner</testrunner>
-                            
-                            <testrunneroptions>
-                                <option>-X:decorators "org.apache.qpid.test.framework.qpid.InVMBrokerDecorator:org.apache.qpid.test.framework.qpid.AMQPFeatureDecorator"</option>
-                                <option>-o</option>
-                                <option>##csv</option>
-                            </testrunneroptions>
-                            
-                            <testrunnerproperties>
-                                <property>
-                                    <name>notApplicableAssertion</name>
-                                    <value>warn</value>
-                                </property>
-                            </testrunnerproperties>
-                            
-                            <commands>
-                                <Immediate-Message-Test>-n Immediate-Test -s[1] org.apache.qpid.test.testcases.ImmediateMessageTest</Immediate-Message-Test>
-                                <Mandatory-Message-Test>-n Mandatory-Test -s[1] org.apache.qpid.test.testcases.MandatoryMessageTest</Mandatory-Message-Test>
-                                <Rollback-Test>-n Rollback-Test -s[1] org.apache.qpid.test.testcases.RollbackTest</Rollback-Test>
-                            </commands>
-                            
-                        </configuration>
-                        
+                        <phase>test</phase>                       
                         <goals>
                             <goal>tktest</goal>
                         </goals>                        
                     </execution>
                 </executions>
             </plugin>
-	    -->
 
         </plugins>