OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 DEPS = [ | 5 DEPS = [ |
6 'perf_dashboard', | 6 'perf_dashboard', |
7 'recipe_engine/path', | 7 'recipe_engine/path', |
8 'recipe_engine/json', | 8 'recipe_engine/json', |
9 'recipe_engine/platform', | 9 'recipe_engine/platform', |
10 'recipe_engine/properties', | 10 'recipe_engine/properties', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 'post_data': { | 51 'post_data': { |
52 'try_job_id': 1, | 52 'try_job_id': 1, |
53 'status': 'completed' | 53 'status': 'completed' |
54 }, | 54 }, |
55 'text': '', | 55 'text': '', |
56 'status_code': 200 | 56 'status_code': 200 |
57 } | 57 } |
58 for platform in ('linux', 'win', 'mac'): | 58 for platform in ('linux', 'win', 'mac'): |
59 for production in (True, False): | 59 for production in (True, False): |
60 yield (api.test('%s%s' % | 60 yield (api.test('%s%s' % |
61 (platform, '_use_mirror' | 61 (platform, '_testing' |
62 if production else '')) + api.platform.name(platform) + | 62 if not production else '')) + |
63 api.properties(use_mirror=production, | 63 api.platform.name(platform) + |
| 64 api.properties(perf_production=production, |
64 slavename='multivm-windows-release', | 65 slavename='multivm-windows-release', |
65 buildername='multivm-windows-perf-be', | 66 buildername='multivm-windows-perf-be', |
66 buildnumber=75, | 67 buildnumber=75, |
67 mastername='client.dart.fyi') + | 68 mastername='client.dart.fyi') + |
68 api.step_data('Post bisect results', | 69 api.step_data('Post bisect results', |
69 stdout=api.json.output(bisect_response))) | 70 stdout=api.json.output(bisect_response))) |
OLD | NEW |