diff options
author | aclement <aclement> | 2005-05-12 09:32:03 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-05-12 09:32:03 +0000 |
commit | 0cb826c6a5d47a12eb03bf1751208c0b9a7b23a3 (patch) | |
tree | d125ed5f1691623aae6360d0c69b1f2c8a04327c /tests/src | |
parent | 7b7c7b2fb25e09660f066e556a5008545d655f6f (diff) | |
download | aspectj-0cb826c6a5d47a12eb03bf1751208c0b9a7b23a3.tar.gz aspectj-0cb826c6a5d47a12eb03bf1751208c0b9a7b23a3.zip |
Fix and tests for pr86832, pr92163. NPE in detectHierarchyCycle
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 4 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/ajc150.xml | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java index 1f9d16ca0..b84ee076e 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -161,6 +161,10 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("enum called Enum, annotation called Annotation, etc"); } + public void testInternalCompilerError_pr86832() { + runTest("Internal compiler error"); + } + // helper methods..... public SyntheticRepository createRepos(File cpentry) { diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml index 068ac051c..6a5222ae6 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml @@ -2191,4 +2191,8 @@ <ajc-test dir="bugs150" title="enum called Enum, annotation called Annotation, etc"> <compile files="PR90827.aj" options="-1.5"/> </ajc-test> + + <ajc-test dir="bugs150" title="Internal compiler error"> + <compile files="PR86832.aj" options="-1.5"/> + </ajc-test> </suite>
\ No newline at end of file |