You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/03/10 18:29:37 UTC

svn commit: r752173 - in /cxf/sandbox/interopfest/wstrust10: pom.xml src/main/java/interop/client/Client.java

Author: dkulp
Date: Tue Mar 10 17:29:35 2009
New Revision: 752173

URL: http://svn.apache.org/viewvc?rev=752173&view=rev
Log:
Default to run all the tests

Modified:
    cxf/sandbox/interopfest/wstrust10/pom.xml
    cxf/sandbox/interopfest/wstrust10/src/main/java/interop/client/Client.java

Modified: cxf/sandbox/interopfest/wstrust10/pom.xml
URL: http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wstrust10/pom.xml?rev=752173&r1=752172&r2=752173&view=diff
==============================================================================
--- cxf/sandbox/interopfest/wstrust10/pom.xml (original)
+++ cxf/sandbox/interopfest/wstrust10/pom.xml Tue Mar 10 17:29:35 2009
@@ -6,7 +6,7 @@
     <version>1.0</version>
     <properties>
         <cxf.version>2.2-SNAPSHOT</cxf.version>
-        <test.method>A</test.method>
+        <test.method>ALL</test.method>
 
         <wsdl.host>131.107.72.15</wsdl.host>
         <target.host>131.107.72.15</target.host>

Modified: cxf/sandbox/interopfest/wstrust10/src/main/java/interop/client/Client.java
URL: http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wstrust10/src/main/java/interop/client/Client.java?rev=752173&r1=752172&r2=752173&view=diff
==============================================================================
--- cxf/sandbox/interopfest/wstrust10/src/main/java/interop/client/Client.java (original)
+++ cxf/sandbox/interopfest/wstrust10/src/main/java/interop/client/Client.java Tue Mar 10 17:29:35 2009
@@ -50,8 +50,7 @@
     public static void main(String argv[])
         throws Exception {
         
-        
-        if (argv.length < 1) {
+        if (argv.length < 1 || "ALL".equals(argv[0])) {
             argv = new String[] {
                 "Scenario_1_IssuedTokenOverTransport_UsernameOverTransport",
                 "Scenario_2_IssuedToken_MutualCertificate10",