summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjparent@chromium.org <jparent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-12 00:21:57 +0000
committerjparent@chromium.org <jparent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-12 00:21:57 +0000
commit8f8bb4a03763c9fd771f79c74f0d72f2e303a99d (patch)
tree8baf2114ede989834e008178f1087b1763bf3c13
parent90a8bf25708f3041c1580166e6cd6e3efff4636a (diff)
downloadchromium_src-8f8bb4a03763c9fd771f79c74f0d72f2e303a99d.zip
chromium_src-8f8bb4a03763c9fd771f79c74f0d72f2e303a99d.tar.gz
chromium_src-8f8bb4a03763c9fd771f79c74f0d72f2e303a99d.tar.bz2
Grab expectations from the builder that tends to be the fastest, Linux Release.
This makes the dashboard up to date more quickly. Currently is grabbing from Mac debug 3, since it was last in the builders array. TEST=none BUG=none Review URL: http://codereview.chromium.org/861004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41363 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/tools/layout_tests/dashboards/dashboard_base.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/tools/layout_tests/dashboards/dashboard_base.js b/webkit/tools/layout_tests/dashboards/dashboard_base.js
index 4adfd46..9ed109a 100644
--- a/webkit/tools/layout_tests/dashboards/dashboard_base.js
+++ b/webkit/tools/layout_tests/dashboards/dashboard_base.js
@@ -377,9 +377,10 @@ function appendJSONScriptElements() {
appendScript(getPathToBuilderResultsFile(builderName) + 'results.json');
}
- // Grab expectations file from any builder.
+ // Grab expectations file from the fastest builder, which is Linux release
+ // right now. Could be changed to any other builder if needed.
if (waitingOnExpectations) {
- appendScript(getPathToBuilderResultsFile(builderName) +
+ appendScript(getPathToBuilderResultsFile('Webkit Linux') +
'expectations.json');
}
}