Title: [88383] trunk/Tools
Revision
88383
Author
[email protected]
Date
2011-06-08 14:01:39 -0700 (Wed, 08 Jun 2011)

Log Message

2011-06-08  Ryosuke Niwa  <[email protected]>

        Reviewed by Tony Chang.

        new-run-webkit-tests: don't turn the tree red when there are new passes
        https://bugs.webkit.org/show_bug.cgi?id=62311

        Look for "new passes" instead of "passed unexpectedly" in evaluateCommand
        to match commandComplete.

        * BuildSlaveSupport/build.webkit.org-config/master.cfg:

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2011-06-08 20:43:36 UTC (rev 88382)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2011-06-08 21:01:39 UTC (rev 88383)
@@ -302,7 +302,7 @@
         result = SUCCESS
         if self.incorrectLayoutLines:
             for line in self.incorrectLayoutLines:
-                if result != FAILURE and (line.find('were flaky') >= 0 or line.find('passed unexpectedly') >= 0):
+                if result != FAILURE and (line.find('were flaky') >= 0 or line.find('new passes') >= 0):
                     result = WARNINGS
                 else:
                     result = FAILURE

Modified: trunk/Tools/ChangeLog (88382 => 88383)


--- trunk/Tools/ChangeLog	2011-06-08 20:43:36 UTC (rev 88382)
+++ trunk/Tools/ChangeLog	2011-06-08 21:01:39 UTC (rev 88383)
@@ -1,3 +1,15 @@
+2011-06-08  Ryosuke Niwa  <[email protected]>
+
+        Reviewed by Tony Chang.
+
+        new-run-webkit-tests: don't turn the tree red when there are new passes
+        https://bugs.webkit.org/show_bug.cgi?id=62311
+
+        Look for "new passes" instead of "passed unexpectedly" in evaluateCommand
+        to match commandComplete.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+
 2011-06-08  Tom Hudson  <[email protected]>
 
         Reviewed by Mihai Parparita.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to