diff options
author | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-02 17:21:10 +0000 |
---|---|---|
committer | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-02 17:21:10 +0000 |
commit | ca629b090bdacda75066d5efc0ba18b16331b2aa (patch) | |
tree | badc81aa1b55d6996e2e3a9395617eeb26ef6e67 /libjava/testsuite/libjava.lang/Array_3.java | |
parent | 644e79d769a754e69f9ebcfa0e9a58a8a867beab (diff) | |
download | ppe42-gcc-ca629b090bdacda75066d5efc0ba18b16331b2aa.tar.gz ppe42-gcc-ca629b090bdacda75066d5efc0ba18b16331b2aa.zip |
2002-07-02 Andrew Haley <aph@redhat.com>
* libjava.lang/inline.java: New file.
* libjava.lang/inline.out: Likewise.
* libjava.lang/Array_3.java: Add another case.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55186 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite/libjava.lang/Array_3.java')
-rw-r--r-- | libjava/testsuite/libjava.lang/Array_3.java | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/libjava/testsuite/libjava.lang/Array_3.java b/libjava/testsuite/libjava.lang/Array_3.java index f8b7ded4685..453387d51fb 100644 --- a/libjava/testsuite/libjava.lang/Array_3.java +++ b/libjava/testsuite/libjava.lang/Array_3.java @@ -27,7 +27,7 @@ public class Array_3 ok = true; } if (!ok) - throw new RuntimeException("test failed"); + throw new RuntimeException("test failed:1"); ok = false; try @@ -40,7 +40,7 @@ public class Array_3 ok = true; } if (!ok) - throw new RuntimeException("test failed"); + throw new RuntimeException("test failed:2"); ok = false; try @@ -54,6 +54,19 @@ public class Array_3 } if (!ok || nn != 0) - throw new RuntimeException("test failed"); + throw new RuntimeException("test failed:3"); + + ok = false; + try + { + int[] x = (int[])null; + nn = x.length; + } + catch (NullPointerException _) + { + ok = true; + } + if (!ok) + throw new RuntimeException("test failed:4"); } } |