Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: Tools/TestResultServer/static-dashboards/loader.js

Issue 14172003: Move Chromium's TestExpectations and ContentShellTestExpectations to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated a comment Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (C) 2012 Google Inc. All rights reserved. 1 // Copyright (C) 2012 Google Inc. All rights reserved.
2 // Copyright (C) 2012 Zan Dobersek <zandobersek@gmail.com> 2 // Copyright (C) 2012 Zan Dobersek <zandobersek@gmail.com>
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
(...skipping 14 matching lines...) Expand all
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 var loader = loader || {}; 30 var loader = loader || {};
31 31
32 (function() { 32 (function() {
33 33
34 var TEST_RESULTS_SERVER = 'http://test-results.appspot.com/'; 34 var TEST_RESULTS_SERVER = 'http://test-results.appspot.com/';
35 var CHROMIUM_EXPECTATIONS_URL = 'http://svn.webkit.org/repository/webkit/trunk/L ayoutTests/platform/chromium/TestExpectations'; 35 // FIXME: Update to use blink repository.
36 var CHROMIUM_EXPECTATIONS_URL = 'http://svn.webkit.org/repository/webkit/trunk/L ayoutTests/TestExpectations';
Julie Parent 2013/04/11 22:40:13 The dashboards definitely need to be updated, but
Steve Block 2013/04/11 23:54:46 OK, thanks. I'll remove my change here.
36 37
37 function pathToBuilderResultsFile(builderName) { 38 function pathToBuilderResultsFile(builderName) {
38 return TEST_RESULTS_SERVER + 'testfile?builder=' + builderName + 39 return TEST_RESULTS_SERVER + 'testfile?builder=' + builderName +
39 '&master=' + builderMaster(builderName).name + 40 '&master=' + builderMaster(builderName).name +
40 '&testtype=' + g_history.crossDashboardState.testType + '&name='; 41 '&testtype=' + g_history.crossDashboardState.testType + '&name=';
41 } 42 }
42 43
43 loader.request = function(url, success, error, opt_isBinaryData) 44 loader.request = function(url, success, error, opt_isBinaryData)
44 { 45 {
45 var xhr = new XMLHttpRequest(); 46 var xhr = new XMLHttpRequest();
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 { 251 {
251 if (this._buildersThatFailedToLoad.length) 252 if (this._buildersThatFailedToLoad.length)
252 this._errors.addError('ERROR: Failed to get data from ' + this._buil dersThatFailedToLoad.toString() +'.'); 253 this._errors.addError('ERROR: Failed to get data from ' + this._buil dersThatFailedToLoad.toString() +'.');
253 254
254 if (this._staleBuilders.length) 255 if (this._staleBuilders.length)
255 this._errors.addError('ERROR: Data from ' + this._staleBuilders.toSt ring() + ' is more than 1 day stale.'); 256 this._errors.addError('ERROR: Data from ' + this._staleBuilders.toSt ring() + ' is more than 1 day stale.');
256 } 257 }
257 } 258 }
258 259
259 })(); 260 })();
OLDNEW
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698