aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ajcTestsFailing.xml
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-08-06 07:31:16 +0000
committerwisberg <wisberg>2003-08-06 07:31:16 +0000
commitc09964fbdb4d97c60c3fc72b3061518369db5161 (patch)
treebb54234adcc567c2b306ad29887b1eab84accc9f /tests/ajcTestsFailing.xml
parenta63bc04fb1cb6e8d6d0bc2a509ab9658e3d78c43 (diff)
downloadaspectj-c09964fbdb4d97c60c3fc72b3061518369db5161.tar.gz
aspectj-c09964fbdb4d97c60c3fc72b3061518369db5161.zip
@testcase PR#41175 aspect-declared methods with exception clauses fail in binary libraries
Corresponding non-binary passing tests added to ajcTests.xml
Diffstat (limited to 'tests/ajcTestsFailing.xml')
-rw-r--r--tests/ajcTestsFailing.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml
index 1e2c145f1..55278a25e 100644
--- a/tests/ajcTestsFailing.xml
+++ b/tests/ajcTestsFailing.xml
@@ -12,4 +12,34 @@
<run class="Client"/>
</ajc-test>
+ <ajc-test dir="bugs/interfaceLibrary"
+ pr="41175"
+ title="exception clause for aspect-declared interface methods - positive binary">
+ <compile files="Client.java" aspectpath="lib.jar"/>
+ <run class="Client"/>
+ </ajc-test>
+
+ <ajc-test dir="bugs/interfaceLibrary"
+ pr="41175"
+ title="exception clause for aspect-declared interface methods - negative binary">
+ <compile files="ClientCE.java" aspectpath="lib.jar">
+ <message kind="error" file="ClientCE.java" line="5"/>
+ </compile>
+ </ajc-test>
+
+ <ajc-test dir="bugs/interfaceLibrary"
+ pr="41175"
+ title="exception clause for aspect-declared class methods - positive binary">
+ <compile files="ClassClient.java" aspectpath="libClass.jar"/>
+ <run class="Client"/>
+ </ajc-test>
+
+ <ajc-test dir="bugs/interfaceLibrary"
+ pr="41175"
+ title="exception clause for aspect-declared class methods - negative binary">
+ <compile files="ClassClientCE.java" aspectpath="libClass.jar">
+ <message kind="error" file="ClassClientCE.java" line="5"/>
+ </compile>
+ </ajc-test>
+
</suite>