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 2 months ago
parent
commit
27f14f4d6f

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

public class Unwoven {
public static void main(String[] args) {
System.out.println("Hello world");
}
}

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

<aspectj>
<weaver>
<include within="*"/>
</weaver>
</aspectj>

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

runTest("same class woven concurrently in parallel-capable classloader"); runTest("same class woven concurrently in parallel-capable classloader");
} }


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

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

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

<ant file="ant.xml" target="same class woven concurrently in parallel-capable classloader" verbose="true"/> <ant file="ant.xml" target="same class woven concurrently in parallel-capable classloader" verbose="true"/>
</ajc-test> </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> </suite>

Loading…
Cancel
Save