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:
Andrew Haley 2003-04-16 11:43:04 +00:00 committed by Andrew Haley
parent f9c1196aff
commit 5a30c9b7ab
3 changed files with 9 additions and 0 deletions

View 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.

View 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 _)
{

View file

@ -0,0 +1,2 @@
1
2