Browse Source

Add Bugs1921Tests::testGitHub_285

This is an additional reproducer for regression bug #285.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_21_2
Alexander Kriegisch 1 month ago
parent
commit
27f14f4d6f

+ 5
- 0
tests/bugs1921/github_285/Unwoven.java View File

@@ -0,0 +1,5 @@
public class Unwoven {
public static void main(String[] args) {
System.out.println("Hello world");
}
}

+ 5
- 0
tests/bugs1921/github_285/aop.xml View File

@@ -0,0 +1,5 @@
<aspectj>
<weaver>
<include within="*"/>
</weaver>
</aspectj>

+ 4
- 0
tests/src/test/java/org/aspectj/systemtest/ajc1921/Bugs1921Tests.java View File

@@ -19,6 +19,10 @@ public class Bugs1921Tests extends XMLBasedAjcTestCase {
runTest("same class woven concurrently in parallel-capable classloader");
}

public void testGitHub_285() {
runTest("shared cache negative test");
}

public static Test suite() {
return XMLBasedAjcTestCase.loadSuite(Bugs1921Tests.class);
}

+ 21
- 0
tests/src/test/resources/org/aspectj/systemtest/ajc1921/ajc1921.xml View File

@@ -372,4 +372,25 @@
<ant file="ant.xml" target="same class woven concurrently in parallel-capable classloader" verbose="true"/>
</ajc-test>

<!--
https://github.com/eclipse-aspectj/aspectj/issues/285, AspectJ 1.9.21.2

See also org.aspectj.systemtest.ajc171.NewFeatures::testSharedCache. This is a quasi negative test missing back in
1.7.2 when the shared cache was introduced.
-->
<ajc-test dir="bugs1921/github_285" title="shared cache negative test">
<compile files="Unwoven.java" options="-1.5"/>
<run class="Unwoven" ltw="aop.xml" usefullltw="true"
vmargs="-Daj.weaving.cache.enabled=true -Daj.weaving.cache.dir=./ -Daj.weaving.cache.impl=shared">
<stdout>
<line text="Hello world"/>
</stdout>
<!--
Nothing should be printed on stderr, especially no fatal NPE with message
'Cannot read the array length because "b" is null' and subsequent ajcore.*.txt
-->
<stderr/>
</run>
</ajc-test>

</suite>

Loading…
Cancel
Save