Francois Gouget : testbot/LogUtils: Detect WineTest.exe errors.
Module: tools Branch: master Commit: abb9aa978f751e9ffeea53d5533e6a369a15fa57 URL: https://source.winehq.org/git/tools.git/?a=commit;h=abb9aa978f751e9ffeea53d5... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Wed Apr 7 11:04:08 2021 +0200 testbot/LogUtils: Detect WineTest.exe errors. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/lib/WineTestBot/LogUtils.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm index e6e89f5..5d2dc33 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -106,8 +106,10 @@ sub GetLogLineCategory($) $Line =~ /^Task: / or # Typical perl errors _IsPerlError($Line) or - # The testbot.log errors - $Line =~ /:error: /) + # The TestLauncher / testbot.log errors + $Line =~ /:error: / or + # WineTest.exe errors + $Line =~ /^Error: /) { return "error"; }
participants (1)
-
Alexandre Julliard