| 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 Linux - ppc64 - sim", | 10 "V8 Linux - ppc64 - sim", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "--goma-dir", | 77 "--goma-dir", |
| 78 "[BUILD]/goma", | 78 "[BUILD]/goma", |
| 79 "--" | 79 "--" |
| 80 ], | 80 ], |
| 81 "name": "compile" | 81 "name": "compile" |
| 82 }, | 82 }, |
| 83 { | 83 { |
| 84 "cmd": [ | 84 "cmd": [ |
| 85 "python", | 85 "python", |
| 86 "-u", | 86 "-u", |
| 87 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 87 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 88 "--target", | 88 "--target", |
| 89 "Release", | 89 "Release", |
| 90 "--arch", | 90 "--arch", |
| 91 "ppc64", | 91 "ppc64", |
| 92 "--testname", | 92 "--testname", |
| 93 "unittests", | 93 "unittests", |
| 94 "--no-variants", | 94 "--no-variants", |
| 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": "Unittests" | 99 "name": "Unittests" |
| 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 "Release", | 107 "Release", |
| 108 "--arch", | 108 "--arch", |
| 109 "ppc64", | 109 "ppc64", |
| 110 "--testname", | 110 "--testname", |
| 111 "default", | 111 "default", |
| 112 "--flaky-tests", | 112 "--flaky-tests", |
| 113 "skip", | 113 "skip", |
| 114 "--json-test-results", | 114 "--json-test-results", |
| 115 "/path/to/tmp/json" | 115 "/path/to/tmp/json" |
| 116 ], | 116 ], |
| 117 "cwd": "[SLAVE_BUILD]/v8", | 117 "cwd": "[SLAVE_BUILD]/v8", |
| 118 "name": "Check" | 118 "name": "Check" |
| 119 }, | 119 }, |
| 120 { | 120 { |
| 121 "cmd": [ | 121 "cmd": [ |
| 122 "python", | 122 "python", |
| 123 "-u", | 123 "-u", |
| 124 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 124 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 125 "--target", | 125 "--target", |
| 126 "Release", | 126 "Release", |
| 127 "--arch", | 127 "--arch", |
| 128 "ppc64", | 128 "ppc64", |
| 129 "--testname", | 129 "--testname", |
| 130 "default", | 130 "default", |
| 131 "--flaky-tests", | 131 "--flaky-tests", |
| 132 "run", | 132 "run", |
| 133 "--json-test-results", | 133 "--json-test-results", |
| 134 "/path/to/tmp/json" | 134 "/path/to/tmp/json" |
| 135 ], | 135 ], |
| 136 "cwd": "[SLAVE_BUILD]/v8", | 136 "cwd": "[SLAVE_BUILD]/v8", |
| 137 "name": "Check - flaky" | 137 "name": "Check - flaky" |
| 138 } | 138 } |
| 139 ] | 139 ] |
| OLD | NEW |