diff options
author | aclement <aclement> | 2008-03-18 15:58:12 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-03-18 15:58:12 +0000 |
commit | 31faca3733d21214b8672766ef65ec0e4384bfba (patch) | |
tree | d7ba9d93f8e46ae1a5483f933aa63b86f2769dc9 /tests/src | |
parent | 739d01ffba57c23d643ae37f743d48abfce7f1a3 (diff) | |
download | aspectj-31faca3733d21214b8672766ef65ec0e4384bfba.tar.gz aspectj-31faca3733d21214b8672766ef65ec0e4384bfba.zip |
145018 - moved testcode to 16
Diffstat (limited to 'tests/src')
4 files changed, 15 insertions, 15 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java b/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java index 43cf61620..c21fd252f 100644 --- a/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java @@ -85,7 +85,6 @@ public class Ajc153Tests extends org.aspectj.testing.XMLBasedAjcTestCase { public void testCpathNoTypeCflowField_pr145693_3() { runTest("cpathNoTypeCflowField"); } // public void testAdviceNotWovenAspectPath_pr147841() { runTest("advice not woven on aspectpath");} public void testGenericSignatures_pr148409() { runTest("generic signature problem"); } -// public void testBrokenIfArgsCflowAtAj_pr145018() { runTest("ataj crashing with cflow, if and args");} public void testCantFindType_pr149322_01() {runTest("can't find type on interface call 1");} public void testCantFindType_pr149322_02() {runTest("can't find type on interface call 2");} public void testCantFindType_pr149322_03() {runTest("can't find type on interface call 3");} diff --git a/tests/src/org/aspectj/systemtest/ajc153/ajc153.xml b/tests/src/org/aspectj/systemtest/ajc153/ajc153.xml index c0645c09e..89cf410cb 100644 --- a/tests/src/org/aspectj/systemtest/ajc153/ajc153.xml +++ b/tests/src/org/aspectj/systemtest/ajc153/ajc153.xml @@ -369,15 +369,6 @@ </run> </ajc-test> - <ajc-test dir="bugs153/pr145018" title="ataj crashing with cflow, if and args"> - <compile files="Broken.aj" options="-1.5"/> - <run class="Broken"> - <stderr> - <line text="ahhh"/> - </stderr> - </run> - </ajc-test> - <ajc-test dir="bugs153/pr150095" title="generics, inheritance and decp"> <compile files="Foo.java" options="-1.5"/> </ajc-test> diff --git a/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java b/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java index 5616a059b..b11b00818 100644 --- a/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java @@ -12,15 +12,19 @@ package org.aspectj.systemtest.ajc160; import java.io.File; -import org.aspectj.testing.XMLBasedAjcTestCase; import junit.framework.Test; +import org.aspectj.testing.XMLBasedAjcTestCase; + /** * These are tests for AspectJ1.6.0 */ public class Ajc160Tests extends org.aspectj.testing.XMLBasedAjcTestCase { // AspectJ1.6.0rc1 + // public void testBrokenIfArgsCflowAtAj_pr145018() { + // runTest("ataj crashing with cflow, if and args"); + // } public void testClassCastOnArrayType_pr180264() { runTest("classcastexception on array type"); } diff --git a/tests/src/org/aspectj/systemtest/ajc160/ajc160.xml b/tests/src/org/aspectj/systemtest/ajc160/ajc160.xml index 900a09664..f6339d7e5 100644 --- a/tests/src/org/aspectj/systemtest/ajc160/ajc160.xml +++ b/tests/src/org/aspectj/systemtest/ajc160/ajc160.xml @@ -7,15 +7,21 @@ <compile options="-1.5" files="AspectBreaker.java"/> </ajc-test> - <ajc-test dir="bugs160/pr180264" title="classcastexception on array type"> - <compile options="-warn:+uselessTypeCheck" files="Foo.java,Main.java"/> - </ajc-test> - <ajc-test dir="bugs160/pr167197" title="generic type parameterized with array type - 2"> <compile options="-1.5" files="Breaker2.java"/> <run class="Breaker2"/> </ajc-test> + <ajc-test dir="bugs160/pr180264" title="classcastexception on array type"> + <compile options="-warn:+uselessTypeCheck" files="Foo.java,Main.java"/> + </ajc-test> + + <ajc-test dir="bugs160/pr145018" title="ataj crashing with cflow, if and args"> + <compile files="Broken.aj" options="-1.5"/> + <run class="Broken"> + </run> + </ajc-test> + <ajc-test dir="bugs160/pr201748" title="itd with array"> <compile files="Foo.java"> <message kind="error" text="Type mismatch: cannot convert from Factory[] to Factory"/> |