summaryrefslogtreecommitdiff
path: root/libjava/testsuite
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-01 00:13:31 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-01 00:13:31 +0000
commite424e632b56a0536f9a4ee300716fc05e07cf48d (patch)
tree5e43fe8d434a460433f3a93b3a4686101214e05f /libjava/testsuite
parent01f404a246aedc296ae166db7b9a28adbfe61508 (diff)
downloadgcc-e424e632b56a0536f9a4ee300716fc05e07cf48d.tar.gz
* libjava.compile/abstr.xfail: New file.
* libjava.compile/abstr.java: New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36087 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite')
-rw-r--r--libjava/testsuite/ChangeLog5
-rw-r--r--libjava/testsuite/libjava.compile/abstr.java14
-rw-r--r--libjava/testsuite/libjava.compile/abstr.xfail1
3 files changed, 20 insertions, 0 deletions
diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog
index ff9b8a668ab..59339cfbfca 100644
--- a/libjava/testsuite/ChangeLog
+++ b/libjava/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-31 Tom Tromey <tromey@cygnus.com>
+
+ * libjava.compile/abstr.xfail: New file.
+ * libjava.compile/abstr.java: New file.
+
2000-08-09 Tom Tromey <tromey@cygnus.com>
From PR gcj/310:
diff --git a/libjava/testsuite/libjava.compile/abstr.java b/libjava/testsuite/libjava.compile/abstr.java
new file mode 100644
index 00000000000..f59db268bc3
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/abstr.java
@@ -0,0 +1,14 @@
+// This fails to compile from bytecode for some versions of the compiler.
+
+interface foo
+{
+ public void start ();
+}
+
+public abstract class abstr implements foo
+{
+ public void doit ()
+ {
+ start ();
+ }
+}
diff --git a/libjava/testsuite/libjava.compile/abstr.xfail b/libjava/testsuite/libjava.compile/abstr.xfail
new file mode 100644
index 00000000000..76540afa49b
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/abstr.xfail
@@ -0,0 +1 @@
+no-link