Throw_2.java (main): Make a successful test produce some output.
2003-04-16 Andrew Haley <aph@redhat.com> * libjava.lang/Throw_2.java (main): Make a successful test produce some output. From-SVN: r65678
This commit is contained in:
parent
f9c1196aff
commit
5a30c9b7ab
3 changed files with 9 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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 _)
|
||||
{
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
1
|
||||
2
|
Loading…
Add table
Reference in a new issue