[Scummvm-git-logs] scummvm master -> 1a7b882f6ae2d8a38e3ce3191e3acfa8952473ca
rvanlaar
roland at rolandvanlaar.nl
Mon Jun 29 16:04:07 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
1a7b882f6a DIRECTOR: prevent the buildbot from timing out
Commit: 1a7b882f6ae2d8a38e3ce3191e3acfa8952473ca
https://github.com/scummvm/scummvm/commit/1a7b882f6ae2d8a38e3ce3191e3acfa8952473ca
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2020-06-29T18:03:42+02:00
Commit Message:
DIRECTOR: prevent the buildbot from timing out
The buildbot times out after 10 seconds without output.
Some movies don't tigger any warnings or output and are killed too
early. For example: mediaband/techroom/popup.dxr.
This change adds an extra layer to prevent the buildbot from timing
out.
Changed paths:
engines/director/score.cpp
diff --git a/engines/director/score.cpp b/engines/director/score.cpp
index 4638c1787f..d0d7557742 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -402,8 +402,10 @@ void Score::startLoop() {
if (_currentFrame < _frames.size())
_vm->processEvents();
- if (debugChannelSet(-1, kDebugFewFramesOnly) || debugChannelSet(-1, kDebugScreenshot))
+ if (debugChannelSet(-1, kDebugFewFramesOnly) || debugChannelSet(-1, kDebugScreenshot)) {
+ warning("Score::startLoop(): ran frame %0d", _framesRan);
_framesRan++;
+ }
if (debugChannelSet(-1, kDebugFewFramesOnly) && _framesRan > 9) {
warning("Score::startLoop(): exiting due to debug few frames only");
More information about the Scummvm-git-logs
mailing list