From 020aa0361baaa9bb228c40ab88169edc135c160c Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Thu, 31 Mar 2022 14:24:03 +0700 Subject: [PATCH] Revert "Fix more LTW tests" This reverts commit 63d5e3e893bd149245465de1610716930998dec8. --- .../java/org/aspectj/testing/RunSpec.java | 4 +-- .../org/aspectj/systemtest/ajc150/ltw/ltw.xml | 31 ++----------------- .../aspectj/systemtest/ajc1612/ajc1612.xml | 2 +- 3 files changed, 5 insertions(+), 32 deletions(-) diff --git a/testing/src/test/java/org/aspectj/testing/RunSpec.java b/testing/src/test/java/org/aspectj/testing/RunSpec.java index 181eb9062..c50b40f76 100644 --- a/testing/src/test/java/org/aspectj/testing/RunSpec.java +++ b/testing/src/test/java/org/aspectj/testing/RunSpec.java @@ -22,7 +22,7 @@ import java.util.StringTokenizer; import org.aspectj.tools.ajc.AjcTestCase; import org.aspectj.util.FileUtil; -import static org.aspectj.util.LangUtil.is9VMOrGreater; +import static org.aspectj.util.LangUtil.is16VMOrGreater; /** * @author Adrian Colyer @@ -75,7 +75,7 @@ public class RunSpec implements ITestStep { // The reason for setting this parameter for Java 9+ instead of 16+ is that it helps to avoid the JVM printing // unwanted illegal access warnings during weaving in 'useFullLTW' mode, either making existing tests fail or // having to assert on the warning messages. - vmargs += is9VMOrGreater() ? " --add-opens java.base/java.lang=ALL-UNNAMED" : ""; + vmargs += is16VMOrGreater() ? " --add-opens java.base/java.lang=ALL-UNNAMED" : ""; AjcTestCase.RunResult rr = inTestCase.run(getClassToRun(), getModuleToRun(), args, vmargs, getClasspath(), getModulepath(), useLtw, "true".equalsIgnoreCase(usefullltw)); diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc150/ltw/ltw.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc150/ltw/ltw.xml index 66cd3cfbf..652ddecd5 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc150/ltw/ltw.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc150/ltw/ltw.xml @@ -221,7 +221,7 @@ - + @@ -229,33 +229,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -271,7 +244,7 @@ text="this affected type is not exposed to the weaver: TestITDMethod" /> + ltw="aop-abstractaspect.xml"> diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc1612/ajc1612.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc1612/ajc1612.xml index 5a8556d80..650bdea43 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc1612/ajc1612.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc1612/ajc1612.xml @@ -13,7 +13,7 @@ - + -- 2.39.5