summaryrefslogtreecommitdiffstats
path: root/tests/bugs
Commit message (Collapse)AuthorAgeFilesLines
* change to resolvedmember serialization (to support varargs ITDs) is quite ↵aclement2005-10-074-0/+0
| | | | serious - major version number of attribute rev'd to 4 in this case.
* rebuilt post fix for pr110906: varargs ITDaclement2005-10-044-0/+0
|
* test for pr84033 promoted from failing suite to real suite.aclement2005-10-033-0/+20
|
* rebuilt due to attribute modifications.aclement2005-09-134-0/+0
|
* rebuilt jars because of resolvedmember serialization change to remember type ↵aclement2005-07-272-0/+0
| | | | variables.
* changed the serialized form of a WildTypePattern to remember generic info... ↵acolyer2005-07-222-0/+0
| | | | standby for mass updates of binary comparison tests.
* tests for Huff's fix for 102746 - not hooked up b/c harness manages classpath.wisberg2005-07-113-0/+24
|
* update to binary format as part of generics workacolyer2005-06-092-0/+0
|
* sorted out the blank lines so the messages will line up with their expected ↵aclement2005-05-041-1/+0
| | | | locations!
* enhancement 91719 - Oli B's tests for xlint warnings, integration work done ↵aclement2005-05-041-0/+180
| | | | by Andrew Huff.
* fixes for annotation type pattern bugs uncovered in 150 testsacolyer2005-03-102-0/+0
|
* move all java 5 tests out of code and back into .xml files now that we can ↵acolyer2005-02-111-1/+1
| | | | compile them properly
* @testcase PR#84033 incremental declare error persists after fixwisberg2005-01-313-0/+20
|
* New compiler gives additional error message on 1.3 vm that makes this test fail.acolyer2005-01-171-1/+1
|
* All jars rebuilt with rev'd weaver version number 2.0 that we will use for ↵aclement2005-01-072-0/+0
| | | | AspectJ5 (AJ1.2.1 had version 1.0)
* more ambiguous bindings testingacolyer2004-12-162-0/+97
|
* partial fix for bug 61568.acolyer2004-12-152-2/+2
| | | | | | | | | | | | | | | | | These changes are both (a) a performance optimization, and (b) an improvement on the binding across || rules that we implemented in 1.2.1. Instead of saying the the first binding in a left-to-right traversal of the pointcuts DNF is the one that you get (too much to ask users to do DNF rewriting in their heads), this version implements the rule that every || branch in the DNF must bind all formals, and if two || branches can have any join points in common (can match join points of the same kind), then both must bind all formals identically. So it allows things like execution(* *(..)) && args(x) || call(* *(..)) && this(x) which previously we used to forbid. But primarily it turned out to be a performance optimization.
* updated binary formacolyer2004-12-094-0/+0
|
* updated binary formacolyer2004-12-082-0/+0
|
* Rebuilt due to type munger attribute changeaclement2004-12-072-0/+0
|
* work in progress.... annotation pointcuts, parsing, and patternsacolyer2004-12-062-0/+0
|
* Fix for Bugzilla Bug 74952: before,after !(cflow(within(Trace*))) prints nothingaclement2004-10-211-0/+151
|
* Fix for Bugzilla Bug 76096: Anonymous classes unaware of introductions into ↵aclement2004-10-191-0/+50
| | | | abstract classes (error can't find type $Local$)
* @testcase PR#75129 NPE on thisJoinPoint mistakewisberg2004-09-271-0/+29
|
* fix for Bugzilla Bug 72157acolyer2004-09-082-1/+36
| | | | declare soft can cause programs with invalid exception behaviour to be generated
* Fix for Bugzilla Bug 72528aclement2004-09-031-0/+75
| | | | around advice throws java.lang.VerifyError at runtime
* tests for Bugzilla Bug 70404aclement2004-08-273-0/+47
| | | | passing null to array arguments confuzes static join point signature.
* Fix for Bugzilla Bug 72699aclement2004-08-272-0/+7
| | | | Bogus error message: The abstract method ajc$pointcut$$tracingScope$a2 in type Tracing can only be defined by an abstract class
* fix for Bugzilla Bug 72150aclement2004-08-275-0/+53
| | | | AJC possible bug with static nested classes
* fix for Bugzilla Bug 72531acolyer2004-08-243-0/+67
| | | | declare warning warns at wrong points
* Fix for Bugzilla Bug 70794aclement2004-08-201-1/+1
| | | | | The introduction on interface causes the interface implementation class error (testcase now expects the error text)
* Fix for Bugzilla Bug 70794aclement2004-08-204-0/+96
| | | | The introduction on interface causes the interface implementation class error
* BcWeaverJarMaker updates - now line numbers have changed.aclement2004-08-192-0/+0
|
* fix for Bugzilla Bug 37020acolyer2004-08-192-0/+0
| | | | wrong line for method execution join point
* fix for Bugzilla Bug 71723acolyer2004-08-182-0/+53
| | | | Inconsistency in scoping of protected members in ITDs
* Removed 1.4 api (doh!)aclement2004-08-181-1/+1
|
* test for Bugzilla Bug 64069acolyer2004-08-181-0/+43
| | | | ITD name clashes with private members
* Test and fix for Bugzilla Bug 62642aclement2004-08-171-0/+40
| | | | proper handling of ExceptionInIntializer inside <clinit> in presence of after throwing advice
* Fixes for:aclement2004-08-167-0/+67
| | | | | Bugzilla Bug 67578: Privileged Aspect Access Problem Across Packages Bugzilla Bug 67579: NPE on privileged aspect error
* Fix and tests for Bugzilla Bug 71372aclement2004-08-136-0/+128
| | | | NoSuchMethodError calling private method from around advice in inner aspect
* fix for Bugzilla Bug 61768acolyer2004-08-113-12/+76
| | | | scope for intertype methods
* Tests and fix for Bugzilla Bug 54421aclement2004-08-112-0/+78
| | | | Compile time declarations (warning and error) do not accept string concatenation (with +)
* Fix and tests for Bugzilla Bug 68991aclement2004-08-112-0/+103
| | | | intertype initialisers should match field set pointcuts
* tests for pr62475 (disabled at present)acolyer2004-08-111-0/+28
|
* fix for Bugzilla Bug 61572acolyer2004-08-101-0/+44
| | | | ITDs on inner classes should be static contexts
* Fix for Bugzilla Bug 65319aclement2004-08-101-0/+30
| | | | ajc crashes when compiling the following program (binding this() and target())
* fix for Bugzilla Bug 53981acolyer2004-08-103-0/+53
| | | | proceed used as method name in around advice
* test for 70201acolyer2004-08-101-0/+13002
|
* fix for Bugzilla Bug 59208acolyer2004-08-105-0/+16477
| | | | Weaver fails in BCEL for large classe
* Fix for Bug 71377: Cannot advise private method call in around adviceaclement2004-08-093-0/+168
|