Title: [131381] trunk/Tools
Revision
131381
Author
o...@chromium.org
Date
2012-10-15 16:27:49 -0700 (Mon, 15 Oct 2012)

Log Message

Don't show the content shell and android test bots for webkit ToT
https://bugs.webkit.org/show_bug.cgi?id=99380

Reviewed by Dirk Pranke.

Content shell used to coincidentally be skipped because it spelled WebKit correctly.
Now skip it explicitly. The Android bot is up and running, but only has a stub for
running tests. Skip it so we don't show a false error.
* TestResultServer/static-dashboards/builders.js:
(isChromiumWebkitTipOfTreeTestRunner):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (131380 => 131381)


--- trunk/Tools/ChangeLog	2012-10-15 23:27:45 UTC (rev 131380)
+++ trunk/Tools/ChangeLog	2012-10-15 23:27:49 UTC (rev 131381)
@@ -1,3 +1,16 @@
+2012-10-15  Ojan Vafai  <o...@chromium.org>
+
+        Don't show the content shell and android test bots for webkit ToT
+        https://bugs.webkit.org/show_bug.cgi?id=99380
+
+        Reviewed by Dirk Pranke.
+
+        Content shell used to coincidentally be skipped because it spelled WebKit correctly.
+        Now skip it explicitly. The Android bot is up and running, but only has a stub for
+        running tests. Skip it so we don't show a false error.
+        * TestResultServer/static-dashboards/builders.js:
+        (isChromiumWebkitTipOfTreeTestRunner):
+
 2012-10-15  Zoltan Horvath  <zol...@webkit.org>
 
         Add MountainLion Performance-bot to the Performance bots waterfall link

Modified: trunk/Tools/TestResultServer/static-dashboards/builders.js (131380 => 131381)


--- trunk/Tools/TestResultServer/static-dashboards/builders.js	2012-10-15 23:27:45 UTC (rev 131380)
+++ trunk/Tools/TestResultServer/static-dashboards/builders.js	2012-10-15 23:27:49 UTC (rev 131381)
@@ -179,7 +179,9 @@
 
 function isChromiumWebkitTipOfTreeTestRunner(builder)
 {
-    return builder.indexOf('WebKit') != -1 && builder.indexOf('Builder') == -1 && builder.indexOf('(deps)') == -1 && builder.indexOf('ASAN') == -1;
+    // FIXME: Remove the Android check once the android tests bot is actually uploading results.
+    return builder.indexOf('WebKit') != -1 && builder.indexOf('Builder') == -1 && builder.indexOf('(deps)') == -1 &&
+        builder.indexOf('ASAN') == -1 && !isChromiumContentShellTestRunner(builder) && builder.indexOf('Android') == -1;
 }
 
 function isChromiumWebkitDepsTestRunner(builder)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to