Module: tools Branch: master Commit: 7197fb218984a313af5ab002604f74d50c5a4f03 URL: https://source.winehq.org/git/tools.git/?a=commit;h=7197fb218984a313af5ab002...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Dec 22 09:55:28 2017 +0100
testbot/web: Tweak the label of 64 bit tests on the Activity page.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/web/Activity.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/testbot/web/Activity.pl b/testbot/web/Activity.pl index a33f3ef..64a752b 100644 --- a/testbot/web/Activity.pl +++ b/testbot/web/Activity.pl @@ -190,9 +190,11 @@ EOF { $Label .= " ". $VMStatus->{step}->FileName; if ($VMStatus->{task}->CmdLineArg =~ /^\w+$/ and - $Label =~ s/_(?:cross)?test.exe$//) + $Label =~ s/_(?:cross)?test(64)?.exe$//) { + my $Bitness = $1; $Label .= ":". $VMStatus->{task}->CmdLineArg; + $Label .= "/64" if ($Bitness); } } $Label = "<a href='/JobDetails.pl?Key=". $VMStatus->{job}->Id ."#k". ($VMStatus->{step}->No * 100 + $VMStatus->{task}->No) ."'>$Label</a>";