Permalink
master
Commits on Jan 3, 2022
Commits on Dec 22, 2021
-
Update KotlinUnsafeCastOperatorFilter for Kotlin 1.6 (#1266)
Co-authored-by: Evgeny Mandrikov <mandrikov@gmail.com> Co-authored-by: Lukas Rössler <lukas.roessler@mysugr.com>
Commits on Dec 14, 2021
Commits on Nov 18, 2021
Commits on Nov 17, 2021
-
Fix build for JDK 18 >= EA b21 (#1249)
Ant task `java` with parameter `fork="false"` calls `java.lang.System.setSecurityManager`, however tests should not call it, because as part of work on JEP 411 in JDK 17 it was marked as deprecated (see https://bugs.openjdk.java.net/browse/JDK-8264713) and in JDK 18 throws UnsupportedOperationException unless system property `java.security.manager` set to `allow` (see https://bugs.openjdk.java.net/browse/JDK-8270380).
Commits on Nov 8, 2021
-
Fix range for debug symbols of method parameters (#1246)
By inserting the probe array access code at the beginning of the method we accidently moved the range of the debug symbols of the method parameters after the probe array access code. Actually the method parameters are still valid from the very beginning of the method. This offset in the method parameter's debug symbols may confuse tools like Jandex.
Commits on Oct 5, 2021
Commits on Oct 4, 2021
-
A sequence of instructions between two probes may correspond to several lines. In that case, as identified in #1223, an exception may "hide" the executed status of several lines, and not just one.
Commits on Sep 9, 2021
-
Use Maven 3.8.1 in Azure Pipelines (#1221)
Seems that Maven 3.8.2 contains bug, which prevents us from using it.
Commits on Jul 23, 2021
Commits on Jul 5, 2021
-
Add
org.jacoco.core.test
todependencyManagement
The module `org.jacoco.core.test` provides test tools for other tests modules and is used as a dependency in several places.
Commits on Jun 29, 2021
Commits on Jun 26, 2021
Commits on Jun 14, 2021
Commits on Jun 10, 2021
Commits on May 28, 2021
-
Add module for Java 16 validation tests (#1165)
Records and Pattern Matching for instanceof are finalized in Java 16, so no need to test them as preview features in earlier versions.
Commits on May 27, 2021
Commits on May 19, 2021
Commits on May 8, 2021
Commits on May 5, 2021
Commits on May 4, 2021
Commits on May 3, 2021
-
Update KotlinControlStructuresTarget for Kotlin 1.5 (#1180)
for-loop with range expression whose bounds are constants with end less than start is folded into nop by Kotlin compiler version 1.5, without constants in for-loops behaviour is the same for compiler version 1.5 as for earlier versions.