diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-23 16:59:17 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-03-23 18:36:14 +0700 |
commit | 79e44360cd95b14fa255daaac069f9b76c488451 (patch) | |
tree | e8a0204bd324beec3513768a6e5a83f4137b78ce /tests/java5/ataspectj | |
parent | 6be777e71708df5a62e41c6ef95da66bfd02f447 (diff) | |
download | aspectj-79e44360cd95b14fa255daaac069f9b76c488451.tar.gz aspectj-79e44360cd95b14fa255daaac069f9b76c488451.zip |
Make all tests run on Java 16 via '-add-opens' JVM optionjava16-add-opens
Due to JEP 260 (Encapsulate Most Internal APIs), aspect weaving on
Java 16 now requires '--add-opens java.base/java.lang=ALL-UNNAMED' on
the command line. Otherwise there will be illegal access exceptions for
some internal API calls AspectJ needs, most prominently when trying to
define classes in other packages or modules.
This had to be done on several levels:
- Maven Surefire: running tests in a JVM directly forked by Surefire.
In order to make this backwards compatible, I added two profiles
with JDK-level-dependent auto-activation, one 8-15 and one 16+. In
the latter a property containing the JVM parameter is defined, in
the former it is empty, i.e. the JVM is started without the
parameter. In Java 8 the parameter did not even exist, in Java 9+ we
could use it, but we need to test how users use AspectJ.
- RunSpec: Whenever an XML test is declared to use '<run>', we need to
determine the current JVM version and again dynamically add the
parameter when forking the target JVM.
- AntSpec: Whenever an XML test is declared to use '<ant>', we need to
determine the current JVM version dynamically add two properties
usable from within Ant scripts: 'aj.addOpensKey' and
'aj.addOpensValue'. Unfortunately, Ant needs to use two '<argLine>'
parameters, because the two parts of the option are separated by a
space character.
- Ant scripts: When triggered by an AntSpec, each Ant target using LTW
needs to manually set
<jvmarg value="${aj.addOpensKey}"/>
<jvmarg value="${aj.addOpensValue}"/>
for each '<java>' task. It was quite tedious to find all(?) of them.
TODO: In the AspectJ 1.9.7 release notes we need to document that this
parameter is now needed for LTW.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/java5/ataspectj')
-rw-r--r-- | tests/java5/ataspectj/ajc-ant.xml | 50 |
1 files changed, 42 insertions, 8 deletions
diff --git a/tests/java5/ataspectj/ajc-ant.xml b/tests/java5/ataspectj/ajc-ant.xml index c3ac6bac8..f69cfd4dd 100644 --- a/tests/java5/ataspectj/ajc-ant.xml +++ b/tests/java5/ataspectj/ajc-ant.xml @@ -24,6 +24,8 @@ <!-- use META-INF/aop.xml style --> <classpath path="ataspectj/pathentry"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> <!-- <jvmarg line="${jdwp}"/>--> </java> </target> @@ -34,6 +36,8 @@ <java fork="yes" classname="ataspectj.PerClauseTest" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> <!-- <jvmarg line="${jdwp}"/> --> </java> </target> @@ -44,6 +48,8 @@ <java fork="yes" classname="ataspectj.AroundInlineMungerTest" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> <!--<jvmarg line="${jdwp}"/>--><!-- uncomment to debug with JDWP --> </java> </target> @@ -54,6 +60,8 @@ <java fork="yes" classname="ataspectj.AroundInlineMungerTest2" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -61,6 +69,8 @@ <java fork="yes" classname="ataspectj.DumpTest" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -70,6 +80,8 @@ <java fork="yes" classname="ataspectj.TestProxyGenerator" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -89,6 +101,8 @@ <pathelement path="${aj.sandbox}/main1.jar"/> </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -100,27 +114,33 @@ </javac> <copy file="ataspectj/ltwlog/aop-silent.xml" tofile="${aj.sandbox}/META-INF/aop.xml" - overwrite="yes" + overwrite="yes" /> <java fork="yes" classname="ataspectj.ltwlog.MainSilent" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> <copy file="ataspectj/ltwlog/aop-verbsoe.xml" tofile="${aj.sandbox}/META-INF/aop.xml" - overwrite="yes" + overwrite="yes" /> <java fork="yes" classname="ataspectj.ltwlog.MainVerbose" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> <copy file="ataspectj/ltwlog/aop-verboseandshow.xml" tofile="${aj.sandbox}/META-INF/aop.xml" - overwrite="yes" + overwrite="yes" /> <java fork="yes" classname="ataspectj.ltwlog.MainVerboseAndShow" failonerror="yes"> <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -142,30 +162,36 @@ <pathelement path="${aj.root}/lib/asm/asm-2.0.jar"/> </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> <target name="ltw.Decp"> <copy file="ataspectj/aop-decptest.xml" tofile="${aj.sandbox}/META-INF/aop.xml" - overwrite="yes" + overwrite="yes" /> <java fork="yes" classname="ataspectj.DeclareParentsInterfaceTest" failonerror="yes"> <classpath> <path refid="aj.path"/> </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> <copy file="ataspectj/aop-decptest.xml" tofile="${aj.sandbox}/META-INF/aop.xml" - overwrite="yes" + overwrite="yes" /> <java fork="yes" classname="ataspectj.DeclareParentsImplementsTest" failonerror="yes"> <classpath> <path refid="aj.path"/> </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -187,6 +213,8 @@ <path refid="aj.path"/> </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -204,6 +232,8 @@ </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> <jvmarg value="-DaspectDeclared=true"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> <!--Now ensure that the error is not produced when the declaration is made.--> <copy file="ataspectj/ltwreweavable/aop-ltwreweavable-omitted.xml" @@ -216,6 +246,8 @@ </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> <jvmarg value="-DaspectDeclared=false"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -243,6 +275,8 @@ <classpath refid="aj.path"/> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> <jvmarg value="-Daj.weaving.verbose=true"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> </java> </target> @@ -256,13 +290,13 @@ <pathelement path="${aj.sandbox}/aspects.jar"/> </classpath> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> -<!-- ---> <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> <jvmarg value="-Daj.weaving.verbose=true"/> <jvmarg value="-Djava.util.logging.config.file=${aj.root}/weaver5/testdata/logging.properties"/> + <jvmarg value="${aj.addOpensKey}"/> + <jvmarg value="${aj.addOpensValue}"/> <!-- <jvmarg line="${jdwp}"/>--> </java> </target> -</project>
\ No newline at end of file +</project> |