diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-03-15 14:00:48 +0100 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-03-15 19:27:30 +0100 |
commit | 9df260e17a040b03cdb9b8451e022f6d88eb83d5 (patch) | |
tree | 80b4dc088e1a0c0b4b4ddbcfed0d4f2749549363 /tests/src/test/java/org/aspectj/systemtest | |
parent | 1d17d255a921dfe6f41ccc529fca0486ecc7fb9f (diff) | |
download | aspectj-9df260e17a040b03cdb9b8451e022f6d88eb83d5.tar.gz aspectj-9df260e17a040b03cdb9b8451e022f6d88eb83d5.zip |
Reactivate test in AtAjAnnotationGenTests
In AtAjAnnotationGenTests.testRuntimePointcutsReferencingCompiledPointcuts,
the classpath issues mentioned in the comments do not seem to exist
anymore, with or without the removed lib/bcel/bcel.jar.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/src/test/java/org/aspectj/systemtest')
-rw-r--r-- | tests/src/test/java/org/aspectj/systemtest/ajc150/ataspectj/AtAjAnnotationGenTests.java | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/src/test/java/org/aspectj/systemtest/ajc150/ataspectj/AtAjAnnotationGenTests.java b/tests/src/test/java/org/aspectj/systemtest/ajc150/ataspectj/AtAjAnnotationGenTests.java index 13409fb68..acd4779f0 100644 --- a/tests/src/test/java/org/aspectj/systemtest/ajc150/ataspectj/AtAjAnnotationGenTests.java +++ b/tests/src/test/java/org/aspectj/systemtest/ajc150/ataspectj/AtAjAnnotationGenTests.java @@ -127,11 +127,9 @@ public class AtAjAnnotationGenTests extends XMLBasedAjcTestCase { runTest("ann gen for deows"); } - // no reliable way to get around classpath issues for - // running this test as part of release script :( -// public void testRuntimePointcutsReferencingCompiledPointcuts() { -// runTest("runtime pointcut resolution referencing compiled pointcuts"); -// } + public void testRuntimePointcutsReferencingCompiledPointcuts() { + runTest("runtime pointcut resolution referencing compiled pointcuts"); + } public void testDecP() { runTest("ann gen for decp"); @@ -157,4 +155,3 @@ public class AtAjAnnotationGenTests extends XMLBasedAjcTestCase { runTest("ann gen for itds"); } } - |