Skip to content

Commit

Permalink
Increase timeout for GraalVM test
Browse files Browse the repository at this point in the history
Timed out on CI
  • Loading branch information
marcphilipp committed Sep 17, 2022
1 parent 2a80984 commit 76719bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assumptions.assumeFalse;
import static platform.tooling.support.Helper.TOOL_TIMEOUT;
import static platform.tooling.support.tests.XmlAssertions.verifyContainsExpectedStartedOpenTestReport;

import java.nio.file.Paths;
import java.time.Duration;

import de.sormuras.bartholdy.tool.GradleWrapper;

Expand All @@ -38,7 +38,7 @@ void runsTestsInNativeImage() {
.setProject("graalvm-starter") //
.addArguments("-Dmaven.repo=" + MavenRepo.dir()) //
.addArguments("javaToolchains", "nativeTest", "--no-daemon", "--stacktrace") //
.setTimeout(TOOL_TIMEOUT) //
.setTimeout(Duration.ofMinutes(5)) //
.build();

var result = request.run();
Expand Down

0 comments on commit 76719bb

Please sign in to comment.