diff options
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc161/Ajc161Tests.java | 3 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc161/ajc161.xml | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc161/Ajc161Tests.java b/tests/src/org/aspectj/systemtest/ajc161/Ajc161Tests.java index d9321b6aa..8d1badc21 100644 --- a/tests/src/org/aspectj/systemtest/ajc161/Ajc161Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc161/Ajc161Tests.java @@ -18,7 +18,8 @@ import org.aspectj.testing.XMLBasedAjcTestCase; public class Ajc161Tests extends org.aspectj.testing.XMLBasedAjcTestCase { - // AspectJ1.6.0rc1 + // AspectJ1.6.1 + public void testAroundAdviceOnFieldSet_pr229910() { runTest("around advice on field set"); } public void testPipelineCompilationGenericReturnType_pr226567() { runTest("pipeline compilation and generic return type"); } public static Test suite() { diff --git a/tests/src/org/aspectj/systemtest/ajc161/ajc161.xml b/tests/src/org/aspectj/systemtest/ajc161/ajc161.xml index 77b0b60af..210df6462 100644 --- a/tests/src/org/aspectj/systemtest/ajc161/ajc161.xml +++ b/tests/src/org/aspectj/systemtest/ajc161/ajc161.xml @@ -3,9 +3,15 @@ <!-- AspectJ v1.6.1 Tests --> <suite> + <ajc-test dir="bugs161/pr229910" title="around advice on field set"> + <compile files="Test.java" options="-1.5"/> + <run class="Test"/> + </ajc-test> + <ajc-test dir="bugs161/pr226567" title="pipeline compilation and generic return type"> <compile files="BarAspect.aj Foo.java Bar.java" options="-1.5"/> <compile files="BarAspect.aj Bar.java Foo.java" options="-1.5"/> </ajc-test> + </suite>
\ No newline at end of file |