Title: [148729] trunk/Tools
Revision
148729
Author
[email protected]
Date
2013-04-19 01:39:08 -0700 (Fri, 19 Apr 2013)

Log Message

[Dashboard] Only accept the 'group' parameter if present in the layout tests builders group
https://bugs.webkit.org/show_bug.cgi?id=114799

Reviewed by Benjamin Poulain.

The layout tests builder group is the only one supported, all the other Chromium-specific builder groups are
bound to be removed.

* TestResultServer/static-dashboards/history.js:
(.):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (148728 => 148729)


--- trunk/Tools/ChangeLog	2013-04-19 08:37:54 UTC (rev 148728)
+++ trunk/Tools/ChangeLog	2013-04-19 08:39:08 UTC (rev 148729)
@@ -1,5 +1,18 @@
 2013-04-19  Zan Dobersek  <[email protected]>
 
+        [Dashboard] Only accept the 'group' parameter if present in the layout tests builders group
+        https://bugs.webkit.org/show_bug.cgi?id=114799
+
+        Reviewed by Benjamin Poulain.
+
+        The layout tests builder group is the only one supported, all the other Chromium-specific builder groups are
+        bound to be removed.
+
+        * TestResultServer/static-dashboards/history.js:
+        (.):
+
+2013-04-19  Zan Dobersek  <[email protected]>
+
         [Dashboard] Remove Chromium-specific builder loading code from loadBuildersList
         https://bugs.webkit.org/show_bug.cgi?id=114797
 

Modified: trunk/Tools/TestResultServer/static-dashboards/history.js (148728 => 148729)


--- trunk/Tools/TestResultServer/static-dashboards/history.js	2013-04-19 08:37:54 UTC (rev 148728)
+++ trunk/Tools/TestResultServer/static-dashboards/history.js	2013-04-19 08:39:08 UTC (rev 148729)
@@ -216,10 +216,7 @@
         case 'group':
             history.validateParameter(this.crossDashboardState, key, value,
                 function() {
-                  return value in LAYOUT_TESTS_BUILDER_GROUPS ||
-                      value in CHROMIUM_GPU_TESTS_BUILDER_GROUPS ||
-                      value in CHROMIUM_INSTRUMENTATION_TESTS_BUILDER_GROUPS ||
-                      value in CHROMIUM_GTESTS_BUILDER_GROUPS;
+                  return value in LAYOUT_TESTS_BUILDER_GROUPS;
                 });
             return true;
 
@@ -307,4 +304,4 @@
 
 }
 
-})();
\ No newline at end of file
+})();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to