From: aclement Date: Wed, 25 Jan 2006 09:04:53 +0000 (+0000) Subject: testcode for 122452 X-Git-Tag: POST_MEMORY_CHANGES~156 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1f4956a4e31ac88bcc97a98da3f84c89413cd0a1;p=aspectj.git testcode for 122452 --- diff --git a/tests/bugs151/pr122452.aj b/tests/bugs151/pr122452.aj new file mode 100644 index 000000000..1be5e5051 --- /dev/null +++ b/tests/bugs151/pr122452.aj @@ -0,0 +1,7 @@ +public aspect pr122452 { + pointcut greeting() : call (* Point.sayHello(..)); + pointcut greeting2() : call (* related.Hello.sayHello(..)); + after() returning() : greeting*() { + System.out.println(" World!"); + } +} diff --git a/tests/bugs151/pr122452_2.aj b/tests/bugs151/pr122452_2.aj new file mode 100644 index 000000000..1dbc1da8e --- /dev/null +++ b/tests/bugs151/pr122452_2.aj @@ -0,0 +1,5 @@ +public aspect pr122452_2 { + after() returning() : greeting*() { + System.out.println(" World!"); + } +} diff --git a/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java b/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java index 6e872e4e0..16fcdd2fa 100644 --- a/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java @@ -27,6 +27,9 @@ public class Ajc151Tests extends org.aspectj.testing.XMLBasedAjcTestCase { public void testParameterizedCollectionFieldMatching_pr124808() { runTest("parameterized collection fields matched via pointcut");} public void testGenericAspectsAndAnnotations_pr124654() { runTest("generic aspects and annotations");} public void testCallInheritedGenericMethod_pr124999() { runTest("calling inherited generic method from around advice");} + //public void testIncorrectlyReferencingPointcuts_pr122452() { runTest("incorrectly referencing pointcuts");} + //public void testIncorrectlyReferencingPointcuts_pr122452_2() { runTest("incorrectly referencing pointcuts - 2");} + ///////////////////////////////////////// public static Test suite() { diff --git a/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml b/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml index 74dfa3e5b..28e85d036 100644 --- a/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml +++ b/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml @@ -69,4 +69,13 @@ + + + + + + + + + \ No newline at end of file