diff --git a/compiler/src/jdk.graal.compiler.test/src/jdk/graal/compiler/hotspot/test/CompilationWrapperTest.java b/compiler/src/jdk.graal.compiler.test/src/jdk/graal/compiler/hotspot/test/CompilationWrapperTest.java index 4e87e34b450a..b1f794dd1457 100644 --- a/compiler/src/jdk.graal.compiler.test/src/jdk/graal/compiler/hotspot/test/CompilationWrapperTest.java +++ b/compiler/src/jdk.graal.compiler.test/src/jdk/graal/compiler/hotspot/test/CompilationWrapperTest.java @@ -44,6 +44,7 @@ import java.util.zip.ZipFile; import org.junit.Assert; +import org.junit.Assume; import org.junit.Test; import jdk.graal.compiler.core.GraalCompilerOptions; @@ -233,6 +234,8 @@ public static void testHelper(List initialOutputProbes, List initialZipProbes, List extraVmArgs, String... mainClassAndArgs) throws IOException, InterruptedException { + boolean isWindows = System.getProperty("os.name", "").startsWith("Windows"); + Assume.assumeFalse("JaCoCo on Windows found -> skipping (GR-65076)", isWindows && SubprocessUtil.isJaCoCoAttached()); final Path dumpPath = getOutputDirectory().resolve(CompilationWrapperTest.class.getSimpleName() + "_" + nowAsFileName()); List vmArgs = withoutDebuggerArguments(getVMCommandLine()); vmArgs.removeIf(a -> a.startsWith("-Djdk.graal."));