diff options
author | aclement <aclement> | 2008-07-31 19:17:00 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-07-31 19:17:00 +0000 |
commit | 34bdf6532e15767c950f15108e1ed3c39a1caae3 (patch) | |
tree | f5095a2c1e97f1ede52f838cb8326388fe42a16d /tests/src/org | |
parent | 32c77ef7eb98a4b9cbf68485ab89a99d0b07ba0a (diff) | |
download | aspectj-34bdf6532e15767c950f15108e1ed3c39a1caae3.tar.gz aspectj-34bdf6532e15767c950f15108e1ed3c39a1caae3.zip |
238992: test and fix: string anno values
Diffstat (limited to 'tests/src/org')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java | 9 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc162/ajc162.xml | 8 |
2 files changed, 13 insertions, 4 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java b/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java index 6fd46344a..1b278cb6c 100644 --- a/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc162/Ajc162Tests.java @@ -23,10 +23,11 @@ public class Ajc162Tests extends org.aspectj.testing.XMLBasedAjcTestCase { // public void testParamAnnoInner_pr241861() { runTest("param annotation inner class"); } public void testAnnotationDecp_pr239441() { runTest("annotation decp"); } public void testAtAspectJPerTarget_pr198181() { runTest("ataspectj ltw pertarget"); } -// public void testAnnotationValueDecp_pr238992() { runTest("annotation value decp"); } -// public void testAnnotationValueDecp_pr238992_2() { runTest("annotation value decp - 2"); } -// public void testAnnotationValueDecp_pr238992_3() { runTest("annotation value decp - 3"); } -// public void testAnnotationValueDecp_pr238992_4() { runTest("annotation value decp - 4"); } + public void testAnnotationValueDecp_pr238992() { runTest("annotation value decp"); } + public void testAnnotationValueDecp_pr238992_2() { runTest("annotation value decp - 2"); } + public void testAnnotationValueDecp_pr238992_3() { runTest("annotation value decp - 3"); } + public void testAnnotationValueDecp_pr238992_4() { runTest("annotation value decp - 4"); } + public void testAnnotationValueDecp_pr238992_5() { runTest("annotation value decp - 5"); } /* * test plan diff --git a/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml b/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml index d0ce9c69d..dc9d4bf8c 100644 --- a/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml +++ b/tests/src/org/aspectj/systemtest/ajc162/ajc162.xml @@ -50,6 +50,14 @@ <run class="Foo4"/> </ajc-test> + <ajc-test dir="bugs162/pr238992" title="annotation value decp - 5"> + <compile files="Foo5.java" options="-1.5 -showWeaveInfo"> + <message kind="weave" text="Extending interface set for type 'Goo'"/> + <message kind="weave" text="Extending interface set for type 'Hoo'"/> + </compile> + <run class="Foo5"/> + </ajc-test> + <ajc-test dir="bugs162/pr233718" title="parameter subsetting - matching"> <compile files="Matching.java" options="-1.5 -showWeaveInfo"> <message kind="weave" text="Join point 'method-execution(void Matching.m(java.lang.String))' in Type 'Matching' (Matching.java:3) advised by before advice from 'Matching' (Matching.java:8)"/> |