From 90aa179e2c0b2870d8678f8e9948bf631840c93b Mon Sep 17 00:00:00 2001 From: Andy Clement Date: Fri, 9 Dec 2016 09:04:56 -0800 Subject: [PATCH] 508661: testcode --- tests/bugs1810/508661/A_yes.java | 8 ++++++++ tests/bugs1810/508661/B_no.java | 7 +++++++ tests/bugs1810/508661/CacheMethodResult.java | 4 ++++ tests/bugs1810/508661/CacheMethodResultAspect.java | 10 ++++++++++ tests/bugs1810/508661/Run.java | 6 ++++++ tests/bugs1810/508661/aop.xml | 10 ++++++++++ .../aspectj/systemtest/ajc1810/Ajc1810Tests.java | 4 ++++ .../src/org/aspectj/systemtest/ajc1810/ajc1810.xml | 14 ++++++++++++++ 8 files changed, 63 insertions(+) create mode 100644 tests/bugs1810/508661/A_yes.java create mode 100644 tests/bugs1810/508661/B_no.java create mode 100644 tests/bugs1810/508661/CacheMethodResult.java create mode 100644 tests/bugs1810/508661/CacheMethodResultAspect.java create mode 100644 tests/bugs1810/508661/Run.java create mode 100644 tests/bugs1810/508661/aop.xml diff --git a/tests/bugs1810/508661/A_yes.java b/tests/bugs1810/508661/A_yes.java new file mode 100644 index 000000000..9920f069a --- /dev/null +++ b/tests/bugs1810/508661/A_yes.java @@ -0,0 +1,8 @@ +public class A_yes { + @CacheMethodResult + public void m() { + System.out.println("A_yes.m()"); + Class[] itfs = A_yes.class.getInterfaces(); + System.out.println("A_yes has interface? "+((itfs==null||itfs.length==0)?"no":itfs[0].getName())); + } +} diff --git a/tests/bugs1810/508661/B_no.java b/tests/bugs1810/508661/B_no.java new file mode 100644 index 000000000..e65d63377 --- /dev/null +++ b/tests/bugs1810/508661/B_no.java @@ -0,0 +1,7 @@ +class B_no { + public void m() { + System.out.println("B_no.m()"); + Class[] itfs = B_no.class.getInterfaces(); + System.out.println("B_no has interface? "+((itfs==null||itfs.length==0)?"no":itfs[0].getName())); + } +} diff --git a/tests/bugs1810/508661/CacheMethodResult.java b/tests/bugs1810/508661/CacheMethodResult.java new file mode 100644 index 000000000..fd919bd5b --- /dev/null +++ b/tests/bugs1810/508661/CacheMethodResult.java @@ -0,0 +1,4 @@ +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +@interface CacheMethodResult {} diff --git a/tests/bugs1810/508661/CacheMethodResultAspect.java b/tests/bugs1810/508661/CacheMethodResultAspect.java new file mode 100644 index 000000000..d7626a917 --- /dev/null +++ b/tests/bugs1810/508661/CacheMethodResultAspect.java @@ -0,0 +1,10 @@ +aspect CacheMethodResultAspect perthis(cache()) { + + pointcut cache() : execution(@CacheMethodResult * *.*(..)); + + Object around() : cache() { + System.out.println("around: "+thisJoinPointStaticPart.getSignature()); + return proceed(); + } +} + diff --git a/tests/bugs1810/508661/Run.java b/tests/bugs1810/508661/Run.java new file mode 100644 index 000000000..176e5a499 --- /dev/null +++ b/tests/bugs1810/508661/Run.java @@ -0,0 +1,6 @@ +public class Run { + public static void main(String []argv) { + new A_yes().m(); + new B_no().m(); + } +} diff --git a/tests/bugs1810/508661/aop.xml b/tests/bugs1810/508661/aop.xml new file mode 100644 index 000000000..5b89e6614 --- /dev/null +++ b/tests/bugs1810/508661/aop.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/tests/src/org/aspectj/systemtest/ajc1810/Ajc1810Tests.java b/tests/src/org/aspectj/systemtest/ajc1810/Ajc1810Tests.java index 3cae1378c..37896b42f 100644 --- a/tests/src/org/aspectj/systemtest/ajc1810/Ajc1810Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc1810/Ajc1810Tests.java @@ -24,6 +24,10 @@ import junit.framework.Test; */ public class Ajc1810Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + public void testBinding_508661() { + runTest("various ltw"); + } + public void testBinding_500035() { runTest("ataspectj binding"); } diff --git a/tests/src/org/aspectj/systemtest/ajc1810/ajc1810.xml b/tests/src/org/aspectj/systemtest/ajc1810/ajc1810.xml index 7485c1c20..0171f5b55 100644 --- a/tests/src/org/aspectj/systemtest/ajc1810/ajc1810.xml +++ b/tests/src/org/aspectj/systemtest/ajc1810/ajc1810.xml @@ -2,6 +2,20 @@ + + + + + + + + + + + + + + -- 2.39.5