summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* bug 43033 - NPE in concretize error path for ReferencePointcutacolyer2003-09-193-0/+31
|
* fix and test for Bugzilla Bug 43194 jhugunin2003-09-182-0/+31
| | | | | | | java.lang.VerifyError in generated code Bug was that a portion of ReferencePointcut.concretize was not behaving functionally but was mutating state.
* fix and test for Bugzilla Bug 42993 jhugunin2003-09-122-0/+50
| | | | | | | | | | | | | | | | Language regression, or possible language improvement? The problem was caused by moving name binding in pointcut declarations to happen before declare parents are evaluated. Because of this, the compiler doesn't know that ContainerDescriptor isa Key when resolving the ContainerLoader.containerLoads reference. The change in ordering was made to fix a bug reported in declare error and declare soft whose pcds where being evaluated before name binding had happened in the pointcut declarations. Unfortunately, declare error and declare soft are concretized at the same time as declare parents (and all other declares ;-), so this move also led to the regression noted above.
* fix and tests for at least 2 bugs: jhugunin2003-09-104-0/+81
| | | | | | | | | | | Bugzilla Bug 42740 declare error fails on pointcuts composed from multiple classes Bugzilla Bug 42746 within() pcd is confused for certain declare softs and probably: Bugzilla Bug 42739 Compiler crash in ajc head (post 1.1.1 rc1)
* added pr number for Bugzilla Bug 42652 jhugunin2003-09-081-2/+1
| | | | Regression: Cannot compile complex weaving anymore
* @testcase PR#XXX omnibus privileged access from aspectj-users mail "Problem ↵wisberg2003-09-074-1/+212
| | | | with interfaces in method's signature"
* @testcase PR#42668 after returning type incompatible with join point return typewisberg2003-09-062-0/+31
|
* test and fix for bug reported today on aspectj-dev jhugunin2003-09-052-0/+28
| | | | | | | | | | | This bug is a reversion from 1.1.0 and so was a high-priority to get fixed before the 1.1.1rc2 release tommorrow. The bug was caused by a conflict between the implementation of perthis and a fix made in 1.1.1rc1 to the code for signature matching to handle inter-type declarations correctly. The fix was the addition of two null pointer checks. I hope that the original reporter will file a bug report in bugzilla tomorrow for tracking.
* test and fix for Bugzilla Bug 42539 jhugunin2003-09-043-0/+28
| | | | throw derivative pointcuts not advised
* fix and test for Bugzilla Bug 41359 jhugunin2003-08-284-0/+58
| | | | percflow aspects compiled from jars share one instance for all entry points
* @testcase PR#41888 call PCD fails when given subtype of defining typewisberg2003-08-232-0/+83
|
* added ant driver for JUnit ajctest driverwisberg2003-08-171-0/+40
|
* disabled test spec error test b/c it can't be skipped for JUnit driverwisberg2003-08-171-4/+5
|
* Added check for warning issued during JAR creation (manifest not copied).mkersten2003-08-082-7/+11
|
* put aspectjrt.jar on classpath for module tests run outside of eclipseacolyer2003-08-081-0/+1
|
* would help if i quoted test.classpath properly....acolyer2003-08-081-2/+2
|
* switch to using test.classpath rather than bin.classpath - works outside of ↵acolyer2003-08-081-2/+2
| | | | eclipse
* Added task to call ajcTests with and without emacssym and include results in ↵acolyer2003-08-081-2/+117
| | | | report
* fix and tests for Bugzilla Bug 41123 jhugunin2003-08-085-0/+54
| | | | Weaving failure when using injars
* fix for Bugzilla Bug 41175 jhugunin2003-08-089-30/+66
| | | | | | | | | | 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.
* BCException - not isolated, so no bug writtenwisberg2003-08-073-0/+473
|
* @testcase PR#41175 aspect-declared methods with exception clauses fail in ↵wisberg2003-08-0613-0/+204
| | | | | | binary libraries Corresponding non-binary passing tests added to ajcTests.xml
* passing tests for interface libraries. The behavior might be wrong (i.e., ↵wisberg2003-08-069-0/+188
| | | | some should fail) -- confirming on the list.
* @testcase PR#41170 combine classpath on command line and in .lst filewisberg2003-08-065-0/+24
|
* fix for Bugzilla Bug 40805 jhugunin2003-08-052-17/+17
| | | | call pointcut with interface type fails if method declared on interface
* fixes for Bugzilla Bug 40858 jhugunin2003-08-045-30/+42
| | | | | | super-qualified pointcut reference cause weaver stack trace and Bugzilla Bug 40814 no error when defining interface pointcuts
* fix for Bugzilla Bug 40876 jhugunin2003-07-292-7/+7
| | | | | | ClassFormatError on external subtype-qualified ref to supertype pointcut This was an important bug that was caused by the static fields used in the implementation of cflow being placed on the wrong class. This broke the rules used for name mangling and could occasionally result in name collisions as shown here.
* Added test case for bug#39959. mkersten2003-07-293-0/+76
| | | | Fails because classpath is incorrectly set to include aspectjtools.jar (by the harness).
* @testcase PR#40876 subtype-qualified pointcut reference wisberg2003-07-282-0/+58
| | | | (ClassFormatError)
* @testcase PR#40858 weaver trace on mis-qualified pointcut referencewisberg2003-07-282-0/+36
|
* @testcase PR#40814 compile error expected for pointcuts in interfaceswisberg2003-07-262-3/+19
|
* passing tests compiler errors when abstract pointcuts are outside abstract ↵wisberg2003-07-262-0/+21
| | | | aspects
* @testcase PR#40805 interface call signatures when declaring method in aspectwisberg2003-07-262-1/+71
|
* fix and moved test for Bugzilla Bug 39711 jhugunin2003-07-242-5/+7
| | | | Class Literals as non final fields
* moved to 2.1.1 jdtcore. Updated our code to change one call to a jhugunin2003-07-241-1/+1
| | | | | convenience method that was removed. Updated tests to enable the test for the horrible switch bug that this fixes.
* removing file intended for personal usejhugunin2003-07-231-9/+0
|
* added test for Bugzilla Bug 40589 jhugunin2003-07-232-0/+64
| | | | | | Default method impl for interface causes internal exception. test submitted by George Harley
* added test for expanded version of Bugzilla Bug 39711 jhugunin2003-07-232-2/+32
| | | | Class Literals as non final fields
* fix and expanded tests for Bugzilla Bug 39462 jhugunin2003-07-226-10/+45
| | | | Compiler crashes in jar and cflow
* tests and fix for Bugzilla Bug 39993 jhugunin2003-07-223-0/+79
| | | | | | | | 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-163-6/+39
| | | | | | | | | | | | | 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-033-4/+41
| | | | NPE in bcel.LazyMethodGen when delegating from one ctor to a second that includes a switch.
* added test for Bugzilla Bug 39462 jhugunin2003-07-024-1/+33
| | | | Compiler crashes in jar and cflow
* tests and fixes for two awful error message bugs: jhugunin2003-07-024-0/+76
| | | | | [Bug 39458] New: Compiler crash in ajc 1.1 [Bug 39460] New: Missing import crashes compiler
* adding keyword knownLimitation-run11wisberg2003-06-051-7/+8
|
* added test for Bugzilla Bug 38345 jhugunin2003-06-023-0/+37
| | | | VerifyError, Inconsistent stack height with try/switch/if combination
* updated for testing 1.1 classes, wisberg2003-06-021-12/+41
| | | | | (exclusive of changes to docs/dist/doc/examples/telecom/Call.java)
* javarun attributes for interpreting error/output streams as errors, used ↵wisberg2003-06-021-0/+2
| | | | only when forking
* harness system.exit testswisberg2003-05-311-0/+20
|