2003-04-16 Andrew Haley <aph@redhat.com>
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 16 Apr 2003 11:43:04 +0000 (11:43 +0000)
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 16 Apr 2003 11:43:04 +0000 (11:43 +0000)
* libjava.lang/Throw_2.java (main): Make a successful test produce
some output.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65678 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.lang/Throw_2.java
libjava/testsuite/libjava.lang/Throw_2.out

index 2ad8cf7..2ec01f3 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-16  Andrew Haley  <aph@redhat.com>
+
+       * libjava.lang/Throw_2.java (main): Make a successful test produce
+       some output.
+
 2003-03-22  Andreas Tobler <a.tobler@schweiz.ch>
 
        * libjava.jni/jni.exp: Add compilation/link fix dor darwin dylibs.
index 353ae97..6d1d0e6 100644 (file)
@@ -34,6 +34,7 @@ public class Throw_2
        }
       catch (NullPointerException _)
        {
+         System.out.println ("1");
        }
       catch (Throwable _)
        {
@@ -48,6 +49,7 @@ public class Throw_2
        }
       catch (NullPointerException _)
        {
+         System.out.println ("2");
        }
       catch (Throwable _)
        {