diff options
author | aclement <aclement> | 2009-01-12 20:25:23 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-01-12 20:25:23 +0000 |
commit | 80021b2ee4bfce86ab1e6f38dae3409f7371d54f (patch) | |
tree | 049f145dfcae3070bad25228b05b2605474fbaca /tests | |
parent | 64dbeb02963f33402f1be54aea36c1bba1d7c93c (diff) | |
download | aspectj-80021b2ee4bfce86ab1e6f38dae3409f7371d54f.tar.gz aspectj-80021b2ee4bfce86ab1e6f38dae3409f7371d54f.zip |
260384: testcode and fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc164/Ajc164Tests.java | 8 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc164/ajc164.xml | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc164/Ajc164Tests.java b/tests/src/org/aspectj/systemtest/ajc164/Ajc164Tests.java index a64953bb5..326c2ce97 100644 --- a/tests/src/org/aspectj/systemtest/ajc164/Ajc164Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc164/Ajc164Tests.java @@ -18,6 +18,14 @@ import org.aspectj.testing.XMLBasedAjcTestCase; public class Ajc164Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + public void testCompilingSpring_pr260384() { + runTest("compiling spring"); + } + + public void testCompilingSpring_pr260384_2() { + runTest("compiling spring - 2"); + } + public void testAtAspectJDecp_pr164016() { runTest("ataspectj decp 164016"); } diff --git a/tests/src/org/aspectj/systemtest/ajc164/ajc164.xml b/tests/src/org/aspectj/systemtest/ajc164/ajc164.xml index 99d7ef9c9..1d036168a 100644 --- a/tests/src/org/aspectj/systemtest/ajc164/ajc164.xml +++ b/tests/src/org/aspectj/systemtest/ajc164/ajc164.xml @@ -7,6 +7,16 @@ <run class="test.Code"/> </ajc-test> + <ajc-test dir="bugs164/pr260384" title="compiling spring"> + <compile files="Broken.java" options="-1.5"> + </compile> + </ajc-test> + + <ajc-test dir="bugs164/pr260384" title="compiling spring - 2"> + <compile files="Broken2.java" options="-1.5"> + </compile> + </ajc-test> + <ajc-test dir="bugs164/pr164016" title="ataspectj decp 164016 - 2"> <compile files="Code.java TargetBad.java TargetGood.java" aspectpath="code.jar" options="-1.5"/> <run class="test.Code"/> |