Module: tools Branch: master Commit: 154bf0482bb327260501cbf8ef21bead9bebda28 URL: https://gitlab.winehq.org/winehq/tools/-/commit/154bf0482bb327260501cbf8ef21...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Dec 1 15:57:40 2022 +0100
testbot/LogUtils: Remove explicit highlighting of a couple of task messages.
They are now prefixed by the script name and message category (error, warning, etc).
---
testbot/lib/WineTestBot/LogUtils.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm index fc840f97..3aa59391 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -91,9 +91,7 @@ sub GetLogLineCategory($) $Line =~ /^Running (?:the tests|WineTest) / or $Line =~ /^Task: (?:ok|tests|Updated)/ or # testbot.log information messages - $Line =~ /^----- Run / or - $Line =~ /^The test VM has crashed/ or # Context for an error message - $Line =~ /^The previous \d+ run(s) terminated abnormally/) + $Line =~ /^----- Run /) { return "info"; }