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

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

Issue 14301012: Temporary fix for flakiness dashboard by avoiding loading mac snow leopard test expectation file fr… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed unit test 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
« no previous file with comments | « no previous file | Tools/TestResultServer/static-dashboards/loader_unittests.js » ('j') | 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 // 2 //
3 // Redistribution and use in source and binary forms, with or without 3 // Redistribution and use in source and binary forms, with or without
4 // modification, are permitted provided that the following conditions are 4 // modification, are permitted provided that the following conditions are
5 // met: 5 // met:
6 // 6 //
7 // * Redistributions of source code must retain the above copyright 7 // * Redistributions of source code must retain the above copyright
8 // notice, this list of conditions and the following disclaimer. 8 // notice, this list of conditions and the following disclaimer.
9 // * Redistributions in binary form must reproduce the above 9 // * Redistributions in binary form must reproduce the above
10 // copyright notice, this list of conditions and the following disclaimer 10 // copyright notice, this list of conditions and the following disclaimer
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 expectationsDirectory: 'mac', 63 expectationsDirectory: 'mac',
64 subPlatforms: { 64 subPlatforms: {
65 'LION': { 65 'LION': {
66 expectationsDirectory: 'mac-lion', 66 expectationsDirectory: 'mac-lion',
67 subPlatforms: { 67 subPlatforms: {
68 'WK1': { fallbackPlatforms: ['APPLE_MAC_LION', 'APPL E_MAC'] }, 68 'WK1': { fallbackPlatforms: ['APPLE_MAC_LION', 'APPL E_MAC'] },
69 'WK2': { fallbackPlatforms: ['APPLE_MAC_LION', 'APPL E_MAC', 'WK2'] } 69 'WK2': { fallbackPlatforms: ['APPLE_MAC_LION', 'APPL E_MAC', 'WK2'] }
70 } 70 }
71 }, 71 },
72 'SNOWLEOPARD': { 72 'SNOWLEOPARD': {
73 expectationsDirectory: 'mac-snowleopard', 73 expectationsDirectory: null,
74 subPlatforms: { 74 subPlatforms: {
75 'WK1': { fallbackPlatforms: ['APPLE_MAC_SNOWLEOPARD' , 'APPLE_MAC'] }, 75 'WK1': { fallbackPlatforms: ['APPLE_MAC_SNOWLEOPARD' , 'APPLE_MAC'] },
76 'WK2': { fallbackPlatforms: ['APPLE_MAC_SNOWLEOPARD' , 'APPLE_MAC', 'WK2'] } 76 'WK2': { fallbackPlatforms: ['APPLE_MAC_SNOWLEOPARD' , 'APPLE_MAC', 'WK2'] }
77 } 77 }
78 } 78 }
79 } 79 }
80 }, 80 },
81 'WIN': { 81 'WIN': {
82 expectationsDirectory: 'win', 82 expectationsDirectory: 'win',
83 subPlatforms: { 83 subPlatforms: {
(...skipping 2441 matching lines...) Expand 10 before | Expand all | Expand 10 after
2525 // escape key 2525 // escape key
2526 hideLegend(); 2526 hideLegend();
2527 ui.popup.hide(); 2527 ui.popup.hide();
2528 } 2528 }
2529 }, false); 2529 }, false);
2530 2530
2531 window.addEventListener('load', function() { 2531 window.addEventListener('load', function() {
2532 resourceLoader = new loader.Loader(); 2532 resourceLoader = new loader.Loader();
2533 resourceLoader.load(); 2533 resourceLoader.load();
2534 }, false); 2534 }, false);
OLDNEW
« no previous file with comments | « no previous file | Tools/TestResultServer/static-dashboards/loader_unittests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698