]> gcc.gnu.org Git - gcc.git/commitdiff
Throw_2.java (main): Make a successful test produce some output.
authorAndrew Haley <aph@redhat.com>
Wed, 16 Apr 2003 11:43:04 +0000 (11:43 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Wed, 16 Apr 2003 11:43:04 +0000 (11:43 +0000)
2003-04-16  Andrew Haley  <aph@redhat.com>

* libjava.lang/Throw_2.java (main): Make a successful test produce
some output.

From-SVN: r65678

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

index 2ad8cf79c23eee48c5559af9a847f8cdd53980a8..2ec01f399bea1f4a69bd1d4d2b4227e1952f0086 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 353ae974662fd746506023d52331cfba34cdc69f..6d1d0e6b4490dc3857461f1187580baefbb9ef28 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 _)
        {
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..1191247b6d9a206f6ba3d8ac79e26d041dd86941 100644 (file)
@@ -0,0 +1,2 @@
+1
+2
This page took 0.062847 seconds and 5 git commands to generate.