Title: [131827] trunk/Tools
Revision
131827
Author
dpra...@chromium.org
Date
2012-10-18 17:21:15 -0700 (Thu, 18 Oct 2012)

Log Message

[chromium] garden-o-matic should ignore the 10.8 Tests bot
https://bugs.webkit.org/show_bug.cgi?id=99765

Reviewed by Adam Barth.

It's really more of an FYI bot at this point and can be safely
ignored like the Content Shell bots.

* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
(.):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js (131826 => 131827)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js	2012-10-19 00:00:15 UTC (rev 131826)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js	2012-10-19 00:21:15 UTC (rev 131827)
@@ -88,7 +88,12 @@
             // FIXME: Should garden-o-matic show these? I can imagine showing the deps bots being useful at least so
             // that the gardener only need to look at garden-o-matic and never at the waterfall. Not really sure who
             // watches the GPU bots.
-            return builderName.indexOf('GPU') == -1 && builderName.indexOf('deps') == -1 && builderName.indexOf('ASAN') == -1 && builderName.indexOf('Content Shell') == -1;
+            // The 10.8 Tests bot is really an FYI bot at this point
+            return builderName.indexOf('GPU') == -1 &&
+                   builderName.indexOf('deps') == -1 &&
+                   builderName.indexOf('ASAN') == -1 &&
+                   builderName.indexOf('Content Shell') == -1 &&
+                   builderName.indexOf('Mac10.8 Tests') == -1;
         },
     },
     'gtk' : {

Modified: trunk/Tools/ChangeLog (131826 => 131827)


--- trunk/Tools/ChangeLog	2012-10-19 00:00:15 UTC (rev 131826)
+++ trunk/Tools/ChangeLog	2012-10-19 00:21:15 UTC (rev 131827)
@@ -1,3 +1,16 @@
+2012-10-18  Dirk Pranke  <dpra...@chromium.org>
+
+        [chromium] garden-o-matic should ignore the 10.8 Tests bot
+        https://bugs.webkit.org/show_bug.cgi?id=99765
+
+        Reviewed by Adam Barth.
+
+        It's really more of an FYI bot at this point and can be safely
+        ignored like the Content Shell bots.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
+        (.):
+
 2012-10-18  Jochen Eisinger  <joc...@chromium.org>
 
         [chromium] Simplify TestInterfaces, as this class won't be directly exposed in the TestRunner library's interface
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to