diff options
author | aclement <aclement> | 2011-05-12 19:55:28 +0000 |
---|---|---|
committer | aclement <aclement> | 2011-05-12 19:55:28 +0000 |
commit | 71608e1577185ba16a587a09f1e5bd60e08bf307 (patch) | |
tree | 5a545581d930634d50c132bec03c9735f4cbce8e /tests/src/org/aspectj/systemtest | |
parent | 999d3836f0b541f619f50580d2aca8316485ecb7 (diff) | |
download | aspectj-71608e1577185ba16a587a09f1e5bd60e08bf307.tar.gz aspectj-71608e1577185ba16a587a09f1e5bd60e08bf307.zip |
345172
Diffstat (limited to 'tests/src/org/aspectj/systemtest')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc1612/Ajc1612Tests.java | 8 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc1612/ajc1612.xml | 14 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc1612/Ajc1612Tests.java b/tests/src/org/aspectj/systemtest/ajc1612/Ajc1612Tests.java index fe57fe8a3..eacd2b7ab 100644 --- a/tests/src/org/aspectj/systemtest/ajc1612/Ajc1612Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc1612/Ajc1612Tests.java @@ -21,6 +21,10 @@ import org.aspectj.testing.XMLBasedAjcTestCase; */ public class Ajc1612Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + // public void testAnnoCopying_345515() { + // runTest("anno copying"); + // } + public void testIncorrectAnnos_345172() { runTest("incorrect annos"); } @@ -29,6 +33,10 @@ public class Ajc1612Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("incorrect annos 2"); } + public void testIncorrectAnnos_345172_3() { + runTest("incorrect annos 3"); + } + public void testSyntheticMethods_327867() { runTest("synthetic methods"); } diff --git a/tests/src/org/aspectj/systemtest/ajc1612/ajc1612.xml b/tests/src/org/aspectj/systemtest/ajc1612/ajc1612.xml index 4a9ee26a7..2b296fa81 100644 --- a/tests/src/org/aspectj/systemtest/ajc1612/ajc1612.xml +++ b/tests/src/org/aspectj/systemtest/ajc1612/ajc1612.xml @@ -2,6 +2,11 @@ <suite> +<ajc-test dir="bugs1612/pr345515" title="anno copying"> +<compile files="Code.java" options="-1.5"/> +<run class="Code"></run> +</ajc-test> + <ajc-test dir="bugs1612/pr327867" title="synthetic methods"> <compile files="Foo.java" options="-1.5 -showWeaveInfo"> <message kind="weave" text="Join point 'method-execution(void Foo.main(java.lang.String[]))' in Type 'Foo' (Foo.java:3) advised by before advice from 'X' (Foo.java:17)"/> @@ -32,6 +37,15 @@ </stdout></run> </ajc-test> +<ajc-test dir="bugs1612/pr345172" title="incorrect annos 3"> +<compile files="InterType3.java" options="-1.5"> +</compile> +<run class="InterType3"> +<stdout> +<line text="execution(void InterType3.InterTypeIfc.m1(int, String))"/> +</stdout></run> +</ajc-test> + |