[Scummvm-git-logs] scummvm master -> 8fb3f71ed2c6c07885217dc44197b807af855c0d

rvanlaar noreply at scummvm.org
Wed Sep 7 13:49:06 UTC 2022


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:
8fb3f71ed2 DIRECTOR: LINGO: TESTS: fix test timeouts


Commit: 8fb3f71ed2c6c07885217dc44197b807af855c0d
    https://github.com/scummvm/scummvm/commit/8fb3f71ed2c6c07885217dc44197b807af855c0d
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-09-07T15:48:48+02:00

Commit Message:
DIRECTOR: LINGO: TESTS: fix test timeouts

Set PuppetTransitions after move commands.
move does a force render. Combined with puppetTransitions it just waits and causes a timeout on the buildbot.

Changed paths:
    engines/director/lingo/tests/builtin.lingo


diff --git a/engines/director/lingo/tests/builtin.lingo b/engines/director/lingo/tests/builtin.lingo
index f9b70b27bb2..c223ec0c86d 100644
--- a/engines/director/lingo/tests/builtin.lingo
+++ b/engines/director/lingo/tests/builtin.lingo
@@ -7,6 +7,16 @@ open "Hello"
 open "Hello" with "Finder"
 open "Hello" && "more" with "Finder"
 
+-- These are D4+
+move cast 1, cast 1
+move cast 1, 3
+move cast 3, 1
+put findEmpty(cast 10)
+pasteClipBoardInto cast 2
+put the width of cast 1
+
+-- Puppet commands must come after the move commands
+-- move does a force render. Combined with puppetTransitions it just waits and causes a timeout on the buildbot
 puppetPalette "Rainbow"
 puppetPalette "System",30
 puppetPalette "custompal", 15,4
@@ -20,14 +30,6 @@ puppetTempo 30
 puppetTransition 1
 puppetTransition 2,4,20
 
--- These are D4+
-move cast 1, cast 1
-move cast 1, 3
-move cast 3, 1
-put findEmpty(cast 10)
-pasteClipBoardInto cast 2
-put the width of cast 1
-
 unload
 unload ab
 unload ab, bc




More information about the Scummvm-git-logs mailing list