[PATCH] testbot/WineTest: Fix the build-only missions.

Francois Gouget fgouget at codeweavers.com
Tue Nov 19 09:28:31 CST 2019


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---

The TestBot does not currently use any build-only missions. I noticed 
this issue when I tried to use WineTest to rebuild a patched Wine before 
manually running some tests.

 testbot/bin/build/WineTest.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testbot/bin/build/WineTest.pl b/testbot/bin/build/WineTest.pl
index 9948e0929..88f5e3659 100755
--- a/testbot/bin/build/WineTest.pl
+++ b/testbot/bin/build/WineTest.pl
@@ -453,7 +453,7 @@ if ($Action eq "testpatch")
 }
 foreach my $Mission (@{$TaskMissions->{Missions}})
 {
-  return 1 if ($Mission->{test} eq "build");
+  next if ($Mission->{test} eq "build");
 
   if ($Action eq "testexe")
   {
-- 
2.20.1



More information about the wine-devel mailing list