diff options
Diffstat (limited to 'tests/src/test/java/org/aspectj/systemtest/ajc150/Ajc150Tests.java')
-rw-r--r-- | tests/src/test/java/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/tests/src/test/java/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/test/java/org/aspectj/systemtest/ajc150/Ajc150Tests.java index bfa50c8a4..6bb7a05dc 100644 --- a/tests/src/test/java/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/test/java/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -141,7 +141,9 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("privilege problem with switch"); } - public void testRangeProblem_pr109614() { + // Test no longer relevant. With the LDC instruction now supporting class constants we don't generate the code that + // tries a class.forname and catches the exception that the advice here tries to advise. + public void xtestRangeProblem_pr109614() { runTest("Range problem"); } @@ -233,10 +235,6 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("autoboxing around advice - 2"); } - public void testAutoboxingAroundAdvice_pr119210_3() { - runTest("autoboxing around advice - 3"); - } - public void testBadDecp_pr110788_1() { runTest("bad generic decp - 1"); } @@ -812,8 +810,8 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("default impl of Runnable"); } - public void testArrayCloneCallJoinPoints() { - runTest("array clone call join points in 1.4 vs 1.3"); + public void testArrayCloneCallJoinPoint() { + runTest("array clone call join point"); } public void testDebugInfoForAroundAdvice() { @@ -836,10 +834,6 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("ITDC with no explicit cons call"); } - public void testJava5SpecificFeaturesUsedAtJava14OrLower() { - runTest("java 5 pointcuts and declares at pre-java 5 compliance levels - 1.7"); - } - public void testAnonymousTypes() { runTest("Anonymous types and nome matching"); } |