User: user57  
  Date: 01/07/09 19:34:05

  Modified:    src/main/org/jboss/test/xa/test Main.java
  Log:
   o changed all deploy tests to deploy as a test and to not call System.exit().
     this should allow reports to be generated for tests that fail to deploy.
   o modified run_tests.xml basic-security-tests to not-halt on error, so that
     test-and-report will produce reports even if the security tests fail.
  
  Revision  Changes    Path
  1.5       +15 -17    jbosstest/src/main/org/jboss/test/xa/test/Main.java
  
  Index: Main.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/xa/test/Main.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Main.java 2001/07/06 00:38:51     1.4
  +++ Main.java 2001/07/10 02:34:05     1.5
  @@ -119,23 +119,21 @@
       {
       }
   
  -     public static Test suite() {
  -        TestSuite suite = new TestSuite();
  -     
  -        try {
  -            System.out.println("Deploying...");
  -            Deploy.deploy("../deploy/xatest.jar");
  +   /**
  +    * Setup the test suite.
  +    */
  +   public static Test suite() {
  +      TestSuite suite = new TestSuite();
  +        
  +      // add a test case to deploy our support applications
  +      String filename = "xatest.jar";
  +      suite.addTest(new Deploy.Deployer(filename));
   
  -            suite.addTest(new TestSuite(Main.class));
  +      suite.addTest(new TestSuite(Main.class));
  +      
  +      // add a test case to undeploy our support applications
  +      suite.addTest(new Deploy.Undeployer("../deploy/xatest.jar"));
   
  -            // add a test case to undeploy our support applications
  -            suite.addTest(new Deploy.Undeployer("../deploy/xatest.jar"));
  -        }
  -        catch (Throwable t) {
  -            t.printStackTrace();
  -            System.exit(0);
  -        }
  -
  -        return suite;
  -    }
  +      return suite;
  +   }
   }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to