summaryrefslogtreecommitdiffstats
path: root/webkit/tools/layout_tests/dashboards
diff options
context:
space:
mode:
authorojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-03 19:19:29 +0000
committerojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-03 19:19:29 +0000
commit3198deec103c43e415b05eba8f979236695cb75c (patch)
treeb2187fcfd9f0d0a3fdf742293746eed7f165aaee /webkit/tools/layout_tests/dashboards
parent99d5f339101b38d3f0cd921768e24029882d4f17 (diff)
downloadchromium_src-3198deec103c43e415b05eba8f979236695cb75c.zip
chromium_src-3198deec103c43e415b05eba8f979236695cb75c.tar.gz
chromium_src-3198deec103c43e415b05eba8f979236695cb75c.tar.bz2
Layout test dashboard additions:
1. Add support for V8-latest canaries. 2. Show actual results for the latest run of each bot. Review URL: http://codereview.chromium.org/340073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30844 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/layout_tests/dashboards')
-rw-r--r--webkit/tools/layout_tests/dashboards/dashboard_base.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/webkit/tools/layout_tests/dashboards/dashboard_base.js b/webkit/tools/layout_tests/dashboards/dashboard_base.js
index 71e69e8..3813df5 100644
--- a/webkit/tools/layout_tests/dashboards/dashboard_base.js
+++ b/webkit/tools/layout_tests/dashboards/dashboard_base.js
@@ -78,6 +78,7 @@ function handleValidHashParameterWrapper(key, value) {
return true;
case 'useWebKitCanary':
+ case 'useV8Canary':
case 'debug':
currentState[key] = value == 'true';
@@ -91,6 +92,7 @@ function handleValidHashParameterWrapper(key, value) {
var defaultCrossDashboardStateValues = {
testType: 'layout_test_results',
useWebKitCanary: false,
+ useV8Canary: false,
debug: false
}
@@ -196,6 +198,12 @@ if (currentState.debug) {
'Webkit Linux (webkit.org)': 'webkit-rel-linux-webkit-org',
'Webkit Mac (webkit.org)': 'webkit-rel-mac-webkit-org'
};
+ } else if (currentState.useV8Canary) {
+ builders = {
+ 'Webkit (V8-Latest)': 'webkit-rel-v8',
+ 'Webkit Mac (V8-Latest)': 'webkit-rel-mac-v8',
+ 'Webkit Linux (V8-Latest)': 'webkit-rel-linux-v8'
+ }
} else {
builders = {
'Webkit': 'webkit-rel',