| 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_nosnap_rel", | 10 "v8_linux_nosnap_rel", |
| (...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 "Release", | 91 "Release", |
| 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 "Release", | 111 "Release", |
| 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 ] |
| OLD | NEW |