We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf47a56 commit 8c7ba60Copy full SHA for 8c7ba60
rollbar-reactive-streams-reactor/build.gradle
@@ -73,6 +73,12 @@ project.tasks.check.dependsOn(junit4Test)
73
interleave {
74
useJUnit() {
75
includeCategories VMLENS_CATEGORY
76
+
77
+ // VMLens occasionally generates invalid bytecode under Java > 8. This will either be fixed,
78
+ // or VMLens will have to be removed. For now we need consistent builds, and the concurrency
79
+ // code we test under Java 8 has the same semantics under Java 11 so testing only Java 8 is
80
+ // an acceptable compromise.
81
+ enabled = JavaVersion.current().compareTo(JavaVersion.VERSION_1_9) < 0
82
}
83
84
// The Jacoco agent doesn't get along with the VMLens agent.
0 commit comments