[tools] testbot/LogUtils: Detect WineTest.exe errors.

Francois Gouget fgouget at codeweavers.com
Wed Apr 7 04:04:08 CDT 2021


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 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 e6e89f556..5d2dc33a5 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";
   }
-- 
2.20.1



More information about the wine-devel mailing list