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