| 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_linux64_asan_rel", | 10 "v8_linux64_asan_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 "x64", | 93 "x64", |
| 94 "--testname", | 94 "--testname", |
| 95 "unittests", | 95 "unittests", |
| 96 "--no-variants", | 96 "--no-variants", |
| 97 "--flaky-tests=skip", | 97 "--flaky-tests=skip", |
| 98 "--asan", | 98 "--asan", |
| 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 "env": { | 103 "env": { |
| 104 "ASAN_OPTIONS": "external_symbolizer_path=[SLAVE_BUILD]/v8/third_party/llv
m-build/Release+Asserts/bin/llvm-symbolizer" | 104 "ASAN_OPTIONS": "external_symbolizer_path=[SLAVE_BUILD]/v8/third_party/llv
m-build/Release+Asserts/bin/llvm-symbolizer" |
| 105 }, | 105 }, |
| 106 "name": "Unittests" | 106 "name": "Unittests" |
| 107 }, | 107 }, |
| 108 { | 108 { |
| 109 "cmd": [ | 109 "cmd": [ |
| 110 "python", | 110 "python", |
| 111 "-u", | 111 "-u", |
| 112 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 112 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 113 "--target", | 113 "--target", |
| 114 "Release", | 114 "Release", |
| 115 "--arch", | 115 "--arch", |
| 116 "x64", | 116 "x64", |
| 117 "--testname", | 117 "--testname", |
| 118 "default", | 118 "default", |
| 119 "--flaky-tests=skip", | 119 "--flaky-tests=skip", |
| 120 "--asan", | 120 "--asan", |
| 121 "--json-test-results", | 121 "--json-test-results", |
| 122 "/path/to/tmp/json" | 122 "/path/to/tmp/json" |
| 123 ], | 123 ], |
| 124 "cwd": "[SLAVE_BUILD]/v8", | 124 "cwd": "[SLAVE_BUILD]/v8", |
| 125 "env": { | 125 "env": { |
| 126 "ASAN_OPTIONS": "external_symbolizer_path=[SLAVE_BUILD]/v8/third_party/llv
m-build/Release+Asserts/bin/llvm-symbolizer" | 126 "ASAN_OPTIONS": "external_symbolizer_path=[SLAVE_BUILD]/v8/third_party/llv
m-build/Release+Asserts/bin/llvm-symbolizer" |
| 127 }, | 127 }, |
| 128 "name": "Check" | 128 "name": "Check" |
| 129 } | 129 } |
| 130 ] | 130 ] |
| OLD | NEW |