diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-03-15 13:39:04 +0100 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-03-15 19:27:30 +0100 |
commit | 1d17d255a921dfe6f41ccc529fca0486ecc7fb9f (patch) | |
tree | 7c958617a14672aa6f95e6f81e0b00003fb5d341 /tests | |
parent | acdc2858833d87395c32037e4b7dcc2601189350 (diff) | |
download | aspectj-1d17d255a921dfe6f41ccc529fca0486ecc7fb9f.tar.gz aspectj-1d17d255a921dfe6f41ccc529fca0486ecc7fb9f.zip |
Remove BCEL files from 'lib' module
Both bcel.jar and bcel-verifier.jar seem to be obsolete.
Possible next step: Remove bcel-builder/verifier-src.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests')
3 files changed, 7 insertions, 7 deletions
diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc150/ajc150.xml index 6ce13fb0d..138ca57ab 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc150/ajc150.xml @@ -361,12 +361,12 @@ <ajc-test dir="java5/reflection" title="pointcut parsing with ajc compiled pointcut references"> <compile files="PointcutLibrary.aj,ReflectOnAjcCompiledPointcuts.java" options="-1.5"/> - <run class="ReflectOnAjcCompiledPointcuts" classpath="../lib/bcel/bcel.jar"/> + <run class="ReflectOnAjcCompiledPointcuts"/> </ajc-test> <ajc-test dir="java5/reflection" title="reflection on itds"> <compile files="InterTypeDeclarations.aj,ReflectOnCodeStyleITDs.java" options="-1.5 -Xlint:ignore -makeAjReflectable"/> - <run class="ReflectOnCodeStyleITDs" classpath="../lib/bcel/bcel.jar"> + <run class="ReflectOnCodeStyleITDs"> <stdout> <line text="public C.new(int, int, int)"/> <line text="C.new(int, int)"/> @@ -400,7 +400,7 @@ <ajc-test dir="java5/reflection" title="reflection on @DeclareParents"> <compile files="AtAspectJDeclareParents.aj,ReflectOnAtAspectJDeclareParents.java" options="-1.5 -Xlint:ignore"/> - <run class="ReflectOnAtAspectJDeclareParents" classpath="../lib/bcel/bcel.jar"> + <run class="ReflectOnAtAspectJDeclareParents"> <stdout> <line text="declare parents : C implements I"/> <line text="public int I.getX()"/> diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc150/ataspectj/annotationgen.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc150/ataspectj/annotationgen.xml index fd9d2c111..0de24e3e0 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc150/ataspectj/annotationgen.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc150/ataspectj/annotationgen.xml @@ -146,7 +146,7 @@ <ajc-test dir="java5/ataspectj/annotationGen" title="runtime pointcut resolution referencing compiled pointcuts"> <compile files="PCLib.aj,RuntimePointcuts.java" options="-1.5"> </compile> - <run class="RuntimePointcuts" classpath=".,../lib/bcel/bcel.jar" ltw=""/> + <run class="RuntimePointcuts"/> </ajc-test> <ajc-test dir="java5/ataspectj/annotationGen" title="ann gen for decp"> diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc190/ajc190_from150.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc190/ajc190_from150.xml index 79a942447..d21ecf8e6 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc190/ajc190_from150.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc190/ajc190_from150.xml @@ -361,12 +361,12 @@ <ajc-test dir="java5/reflection" title="pointcut parsing with ajc compiled pointcut references"> <compile files="PointcutLibrary.aj,ReflectOnAjcCompiledPointcuts.java" options="-1.9"/> - <run class="ReflectOnAjcCompiledPointcuts" classpath="../lib/bcel/bcel.jar"/> + <run class="ReflectOnAjcCompiledPointcuts"/> </ajc-test> <ajc-test dir="java5/reflection" title="reflection on itds"> <compile files="InterTypeDeclarations.aj,ReflectOnCodeStyleITDs.java" options="-1.9 -Xlint:ignore -makeAjReflectable"/> - <run class="ReflectOnCodeStyleITDs" classpath="../lib/bcel/bcel.jar"> + <run class="ReflectOnCodeStyleITDs"> <stdout> <line text="public C.new(int, int, int)"/> <line text="C.new(int, int)"/> @@ -400,7 +400,7 @@ <ajc-test dir="java5/reflection" title="reflection on @DeclareParents"> <compile files="AtAspectJDeclareParents.aj,ReflectOnAtAspectJDeclareParents.java" options="-1.9 -Xlint:ignore"/> - <run class="ReflectOnAtAspectJDeclareParents" classpath="../lib/bcel/bcel.jar"> + <run class="ReflectOnAtAspectJDeclareParents"> <stdout> <line text="declare parents : C implements I"/> <line text="public int I.getX()"/> |