diff options
author | aclement <aclement> | 2010-04-22 02:24:42 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-04-22 02:24:42 +0000 |
commit | ef9124cf8c379663c9cd477384983f03df7e7263 (patch) | |
tree | 38a36d57527170291f518d168b8a2ad28bc59221 /tests/src | |
parent | f97adb2888cf3fb5583af0013fa0e583ed191944 (diff) | |
download | aspectj-ef9124cf8c379663c9cd477384983f03df7e7263.tar.gz aspectj-ef9124cf8c379663c9cd477384983f03df7e7263.zip |
310043: override final rogue message
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java | 4 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc169/ajc169.xml | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java index be42a3e9d..c648ad1cf 100644 --- a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java @@ -30,6 +30,10 @@ public class Ajc169Tests extends org.aspectj.testing.XMLBasedAjcTestCase { // runTest("advising privileged access method"); // } + public void testRogueError_310043() { + runTest("rogue error"); + } + public void testItdMarkerAnnotations_309743() { runTest("itd marker annotations - 1"); } diff --git a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml index 0b0fe443e..06daa16cd 100644 --- a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml +++ b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml @@ -2,6 +2,11 @@ <suite> + <ajc-test dir="bugs169/pr310043" title="rogue error"> + <compile files="B.java" classpath="code.jar" aspectpath="code.jar"/> + + </ajc-test> + <ajc-test dir="bugs169/pr309743" title="itd marker annotations - 1"> <compile files="A.java" options="-1.5"/> <run class="A"> |