Title: [148727] trunk/Tools
- Revision
- 148727
- Author
- [email protected]
- Date
- 2013-04-19 01:36:49 -0700 (Fri, 19 Apr 2013)
Log Message
[Dashboard] The currentBuilderGroupCategory method should return the layout tests builder groups by default
https://bugs.webkit.org/show_bug.cgi?id=114796
Reviewed by Benjamin Poulain.
With the Chromium builders no longer uploading results and the layout-tests test type the only one supported by the
WebKit's dashboard, the currentBuilderGroupCategory can now return LAYOUT_TESTS_BUILDER_GROUPS as the default builder
group category.
* TestResultServer/static-dashboards/dashboard_base.js:
(currentBuilderGroupCategory):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (148726 => 148727)
--- trunk/Tools/ChangeLog 2013-04-19 08:33:30 UTC (rev 148726)
+++ trunk/Tools/ChangeLog 2013-04-19 08:36:49 UTC (rev 148727)
@@ -1,5 +1,19 @@
2013-04-19 Zan Dobersek <[email protected]>
+ [Dashboard] The currentBuilderGroupCategory method should return the layout tests builder groups by default
+ https://bugs.webkit.org/show_bug.cgi?id=114796
+
+ Reviewed by Benjamin Poulain.
+
+ With the Chromium builders no longer uploading results and the layout-tests test type the only one supported by the
+ WebKit's dashboard, the currentBuilderGroupCategory can now return LAYOUT_TESTS_BUILDER_GROUPS as the default builder
+ group category.
+
+ * TestResultServer/static-dashboards/dashboard_base.js:
+ (currentBuilderGroupCategory):
+
+2013-04-19 Zan Dobersek <[email protected]>
+
[Dashboard] Narrow down the test types list to only layout-tests
https://bugs.webkit.org/show_bug.cgi?id=114795
Modified: trunk/Tools/TestResultServer/static-dashboards/dashboard_base.js (148726 => 148727)
--- trunk/Tools/TestResultServer/static-dashboards/dashboard_base.js 2013-04-19 08:33:30 UTC (rev 148726)
+++ trunk/Tools/TestResultServer/static-dashboards/dashboard_base.js 2013-04-19 08:36:49 UTC (rev 148727)
@@ -100,24 +100,7 @@
function currentBuilderGroupCategory()
{
- switch (g_history.crossDashboardState.testType) {
- case 'gl_tests':
- case 'gpu_tests':
- return CHROMIUM_GPU_TESTS_BUILDER_GROUPS;
- case 'layout-tests':
- return LAYOUT_TESTS_BUILDER_GROUPS;
- case 'test_shell_tests':
- case 'webkit_unit_tests':
- return TEST_SHELL_TESTS_BUILDER_GROUPS;
- case 'androidwebview_instrumentation_tests':
- case 'chromiumtestshell_instrumentation_tests':
- case 'contentshell_instrumentation_tests':
- return CHROMIUM_INSTRUMENTATION_TESTS_BUILDER_GROUPS;
- case 'cc_unittests':
- return CC_UNITTEST_BUILDER_GROUPS;
- default:
- return LAYOUT_TESTS_BUILDER_GROUPS;
- }
+ return LAYOUT_TESTS_BUILDER_GROUPS;
}
function currentBuilderGroupName()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes