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