diff options
author | wisberg <wisberg> | 2003-08-06 07:31:16 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-08-06 07:31:16 +0000 |
commit | c09964fbdb4d97c60c3fc72b3061518369db5161 (patch) | |
tree | bb54234adcc567c2b306ad29887b1eab84accc9f /tests/ajcTestsFailing.xml | |
parent | a63bc04fb1cb6e8d6d0bc2a509ab9658e3d78c43 (diff) | |
download | aspectj-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.xml | 30 |
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> |