summaryrefslogtreecommitdiffstats
path: root/tests/ajcTestsFailing.xml
diff options
context:
space:
mode:
authorwisberg <wisberg>2004-02-15 19:13:41 +0000
committerwisberg <wisberg>2004-02-15 19:13:41 +0000
commit0d5ebc4e81463bf918585ebeaf4a3e01ab3db3ad (patch)
treeca198137765dfbaeeb72a4d330df5afa28ff5984 /tests/ajcTestsFailing.xml
parent95f2f555025370059b4acdb9aca17b9db3b640a0 (diff)
downloadaspectj-0d5ebc4e81463bf918585ebeaf4a3e01ab3db3ad.tar.gz
aspectj-0d5ebc4e81463bf918585ebeaf4a3e01ab3db3ad.zip
@testcase PR#52107 declare [int | String | Object] field on interface
Diffstat (limited to 'tests/ajcTestsFailing.xml')
-rw-r--r--tests/ajcTestsFailing.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml
index 27079b95d..33a3a5d14 100644
--- a/tests/ajcTestsFailing.xml
+++ b/tests/ajcTestsFailing.xml
@@ -139,4 +139,25 @@
<run class="main.Driver"/>
</ajc-test>
+ <ajc-test dir="bugs/fieldsOnInterfaces"
+ pr="52107"
+ title="declare String field on interface">
+ <compile files="StringFieldOnInterface.java"/>
+ <run class="StringFieldOnInterface"/>
+ </ajc-test>
+
+ <ajc-test dir="bugs/fieldsOnInterfaces"
+ pr="52107"
+ title="declare int field on interface">
+ <compile files="IntFieldOnInterface.java"/>
+ <run class="IntFieldOnInterface"/>
+ </ajc-test>
+
+ <ajc-test dir="bugs/fieldsOnInterfaces"
+ pr="52107"
+ title="declare Object field on interface">
+ <compile files="ObjectFieldOnInterface.java"/>
+ <run class="ObjectFieldOnInterface"/>
+ </ajc-test>
+
</suite>