Skip to content

Commit 76b7c05

Browse files
committed
Allow GraalVmStarterTests to run remotely on Test Distribution agents
(cherry picked from commit 9ec15c7)
1 parent 4bda14d commit 76b7c05

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

platform-tooling-support-tests/src/test/java/platform/tooling/support/tests/GraalVmStarterTests.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121

2222
import de.sormuras.bartholdy.tool.GradleWrapper;
2323

24-
import com.gradle.enterprise.testing.annotations.LocalOnly;
25-
2624
import org.junit.jupiter.api.Test;
2725

2826
import platform.tooling.support.MavenRepo;
@@ -31,7 +29,6 @@
3129
/**
3230
* @since 1.9.1
3331
*/
34-
@LocalOnly(because = "GraalVM is not installed on Test Distribution agents")
3532
class GraalVmStarterTests {
3633

3734
@Test
@@ -42,7 +39,7 @@ void runsTestsInNativeImage() {
4239
.addArguments("-Dmaven.repo=" + MavenRepo.dir()) //
4340
.addArguments("javaToolchains", "nativeTest", "--no-daemon", "--stacktrace") //
4441
.addArguments("-Porg.gradle.java.installations.fromEnv=GRAALVM_HOME") //
45-
.setTimeout(Duration.ofMinutes(5)) //
42+
.setTimeout(Duration.ofMinutes(10)) //
4643
.build();
4744

4845
var result = request.run();

0 commit comments

Comments
 (0)