Skip to content

Commit f97532e

Browse files
Bump default timeout for test suites on Windows to 60 minutes (#114428) (#114447)
Co-authored-by: Elastic Machine <[email protected]>
1 parent 5a65b56 commit f97532e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ public void execute(Task t) {
184184
});
185185

186186
if (OS.current().equals(OS.WINDOWS) && System.getProperty("tests.timeoutSuite") == null) {
187-
// override the suite timeout to 30 mins for windows, because it has the most inefficient filesystem known to man
188-
test.systemProperty("tests.timeoutSuite", "2400000!");
187+
// override the suite timeout to 60 mins for windows, because it has the most inefficient filesystem known to man
188+
test.systemProperty("tests.timeoutSuite", "3600000!");
189189
}
190190

191191
/*

0 commit comments

Comments
 (0)