From 58185caad5b483c85ec870a759dc777ab23f33f7 Mon Sep 17 00:00:00 2001 From: aclement Date: Wed, 30 Jul 2008 16:39:51 +0000 Subject: [PATCH] 241847: test added, commented out --- tests/bugs162/pr241847/Ann.java | 8 ++++++++ tests/bugs162/pr241847/Asp.aj | 9 +++++++++ tests/bugs162/pr241847/CC.java | 15 +++++++++++++++ tests/bugs162/pr241847/II.java | 4 ++++ tests/bugs162/pr241847/LongLong.java | 14 ++++++++++++++ .../aspectj/systemtest/ajc162/Ajc162Tests.java | 1 + .../src/org/aspectj/systemtest/ajc162/ajc162.xml | 7 +++++++ 7 files changed, 58 insertions(+) create mode 100644 tests/bugs162/pr241847/Ann.java create mode 100644 tests/bugs162/pr241847/Asp.aj create mode 100644 tests/bugs162/pr241847/CC.java create mode 100644 tests/bugs162/pr241847/II.java create mode 100644 tests/bugs162/pr241847/LongLong.java diff --git a/tests/bugs162/pr241847/Ann.java b/tests/bugs162/pr241847/Ann.java new file mode 100644 index 000000000..689d934e0 --- /dev/null +++ b/tests/bugs162/pr241847/Ann.java @@ -0,0 +1,8 @@ +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + + +@Retention(RetentionPolicy.RUNTIME) +public @interface Ann { + +} diff --git a/tests/bugs162/pr241847/Asp.aj b/tests/bugs162/pr241847/Asp.aj new file mode 100644 index 000000000..9df7b7f7c --- /dev/null +++ b/tests/bugs162/pr241847/Asp.aj @@ -0,0 +1,9 @@ +import java.util.Arrays; + + +public aspect Asp { + before() : execution(* *(@Ann (*), ..)) { + //System.out.println(thisJoinPoint.getSignature().toShortString() + ' ' + Arrays.asList(thisJoinPoint.getArgs())); + throw new RuntimeException("expected exception"); + } +} diff --git a/tests/bugs162/pr241847/CC.java b/tests/bugs162/pr241847/CC.java new file mode 100644 index 000000000..43dd3b698 --- /dev/null +++ b/tests/bugs162/pr241847/CC.java @@ -0,0 +1,15 @@ + +public class CC implements II { + public void m1(String arg) { + } + + public static void main(String [] args) throws Exception { + try { + new CC().m1(null); + throw new Exception("(BAD) advice did not run"); + } catch (RuntimeException e) { + System.out.println("(GOOD) advice ran and threw expected exception"); + e.printStackTrace(System.out); + } + } +} diff --git a/tests/bugs162/pr241847/II.java b/tests/bugs162/pr241847/II.java new file mode 100644 index 000000000..f059f6927 --- /dev/null +++ b/tests/bugs162/pr241847/II.java @@ -0,0 +1,4 @@ + +public interface II { + public void m1(@Ann String arg); +} diff --git a/tests/bugs162/pr241847/LongLong.java b/tests/bugs162/pr241847/LongLong.java new file mode 100644 index 000000000..40546bf8f --- /dev/null +++ b/tests/bugs162/pr241847/LongLong.java @@ -0,0 +1,14 @@ +public class LongLong implements II { + public void m1(String arg) { + } + + public static void main(String [] args) throws Exception { + try { + new LongLong().m1(null); + throw new Exception("(BAD) advice did not run"); + } catch (RuntimeException e) { + System.out.println("(GOOD) advice ran and threw expected exception"); + e.printStackTrace(System.out); + } + } +} diff --git a/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java b/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java index df1286a7a..6fd46344a 100644 --- a/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java @@ -19,6 +19,7 @@ import org.aspectj.testing.XMLBasedAjcTestCase; public class Ajc162Tests extends org.aspectj.testing.XMLBasedAjcTestCase { // AspectJ1.6.2 +// public void testParamAnnosPipelining_pr241847() { runTest("param annos pipelining");} // public void testParamAnnoInner_pr241861() { runTest("param annotation inner class"); } public void testAnnotationDecp_pr239441() { runTest("annotation decp"); } public void testAtAspectJPerTarget_pr198181() { runTest("ataspectj ltw pertarget"); } diff --git a/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml b/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml index 5c3c494b7..d0ce9c69d 100644 --- a/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml +++ b/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml @@ -3,6 +3,13 @@ + + + + + + + -- 2.39.5