aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/test/resources
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/test/resources')
-rw-r--r--tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml
index dfe86e2a9..202258c94 100644
--- a/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml
+++ b/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml
@@ -3,6 +3,19 @@
<suite>
+ <!-- https://github.com/eclipse/org.aspectj/issues/68 -->
+ <ajc-test dir="bugs198/github_68" vm="11" title="correctly weave code using constant-dynamic">
+ <compile files="Application.java MyAspect.aj" options="-11" inpath="condy.jar"/>
+ <run class="Application">
+ <stdout>
+ <line text="execution(CondyCallable())" />
+ <line text="execution(CondyCallable())" />
+ <line text="execution(Application())" />
+ <line text="Sample instance created" />
+ </stdout>
+ </run>
+ </ajc-test>
+
<!-- https://github.com/eclipse/org.aspectj/issues/105 -->
<ajc-test dir="bugs198/github_105" vm="8" title="ITD annotation with mandatory parameter via aspectpath">
<compile files="FooAnnotation.java BarAnnotation.java FooAspect.aj" options="-8" outjar="aspect.jar"/>