pnever      02/04/24 06:15:11

  Modified:    
testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor
                        TProcessors.java
  Log:
  Adapted to changes in JDOM: SAXBuilder::build() now throws IOException.
  
  Revision  Changes    Path
  1.18      +6 -7      
jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/TProcessors.java
  
  Index: TProcessors.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/TProcessors.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- TProcessors.java  17 Apr 2002 13:14:24 -0000      1.17
  +++ TProcessors.java  24 Apr 2002 13:15:11 -0000      1.18
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/TProcessors.java,v
 1.17 2002/04/17 13:14:24 juergen Exp $
  - * $Revision: 1.17 $
  - * $Date: 2002/04/17 13:14:24 $
  + * $Header: 
/home/cvs/jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/TProcessors.java,v
 1.18 2002/04/24 13:15:11 pnever Exp $
  + * $Revision: 1.18 $
  + * $Date: 2002/04/24 13:15:11 $
    *
    * ====================================================================
    *
  @@ -84,7 +84,7 @@
    * Main class to performe a test case and check and report the results
    *
    * @author Software AG
  - * @version $Revision: 1.17 $
  + * @version $Revision: 1.18 $
    */
   public class TProcessors {
       
  @@ -352,16 +352,15 @@
           xmlresult.flush();
           
           try{
  -            
               globalAbsolutePath = testfile.getAbsolutePath();
               globalAbsolutePath = testfile.getParent();
               //          globalAbsolutePath = testfile.;
               result = exceuteStepOrRepeater(new 
SAXBuilder(true).build(testfile).getRootElement().getChildren().iterator());
  -            
  -            
           } catch (JDOMException e){
               result = false;
               xmlresult.writeElement("domException", e.toString());
  +            e.printStackTrace();
  +        } catch( Exception e ) {
               e.printStackTrace();
           }
           
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to