| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
| 7 "--path", | 7 "--path", |
| 8 "[CWD]/swarming.client", | 8 "[SLAVE_BUILD]/swarming.client", |
| 9 "--url", | 9 "--url", |
| 10 "https://chromium.googlesource.com/external/swarming.client.git" | 10 "https://chromium.googlesource.com/external/swarming.client.git" |
| 11 ], | 11 ], |
| 12 "cwd": "[SLAVE_BUILD]", |
| 12 "name": "git setup (swarming_client)" | 13 "name": "git setup (swarming_client)" |
| 13 }, | 14 }, |
| 14 { | 15 { |
| 15 "cmd": [ | 16 "cmd": [ |
| 16 "git", | 17 "git", |
| 17 "retry", | 18 "retry", |
| 18 "fetch", | 19 "fetch", |
| 19 "origin", | 20 "origin", |
| 20 "[dummy swarming client hash]" | 21 "[dummy swarming client hash]" |
| 21 ], | 22 ], |
| 22 "cwd": "[CWD]/swarming.client", | 23 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 23 "name": "git fetch (swarming_client)" | 24 "name": "git fetch (swarming_client)" |
| 24 }, | 25 }, |
| 25 { | 26 { |
| 26 "cmd": [ | 27 "cmd": [ |
| 27 "git", | 28 "git", |
| 28 "checkout", | 29 "checkout", |
| 29 "-f", | 30 "-f", |
| 30 "FETCH_HEAD" | 31 "FETCH_HEAD" |
| 31 ], | 32 ], |
| 32 "cwd": "[CWD]/swarming.client", | 33 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 33 "name": "git checkout (swarming_client)" | 34 "name": "git checkout (swarming_client)" |
| 34 }, | 35 }, |
| 35 { | 36 { |
| 36 "cmd": [ | 37 "cmd": [ |
| 37 "git", | 38 "git", |
| 38 "rev-parse", | 39 "rev-parse", |
| 39 "HEAD" | 40 "HEAD" |
| 40 ], | 41 ], |
| 41 "cwd": "[CWD]/swarming.client", | 42 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 42 "name": "read revision", | 43 "name": "read revision", |
| 43 "stdout": "/path/to/tmp/", | 44 "stdout": "/path/to/tmp/", |
| 44 "~followup_annotations": [ | 45 "~followup_annotations": [ |
| 45 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" | 46 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
| 46 ] | 47 ] |
| 47 }, | 48 }, |
| 48 { | 49 { |
| 49 "cmd": [ | 50 "cmd": [ |
| 50 "git", | 51 "git", |
| 51 "clean", | 52 "clean", |
| 52 "-f", | 53 "-f", |
| 53 "-d", | 54 "-d", |
| 54 "-x" | 55 "-x" |
| 55 ], | 56 ], |
| 56 "cwd": "[CWD]/swarming.client", | 57 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 57 "name": "git clean (swarming_client)" | 58 "name": "git clean (swarming_client)" |
| 58 }, | 59 }, |
| 59 { | 60 { |
| 60 "cmd": [ | 61 "cmd": [ |
| 61 "git", | 62 "git", |
| 62 "submodule", | 63 "submodule", |
| 63 "sync" | 64 "sync" |
| 64 ], | 65 ], |
| 65 "cwd": "[CWD]/swarming.client", | 66 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 66 "name": "submodule sync (swarming_client)" | 67 "name": "submodule sync (swarming_client)" |
| 67 }, | 68 }, |
| 68 { | 69 { |
| 69 "cmd": [ | 70 "cmd": [ |
| 70 "git", | 71 "git", |
| 71 "submodule", | 72 "submodule", |
| 72 "update", | 73 "update", |
| 73 "--init", | 74 "--init", |
| 74 "--recursive" | 75 "--recursive" |
| 75 ], | 76 ], |
| 76 "cwd": "[CWD]/swarming.client", | 77 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 77 "name": "submodule update (swarming_client)", | 78 "name": "submodule update (swarming_client)", |
| 78 "~followup_annotations": [ | 79 "~followup_annotations": [ |
| 79 "@@@SET_BUILD_PROPERTY@got_revision@\"20123\"@@@" | 80 "@@@SET_BUILD_PROPERTY@got_revision@\"20123\"@@@" |
| 80 ] | 81 ] |
| 81 }, | 82 }, |
| 82 { | 83 { |
| 83 "cmd": [ | 84 "cmd": [ |
| 84 "python", | 85 "python", |
| 85 "-u", | 86 "-u", |
| 86 "[CWD]/swarming.client/swarming.py", | 87 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 87 "--version" | 88 "--version" |
| 88 ], | 89 ], |
| 90 "cwd": "[SLAVE_BUILD]", |
| 89 "name": "swarming.py --version", | 91 "name": "swarming.py --version", |
| 90 "stdout": "/path/to/tmp/", | 92 "stdout": "/path/to/tmp/", |
| 91 "~followup_annotations": [ | 93 "~followup_annotations": [ |
| 92 "@@@STEP_TEXT@0.4.10@@@" | 94 "@@@STEP_TEXT@0.4.10@@@" |
| 93 ] | 95 ] |
| 94 }, | 96 }, |
| 95 { | 97 { |
| 96 "cmd": [ | 98 "cmd": [ |
| 97 "python", | 99 "python", |
| 98 "-u", | 100 "-u", |
| 99 "[CWD]/swarming.client/swarming.py", | 101 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 100 "trigger", | 102 "trigger", |
| 101 "--swarming", | 103 "--swarming", |
| 102 "https://chromium-swarm.appspot.com", | 104 "https://chromium-swarm.appspot.com", |
| 103 "--isolate-server", | 105 "--isolate-server", |
| 104 "https://isolateserver.appspot.com", | 106 "https://isolateserver.appspot.com", |
| 105 "--priority", | 107 "--priority", |
| 106 "25", | 108 "25", |
| 107 "--shards", | 109 "--shards", |
| 108 "1", | 110 "1", |
| 109 "--task-name", | 111 "--task-name", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "purpose:post-commit", | 150 "purpose:post-commit", |
| 149 "--tag", | 151 "--tag", |
| 150 "slavename:TestSlavename", | 152 "slavename:TestSlavename", |
| 151 "--tag", | 153 "--tag", |
| 152 "stepname:Static-Initializers on Ubuntu-12.04", | 154 "stepname:Static-Initializers on Ubuntu-12.04", |
| 153 "--idempotent", | 155 "--idempotent", |
| 154 "[dummy hash for check-static-initializers]", | 156 "[dummy hash for check-static-initializers]", |
| 155 "--", | 157 "--", |
| 156 "out/Release/d8" | 158 "out/Release/d8" |
| 157 ], | 159 ], |
| 160 "cwd": "[SLAVE_BUILD]", |
| 158 "name": "[trigger] Static-Initializers on Ubuntu-12.04", | 161 "name": "[trigger] Static-Initializers on Ubuntu-12.04", |
| 159 "~followup_annotations": [ | 162 "~followup_annotations": [ |
| 160 "@@@STEP_LOG_LINE@json.output@{@@@", | 163 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 161 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Static-Initializers/
Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", | 164 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Static-Initializers/
Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", |
| 162 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 165 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 163 "@@@STEP_LOG_LINE@json.output@ \"Static-Initializers/Ubuntu-12.04/[dumm
y has/V8 Linux64/571\": {@@@", | 166 "@@@STEP_LOG_LINE@json.output@ \"Static-Initializers/Ubuntu-12.04/[dumm
y has/V8 Linux64/571\": {@@@", |
| 164 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 167 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 165 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 168 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 166 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 169 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 167 "@@@STEP_LOG_LINE@json.output@ }@@@", | 170 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 168 "@@@STEP_LOG_LINE@json.output@ }@@@", | 171 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 169 "@@@STEP_LOG_LINE@json.output@}@@@", | 172 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 170 "@@@STEP_LOG_END@json.output@@@", | 173 "@@@STEP_LOG_END@json.output@@@", |
| 171 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 174 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 172 ] | 175 ] |
| 173 }, | 176 }, |
| 174 { | 177 { |
| 175 "cmd": [ | 178 "cmd": [ |
| 176 "python", | 179 "python", |
| 177 "-u", | 180 "-u", |
| 178 "[CWD]/swarming.client/swarming.py", | 181 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 179 "trigger", | 182 "trigger", |
| 180 "--swarming", | 183 "--swarming", |
| 181 "https://chromium-swarm.appspot.com", | 184 "https://chromium-swarm.appspot.com", |
| 182 "--isolate-server", | 185 "--isolate-server", |
| 183 "https://isolateserver.appspot.com", | 186 "https://isolateserver.appspot.com", |
| 184 "--priority", | 187 "--priority", |
| 185 "25", | 188 "25", |
| 186 "--shards", | 189 "--shards", |
| 187 "1", | 190 "1", |
| 188 "--task-name", | 191 "--task-name", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "--buildbot", | 245 "--buildbot", |
| 243 "--timeout=200", | 246 "--timeout=200", |
| 244 "--random-seed=-2117520218", | 247 "--random-seed=-2117520218", |
| 245 "bot_default", | 248 "bot_default", |
| 246 "--exhaustive-variants", | 249 "--exhaustive-variants", |
| 247 "--rerun-failures-count=2", | 250 "--rerun-failures-count=2", |
| 248 "--swarming", | 251 "--swarming", |
| 249 "--json-test-results", | 252 "--json-test-results", |
| 250 "${ISOLATED_OUTDIR}/output.json" | 253 "${ISOLATED_OUTDIR}/output.json" |
| 251 ], | 254 ], |
| 255 "cwd": "[SLAVE_BUILD]", |
| 252 "name": "[trigger] Check on Ubuntu-12.04", | 256 "name": "[trigger] Check on Ubuntu-12.04", |
| 253 "~followup_annotations": [ | 257 "~followup_annotations": [ |
| 254 "@@@STEP_LOG_LINE@json.output@{@@@", | 258 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 255 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux64/571\", @@@", | 259 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux64/571\", @@@", |
| 256 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 260 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 257 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
64/571\": {@@@", | 261 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
64/571\": {@@@", |
| 258 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 262 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 259 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 263 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 260 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 264 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 261 "@@@STEP_LOG_LINE@json.output@ }@@@", | 265 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 262 "@@@STEP_LOG_LINE@json.output@ }@@@", | 266 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 263 "@@@STEP_LOG_LINE@json.output@}@@@", | 267 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 264 "@@@STEP_LOG_END@json.output@@@", | 268 "@@@STEP_LOG_END@json.output@@@", |
| 265 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 269 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 266 ] | 270 ] |
| 267 }, | 271 }, |
| 268 { | 272 { |
| 269 "cmd": [ | 273 "cmd": [ |
| 270 "python", | 274 "python", |
| 271 "-u", | 275 "-u", |
| 272 "[CWD]/swarming.client/swarming.py", | 276 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 273 "trigger", | 277 "trigger", |
| 274 "--swarming", | 278 "--swarming", |
| 275 "https://chromium-swarm.appspot.com", | 279 "https://chromium-swarm.appspot.com", |
| 276 "--isolate-server", | 280 "--isolate-server", |
| 277 "https://isolateserver.appspot.com", | 281 "https://isolateserver.appspot.com", |
| 278 "--priority", | 282 "--priority", |
| 279 "25", | 283 "25", |
| 280 "--shards", | 284 "--shards", |
| 281 "1", | 285 "1", |
| 282 "--task-name", | 286 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 "--timeout=200", | 341 "--timeout=200", |
| 338 "--random-seed=-2117520218", | 342 "--random-seed=-2117520218", |
| 339 "optimize_for_size", | 343 "optimize_for_size", |
| 340 "--extra-flags=--optimize-for-size", | 344 "--extra-flags=--optimize-for-size", |
| 341 "--variants=default", | 345 "--variants=default", |
| 342 "--rerun-failures-count=2", | 346 "--rerun-failures-count=2", |
| 343 "--swarming", | 347 "--swarming", |
| 344 "--json-test-results", | 348 "--json-test-results", |
| 345 "${ISOLATED_OUTDIR}/output.json" | 349 "${ISOLATED_OUTDIR}/output.json" |
| 346 ], | 350 ], |
| 351 "cwd": "[SLAVE_BUILD]", |
| 347 "name": "[trigger] OptimizeForSize on Ubuntu-12.04", | 352 "name": "[trigger] OptimizeForSize on Ubuntu-12.04", |
| 348 "~followup_annotations": [ | 353 "~followup_annotations": [ |
| 349 "@@@STEP_LOG_LINE@json.output@{@@@", | 354 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 350 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"OptimizeForSize/Ubun
tu-12.04/[dummy has/V8 Linux64/571\", @@@", | 355 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"OptimizeForSize/Ubun
tu-12.04/[dummy has/V8 Linux64/571\", @@@", |
| 351 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 356 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 352 "@@@STEP_LOG_LINE@json.output@ \"OptimizeForSize/Ubuntu-12.04/[dummy ha
s/V8 Linux64/571\": {@@@", | 357 "@@@STEP_LOG_LINE@json.output@ \"OptimizeForSize/Ubuntu-12.04/[dummy ha
s/V8 Linux64/571\": {@@@", |
| 353 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 358 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 354 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 359 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 355 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 360 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 356 "@@@STEP_LOG_LINE@json.output@ }@@@", | 361 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 357 "@@@STEP_LOG_LINE@json.output@ }@@@", | 362 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 358 "@@@STEP_LOG_LINE@json.output@}@@@", | 363 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 359 "@@@STEP_LOG_END@json.output@@@", | 364 "@@@STEP_LOG_END@json.output@@@", |
| 360 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 365 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 361 ] | 366 ] |
| 362 }, | 367 }, |
| 363 { | 368 { |
| 364 "cmd": [ | 369 "cmd": [ |
| 365 "python", | 370 "python", |
| 366 "-u", | 371 "-u", |
| 367 "[CWD]/swarming.client/swarming.py", | 372 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 368 "trigger", | 373 "trigger", |
| 369 "--swarming", | 374 "--swarming", |
| 370 "https://chromium-swarm.appspot.com", | 375 "https://chromium-swarm.appspot.com", |
| 371 "--isolate-server", | 376 "--isolate-server", |
| 372 "https://isolateserver.appspot.com", | 377 "https://isolateserver.appspot.com", |
| 373 "--priority", | 378 "--priority", |
| 374 "25", | 379 "25", |
| 375 "--shards", | 380 "--shards", |
| 376 "2", | 381 "2", |
| 377 "--task-name", | 382 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 "--timeout=200", | 437 "--timeout=200", |
| 433 "--random-seed=-2117520218", | 438 "--random-seed=-2117520218", |
| 434 "test262", | 439 "test262", |
| 435 "--download-data", | 440 "--download-data", |
| 436 "--exhaustive-variants", | 441 "--exhaustive-variants", |
| 437 "--rerun-failures-count=2", | 442 "--rerun-failures-count=2", |
| 438 "--swarming", | 443 "--swarming", |
| 439 "--json-test-results", | 444 "--json-test-results", |
| 440 "${ISOLATED_OUTDIR}/output.json" | 445 "${ISOLATED_OUTDIR}/output.json" |
| 441 ], | 446 ], |
| 447 "cwd": "[SLAVE_BUILD]", |
| 442 "name": "[trigger] Test262 on Ubuntu-12.04", | 448 "name": "[trigger] Test262 on Ubuntu-12.04", |
| 443 "~followup_annotations": [ | 449 "~followup_annotations": [ |
| 444 "@@@STEP_LOG_LINE@json.output@{@@@", | 450 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 445 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262/Ubuntu-12.04
/[dummy has/V8 Linux64/571\", @@@", | 451 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262/Ubuntu-12.04
/[dummy has/V8 Linux64/571\", @@@", |
| 446 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 452 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 447 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux64/571:2:0\": {@@@", | 453 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux64/571:2:0\": {@@@", |
| 448 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 454 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 449 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 455 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 450 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 456 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 451 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 457 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| 452 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux64/571:2:1\": {@@@", | 458 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux64/571:2:1\": {@@@", |
| 453 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 1, @@@", | 459 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 1, @@@", |
| 454 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10100\", @@@", | 460 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10100\", @@@", |
| 455 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10100\"@@@", | 461 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10100\"@@@", |
| 456 "@@@STEP_LOG_LINE@json.output@ }@@@", | 462 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 457 "@@@STEP_LOG_LINE@json.output@ }@@@", | 463 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 458 "@@@STEP_LOG_LINE@json.output@}@@@", | 464 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 459 "@@@STEP_LOG_END@json.output@@@", | 465 "@@@STEP_LOG_END@json.output@@@", |
| 460 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", | 466 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", |
| 461 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@" | 467 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@" |
| 462 ] | 468 ] |
| 463 }, | 469 }, |
| 464 { | 470 { |
| 465 "cmd": [ | 471 "cmd": [ |
| 466 "python", | 472 "python", |
| 467 "-u", | 473 "-u", |
| 468 "[CWD]/swarming.client/swarming.py", | 474 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 469 "trigger", | 475 "trigger", |
| 470 "--swarming", | 476 "--swarming", |
| 471 "https://chromium-swarm.appspot.com", | 477 "https://chromium-swarm.appspot.com", |
| 472 "--isolate-server", | 478 "--isolate-server", |
| 473 "https://isolateserver.appspot.com", | 479 "https://isolateserver.appspot.com", |
| 474 "--priority", | 480 "--priority", |
| 475 "25", | 481 "25", |
| 476 "--shards", | 482 "--shards", |
| 477 "1", | 483 "1", |
| 478 "--task-name", | 484 "--task-name", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 "--buildbot", | 538 "--buildbot", |
| 533 "--timeout=200", | 539 "--timeout=200", |
| 534 "--random-seed=-2117520218", | 540 "--random-seed=-2117520218", |
| 535 "mozilla", | 541 "mozilla", |
| 536 "--exhaustive-variants", | 542 "--exhaustive-variants", |
| 537 "--rerun-failures-count=2", | 543 "--rerun-failures-count=2", |
| 538 "--swarming", | 544 "--swarming", |
| 539 "--json-test-results", | 545 "--json-test-results", |
| 540 "${ISOLATED_OUTDIR}/output.json" | 546 "${ISOLATED_OUTDIR}/output.json" |
| 541 ], | 547 ], |
| 548 "cwd": "[SLAVE_BUILD]", |
| 542 "name": "[trigger] Mozilla on Ubuntu-12.04", | 549 "name": "[trigger] Mozilla on Ubuntu-12.04", |
| 543 "~followup_annotations": [ | 550 "~followup_annotations": [ |
| 544 "@@@STEP_LOG_LINE@json.output@{@@@", | 551 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 545 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux64/571\", @@@", | 552 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux64/571\", @@@", |
| 546 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 553 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 547 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux64/571\": {@@@", | 554 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux64/571\": {@@@", |
| 548 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 555 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 549 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 556 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 550 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 557 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 551 "@@@STEP_LOG_LINE@json.output@ }@@@", | 558 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 552 "@@@STEP_LOG_LINE@json.output@ }@@@", | 559 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 553 "@@@STEP_LOG_LINE@json.output@}@@@", | 560 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 554 "@@@STEP_LOG_END@json.output@@@", | 561 "@@@STEP_LOG_END@json.output@@@", |
| 555 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 562 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 556 ] | 563 ] |
| 557 }, | 564 }, |
| 558 { | 565 { |
| 559 "cmd": [ | 566 "cmd": [ |
| 560 "python", | 567 "python", |
| 561 "-u", | 568 "-u", |
| 562 "[CWD]/swarming.client/swarming.py", | 569 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 563 "trigger", | 570 "trigger", |
| 564 "--swarming", | 571 "--swarming", |
| 565 "https://chromium-swarm.appspot.com", | 572 "https://chromium-swarm.appspot.com", |
| 566 "--isolate-server", | 573 "--isolate-server", |
| 567 "https://isolateserver.appspot.com", | 574 "https://isolateserver.appspot.com", |
| 568 "--priority", | 575 "--priority", |
| 569 "25", | 576 "25", |
| 570 "--shards", | 577 "--shards", |
| 571 "1", | 578 "1", |
| 572 "--task-name", | 579 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 "--timeout=200", | 634 "--timeout=200", |
| 628 "--random-seed=-2117520218", | 635 "--random-seed=-2117520218", |
| 629 "simdjs", | 636 "simdjs", |
| 630 "--download-data", | 637 "--download-data", |
| 631 "--exhaustive-variants", | 638 "--exhaustive-variants", |
| 632 "--rerun-failures-count=2", | 639 "--rerun-failures-count=2", |
| 633 "--swarming", | 640 "--swarming", |
| 634 "--json-test-results", | 641 "--json-test-results", |
| 635 "${ISOLATED_OUTDIR}/output.json" | 642 "${ISOLATED_OUTDIR}/output.json" |
| 636 ], | 643 ], |
| 644 "cwd": "[SLAVE_BUILD]", |
| 637 "name": "[trigger] SimdJs - all on Ubuntu-12.04", | 645 "name": "[trigger] SimdJs - all on Ubuntu-12.04", |
| 638 "~followup_annotations": [ | 646 "~followup_annotations": [ |
| 639 "@@@STEP_LOG_LINE@json.output@{@@@", | 647 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 640 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux64/571\", @@@", | 648 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux64/571\", @@@", |
| 641 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 649 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 642 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux64/571\": {@@@", | 650 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux64/571\": {@@@", |
| 643 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 651 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 644 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 652 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 645 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 653 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 646 "@@@STEP_LOG_LINE@json.output@ }@@@", | 654 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 647 "@@@STEP_LOG_LINE@json.output@ }@@@", | 655 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 648 "@@@STEP_LOG_LINE@json.output@}@@@", | 656 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 649 "@@@STEP_LOG_END@json.output@@@", | 657 "@@@STEP_LOG_END@json.output@@@", |
| 650 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 658 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 651 ] | 659 ] |
| 652 }, | 660 }, |
| 653 { | 661 { |
| 654 "cmd": [ | 662 "cmd": [ |
| 655 "python", | 663 "python", |
| 656 "-u", | 664 "-u", |
| 657 "[CWD]/swarming.client/swarming.py", | 665 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 658 "trigger", | 666 "trigger", |
| 659 "--swarming", | 667 "--swarming", |
| 660 "https://chromium-swarm.appspot.com", | 668 "https://chromium-swarm.appspot.com", |
| 661 "--isolate-server", | 669 "--isolate-server", |
| 662 "https://isolateserver.appspot.com", | 670 "https://isolateserver.appspot.com", |
| 663 "--priority", | 671 "--priority", |
| 664 "25", | 672 "25", |
| 665 "--shards", | 673 "--shards", |
| 666 "1", | 674 "1", |
| 667 "--task-name", | 675 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 "--timeout=200", | 730 "--timeout=200", |
| 723 "--random-seed=-2117520218", | 731 "--random-seed=-2117520218", |
| 724 "ignition", | 732 "ignition", |
| 725 "--ignition-turbofan", | 733 "--ignition-turbofan", |
| 726 "--variants=ignition_turbofan", | 734 "--variants=ignition_turbofan", |
| 727 "--rerun-failures-count=2", | 735 "--rerun-failures-count=2", |
| 728 "--swarming", | 736 "--swarming", |
| 729 "--json-test-results", | 737 "--json-test-results", |
| 730 "${ISOLATED_OUTDIR}/output.json" | 738 "${ISOLATED_OUTDIR}/output.json" |
| 731 ], | 739 ], |
| 740 "cwd": "[SLAVE_BUILD]", |
| 732 "name": "[trigger] Ignition - turbofan on Ubuntu-12.04", | 741 "name": "[trigger] Ignition - turbofan on Ubuntu-12.04", |
| 733 "~followup_annotations": [ | 742 "~followup_annotations": [ |
| 734 "@@@STEP_LOG_LINE@json.output@{@@@", | 743 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 735 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", | 744 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", |
| 736 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 745 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 737 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-12.04/[dumm
y has/V8 Linux64/571\": {@@@", | 746 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-12.04/[dumm
y has/V8 Linux64/571\": {@@@", |
| 738 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 747 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 739 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 748 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 740 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 749 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 741 "@@@STEP_LOG_LINE@json.output@ }@@@", | 750 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 742 "@@@STEP_LOG_LINE@json.output@ }@@@", | 751 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 743 "@@@STEP_LOG_LINE@json.output@}@@@", | 752 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 744 "@@@STEP_LOG_END@json.output@@@", | 753 "@@@STEP_LOG_END@json.output@@@", |
| 745 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 754 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 746 ] | 755 ] |
| 747 }, | 756 }, |
| 748 { | 757 { |
| 749 "cmd": [ | 758 "cmd": [ |
| 750 "python", | 759 "python", |
| 751 "-u", | 760 "-u", |
| 752 "[CWD]/swarming.client/swarming.py", | 761 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 753 "trigger", | 762 "trigger", |
| 754 "--swarming", | 763 "--swarming", |
| 755 "https://chromium-swarm.appspot.com", | 764 "https://chromium-swarm.appspot.com", |
| 756 "--isolate-server", | 765 "--isolate-server", |
| 757 "https://isolateserver.appspot.com", | 766 "https://isolateserver.appspot.com", |
| 758 "--priority", | 767 "--priority", |
| 759 "25", | 768 "25", |
| 760 "--shards", | 769 "--shards", |
| 761 "1", | 770 "1", |
| 762 "--task-name", | 771 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 "--timeout=200", | 826 "--timeout=200", |
| 818 "--random-seed=-2117520218", | 827 "--random-seed=-2117520218", |
| 819 "mjsunit", | 828 "mjsunit", |
| 820 "--extra-flags=--turbo_sp_frame_access", | 829 "--extra-flags=--turbo_sp_frame_access", |
| 821 "--variants=turbofan", | 830 "--variants=turbofan", |
| 822 "--rerun-failures-count=2", | 831 "--rerun-failures-count=2", |
| 823 "--swarming", | 832 "--swarming", |
| 824 "--json-test-results", | 833 "--json-test-results", |
| 825 "${ISOLATED_OUTDIR}/output.json" | 834 "${ISOLATED_OUTDIR}/output.json" |
| 826 ], | 835 ], |
| 836 "cwd": "[SLAVE_BUILD]", |
| 827 "name": "[trigger] Mjsunit - sp frame access on Ubuntu-12.04", | 837 "name": "[trigger] Mjsunit - sp frame access on Ubuntu-12.04", |
| 828 "~followup_annotations": [ | 838 "~followup_annotations": [ |
| 829 "@@@STEP_LOG_LINE@json.output@{@@@", | 839 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 830 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - sp frame a
ccess/Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", | 840 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - sp frame a
ccess/Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", |
| 831 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 841 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 832 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - sp frame access/Ubuntu-12.04
/[dummy has/V8 Linux64/571\": {@@@", | 842 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - sp frame access/Ubuntu-12.04
/[dummy has/V8 Linux64/571\": {@@@", |
| 833 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 843 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 834 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 844 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 835 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 845 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 836 "@@@STEP_LOG_LINE@json.output@ }@@@", | 846 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 837 "@@@STEP_LOG_LINE@json.output@ }@@@", | 847 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 838 "@@@STEP_LOG_LINE@json.output@}@@@", | 848 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 839 "@@@STEP_LOG_END@json.output@@@", | 849 "@@@STEP_LOG_END@json.output@@@", |
| 840 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 850 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 841 ] | 851 ] |
| 842 }, | 852 }, |
| 843 { | 853 { |
| 844 "cmd": [ | 854 "cmd": [ |
| 845 "python", | 855 "python", |
| 846 "-u", | 856 "-u", |
| 847 "[CWD]/swarming.client/swarming.py", | 857 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 848 "trigger", | 858 "trigger", |
| 849 "--swarming", | 859 "--swarming", |
| 850 "https://chromium-swarm.appspot.com", | 860 "https://chromium-swarm.appspot.com", |
| 851 "--isolate-server", | 861 "--isolate-server", |
| 852 "https://isolateserver.appspot.com", | 862 "https://isolateserver.appspot.com", |
| 853 "--priority", | 863 "--priority", |
| 854 "25", | 864 "25", |
| 855 "--shards", | 865 "--shards", |
| 856 "1", | 866 "1", |
| 857 "--task-name", | 867 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 "--random-seed=-2117520218", | 923 "--random-seed=-2117520218", |
| 914 "test262", | 924 "test262", |
| 915 "--ignition-turbofan", | 925 "--ignition-turbofan", |
| 916 "--download-data", | 926 "--download-data", |
| 917 "--variants=ignition_turbofan", | 927 "--variants=ignition_turbofan", |
| 918 "--rerun-failures-count=2", | 928 "--rerun-failures-count=2", |
| 919 "--swarming", | 929 "--swarming", |
| 920 "--json-test-results", | 930 "--json-test-results", |
| 921 "${ISOLATED_OUTDIR}/output.json" | 931 "${ISOLATED_OUTDIR}/output.json" |
| 922 ], | 932 ], |
| 933 "cwd": "[SLAVE_BUILD]", |
| 923 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-12.04", | 934 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-12.04", |
| 924 "~followup_annotations": [ | 935 "~followup_annotations": [ |
| 925 "@@@STEP_LOG_LINE@json.output@{@@@", | 936 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 926 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", | 937 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-12.04/[dummy has/V8 Linux64/571\", @@@", |
| 927 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 938 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 928 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
2.04/[dummy has/V8 Linux64/571\": {@@@", | 939 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
2.04/[dummy has/V8 Linux64/571\": {@@@", |
| 929 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 940 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 930 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 941 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 931 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 942 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 932 "@@@STEP_LOG_LINE@json.output@ }@@@", | 943 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 933 "@@@STEP_LOG_LINE@json.output@ }@@@", | 944 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 934 "@@@STEP_LOG_LINE@json.output@}@@@", | 945 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 935 "@@@STEP_LOG_END@json.output@@@", | 946 "@@@STEP_LOG_END@json.output@@@", |
| 936 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 947 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 937 ] | 948 ] |
| 938 }, | 949 }, |
| 939 { | 950 { |
| 940 "cmd": [ | 951 "cmd": [ |
| 941 "python", | 952 "python", |
| 942 "-u", | 953 "-u", |
| 943 "[CWD]/swarming.client/swarming.py", | 954 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 944 "collect", | 955 "collect", |
| 945 "--swarming", | 956 "--swarming", |
| 946 "https://chromium-swarm.appspot.com", | 957 "https://chromium-swarm.appspot.com", |
| 947 "--decorate", | 958 "--decorate", |
| 948 "--print-status-updates", | 959 "--print-status-updates", |
| 949 "--shards", | 960 "--shards", |
| 950 "1", | 961 "1", |
| 951 "Static-Initializers/Ubuntu-12.04/[dummy has/V8 Linux64/571", | 962 "Static-Initializers/Ubuntu-12.04/[dummy has/V8 Linux64/571", |
| 952 "--task-summary-json", | 963 "--task-summary-json", |
| 953 "/path/to/tmp/json" | 964 "/path/to/tmp/json" |
| 954 ], | 965 ], |
| 966 "cwd": "[SLAVE_BUILD]", |
| 955 "name": "Static-Initializers on Ubuntu-12.04", | 967 "name": "Static-Initializers on Ubuntu-12.04", |
| 956 "~followup_annotations": [ | 968 "~followup_annotations": [ |
| 957 "@@@STEP_TEXT@swarming pending 71s@@@", | 969 "@@@STEP_TEXT@swarming pending 71s@@@", |
| 958 "@@@STEP_LOG_LINE@json.output@{@@@", | 970 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 959 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 971 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
| 960 "@@@STEP_LOG_LINE@json.output@ {@@@", | 972 "@@@STEP_LOG_LINE@json.output@ {@@@", |
| 961 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 973 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
| 962 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 974 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
| 963 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 975 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
| 964 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 976 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1008 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
| 997 ] | 1009 ] |
| 998 }, | 1010 }, |
| 999 { | 1011 { |
| 1000 "allow_subannotations": true, | 1012 "allow_subannotations": true, |
| 1001 "cmd": [ | 1013 "cmd": [ |
| 1002 "python", | 1014 "python", |
| 1003 "-u", | 1015 "-u", |
| 1004 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1016 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1005 "--swarming-client-dir", | 1017 "--swarming-client-dir", |
| 1006 "[CWD]/swarming.client", | 1018 "[SLAVE_BUILD]/swarming.client", |
| 1007 "--temp-root-dir", | 1019 "--temp-root-dir", |
| 1008 "[TMP]", | 1020 "[TMP_BASE]", |
| 1009 "--merged-test-output", | 1021 "--merged-test-output", |
| 1010 "/path/to/tmp/json", | 1022 "/path/to/tmp/json", |
| 1011 "--", | 1023 "--", |
| 1012 "collect", | 1024 "collect", |
| 1013 "--swarming", | 1025 "--swarming", |
| 1014 "https://chromium-swarm.appspot.com", | 1026 "https://chromium-swarm.appspot.com", |
| 1015 "--decorate", | 1027 "--decorate", |
| 1016 "--print-status-updates", | 1028 "--print-status-updates", |
| 1017 "--shards", | 1029 "--shards", |
| 1018 "1", | 1030 "1", |
| 1019 "Check/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1031 "Check/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1020 ], | 1032 ], |
| 1033 "cwd": "[SLAVE_BUILD]", |
| 1021 "name": "Check", | 1034 "name": "Check", |
| 1022 "~followup_annotations": [ | 1035 "~followup_annotations": [ |
| 1023 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1036 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1024 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1037 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1025 "@@@STEP_LOG_LINE@durations@@@@", | 1038 "@@@STEP_LOG_LINE@durations@@@@", |
| 1026 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1039 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1027 "@@@STEP_LOG_LINE@durations@@@@", | 1040 "@@@STEP_LOG_LINE@durations@@@@", |
| 1028 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1041 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1029 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1042 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1030 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1043 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1031 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1044 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1032 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1045 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1033 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1046 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1034 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1047 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1035 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1048 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1036 "@@@STEP_LOG_END@durations@@@" | 1049 "@@@STEP_LOG_END@durations@@@" |
| 1037 ] | 1050 ] |
| 1038 }, | 1051 }, |
| 1039 { | 1052 { |
| 1040 "allow_subannotations": true, | 1053 "allow_subannotations": true, |
| 1041 "cmd": [ | 1054 "cmd": [ |
| 1042 "python", | 1055 "python", |
| 1043 "-u", | 1056 "-u", |
| 1044 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1057 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1045 "--swarming-client-dir", | 1058 "--swarming-client-dir", |
| 1046 "[CWD]/swarming.client", | 1059 "[SLAVE_BUILD]/swarming.client", |
| 1047 "--temp-root-dir", | 1060 "--temp-root-dir", |
| 1048 "[TMP]", | 1061 "[TMP_BASE]", |
| 1049 "--merged-test-output", | 1062 "--merged-test-output", |
| 1050 "/path/to/tmp/json", | 1063 "/path/to/tmp/json", |
| 1051 "--", | 1064 "--", |
| 1052 "collect", | 1065 "collect", |
| 1053 "--swarming", | 1066 "--swarming", |
| 1054 "https://chromium-swarm.appspot.com", | 1067 "https://chromium-swarm.appspot.com", |
| 1055 "--decorate", | 1068 "--decorate", |
| 1056 "--print-status-updates", | 1069 "--print-status-updates", |
| 1057 "--shards", | 1070 "--shards", |
| 1058 "1", | 1071 "1", |
| 1059 "OptimizeForSize/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1072 "OptimizeForSize/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1060 ], | 1073 ], |
| 1074 "cwd": "[SLAVE_BUILD]", |
| 1061 "name": "OptimizeForSize", | 1075 "name": "OptimizeForSize", |
| 1062 "~followup_annotations": [ | 1076 "~followup_annotations": [ |
| 1063 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1077 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1064 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1078 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1065 "@@@STEP_LOG_LINE@durations@@@@", | 1079 "@@@STEP_LOG_LINE@durations@@@@", |
| 1066 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1080 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1067 "@@@STEP_LOG_LINE@durations@@@@", | 1081 "@@@STEP_LOG_LINE@durations@@@@", |
| 1068 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1082 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1069 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1083 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1070 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1084 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1071 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1085 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1072 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1086 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1073 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1087 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1074 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1088 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1075 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1089 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1076 "@@@STEP_LOG_END@durations@@@" | 1090 "@@@STEP_LOG_END@durations@@@" |
| 1077 ] | 1091 ] |
| 1078 }, | 1092 }, |
| 1079 { | 1093 { |
| 1080 "allow_subannotations": true, | 1094 "allow_subannotations": true, |
| 1081 "cmd": [ | 1095 "cmd": [ |
| 1082 "python", | 1096 "python", |
| 1083 "-u", | 1097 "-u", |
| 1084 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1098 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1085 "--swarming-client-dir", | 1099 "--swarming-client-dir", |
| 1086 "[CWD]/swarming.client", | 1100 "[SLAVE_BUILD]/swarming.client", |
| 1087 "--temp-root-dir", | 1101 "--temp-root-dir", |
| 1088 "[TMP]", | 1102 "[TMP_BASE]", |
| 1089 "--merged-test-output", | 1103 "--merged-test-output", |
| 1090 "/path/to/tmp/json", | 1104 "/path/to/tmp/json", |
| 1091 "--", | 1105 "--", |
| 1092 "collect", | 1106 "collect", |
| 1093 "--swarming", | 1107 "--swarming", |
| 1094 "https://chromium-swarm.appspot.com", | 1108 "https://chromium-swarm.appspot.com", |
| 1095 "--decorate", | 1109 "--decorate", |
| 1096 "--print-status-updates", | 1110 "--print-status-updates", |
| 1097 "--shards", | 1111 "--shards", |
| 1098 "2", | 1112 "2", |
| 1099 "Test262/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1113 "Test262/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1100 ], | 1114 ], |
| 1115 "cwd": "[SLAVE_BUILD]", |
| 1101 "name": "Test262", | 1116 "name": "Test262", |
| 1102 "~followup_annotations": [ | 1117 "~followup_annotations": [ |
| 1103 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1118 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1104 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1119 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1105 "@@@STEP_LOG_LINE@durations@@@@", | 1120 "@@@STEP_LOG_LINE@durations@@@@", |
| 1106 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1121 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1107 "@@@STEP_LOG_LINE@durations@@@@", | 1122 "@@@STEP_LOG_LINE@durations@@@@", |
| 1108 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1123 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1109 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1124 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1110 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1125 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1111 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1126 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1112 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1127 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1113 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1128 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1114 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1129 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1115 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1130 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1116 "@@@STEP_LOG_END@durations@@@" | 1131 "@@@STEP_LOG_END@durations@@@" |
| 1117 ] | 1132 ] |
| 1118 }, | 1133 }, |
| 1119 { | 1134 { |
| 1120 "allow_subannotations": true, | 1135 "allow_subannotations": true, |
| 1121 "cmd": [ | 1136 "cmd": [ |
| 1122 "python", | 1137 "python", |
| 1123 "-u", | 1138 "-u", |
| 1124 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1139 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1125 "--swarming-client-dir", | 1140 "--swarming-client-dir", |
| 1126 "[CWD]/swarming.client", | 1141 "[SLAVE_BUILD]/swarming.client", |
| 1127 "--temp-root-dir", | 1142 "--temp-root-dir", |
| 1128 "[TMP]", | 1143 "[TMP_BASE]", |
| 1129 "--merged-test-output", | 1144 "--merged-test-output", |
| 1130 "/path/to/tmp/json", | 1145 "/path/to/tmp/json", |
| 1131 "--", | 1146 "--", |
| 1132 "collect", | 1147 "collect", |
| 1133 "--swarming", | 1148 "--swarming", |
| 1134 "https://chromium-swarm.appspot.com", | 1149 "https://chromium-swarm.appspot.com", |
| 1135 "--decorate", | 1150 "--decorate", |
| 1136 "--print-status-updates", | 1151 "--print-status-updates", |
| 1137 "--shards", | 1152 "--shards", |
| 1138 "1", | 1153 "1", |
| 1139 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1154 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1140 ], | 1155 ], |
| 1156 "cwd": "[SLAVE_BUILD]", |
| 1141 "name": "Mozilla", | 1157 "name": "Mozilla", |
| 1142 "~followup_annotations": [ | 1158 "~followup_annotations": [ |
| 1143 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1159 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1144 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1160 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1145 "@@@STEP_LOG_LINE@durations@@@@", | 1161 "@@@STEP_LOG_LINE@durations@@@@", |
| 1146 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1162 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1147 "@@@STEP_LOG_LINE@durations@@@@", | 1163 "@@@STEP_LOG_LINE@durations@@@@", |
| 1148 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1164 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1149 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1165 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1150 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1166 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1151 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1167 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1152 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1168 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1153 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1169 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1154 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1170 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1155 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1171 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1156 "@@@STEP_LOG_END@durations@@@" | 1172 "@@@STEP_LOG_END@durations@@@" |
| 1157 ] | 1173 ] |
| 1158 }, | 1174 }, |
| 1159 { | 1175 { |
| 1160 "allow_subannotations": true, | 1176 "allow_subannotations": true, |
| 1161 "cmd": [ | 1177 "cmd": [ |
| 1162 "python", | 1178 "python", |
| 1163 "-u", | 1179 "-u", |
| 1164 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1180 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1165 "--swarming-client-dir", | 1181 "--swarming-client-dir", |
| 1166 "[CWD]/swarming.client", | 1182 "[SLAVE_BUILD]/swarming.client", |
| 1167 "--temp-root-dir", | 1183 "--temp-root-dir", |
| 1168 "[TMP]", | 1184 "[TMP_BASE]", |
| 1169 "--merged-test-output", | 1185 "--merged-test-output", |
| 1170 "/path/to/tmp/json", | 1186 "/path/to/tmp/json", |
| 1171 "--", | 1187 "--", |
| 1172 "collect", | 1188 "collect", |
| 1173 "--swarming", | 1189 "--swarming", |
| 1174 "https://chromium-swarm.appspot.com", | 1190 "https://chromium-swarm.appspot.com", |
| 1175 "--decorate", | 1191 "--decorate", |
| 1176 "--print-status-updates", | 1192 "--print-status-updates", |
| 1177 "--shards", | 1193 "--shards", |
| 1178 "1", | 1194 "1", |
| 1179 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1195 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1180 ], | 1196 ], |
| 1197 "cwd": "[SLAVE_BUILD]", |
| 1181 "name": "SimdJs - all", | 1198 "name": "SimdJs - all", |
| 1182 "~followup_annotations": [ | 1199 "~followup_annotations": [ |
| 1183 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1200 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1184 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1201 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1185 "@@@STEP_LOG_LINE@durations@@@@", | 1202 "@@@STEP_LOG_LINE@durations@@@@", |
| 1186 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1203 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1187 "@@@STEP_LOG_LINE@durations@@@@", | 1204 "@@@STEP_LOG_LINE@durations@@@@", |
| 1188 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1205 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1189 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1206 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1190 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1207 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1191 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1208 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1192 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1209 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1193 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1210 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1194 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1211 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1195 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1212 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1196 "@@@STEP_LOG_END@durations@@@" | 1213 "@@@STEP_LOG_END@durations@@@" |
| 1197 ] | 1214 ] |
| 1198 }, | 1215 }, |
| 1199 { | 1216 { |
| 1200 "allow_subannotations": true, | 1217 "allow_subannotations": true, |
| 1201 "cmd": [ | 1218 "cmd": [ |
| 1202 "python", | 1219 "python", |
| 1203 "-u", | 1220 "-u", |
| 1204 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1221 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1205 "--swarming-client-dir", | 1222 "--swarming-client-dir", |
| 1206 "[CWD]/swarming.client", | 1223 "[SLAVE_BUILD]/swarming.client", |
| 1207 "--temp-root-dir", | 1224 "--temp-root-dir", |
| 1208 "[TMP]", | 1225 "[TMP_BASE]", |
| 1209 "--merged-test-output", | 1226 "--merged-test-output", |
| 1210 "/path/to/tmp/json", | 1227 "/path/to/tmp/json", |
| 1211 "--", | 1228 "--", |
| 1212 "collect", | 1229 "collect", |
| 1213 "--swarming", | 1230 "--swarming", |
| 1214 "https://chromium-swarm.appspot.com", | 1231 "https://chromium-swarm.appspot.com", |
| 1215 "--decorate", | 1232 "--decorate", |
| 1216 "--print-status-updates", | 1233 "--print-status-updates", |
| 1217 "--shards", | 1234 "--shards", |
| 1218 "1", | 1235 "1", |
| 1219 "Ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1236 "Ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1220 ], | 1237 ], |
| 1238 "cwd": "[SLAVE_BUILD]", |
| 1221 "name": "Ignition - turbofan", | 1239 "name": "Ignition - turbofan", |
| 1222 "~followup_annotations": [ | 1240 "~followup_annotations": [ |
| 1223 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1241 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1224 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1242 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1225 "@@@STEP_LOG_LINE@durations@@@@", | 1243 "@@@STEP_LOG_LINE@durations@@@@", |
| 1226 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1244 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1227 "@@@STEP_LOG_LINE@durations@@@@", | 1245 "@@@STEP_LOG_LINE@durations@@@@", |
| 1228 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1246 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1229 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1247 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1230 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1248 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1231 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1249 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1232 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1250 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1233 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1251 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1234 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1252 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1235 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1253 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1236 "@@@STEP_LOG_END@durations@@@" | 1254 "@@@STEP_LOG_END@durations@@@" |
| 1237 ] | 1255 ] |
| 1238 }, | 1256 }, |
| 1239 { | 1257 { |
| 1240 "allow_subannotations": true, | 1258 "allow_subannotations": true, |
| 1241 "cmd": [ | 1259 "cmd": [ |
| 1242 "python", | 1260 "python", |
| 1243 "-u", | 1261 "-u", |
| 1244 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1262 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1245 "--swarming-client-dir", | 1263 "--swarming-client-dir", |
| 1246 "[CWD]/swarming.client", | 1264 "[SLAVE_BUILD]/swarming.client", |
| 1247 "--temp-root-dir", | 1265 "--temp-root-dir", |
| 1248 "[TMP]", | 1266 "[TMP_BASE]", |
| 1249 "--merged-test-output", | 1267 "--merged-test-output", |
| 1250 "/path/to/tmp/json", | 1268 "/path/to/tmp/json", |
| 1251 "--", | 1269 "--", |
| 1252 "collect", | 1270 "collect", |
| 1253 "--swarming", | 1271 "--swarming", |
| 1254 "https://chromium-swarm.appspot.com", | 1272 "https://chromium-swarm.appspot.com", |
| 1255 "--decorate", | 1273 "--decorate", |
| 1256 "--print-status-updates", | 1274 "--print-status-updates", |
| 1257 "--shards", | 1275 "--shards", |
| 1258 "1", | 1276 "1", |
| 1259 "Mjsunit - sp frame access/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1277 "Mjsunit - sp frame access/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1260 ], | 1278 ], |
| 1279 "cwd": "[SLAVE_BUILD]", |
| 1261 "name": "Mjsunit - sp frame access", | 1280 "name": "Mjsunit - sp frame access", |
| 1262 "~followup_annotations": [ | 1281 "~followup_annotations": [ |
| 1263 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1282 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1264 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1283 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1265 "@@@STEP_LOG_LINE@durations@@@@", | 1284 "@@@STEP_LOG_LINE@durations@@@@", |
| 1266 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1285 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1267 "@@@STEP_LOG_LINE@durations@@@@", | 1286 "@@@STEP_LOG_LINE@durations@@@@", |
| 1268 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1287 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1269 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1288 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1270 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1289 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1271 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1290 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1272 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1291 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1273 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1292 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1274 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1293 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1275 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1294 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1276 "@@@STEP_LOG_END@durations@@@" | 1295 "@@@STEP_LOG_END@durations@@@" |
| 1277 ] | 1296 ] |
| 1278 }, | 1297 }, |
| 1279 { | 1298 { |
| 1280 "allow_subannotations": true, | 1299 "allow_subannotations": true, |
| 1281 "cmd": [ | 1300 "cmd": [ |
| 1282 "python", | 1301 "python", |
| 1283 "-u", | 1302 "-u", |
| 1284 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1303 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1285 "--swarming-client-dir", | 1304 "--swarming-client-dir", |
| 1286 "[CWD]/swarming.client", | 1305 "[SLAVE_BUILD]/swarming.client", |
| 1287 "--temp-root-dir", | 1306 "--temp-root-dir", |
| 1288 "[TMP]", | 1307 "[TMP_BASE]", |
| 1289 "--merged-test-output", | 1308 "--merged-test-output", |
| 1290 "/path/to/tmp/json", | 1309 "/path/to/tmp/json", |
| 1291 "--", | 1310 "--", |
| 1292 "collect", | 1311 "collect", |
| 1293 "--swarming", | 1312 "--swarming", |
| 1294 "https://chromium-swarm.appspot.com", | 1313 "https://chromium-swarm.appspot.com", |
| 1295 "--decorate", | 1314 "--decorate", |
| 1296 "--print-status-updates", | 1315 "--print-status-updates", |
| 1297 "--shards", | 1316 "--shards", |
| 1298 "1", | 1317 "1", |
| 1299 "Test262 - ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64/571" | 1318 "Test262 - ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64/571" |
| 1300 ], | 1319 ], |
| 1320 "cwd": "[SLAVE_BUILD]", |
| 1301 "name": "Test262 - ignition - turbofan", | 1321 "name": "Test262 - ignition - turbofan", |
| 1302 "~followup_annotations": [ | 1322 "~followup_annotations": [ |
| 1303 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1323 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1304 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1324 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1305 "@@@STEP_LOG_LINE@durations@@@@", | 1325 "@@@STEP_LOG_LINE@durations@@@@", |
| 1306 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1326 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1307 "@@@STEP_LOG_LINE@durations@@@@", | 1327 "@@@STEP_LOG_LINE@durations@@@@", |
| 1308 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1328 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1309 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1329 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1310 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1330 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1311 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1331 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1312 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1332 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1313 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1333 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1314 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1334 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1315 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1335 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1316 "@@@STEP_LOG_END@durations@@@" | 1336 "@@@STEP_LOG_END@durations@@@" |
| 1317 ] | 1337 ] |
| 1318 }, | 1338 }, |
| 1319 { | 1339 { |
| 1320 "name": "$result", | 1340 "name": "$result", |
| 1321 "recipe_result": null, | 1341 "recipe_result": null, |
| 1322 "status_code": 0 | 1342 "status_code": 0 |
| 1323 } | 1343 } |
| 1324 ] | 1344 ] |
| OLD | NEW |