You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our repo uses java_test for running tests written in Scala (some are Scalatests with a JUnit runner, some are vanilla JUnit).
We've noticed that scala_library targets remain completely un-instrumented when running bazel coverage.
Other than that, we don't observe any other major problems with java_test.
Would it be possible to adapt scala_library so that it is properly instrumented when running java_tests? or do you think that it's rather java_test that should be patched in rules_java to handle this case?
I've also patched the sources of rules_scala locally to check whether JacocoInstrumenter is ever executed:
--- a/src/java/io/bazel/rulesscala/coverage/instrumenter/JacocoInstrumenter.java+++ b/src/java/io/bazel/rulesscala/coverage/instrumenter/JacocoInstrumenter.java@@ -24,6 +24,8 @@ import org.jacoco.core.runtime.OfflineInstrumentationAccessGenerator;
public final class JacocoInstrumenter implements Worker.Interface {
public static void main(String[] args) throws Exception {
+ if (true) throw new RuntimeException("lolxd");+
Worker.workerMain(args, new JacocoInstrumenter());
}
and as expected, it's executed when running bazel coverage :scala_test, but not for bazel coverage :java_test ☹
The text was updated successfully, but these errors were encountered:
Summary
Our repo uses
java_test
for running tests written in Scala (some are Scalatests with a JUnit runner, some are vanilla JUnit).We've noticed that
scala_library
targets remain completely un-instrumented when runningbazel coverage
.Other than that, we don't observe any other major problems with
java_test
.Would it be possible to adapt
scala_library
so that it is properly instrumented when runningjava_test
s? or do you think that it's ratherjava_test
that should be patched in rules_java to handle this case?Details
I've got a small repro repository where it's pretty easy to see that for some reason,
java_test
action does not depend on the in Jacoco-instrumented...-offline.jar
output of_phase_coverage
.I've also patched the sources of rules_scala locally to check whether
JacocoInstrumenter
is ever executed:and as expected, it's executed when running
bazel coverage :scala_test
, but not forbazel coverage :java_test
☹The text was updated successfully, but these errors were encountered: