Skip to content

Commit eeff117

Browse files
authored
Increase the timeout of slow buildbots (#262)
On x86 Gentoo Non-Debug with X, test_peg_generator was killed after 25 minutes, it took 22 minutes on a previous successful build.
1 parent 1ce97f0 commit eeff117

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

master/custom/builders.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,22 @@
3030

3131
STABLE = "stable"
3232
UNSTABLE = "unstable"
33+
# faulthandler uses a timeout 5 minutes smaller: it should be enough for the
34+
# slowest test.
35+
SLOW_TIMEOUT = 40 * 60
3336

3437

3538
# classes using longer timeout for koobs's very slow buildbots
3639
class SlowNonDebugUnixBuild(NonDebugUnixBuild):
37-
test_timeout = 30 * 60
40+
test_timeout = SLOW_TIMEOUT
3841

3942

4043
class SlowSharedUnixBuild(SharedUnixBuild):
41-
test_timeout = 30 * 60
44+
test_timeout = SLOW_TIMEOUT
4245

4346

4447
class SlowUnixInstalledBuild(UnixInstalledBuild):
45-
test_timeout = 30 * 60
48+
test_timeout = SLOW_TIMEOUT
4649

4750

4851
def get_builders(settings):

0 commit comments

Comments
 (0)