| 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 # This is an list of dictionaries to describe slaves. | 8 # This is an list of dictionaries to describe slaves. |
| 9 # This list is intentionally flat to be easy to filter arbitrarily. | 9 # This list is intentionally flat to be easy to filter arbitrarily. |
| 10 | 10 |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 | 280 |
| 281 for vm in [59, 218, 225, 244]: | 281 for vm in [59, 218, 225, 244]: |
| 282 slaves.append({ | 282 slaves.append({ |
| 283 'master': 'V8', | 283 'master': 'V8', |
| 284 'builder': [ | 284 'builder': [ |
| 285 'V8 Win32 - builder', | 285 'V8 Win32 - builder', |
| 286 'V8 Win32 - debug builder', | 286 'V8 Win32 - debug builder', |
| 287 'V8 Win32 - nosnap - shared', | 287 'V8 Win32 - nosnap - shared', |
| 288 'V8 Win64', | 288 'V8 Win64', |
| 289 'V8 Win64 - debug', | 289 'V8 Win64 - debug', |
| 290 'V8 Win64 - clang', |
| 290 ], | 291 ], |
| 291 'hostname': 'vm%d-m3' % vm, | 292 'hostname': 'vm%d-m3' % vm, |
| 292 'os': 'win', | 293 'os': 'win', |
| 293 'version': 'win7', | 294 'version': 'win7', |
| 294 'bits': '64', | 295 'bits': '64', |
| 295 }) | 296 }) |
| 296 | 297 |
| 297 for vm in [631, 632, 633]: | 298 for vm in [631, 632, 633]: |
| 298 slaves.append({ | 299 slaves.append({ |
| 299 'master': 'V8', | 300 'master': 'V8', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 'V8 Linux64 - debug - greedy allocator', | 369 'V8 Linux64 - debug - greedy allocator', |
| 369 'V8 Linux64 GC Stress - custom snapshot', | 370 'V8 Linux64 GC Stress - custom snapshot', |
| 370 'V8 Arm', | 371 'V8 Arm', |
| 371 'V8 Arm - debug', | 372 'V8 Arm - debug', |
| 372 'V8 Arm GC Stress', | 373 'V8 Arm GC Stress', |
| 373 'V8 Win32', | 374 'V8 Win32', |
| 374 'V8 Win32 - debug', | 375 'V8 Win32 - debug', |
| 375 ], | 376 ], |
| 376 ['slave%d-c3' % i for i in [28, 29, 83]], | 377 ['slave%d-c3' % i for i in [28, 29, 83]], |
| 377 ) | 378 ) |
| OLD | NEW |