[PATCH] testbot: All build scripts have now standardized on the 'Task:' prefix.

Francois Gouget fgouget at codeweavers.com
Wed Oct 17 09:23:03 CDT 2018


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 testbot/lib/WineTestBot/LogUtils.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm
index 1bb8f5aa1d..6caa0212c2 100644
--- a/testbot/lib/WineTestBot/LogUtils.pm
+++ b/testbot/lib/WineTestBot/LogUtils.pm
@@ -130,7 +130,7 @@ sub GetLogLineCategory($)
       $Line =~ /: error: / or
       $Line =~ /^make: [*]{3} No rule to make target / or
       $Line =~ /^Makefile:[0-9]+: recipe for target .* failed$/ or
-      $Line =~ /^(?:Build|Reconfig|Task): (?!ok)/ or
+      $Line =~ /^Task: (?!ok)/ or
       # Typical perl errors
       _IsPerlError($Line))
   {
@@ -152,7 +152,7 @@ sub GetLogLineCategory($)
   }
   if (# Build messages
       $Line =~ /^\+ \S/ or
-      $Line =~ /^(?:Build|Reconfig|Task): ok/)
+      $Line =~ /^Task: ok/)
   {
     return "info";
   }
-- 
2.19.1




More information about the wine-devel mailing list