Module: tools Branch: master Commit: 674ba8e869cbe9824a66eb8fc38b0ef31eff6e4b URL: https://source.winehq.org/git/tools.git/?a=commit;h=674ba8e869cbe9824a66eb8f...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Jun 14 10:35:41 2018 +0200
testbot/web: One cannot create a test job from a dll.
DetermineFileType() transforms these file types to unknown so they get rejected.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/web/Submit.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/web/Submit.pl b/testbot/web/Submit.pl index ac9a384..97f31d1 100644 --- a/testbot/web/Submit.pl +++ b/testbot/web/Submit.pl @@ -240,7 +240,7 @@ sub GenerateFields($) print "</th><tbody>\n";
my $VMs = CreateVMs(); - if ($self->{FileType} eq "exe64" || $self->{FileType} eq "dll64") + if ($self->{FileType} eq "exe64") { $VMs->AddFilter("Type", ["win64"]); }