diff options
author | jhugunin <jhugunin> | 2003-04-27 23:31:06 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-04-27 23:31:06 +0000 |
commit | 7d144321837cac05cdbe2a30323d670dfcc9809a (patch) | |
tree | ee2b57fa204391a285b371c4d6a1c57515964ba1 /tests/ajcTests.xml | |
parent | 8d793a3f9960f101a4cae59b959ce612f3fef4c9 (diff) | |
download | aspectj-7d144321837cac05cdbe2a30323d670dfcc9809a.tar.gz aspectj-7d144321837cac05cdbe2a30323d670dfcc9809a.zip |
fix and tests for
Bugzilla Bug 30663
lame error message: "negation doesn't allow binding"
and
Bugzilla Bug 36329
The compiler crashes when using aspect libraries created without using -noweave
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index ebaedd66c..6b952b04a 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5878,4 +5878,24 @@ <run class="CflowConcrete"/> </ajc-test> + <ajc-test dir="new/options11" pr="36329" + comment="the line number might change, we're really interested only in the files here" + title="The compiler crashes when using aspect libraries created without using -noweave"> + <compile files="Main.java,injar.jar,Aspect.java,aspectlib1.jar,aspectlib2.jar"> + <message kind="error" line="0"/> + </compile> + </ajc-test> + + <ajc-test dir="bugs" title="lame error message: negation doesn't allow binding" + pr="30663"> + <compile files="BadBindingError.java"> + <message kind="error" line="7"/> + </compile> + </ajc-test> + + <ajc-test dir="bugs/interSpecials" pr="36936" + title="Error when introducing members of type Class"> + <compile files="Trg.java,Asp.java"/> + <run class="Trg"/> + </ajc-test> </suite> |