aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authoraclement <aclement>2011-02-03 00:03:02 +0000
committeraclement <aclement>2011-02-03 00:03:02 +0000
commit1386abb444d0f2e5dccb22c511f3063a569a4701 (patch)
tree7eddeb510945b891acee7e0d424ccc4c58be7ecf /tests/src
parent5270506186cf468fd0fc12d73cbe15327968e3dd (diff)
downloadaspectj-1386abb444d0f2e5dccb22c511f3063a569a4701.tar.gz
aspectj-1386abb444d0f2e5dccb22c511f3063a569a4701.zip
336136
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/org/aspectj/systemtest/ajc1611/Ajc1611Tests.java8
-rw-r--r--tests/src/org/aspectj/systemtest/ajc1611/ajc1611.xml29
2 files changed, 37 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc1611/Ajc1611Tests.java b/tests/src/org/aspectj/systemtest/ajc1611/Ajc1611Tests.java
index 4929b6cdd..064220b46 100644
--- a/tests/src/org/aspectj/systemtest/ajc1611/Ajc1611Tests.java
+++ b/tests/src/org/aspectj/systemtest/ajc1611/Ajc1611Tests.java
@@ -21,6 +21,14 @@ import org.aspectj.testing.XMLBasedAjcTestCase;
*/
public class Ajc1611Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
+ public void testITIT_336136() {
+ runTest("itit");
+ }
+
+ public void testITIT_336136_2() {
+ runTest("itit - 2");
+ }
+
public void testDeserialization_335682() {
runTest("pr335682");
}
diff --git a/tests/src/org/aspectj/systemtest/ajc1611/ajc1611.xml b/tests/src/org/aspectj/systemtest/ajc1611/ajc1611.xml
index a40d87eed..97c68923f 100644
--- a/tests/src/org/aspectj/systemtest/ajc1611/ajc1611.xml
+++ b/tests/src/org/aspectj/systemtest/ajc1611/ajc1611.xml
@@ -2,6 +2,35 @@
<suite>
+ <ajc-test dir="bugs1611/pr336136" title="itit">
+ <compile files="Country_Roo_Op4j.java">
+ <message kind="error" text="The import com.foo cannot be resolved" line="1"/>
+ <message kind="error" text="The import org.javaruntype cannot be resolved" line="3"/>
+ <message kind="error" text="The import org.op4j cannot be resolved" line="4"/>
+ <message kind="error" text="The import org.op4j cannot be resolved" line="5"/>
+ <message kind="error" text="Country cannot be resolved to a type" line="9"/>
+ <message kind="error" text="Function cannot be resolved to a type" line="11"/>
+ <message kind="error" text="can't determine modifiers of missing type Country_Roo_Op4j$Keys"/>
+ </compile>"
+ </ajc-test>
+
+
+ <ajc-test dir="bugs1611/pr336136" title="itit - 2">
+ <compile files="Country_Roo_Op4j2.java" options="-1.5">
+ <message kind="error" text="The import com.foo cannot be resolved" line="1"/>
+ <message kind="error" text="The import org.javaruntype cannot be resolved" line="3"/>
+ <message kind="error" text="The import org.op4j cannot be resolved" line="4"/>
+ <message kind="error" text="The import org.op4j cannot be resolved" line="5"/>
+ <message kind="error" text="Country cannot be resolved to a type" line="9"/>
+ <message kind="error" text="Country cannot be resolved to a type" line="11"/>
+ <message kind="error" text="Function cannot be resolved to a type" line="11"/>
+ <message kind="error" text="Get cannot be resolved" line="11"/>
+ <message kind="error" text="Types cannot be resolved" line="11"/>
+ <message kind="error" text="can't determine modifiers of missing type Country_Roo_Op4j2$Keys"/>
+ </compile>"
+ </ajc-test>
+
+
<ajc-test dir="bugs1611/pr335682" title="pr335682">
<compile inpath="foo.jar" outjar="bar.jar"/>
</ajc-test>