| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]\\scripts\\slave\\kill_processes.py" | 6 "[BUILD]\\scripts\\slave\\kill_processes.py" |
| 7 ], | 7 ], |
| 8 "name": "taskkill" | 8 "name": "taskkill" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "--arch", | 86 "--arch", |
| 87 "x64", | 87 "x64", |
| 88 "--" | 88 "--" |
| 89 ], | 89 ], |
| 90 "name": "compile" | 90 "name": "compile" |
| 91 }, | 91 }, |
| 92 { | 92 { |
| 93 "cmd": [ | 93 "cmd": [ |
| 94 "python", | 94 "python", |
| 95 "-u", | 95 "-u", |
| 96 "[BUILD]\\scripts\\slave\\recipe_modules\\v8\\resources\\v8testing.py", | 96 "RECIPE_MODULE[v8]\\resources\\v8testing.py", |
| 97 "--target", | 97 "--target", |
| 98 "Release", | 98 "Release", |
| 99 "--arch", | 99 "--arch", |
| 100 "x64", | 100 "x64", |
| 101 "--testname", | 101 "--testname", |
| 102 "unittests", | 102 "unittests", |
| 103 "--no-variants", | 103 "--no-variants", |
| 104 "--flaky-tests=skip", | 104 "--flaky-tests=skip", |
| 105 "--dcheck-always-on", | 105 "--dcheck-always-on", |
| 106 "--json-test-results", | 106 "--json-test-results", |
| 107 "/path/to/tmp/json" | 107 "/path/to/tmp/json" |
| 108 ], | 108 ], |
| 109 "cwd": "[SLAVE_BUILD]\\v8", | 109 "cwd": "[SLAVE_BUILD]\\v8", |
| 110 "name": "Unittests" | 110 "name": "Unittests" |
| 111 }, | 111 }, |
| 112 { | 112 { |
| 113 "cmd": [ | 113 "cmd": [ |
| 114 "python", | 114 "python", |
| 115 "-u", | 115 "-u", |
| 116 "[BUILD]\\scripts\\slave\\recipe_modules\\v8\\resources\\v8testing.py", | 116 "RECIPE_MODULE[v8]\\resources\\v8testing.py", |
| 117 "--target", | 117 "--target", |
| 118 "Release", | 118 "Release", |
| 119 "--arch", | 119 "--arch", |
| 120 "x64", | 120 "x64", |
| 121 "--testname", | 121 "--testname", |
| 122 "default", | 122 "default", |
| 123 "--flaky-tests=skip", | 123 "--flaky-tests=skip", |
| 124 "--dcheck-always-on", | 124 "--dcheck-always-on", |
| 125 "--json-test-results", | 125 "--json-test-results", |
| 126 "/path/to/tmp/json" | 126 "/path/to/tmp/json" |
| 127 ], | 127 ], |
| 128 "cwd": "[SLAVE_BUILD]\\v8", | 128 "cwd": "[SLAVE_BUILD]\\v8", |
| 129 "name": "Check" | 129 "name": "Check" |
| 130 }, | 130 }, |
| 131 { | 131 { |
| 132 "cmd": [ | 132 "cmd": [ |
| 133 "python", | 133 "python", |
| 134 "-u", | 134 "-u", |
| 135 "[BUILD]\\scripts\\slave\\recipe_modules\\v8\\resources\\v8testing.py", | 135 "RECIPE_MODULE[v8]\\resources\\v8testing.py", |
| 136 "--target", | 136 "--target", |
| 137 "Release", | 137 "Release", |
| 138 "--arch", | 138 "--arch", |
| 139 "x64", | 139 "x64", |
| 140 "--testname", | 140 "--testname", |
| 141 "webkit", | 141 "webkit", |
| 142 "--flaky-tests=skip", | 142 "--flaky-tests=skip", |
| 143 "--dcheck-always-on", | 143 "--dcheck-always-on", |
| 144 "--json-test-results", | 144 "--json-test-results", |
| 145 "/path/to/tmp/json" | 145 "/path/to/tmp/json" |
| 146 ], | 146 ], |
| 147 "cwd": "[SLAVE_BUILD]\\v8", | 147 "cwd": "[SLAVE_BUILD]\\v8", |
| 148 "name": "Webkit" | 148 "name": "Webkit" |
| 149 } | 149 } |
| 150 ] | 150 ] |
| OLD | NEW |