Francois Gouget : testbot/LogUtils: Detect WineTest.exe errors.

Alexandre Julliard julliard at winehq.org
Wed Apr 7 15:48:16 CDT 2021


Module: tools
Branch: master
Commit: abb9aa978f751e9ffeea53d5533e6a369a15fa57
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=abb9aa978f751e9ffeea53d5533e6a369a15fa57

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Wed Apr  7 11:04:08 2021 +0200

testbot/LogUtils: Detect WineTest.exe errors.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at 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";
   }




More information about the wine-cvs mailing list