Title: [138133] trunk/Tools
Revision
138133
Author
carlo...@webkit.org
Date
2012-12-19 02:18:15 -0800 (Wed, 19 Dec 2012)

Log Message

[GTK] Tests that time out are not considered as failures.
https://bugs.webkit.org/show_bug.cgi?id=105318

Patch by Alberto Garcia <agar...@igalia.com> on 2012-12-19
Reviewed by Martin Robinson.

Fix parsing of the GTK API tests log files.

* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(RunGtkAPITests.commandComplete):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (138132 => 138133)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-12-19 10:10:14 UTC (rev 138132)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-12-19 10:18:15 UTC (rev 138133)
@@ -542,7 +542,7 @@
         logText = cmd.logs['stdio'].getText()
         incorrectLines = []
         for line in logText.splitlines():
-            if line.startswith('ERROR') or line.endswith('TIMEOUT\n'):
+            if line.startswith('ERROR') or line.endswith('TIMEOUT'):
                 incorrectLines.append(line)
 
         self.incorrectLines = incorrectLines

Modified: trunk/Tools/ChangeLog (138132 => 138133)


--- trunk/Tools/ChangeLog	2012-12-19 10:10:14 UTC (rev 138132)
+++ trunk/Tools/ChangeLog	2012-12-19 10:18:15 UTC (rev 138133)
@@ -1,3 +1,15 @@
+2012-12-19  Alberto Garcia  <agar...@igalia.com>
+
+        [GTK] Tests that time out are not considered as failures.
+        https://bugs.webkit.org/show_bug.cgi?id=105318
+
+        Reviewed by Martin Robinson.
+
+        Fix parsing of the GTK API tests log files.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (RunGtkAPITests.commandComplete):
+
 2012-12-18  Ilya Tikhonovsky  <loi...@chromium.org>
 
         Unreviewed, rolling out r138061.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to