| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "client.v8", | 8 "client.v8", |
| 9 "--builder", | 9 "--builder", |
| 10 "V8 Mac GC Stress", | 10 "V8 Mac GC Stress", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "--compiler", | 75 "--compiler", |
| 76 "clang", | 76 "clang", |
| 77 "--" | 77 "--" |
| 78 ], | 78 ], |
| 79 "name": "compile" | 79 "name": "compile" |
| 80 }, | 80 }, |
| 81 { | 81 { |
| 82 "cmd": [ | 82 "cmd": [ |
| 83 "python", | 83 "python", |
| 84 "-u", | 84 "-u", |
| 85 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 85 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 86 "--target", | 86 "--target", |
| 87 "Debug", | 87 "Debug", |
| 88 "--arch", | 88 "--arch", |
| 89 "ia32", | 89 "ia32", |
| 90 "--testname", | 90 "--testname", |
| 91 "mjsunit", | 91 "mjsunit", |
| 92 "--gc-stress", | 92 "--gc-stress", |
| 93 "--flaky-tests", | 93 "--flaky-tests", |
| 94 "skip", | 94 "skip", |
| 95 "--json-test-results", | 95 "--json-test-results", |
| 96 "/path/to/tmp/json" | 96 "/path/to/tmp/json" |
| 97 ], | 97 ], |
| 98 "cwd": "[SLAVE_BUILD]/v8", | 98 "cwd": "[SLAVE_BUILD]/v8", |
| 99 "name": "Mjsunit" | 99 "name": "Mjsunit" |
| 100 }, | 100 }, |
| 101 { | 101 { |
| 102 "cmd": [ | 102 "cmd": [ |
| 103 "python", | 103 "python", |
| 104 "-u", | 104 "-u", |
| 105 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 105 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 106 "--target", | 106 "--target", |
| 107 "Debug", | 107 "Debug", |
| 108 "--arch", | 108 "--arch", |
| 109 "ia32", | 109 "ia32", |
| 110 "--testname", | 110 "--testname", |
| 111 "mjsunit", | 111 "mjsunit", |
| 112 "--gc-stress", | 112 "--gc-stress", |
| 113 "--flaky-tests", | 113 "--flaky-tests", |
| 114 "run", | 114 "run", |
| 115 "--json-test-results", | 115 "--json-test-results", |
| 116 "/path/to/tmp/json" | 116 "/path/to/tmp/json" |
| 117 ], | 117 ], |
| 118 "cwd": "[SLAVE_BUILD]/v8", | 118 "cwd": "[SLAVE_BUILD]/v8", |
| 119 "name": "Mjsunit - flaky" | 119 "name": "Mjsunit - flaky" |
| 120 }, | 120 }, |
| 121 { | 121 { |
| 122 "cmd": [ | 122 "cmd": [ |
| 123 "python", | 123 "python", |
| 124 "-u", | 124 "-u", |
| 125 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 125 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 126 "--target", | 126 "--target", |
| 127 "Debug", | 127 "Debug", |
| 128 "--arch", | 128 "--arch", |
| 129 "ia32", | 129 "ia32", |
| 130 "--testname", | 130 "--testname", |
| 131 "webkit", | 131 "webkit", |
| 132 "--gc-stress", | 132 "--gc-stress", |
| 133 "--flaky-tests", | 133 "--flaky-tests", |
| 134 "skip", | 134 "skip", |
| 135 "--json-test-results", | 135 "--json-test-results", |
| 136 "/path/to/tmp/json" | 136 "/path/to/tmp/json" |
| 137 ], | 137 ], |
| 138 "cwd": "[SLAVE_BUILD]/v8", | 138 "cwd": "[SLAVE_BUILD]/v8", |
| 139 "name": "Webkit" | 139 "name": "Webkit" |
| 140 }, | 140 }, |
| 141 { | 141 { |
| 142 "cmd": [ | 142 "cmd": [ |
| 143 "python", | 143 "python", |
| 144 "-u", | 144 "-u", |
| 145 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 145 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 146 "--target", | 146 "--target", |
| 147 "Debug", | 147 "Debug", |
| 148 "--arch", | 148 "--arch", |
| 149 "ia32", | 149 "ia32", |
| 150 "--testname", | 150 "--testname", |
| 151 "webkit", | 151 "webkit", |
| 152 "--gc-stress", | 152 "--gc-stress", |
| 153 "--flaky-tests", | 153 "--flaky-tests", |
| 154 "run", | 154 "run", |
| 155 "--json-test-results", | 155 "--json-test-results", |
| 156 "/path/to/tmp/json" | 156 "/path/to/tmp/json" |
| 157 ], | 157 ], |
| 158 "cwd": "[SLAVE_BUILD]/v8", | 158 "cwd": "[SLAVE_BUILD]/v8", |
| 159 "name": "Webkit - flaky" | 159 "name": "Webkit - flaky" |
| 160 } | 160 } |
| 161 ] | 161 ] |
| OLD | NEW |