aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs
Commit message (Collapse)AuthorAgeFilesLines
* fix and tests for Bugzilla Bug 41123 jhugunin2003-08-084-0/+18
| | | | Weaving failure when using injars
* fix for Bugzilla Bug 41175 jhugunin2003-08-083-0/+28
| | | | | | | | | | binary aspect-declared methods conflict, lost their exception clauses larger fix to address more issues with aspect-declared methods in bytecode form also addressed declared exception issue more generally this fix should be more stable than a smaller hack that just fixed this specific bug report would have been. added a few tests to match increased scope.
* @testcase PR#41175 aspect-declared methods with exception clauses fail in ↵wisberg2003-08-0611-0/+144
| | | | | | binary libraries Corresponding non-binary passing tests added to ajcTests.xml
* @testcase PR#41170 combine classpath on command line and in .lst filewisberg2003-08-064-0/+17
|
* fixes for Bugzilla Bug 40858 jhugunin2003-08-043-9/+18
| | | | | | super-qualified pointcut reference cause weaver stack trace and Bugzilla Bug 40814 no error when defining interface pointcuts
* Added test case for bug#39959. mkersten2003-07-292-0/+66
| | | | Fails because classpath is incorrectly set to include aspectjtools.jar (by the harness).
* @testcase PR#40876 subtype-qualified pointcut reference wisberg2003-07-281-0/+50
| | | | (ClassFormatError)
* @testcase PR#40858 weaver trace on mis-qualified pointcut referencewisberg2003-07-281-0/+27
|
* @testcase PR#40814 compile error expected for pointcuts in interfaceswisberg2003-07-261-0/+7
|
* @testcase PR#40805 interface call signatures when declaring method in aspectwisberg2003-07-261-0/+55
|
* added test for Bugzilla Bug 40589 jhugunin2003-07-231-0/+58
| | | | | | Default method impl for interface causes internal exception. test submitted by George Harley
* added test for expanded version of Bugzilla Bug 39711 jhugunin2003-07-231-0/+26
| | | | Class Literals as non final fields
* fix and expanded tests for Bugzilla Bug 39462 jhugunin2003-07-224-4/+27
| | | | Compiler crashes in jar and cflow
* tests and fix for Bugzilla Bug 39993 jhugunin2003-07-222-0/+66
| | | | | | | | ajc stack trace on declaring hashcode() method in aspect added extra error-test for using super inside an inter-type declaration on an interface with multiple parents -- the correct parent is either hard or impossible to determine in that case
* added pre-compiled .jar needed for Bugzilla Bug 39462 jhugunin2003-07-161-0/+0
| | | | Compiler crashes in jar and cflow
* Fix for Bugzilla #39479, #40109 jhugunin2003-07-161-0/+27
| | | | | | | | | | | | | based on patch contributed by Andy Clement Generalizes the patch with a method org.aspectj.weaver.bcel.Utility.copyInstruction that works-around the bug in Select.copy(). Changed all calls to Instruction.copy() to use this new method, would be nice to add the rule: * declare error: * call(* Instruction.copy()) && within(org.aspectj.weaver) * && !withincode(* Utility.copyInstruction(Instruction)): * "use Utility.copyInstruction to work-around bug in Select.copy()";
* test for Bugzilla Bug 39479 jhugunin2003-07-031-0/+31
| | | | NPE in bcel.LazyMethodGen when delegating from one ctor to a second that includes a switch.
* added test for Bugzilla Bug 39462 jhugunin2003-07-023-0/+27
| | | | Compiler crashes in jar and cflow
* tests and fixes for two awful error message bugs: jhugunin2003-07-022-0/+55
| | | | | [Bug 39458] New: Compiler crash in ajc 1.1 [Bug 39460] New: Missing import crashes compiler
* added test for Bugzilla Bug 38345 jhugunin2003-06-021-0/+26
| | | | VerifyError, Inconsistent stack height with try/switch/if combination
* Bugzilla Bug 38212 jhugunin2003-05-282-0/+30
| | | | | | can not resolve this member warning This test currently passes, and therefore must be missing the bug; however, this is the closest I could come to the bug as reported.
* test for Bugzilla Bug 38168 jhugunin2003-05-271-0/+93
| | | | | insertion of lots of advice code can make branch offset for if too large test entered as a knownLimitation for 1.1.0
* test for Bugzilla Bug 37758 jhugunin2003-05-214-0/+307
| | | | Weaving rt.jar results in stack overflow
* @testcase PR#37898 advice on handler join points should not throw ↵wisberg2003-05-211-0/+30
| | | | unpermitted checked exceptions
* added test for Bugzilla Bug 37304 jhugunin2003-05-191-0/+18
| | | | | public static fields being ignored this test is passing in 1.1rc2
* fix and test Bugzilla Bug 37739 jhugunin2003-05-191-0/+51
| | | | Unexpected Xlint:unresolvableMember warning with withincode
* test for Bugzilla Bug 37325 jhugunin2003-05-111-0/+33007
| | | | Weaver fails with NPE for very large source files
* fix and better tests for jhugunin2003-05-023-0/+63
| | | | | Bugzilla Bug 37152 java.lang.VerifyError:
* expanded coverage and fix for bug involving around advice with either jhugunin2003-05-013-0/+13
| | | | | | | assert or <name>.class in the body the fix for now is just to not inline such advice, but in the future these should be transformed to inlinable constructs
* fix and tests for jhugunin2003-04-271-0/+8
| | | | | | | | 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
* tests for jhugunin2003-04-272-0/+9
| | | | | Bugzilla Bug 36936 Error when introducing members of type Class
* fix and tests for jhugunin2003-04-251-0/+19
| | | | | Bugzilla Bug 36803 BCException thrown by AspectJ 1.1rc1
* a sketch of a test for a naming issue that doesn't appear to be an jhugunin2003-04-221-0/+28
| | | | actual bug
* tests and fixes for jhugunin2003-04-224-0/+708
| | | | | Bugzilla Bug 29665 Inconsistant stack height
* test and fix for Bugzilla Bug 36564 jhugunin2003-04-222-0/+32
| | | | Internal compiler error
* fix and test for Bugzilla Bug 36110 jhugunin2003-04-123-0/+33
| | | | IllegalAccessError while accessing introduced variable / 1.1rc1
* test for jhugunin2003-04-105-0/+57
| | | | | Bugzilla Bug 35725 Inter type declaration to base class not seen by derived class
* test and fix for jhugunin2003-04-101-0/+35
| | | | | Bugzilla Bug 36046 inter-type declaration bug with abstract classes
* Major changes in order to move to Eclipse-JDT 2.1 as a base. jhugunin2003-03-281-1/+2
| | | | | | In the process of this many changes were made to try to make keeping up with the Eclipse-JDT code base as easy as possible in the future.
* test and fix for Bugzilla Bug 34925 v1_1_0_RC1jhugunin2003-03-131-0/+68
| | | | compiler crash on yesterday's rc1 build
* fix and test for Bugzilla Bug 34858 jhugunin2003-03-122-0/+80
| | | | Weaver crash
* added tests and fixes jhugunin2003-03-112-0/+51
| | | | fixed two bugs in ajcTestsFailing
* FIXED: Bugzilla Bug 32421 jhugunin2003-03-064-0/+67
| | | | | | | can't resolve nested public interfaces FIXED: Bugzilla Bug 32399 Incorrect binding of protected (marker) interfaces
* @testcase PR#33948 default constructor inter-type declaration wisberg2003-03-061-0/+17
| | | | conflicts with compiler-generated constructor
* FIXED: Bugzilla Bug 32463 jhugunin2003-03-061-0/+37
| | | | ajc reports error when encountering static declaration of nested classes
* Bugzilla Bug 33635 jhugunin2003-03-051-0/+49
| | | | Negation of if pointcut does not work
* added test for 30026 , even though its working in the current versionjhugunin2003-02-141-0/+26
|
* fixed Bug 31423: adviceexecution not workingjhugunin2003-02-131-0/+31
|
* fixed Bug 30168: bad optimization of thisJoinPoint to thisJoinPointStaticPartjhugunin2003-02-131-0/+38
|
* fixed Bug 29959: super call in intertype method declaration body causes ↵jhugunin2003-02-131-0/+27
| | | | VerifyError