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

Side by Side Diff: webkit/tools/layout_tests/flakiness_dashboard.html

Issue 177022: Turn on the linux debug bots now that we archive the results for them. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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 | « no previous file | 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 3
4 <head> 4 <head>
5 <title>Webkit Layout Test History</title> 5 <title>Webkit Layout Test History</title>
6 <script> 6 <script>
7 var pageLoadStartTime = Date.now(); 7 var pageLoadStartTime = Date.now();
8 </script> 8 </script>
9 <style> 9 <style>
10 body { 10 body {
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 142
143 // Map of builderName (the name shown in the waterfall) 143 // Map of builderName (the name shown in the waterfall)
144 // to builderPath (the path used in the builder's URL) 144 // to builderPath (the path used in the builder's URL)
145 // TODO(ojan): Make this switch based off of the testType. 145 // TODO(ojan): Make this switch based off of the testType.
146 var builders = { 146 var builders = {
147 'Webkit': 'webkit-rel', 147 'Webkit': 'webkit-rel',
148 'Webkit (dbg)(1)': 'webkit-dbg-1', 148 'Webkit (dbg)(1)': 'webkit-dbg-1',
149 'Webkit (dbg)(2)': 'webkit-dbg-2', 149 'Webkit (dbg)(2)': 'webkit-dbg-2',
150 'Webkit (dbg)(3)': 'webkit-dbg-3', 150 'Webkit (dbg)(3)': 'webkit-dbg-3',
151 'Webkit Linux': 'webkit-rel-linux', 151 'Webkit Linux': 'webkit-rel-linux',
152 // TODO(ojan): Comment out linux debug builders until they archive results. 152 'Webkit Linux (dbg)(1)': 'webkit-dbg-linux-1',
153 // 'Webkit Linux (dbg)(1)': 'webkit-dbg-linux-1', 153 'Webkit Linux (dbg)(2)': 'webkit-dbg-linux-2',
154 // 'Webkit Linux (dbg)(2)': 'webkit-dbg-linux-2', 154 'Webkit Linux (dbg)(3)': 'webkit-dbg-linux-3',
155 // 'Webkit Linux (dbg)(3)': 'webkit-dbg-linux-3',
156 'Webkit Mac10.5': 'webkit-rel-mac5', 155 'Webkit Mac10.5': 'webkit-rel-mac5',
157 'Webkit Mac10.5 (dbg)(1)': 'webkit-dbg-mac5-1', 156 'Webkit Mac10.5 (dbg)(1)': 'webkit-dbg-mac5-1',
158 'Webkit Mac10.5 (dbg)(2)': 'webkit-dbg-mac5-2', 157 'Webkit Mac10.5 (dbg)(2)': 'webkit-dbg-mac5-2',
159 'Webkit Mac10.5 (dbg)(3)': 'webkit-dbg-mac5-3' 158 'Webkit Mac10.5 (dbg)(3)': 'webkit-dbg-mac5-3'
160 }; 159 };
161 160
162 var resultsByBuilder = {}; 161 var resultsByBuilder = {};
163 var expectationsByTest = {}; 162 var expectationsByTest = {};
164 function ADD_RESULTS(builds) { 163 function ADD_RESULTS(builds) {
165 for (var builderName in builds) { 164 for (var builderName in builds) {
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 setInterval(function() { 735 setInterval(function() {
737 if (oldLocation != window.location) 736 if (oldLocation != window.location)
738 generatePage(); 737 generatePage();
739 }, 100); 738 }, 100);
740 } 739 }
741 </script> 740 </script>
742 </head> 741 </head>
743 742
744 <body></body> 743 <body></body>
745 </html> 744 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698