diff options
| author | Eric Blake <ebb9@email.byu.edu> | 2002-03-12 07:23:25 +0000 |
|---|---|---|
| committer | Eric Blake <ericb@gcc.gnu.org> | 2002-03-12 07:23:25 +0000 |
| commit | 76a43492ea69b109bed4ad0fee3e067d4b067b6c (patch) | |
| tree | 69aea157509fffb4877beb1ef07298723c6c26b6 /libjava/testsuite/libjava.compile | |
| parent | 54b6670a15b6989ea1d4c87a72b833490d062b5b (diff) | |
| download | gcc-76a43492ea69b109bed4ad0fee3e067d4b067b6c.tar.gz gcc-76a43492ea69b109bed4ad0fee3e067d4b067b6c.tar.bz2 gcc-76a43492ea69b109bed4ad0fee3e067d4b067b6c.zip | |
re PR java/5902 (Gcj fails to parse float)
2002-03-11 Eric Blake <ebb9@email.byu.edu>
* libjava.compile/PR5902.java: New file.
* libjava.compile/PR5913.java: New file.
* libjava.compile/PR5913.xfail: New file.
From-SVN: r50637
Diffstat (limited to 'libjava/testsuite/libjava.compile')
| -rw-r--r-- | libjava/testsuite/libjava.compile/PR5902.java | 7 | ||||
| -rw-r--r-- | libjava/testsuite/libjava.compile/PR5913.java | 7 | ||||
| -rw-r--r-- | libjava/testsuite/libjava.compile/PR5913.xfail | 2 |
3 files changed, 16 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR5902.java b/libjava/testsuite/libjava.compile/PR5902.java new file mode 100644 index 00000000000..52fdfa868db --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR5902.java @@ -0,0 +1,7 @@ +class PR5902 +{ + public static void main(String[] args) + { + System.exit((019f == 19) ? 0 : 1); + } +} diff --git a/libjava/testsuite/libjava.compile/PR5913.java b/libjava/testsuite/libjava.compile/PR5913.java new file mode 100644 index 00000000000..662932ae1ba --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR5913.java @@ -0,0 +1,7 @@ +class PR5913 +{ + public static void main(String[] args) + { + System.exit((("" + 1) instanceof String) ? 0 : 1); + } +} diff --git a/libjava/testsuite/libjava.compile/PR5913.xfail b/libjava/testsuite/libjava.compile/PR5913.xfail new file mode 100644 index 00000000000..a61ff5be362 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR5913.xfail @@ -0,0 +1,2 @@ +xfail-gcj +xfail-gcjC |
