diff options
author | Andy Clement <aclement@gopivotal.com> | 2013-08-27 13:25:30 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2013-08-27 13:25:30 -0700 |
commit | d82db7bf44e2e0d5f68798c22cd7eb373452bc54 (patch) | |
tree | 3fbb4d37b44a8506791f2e68a4ee9fde624b8b17 /tests | |
parent | 7716a15cbe03d6bd518ac013c4d9ffd7b9f05a3f (diff) | |
download | aspectj-d82db7bf44e2e0d5f68798c22cd7eb373452bc54.tar.gz aspectj-d82db7bf44e2e0d5f68798c22cd7eb373452bc54.zip |
Fix 415957: annotations with 1.8 flags
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs180/415957/MyAspect.aj | 8 | ||||
-rw-r--r-- | tests/bugs180/415957/MyClass.java | 5 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc180/Ajc180Tests.java | 4 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc180/ajc180.xml | 6 |
4 files changed, 23 insertions, 0 deletions
diff --git a/tests/bugs180/415957/MyAspect.aj b/tests/bugs180/415957/MyAspect.aj new file mode 100644 index 000000000..673463a55 --- /dev/null +++ b/tests/bugs180/415957/MyAspect.aj @@ -0,0 +1,8 @@ +public aspect MyAspect { + pointcut all(): execution(@javax.annotation.Resource * *(..)); + + + before(): all() { + System.out.println("Hi"); + } +} diff --git a/tests/bugs180/415957/MyClass.java b/tests/bugs180/415957/MyClass.java new file mode 100644 index 000000000..7b596ffd0 --- /dev/null +++ b/tests/bugs180/415957/MyClass.java @@ -0,0 +1,5 @@ +public class MyClass { + @javax.annotation.Resource + public void method() { + } +} diff --git a/tests/src/org/aspectj/systemtest/ajc180/Ajc180Tests.java b/tests/src/org/aspectj/systemtest/ajc180/Ajc180Tests.java index fbdbd29d9..dfa920e52 100644 --- a/tests/src/org/aspectj/systemtest/ajc180/Ajc180Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc180/Ajc180Tests.java @@ -21,6 +21,10 @@ import org.aspectj.testing.XMLBasedAjcTestCase; */ public class Ajc180Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + public void testAnnosWith18Flags_415957() { + runTest("annotations with 1.8 flags"); + } + public void testJava8Code() throws Exception { runTest("first advised java 8 code"); } diff --git a/tests/src/org/aspectj/systemtest/ajc180/ajc180.xml b/tests/src/org/aspectj/systemtest/ajc180/ajc180.xml index 9e651d347..8ea55c136 100644 --- a/tests/src/org/aspectj/systemtest/ajc180/ajc180.xml +++ b/tests/src/org/aspectj/systemtest/ajc180/ajc180.xml @@ -2,6 +2,12 @@ <suite> + <ajc-test dir="bugs180/415957" title="annotations with 1.8 flags"> + <compile files="MyAspect.aj MyClass.java" options="-1.8 -showWeaveInfo"> + <message kind="weave" text="Join point 'method-execution(void MyClass.method())' in Type 'MyClass' (MyClass.java:3) advised by before advice from 'MyAspect' (MyAspect.aj:5)"/> + </compile> + </ajc-test> + <ajc-test dir="bugs180/firstprogram" title="first advised java 8 code"> <compile files="C.java" options="-1.8"> </compile> |