| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2013 The Chromium Authors. All rights reserved. | 4 # Copyright 2013 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'V8 Linux - beta branch', | 67 'V8 Linux - beta branch', |
| 68 'V8 Linux - beta branch - debug', | 68 'V8 Linux - beta branch - debug', |
| 69 'V8 Linux64 - stable branch', | 69 'V8 Linux64 - stable branch', |
| 70 'V8 Linux64 - stable branch - debug', | 70 'V8 Linux64 - stable branch - debug', |
| 71 'V8 Linux64 - beta branch', | 71 'V8 Linux64 - beta branch', |
| 72 'V8 Linux64 - beta branch - debug', | 72 'V8 Linux64 - beta branch - debug', |
| 73 'V8 mipsel - sim - stable branch', | 73 'V8 mipsel - sim - stable branch', |
| 74 'V8 mips64el - sim - stable branch', | 74 'V8 mips64el - sim - stable branch', |
| 75 'V8 ppc - sim - stable branch', | 75 'V8 ppc - sim - stable branch', |
| 76 'V8 ppc64 - sim - stable branch', | 76 'V8 ppc64 - sim - stable branch', |
| 77 'V8 s390 - sim - stable branch', |
| 78 'V8 s390x - sim - stable branch', |
| 77 'V8 mipsel - sim - beta branch', | 79 'V8 mipsel - sim - beta branch', |
| 78 'V8 mips64el - sim - beta branch', | 80 'V8 mips64el - sim - beta branch', |
| 79 'V8 ppc - sim - beta branch', | 81 'V8 ppc - sim - beta branch', |
| 80 'V8 ppc64 - sim - beta branch'], | 82 'V8 ppc64 - sim - beta branch', |
| 83 'V8 s390 - sim - beta branch', |
| 84 'V8 s390x - sim - beta branch'], |
| 81 'hostname': 'vm%d-m3' % vm, | 85 'hostname': 'vm%d-m3' % vm, |
| 82 'os': 'linux', | 86 'os': 'linux', |
| 83 'version': 'precise', | 87 'version': 'precise', |
| 84 'bits': '64', | 88 'bits': '64', |
| 85 }) | 89 }) |
| 86 | 90 |
| 87 | 91 |
| OLD | NEW |