Module: tools Branch: master Commit: ef4821bd07c09537d3cc4e72700a3ff54b8734f4 URL: https://source.winehq.org/git/tools.git/?a=commit;h=ef4821bd07c09537d3cc4e72...
Author: Francois Gouget fgouget@codeweavers.com Date: Sun Mar 15 22:53:05 2020 +0100
testbot/WineTest: Rename DailyWineTest() to WineTestSuite().
What matters is that it runs the full WineTest suite, not whether it is run daily.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/bin/build/WineTest.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testbot/bin/build/WineTest.pl b/testbot/bin/build/WineTest.pl index 88f5e36..1afe9b8 100755 --- a/testbot/bin/build/WineTest.pl +++ b/testbot/bin/build/WineTest.pl @@ -90,7 +90,7 @@ sub SetupTest($$) return $BaseName; }
-sub DailyWineTest($$$$) +sub WineTestSuite($$$$) { my ($Mission, $NoSubmit, $BaseTag, $Args) = @_;
@@ -461,7 +461,7 @@ foreach my $Mission (@{$TaskMissions->{Missions}}) } elsif ($Action eq "winetest") { - exit(1) if (!DailyWineTest($Mission, $OptNoSubmit, $BaseTag, @ARGV)); + exit(1) if (!WineTestSuite($Mission, $OptNoSubmit, $BaseTag, @ARGV)); } elsif (@ARGV) {