aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authoraclement <aclement>2010-04-16 18:01:09 +0000
committeraclement <aclement>2010-04-16 18:01:09 +0000
commitf2c6356a17f3d9e18a0e2403f33e9cbff74740b2 (patch)
tree6ceb2803704dd33f07b5b19d621b90750648ffae /tests/src
parente15ff536953b9936d700050805498d9ff0cbaceb (diff)
downloadaspectj-f2c6356a17f3d9e18a0e2403f33e9cbff74740b2.tar.gz
aspectj-f2c6356a17f3d9e18a0e2403f33e9cbff74740b2.zip
309336: testcode
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java4
-rw-r--r--tests/src/org/aspectj/systemtest/ajc169/ajc169.xml10
2 files changed, 11 insertions, 3 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java
index d6abf0796..4d343135c 100644
--- a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java
+++ b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java
@@ -29,7 +29,11 @@ public class Ajc169Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
// public void testAdvisingPrivilegedAccessMethod_307147() {
// runTest("advising privileged access method");
// }
+
/*
+ public void testPipeliningAndGenerics_309336() {
+ runTest("pipelining and generics");
+ }
public void testCrashParamAnnos_309440() {
runTest("crash param annos");
}
diff --git a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml
index c877cd92b..052e7a140 100644
--- a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml
+++ b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml
@@ -2,6 +2,10 @@
<suite>
+ <ajc-test dir="bugs169/pr309336" title="pipelining and generics">
+ <compile files="NoSystemStreams.aj UseOperators.java Operators.java" options="-1.5"/>
+ </ajc-test>
+
<ajc-test dir="bugs169/pr308773" title="subtle generics problem">
<compile files="Aspy.aj Zzz.java Top.java Middle.java" options="-1.5"/>
</ajc-test>
@@ -178,7 +182,7 @@
</ajc-test>
<ajc-test dir="bugs169/pr291206" title="declare type warning - 2">
- <compile files="Two.java" options="-1.5 -XhasMember">
+ <compile files="Two.java" options="-1.5">
<message kind="warning" line="7" text="Missing foo()"/>
<message kind="warning" line="13" text="Missing foo()"/>
</compile>
@@ -186,14 +190,14 @@
<!-- testing build of model with one of these in -->
<ajc-test dir="bugs169/pr291206" title="declare type warning - 3">
- <compile files="Two.java" options="-1.5 -XhasMember -emacssym">
+ <compile files="Two.java" options="-1.5 -emacssym">
<message kind="warning" line="7" text="Missing foo()"/>
<message kind="warning" line="13" text="Missing foo()"/>
</compile>
</ajc-test>
<ajc-test dir="bugs169/pr291206" title="declare type error - 1">
- <compile files="Three.java" options="-1.5 -XhasMember">
+ <compile files="Three.java" options="-1.5">
<message kind="error" line="7" text="Missing foo()"/>
<message kind="error" line="13" text="Missing foo()"/>
</compile>