aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml
diff options
context:
space:
mode:
authoraclement <aclement>2006-02-16 09:04:45 +0000
committeraclement <aclement>2006-02-16 09:04:45 +0000
commit15930e7f92e2d4be1866509a8550373a4bcea978 (patch)
tree21994c37092e9f5ba2845367110578b4bd8f777a /tests/src/org/aspectj/systemtest/ajc151/ajc151.xml
parent2c55408317cf3c54c20d3aced2d122d7061f1a99 (diff)
downloadaspectj-15930e7f92e2d4be1866509a8550373a4bcea978.tar.gz
aspectj-15930e7f92e2d4be1866509a8550373a4bcea978.zip
tests and (slightly reworked) fix for 125699 from Helen. @AJ bug with inherited advice from code style aspects.
Diffstat (limited to 'tests/src/org/aspectj/systemtest/ajc151/ajc151.xml')
-rw-r--r--tests/src/org/aspectj/systemtest/ajc151/ajc151.xml18
1 files changed, 15 insertions, 3 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml b/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml
index 140d66e22..de0488dbd 100644
--- a/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml
+++ b/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml
@@ -133,10 +133,22 @@
<run class="HelloWorld" ltw="aop-tracing.xml"/>
</ajc-test>
- <ajc-test dir="bugs151/pr125699" title="inherit adivce with this() and thisJoinPoint">
- <compile files="Tracing.aj, TestTracing.aj, AtTestTracing.java" options="-1.5"/>
+ <ajc-test dir="bugs151/pr125699" title="inherit advice with this() and thisJoinPoint">
+ <compile files="Tracing.aj, TestTracing.aj, AtTestTracing.java" options="-1.5">
+ <message kind="warning" line="13" text="advice defined in Tracing has not been applied [Xlint:adviceDidNotMatch]"/>
+ <message kind="warning" line="8" text="advice defined in Tracing has not been applied [Xlint:adviceDidNotMatch]"/>
+ <message kind="warning" line="3" text="advice defined in Tracing has not been applied [Xlint:adviceDidNotMatch]"/>
+ </compile>
</ajc-test>
-
+
+ <ajc-test dir="bugs151/pr125699" title="inherit advice with this() and thisJoinPoint - 2">
+ <compile files="Tracing.aj, SubAbstractTracing.aj, SubAtAj.java" options="-1.5">
+ <message kind="warning" line="13" text="advice defined in Tracing has not been applied [Xlint:adviceDidNotMatch]"/>
+ <message kind="warning" line="8" text="advice defined in Tracing has not been applied [Xlint:adviceDidNotMatch]"/>
+ <message kind="warning" line="3" text="advice defined in Tracing has not been applied [Xlint:adviceDidNotMatch]"/>
+ </compile>
+ </ajc-test>
+
<ajc-test dir="bugs151/pr125810" title="warning when inherited pointcut not made concrete">
<compile files="SuperAspect.aj, SubAspect.aj, SubAtAspect.java" options="-1.5">
<message kind="error" line="3" text="inherited abstract pointcut SuperAspect.scope() is not made concrete in SubAspect"/>