| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # See master.experimental/slaves.cfg for documentation. | 8 # See master.experimental/slaves.cfg for documentation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 }, | 275 }, |
| 276 { | 276 { |
| 277 'master': 'ChromiumMemoryFYI', | 277 'master': 'ChromiumMemoryFYI', |
| 278 'builder': 'Linux ChromeOS MSan Tests', | 278 'builder': 'Linux ChromeOS MSan Tests', |
| 279 'hostname': 'vm48-m1', | 279 'hostname': 'vm48-m1', |
| 280 'os': 'linux', | 280 'os': 'linux', |
| 281 'version': 'precise', | 281 'version': 'precise', |
| 282 'bits': '64', | 282 'bits': '64', |
| 283 }, | 283 }, |
| 284 ] | 284 ] |
| 285 |
| 286 for s in slaves: |
| 287 s['hostname'] = 'fake-' + s['hostname'] |
| OLD | NEW |