dims 2002/11/21 10:17:01 Modified: java/test/dynamic TestDynamicInvoker.java Log: Try to fix "ant clean all-tests" problem on jdk1.4 (see gump failures) Revision Changes Path 1.7 +12 -0 xml-axis/java/test/dynamic/TestDynamicInvoker.java Index: TestDynamicInvoker.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/dynamic/TestDynamicInvoker.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- TestDynamicInvoker.java 30 Oct 2002 13:54:23 -0000 1.6 +++ TestDynamicInvoker.java 21 Nov 2002 18:17:01 -0000 1.7 @@ -83,6 +83,9 @@ } } throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re); + } catch (java.io.IOException ioe) { + System.err.println("getTemp connect error: " + ioe); + return; } } @@ -103,6 +106,9 @@ } } throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re); + } catch (java.io.IOException ioe) { + System.err.println("getQuote connect error: " + ioe); + return; } } @@ -123,6 +129,9 @@ } } throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re); + } catch (java.io.IOException ioe) { + System.err.println("round4XSD connect error: " + ioe); + return; } } @@ -146,6 +155,9 @@ } } throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re); + } catch (java.io.IOException ioe) { + System.err.println("MathService connect error: " + ioe); + return; } } }