Module: tools Branch: master Commit: 4798152ccf2b25ea77bc9bcb9dc218fadfec8b6e URL: https://gitlab.winehq.org/winehq/tools/-/commit/4798152ccf2b25ea77bc9bcb9dc2...
Author: Francois Gouget fgouget@codeweavers.com Date: Tue Jun 20 14:56:03 2023 +0200
testbot/web: Don't put a link on the known failure messages.
The link gets in the way of copy/pasting the failure message and having it on the bug id is sufficient.
---
testbot/web/JobDetails.pl | 3 --- 1 file changed, 3 deletions(-)
diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl index 008595f3..72d4cd3f 100644 --- a/testbot/web/JobDetails.pl +++ b/testbot/web/JobDetails.pl @@ -538,7 +538,6 @@ sub GenerateFullLog($$$$$) if ($ErrFailures{$LineNo}) { print "[", $self->GetFailureLinks($ErrFailures{$LineNo}), "] "; - $Html = $self->GetFailureLink($ErrFailures{$LineNo}->[0], $Html); } print "$Html\n"; } @@ -575,7 +574,6 @@ sub GenerateFullLog($$$$$) if ($Group->{Failures}->{$MsgIndex}) { print "[", $self->GetFailureLinks($Group->{Failures}->{$MsgIndex}), "] "; - $Html = $self->GetFailureLink($Group->{Failures}->{$MsgIndex}->[0], $Html); } print "<span class='log-$Category'>$Html</span>\n"; } @@ -752,7 +750,6 @@ EOF if ($FailureIds) { print "[", $self->GetFailureLinks($FailureIds), "] "; - $Html = $self->GetFailureLink($FailureIds->[0], $Html); } print "$Html\n"; $MsgIndex++;