From d6ee617dd7edc5cb721ad5cd320c47acd18e7ea8 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 4 Jun 2002 19:39:02 +0000 Subject: re PR libgcj/6389 (System.getProperty("") should always throw an IllegalArgumentException) * libjava.compile/T20020604.java: New file. For PR libgcj/6389: * libjava.mauve/xfails: Now passes System.getProperty test. For PR java/1343 and PR java/6336: * libjava.compile/PR1343.java: New file. For PR java/5913: * libjava.compile/PR5913.xfail: Removed. From-SVN: r54259 --- libjava/testsuite/libjava.compile/PR1343.java | 17 +++++++++++++++++ libjava/testsuite/libjava.compile/PR5913.xfail | 2 -- libjava/testsuite/libjava.compile/T20020604.java | 17 +++++++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 libjava/testsuite/libjava.compile/PR1343.java delete mode 100644 libjava/testsuite/libjava.compile/PR5913.xfail create mode 100644 libjava/testsuite/libjava.compile/T20020604.java (limited to 'libjava/testsuite/libjava.compile') diff --git a/libjava/testsuite/libjava.compile/PR1343.java b/libjava/testsuite/libjava.compile/PR1343.java new file mode 100644 index 0000000..be35925 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR1343.java @@ -0,0 +1,17 @@ +import java.util.Vector; + +public class PR1343 +{ + void f(Object[] l) + { + class x1 + { + }; + } + void f(Vector l) + { + class x1 + { + }; + } +} diff --git a/libjava/testsuite/libjava.compile/PR5913.xfail b/libjava/testsuite/libjava.compile/PR5913.xfail deleted file mode 100644 index a61ff5b..0000000 --- a/libjava/testsuite/libjava.compile/PR5913.xfail +++ /dev/null @@ -1,2 +0,0 @@ -xfail-gcj -xfail-gcjC diff --git a/libjava/testsuite/libjava.compile/T20020604.java b/libjava/testsuite/libjava.compile/T20020604.java new file mode 100644 index 0000000..fba68c2 --- /dev/null +++ b/libjava/testsuite/libjava.compile/T20020604.java @@ -0,0 +1,17 @@ +// Regression test for gcj crash, when compiled with -O2 on +// i686-pc-linux-gnu. +public class T20020604 +{ + static double d2 = 0.0; + + static Object lockObject = new Object(); + + public static double f(double d1) { + + synchronized (lockObject){ + d2 = Math.max(d1, d2); + } + + return d2; + } +} -- cgit v1.1