| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 "--buildbot", | 165 "--buildbot", |
| 164 "--timeout=200", | 166 "--timeout=200", |
| 165 "--random-seed=-1038184575", | 167 "--random-seed=-1038184575", |
| 166 "bot_default", | 168 "bot_default", |
| 167 "--exhaustive-variants", | 169 "--exhaustive-variants", |
| 168 "--rerun-failures-count=2", | 170 "--rerun-failures-count=2", |
| 169 "--swarming", | 171 "--swarming", |
| 170 "--json-test-results", | 172 "--json-test-results", |
| 171 "${ISOLATED_OUTDIR}/output.json" | 173 "${ISOLATED_OUTDIR}/output.json" |
| 172 ], | 174 ], |
| 175 "cwd": "[SLAVE_BUILD]", |
| 173 "name": "[trigger] Check on Ubuntu-12.04", | 176 "name": "[trigger] Check on Ubuntu-12.04", |
| 174 "~followup_annotations": [ | 177 "~followup_annotations": [ |
| 175 "@@@STEP_LOG_LINE@json.output@{@@@", | 178 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 176 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux - debug/571\", @@@", | 179 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux - debug/571\", @@@", |
| 177 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 180 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 178 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
- debug/571\": {@@@", | 181 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
- debug/571\": {@@@", |
| 179 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 182 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 180 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 183 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 181 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 184 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 182 "@@@STEP_LOG_LINE@json.output@ }@@@", | 185 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 183 "@@@STEP_LOG_LINE@json.output@ }@@@", | 186 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 184 "@@@STEP_LOG_LINE@json.output@}@@@", | 187 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 185 "@@@STEP_LOG_END@json.output@@@", | 188 "@@@STEP_LOG_END@json.output@@@", |
| 186 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 189 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 187 ] | 190 ] |
| 188 }, | 191 }, |
| 189 { | 192 { |
| 190 "cmd": [ | 193 "cmd": [ |
| 191 "python", | 194 "python", |
| 192 "-u", | 195 "-u", |
| 193 "[CWD]/swarming.client/swarming.py", | 196 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 194 "trigger", | 197 "trigger", |
| 195 "--swarming", | 198 "--swarming", |
| 196 "https://chromium-swarm.appspot.com", | 199 "https://chromium-swarm.appspot.com", |
| 197 "--isolate-server", | 200 "--isolate-server", |
| 198 "https://isolateserver.appspot.com", | 201 "https://isolateserver.appspot.com", |
| 199 "--priority", | 202 "--priority", |
| 200 "25", | 203 "25", |
| 201 "--shards", | 204 "--shards", |
| 202 "1", | 205 "1", |
| 203 "--task-name", | 206 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 "--timeout=200", | 261 "--timeout=200", |
| 259 "--random-seed=-1038184575", | 262 "--random-seed=-1038184575", |
| 260 "benchmarks", | 263 "benchmarks", |
| 261 "--download-data", | 264 "--download-data", |
| 262 "--exhaustive-variants", | 265 "--exhaustive-variants", |
| 263 "--rerun-failures-count=2", | 266 "--rerun-failures-count=2", |
| 264 "--swarming", | 267 "--swarming", |
| 265 "--json-test-results", | 268 "--json-test-results", |
| 266 "${ISOLATED_OUTDIR}/output.json" | 269 "${ISOLATED_OUTDIR}/output.json" |
| 267 ], | 270 ], |
| 271 "cwd": "[SLAVE_BUILD]", |
| 268 "name": "[trigger] Benchmarks on Ubuntu-12.04", | 272 "name": "[trigger] Benchmarks on Ubuntu-12.04", |
| 269 "~followup_annotations": [ | 273 "~followup_annotations": [ |
| 270 "@@@STEP_LOG_LINE@json.output@{@@@", | 274 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 271 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks/Ubuntu-12
.04/[dummy has/V8 Linux - debug/571\", @@@", | 275 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks/Ubuntu-12
.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 272 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 276 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 273 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks/Ubuntu-12.04/[dummy has/V8
Linux - debug/571\": {@@@", | 277 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks/Ubuntu-12.04/[dummy has/V8
Linux - debug/571\": {@@@", |
| 274 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 278 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 275 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 279 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 276 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 280 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 277 "@@@STEP_LOG_LINE@json.output@ }@@@", | 281 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 278 "@@@STEP_LOG_LINE@json.output@ }@@@", | 282 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 279 "@@@STEP_LOG_LINE@json.output@}@@@", | 283 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 280 "@@@STEP_LOG_END@json.output@@@", | 284 "@@@STEP_LOG_END@json.output@@@", |
| 281 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 285 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 282 ] | 286 ] |
| 283 }, | 287 }, |
| 284 { | 288 { |
| 285 "cmd": [ | 289 "cmd": [ |
| 286 "python", | 290 "python", |
| 287 "-u", | 291 "-u", |
| 288 "[CWD]/swarming.client/swarming.py", | 292 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 289 "trigger", | 293 "trigger", |
| 290 "--swarming", | 294 "--swarming", |
| 291 "https://chromium-swarm.appspot.com", | 295 "https://chromium-swarm.appspot.com", |
| 292 "--isolate-server", | 296 "--isolate-server", |
| 293 "https://isolateserver.appspot.com", | 297 "https://isolateserver.appspot.com", |
| 294 "--priority", | 298 "--priority", |
| 295 "25", | 299 "25", |
| 296 "--shards", | 300 "--shards", |
| 297 "3", | 301 "3", |
| 298 "--task-name", | 302 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "--timeout=200", | 357 "--timeout=200", |
| 354 "--random-seed=-1038184575", | 358 "--random-seed=-1038184575", |
| 355 "test262", | 359 "test262", |
| 356 "--download-data", | 360 "--download-data", |
| 357 "--exhaustive-variants", | 361 "--exhaustive-variants", |
| 358 "--rerun-failures-count=2", | 362 "--rerun-failures-count=2", |
| 359 "--swarming", | 363 "--swarming", |
| 360 "--json-test-results", | 364 "--json-test-results", |
| 361 "${ISOLATED_OUTDIR}/output.json" | 365 "${ISOLATED_OUTDIR}/output.json" |
| 362 ], | 366 ], |
| 367 "cwd": "[SLAVE_BUILD]", |
| 363 "name": "[trigger] Test262 on Ubuntu-12.04", | 368 "name": "[trigger] Test262 on Ubuntu-12.04", |
| 364 "~followup_annotations": [ | 369 "~followup_annotations": [ |
| 365 "@@@STEP_LOG_LINE@json.output@{@@@", | 370 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 366 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\", @@@", | 371 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\", @@@", |
| 367 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 372 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 368 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux - debug/571:3:0\": {@@@", | 373 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux - debug/571:3:0\": {@@@", |
| 369 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 374 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 370 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 375 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 371 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 376 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 372 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 377 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 385 "@@@STEP_LOG_END@json.output@@@", | 390 "@@@STEP_LOG_END@json.output@@@", |
| 386 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", | 391 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", |
| 387 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@", | 392 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@", |
| 388 "@@@STEP_LINK@shard #2@https://chromium-swarm.appspot.com/user/task/10200@
@@" | 393 "@@@STEP_LINK@shard #2@https://chromium-swarm.appspot.com/user/task/10200@
@@" |
| 389 ] | 394 ] |
| 390 }, | 395 }, |
| 391 { | 396 { |
| 392 "cmd": [ | 397 "cmd": [ |
| 393 "python", | 398 "python", |
| 394 "-u", | 399 "-u", |
| 395 "[CWD]/swarming.client/swarming.py", | 400 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 396 "trigger", | 401 "trigger", |
| 397 "--swarming", | 402 "--swarming", |
| 398 "https://chromium-swarm.appspot.com", | 403 "https://chromium-swarm.appspot.com", |
| 399 "--isolate-server", | 404 "--isolate-server", |
| 400 "https://isolateserver.appspot.com", | 405 "https://isolateserver.appspot.com", |
| 401 "--priority", | 406 "--priority", |
| 402 "25", | 407 "25", |
| 403 "--shards", | 408 "--shards", |
| 404 "1", | 409 "1", |
| 405 "--task-name", | 410 "--task-name", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 "--buildbot", | 464 "--buildbot", |
| 460 "--timeout=200", | 465 "--timeout=200", |
| 461 "--random-seed=-1038184575", | 466 "--random-seed=-1038184575", |
| 462 "mozilla", | 467 "mozilla", |
| 463 "--exhaustive-variants", | 468 "--exhaustive-variants", |
| 464 "--rerun-failures-count=2", | 469 "--rerun-failures-count=2", |
| 465 "--swarming", | 470 "--swarming", |
| 466 "--json-test-results", | 471 "--json-test-results", |
| 467 "${ISOLATED_OUTDIR}/output.json" | 472 "${ISOLATED_OUTDIR}/output.json" |
| 468 ], | 473 ], |
| 474 "cwd": "[SLAVE_BUILD]", |
| 469 "name": "[trigger] Mozilla on Ubuntu-12.04", | 475 "name": "[trigger] Mozilla on Ubuntu-12.04", |
| 470 "~followup_annotations": [ | 476 "~followup_annotations": [ |
| 471 "@@@STEP_LOG_LINE@json.output@{@@@", | 477 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 472 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\", @@@", | 478 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\", @@@", |
| 473 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 479 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 474 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux - debug/571\": {@@@", | 480 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux - debug/571\": {@@@", |
| 475 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 481 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 476 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 482 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 477 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 483 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 478 "@@@STEP_LOG_LINE@json.output@ }@@@", | 484 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 479 "@@@STEP_LOG_LINE@json.output@ }@@@", | 485 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 480 "@@@STEP_LOG_LINE@json.output@}@@@", | 486 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 481 "@@@STEP_LOG_END@json.output@@@", | 487 "@@@STEP_LOG_END@json.output@@@", |
| 482 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 488 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 483 ] | 489 ] |
| 484 }, | 490 }, |
| 485 { | 491 { |
| 486 "cmd": [ | 492 "cmd": [ |
| 487 "python", | 493 "python", |
| 488 "-u", | 494 "-u", |
| 489 "[CWD]/swarming.client/swarming.py", | 495 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 490 "trigger", | 496 "trigger", |
| 491 "--swarming", | 497 "--swarming", |
| 492 "https://chromium-swarm.appspot.com", | 498 "https://chromium-swarm.appspot.com", |
| 493 "--isolate-server", | 499 "--isolate-server", |
| 494 "https://isolateserver.appspot.com", | 500 "https://isolateserver.appspot.com", |
| 495 "--priority", | 501 "--priority", |
| 496 "25", | 502 "25", |
| 497 "--shards", | 503 "--shards", |
| 498 "1", | 504 "1", |
| 499 "--task-name", | 505 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 "--timeout=200", | 560 "--timeout=200", |
| 555 "--random-seed=-1038184575", | 561 "--random-seed=-1038184575", |
| 556 "simdjs", | 562 "simdjs", |
| 557 "--download-data", | 563 "--download-data", |
| 558 "--exhaustive-variants", | 564 "--exhaustive-variants", |
| 559 "--rerun-failures-count=2", | 565 "--rerun-failures-count=2", |
| 560 "--swarming", | 566 "--swarming", |
| 561 "--json-test-results", | 567 "--json-test-results", |
| 562 "${ISOLATED_OUTDIR}/output.json" | 568 "${ISOLATED_OUTDIR}/output.json" |
| 563 ], | 569 ], |
| 570 "cwd": "[SLAVE_BUILD]", |
| 564 "name": "[trigger] SimdJs - all on Ubuntu-12.04", | 571 "name": "[trigger] SimdJs - all on Ubuntu-12.04", |
| 565 "~followup_annotations": [ | 572 "~followup_annotations": [ |
| 566 "@@@STEP_LOG_LINE@json.output@{@@@", | 573 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 567 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\", @@@", | 574 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 568 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 575 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 569 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux - debug/571\": {@@@", | 576 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux - debug/571\": {@@@", |
| 570 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 577 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 571 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 578 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 572 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 579 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 573 "@@@STEP_LOG_LINE@json.output@ }@@@", | 580 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 574 "@@@STEP_LOG_LINE@json.output@ }@@@", | 581 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 575 "@@@STEP_LOG_LINE@json.output@}@@@", | 582 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 576 "@@@STEP_LOG_END@json.output@@@", | 583 "@@@STEP_LOG_END@json.output@@@", |
| 577 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 584 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 578 ] | 585 ] |
| 579 }, | 586 }, |
| 580 { | 587 { |
| 581 "cmd": [ | 588 "cmd": [ |
| 582 "python", | 589 "python", |
| 583 "-u", | 590 "-u", |
| 584 "[CWD]/swarming.client/swarming.py", | 591 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 585 "trigger", | 592 "trigger", |
| 586 "--swarming", | 593 "--swarming", |
| 587 "https://chromium-swarm.appspot.com", | 594 "https://chromium-swarm.appspot.com", |
| 588 "--isolate-server", | 595 "--isolate-server", |
| 589 "https://isolateserver.appspot.com", | 596 "https://isolateserver.appspot.com", |
| 590 "--priority", | 597 "--priority", |
| 591 "25", | 598 "25", |
| 592 "--shards", | 599 "--shards", |
| 593 "1", | 600 "1", |
| 594 "--task-name", | 601 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 "--timeout=200", | 656 "--timeout=200", |
| 650 "--random-seed=-1038184575", | 657 "--random-seed=-1038184575", |
| 651 "ignition", | 658 "ignition", |
| 652 "--ignition-turbofan", | 659 "--ignition-turbofan", |
| 653 "--variants=ignition_turbofan", | 660 "--variants=ignition_turbofan", |
| 654 "--rerun-failures-count=2", | 661 "--rerun-failures-count=2", |
| 655 "--swarming", | 662 "--swarming", |
| 656 "--json-test-results", | 663 "--json-test-results", |
| 657 "${ISOLATED_OUTDIR}/output.json" | 664 "${ISOLATED_OUTDIR}/output.json" |
| 658 ], | 665 ], |
| 666 "cwd": "[SLAVE_BUILD]", |
| 659 "name": "[trigger] Ignition - turbofan on Ubuntu-12.04", | 667 "name": "[trigger] Ignition - turbofan on Ubuntu-12.04", |
| 660 "~followup_annotations": [ | 668 "~followup_annotations": [ |
| 661 "@@@STEP_LOG_LINE@json.output@{@@@", | 669 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 662 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 670 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 663 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 671 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 664 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-12.04/[dumm
y has/V8 Linux - debug/571\": {@@@", | 672 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-12.04/[dumm
y has/V8 Linux - debug/571\": {@@@", |
| 665 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 673 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 666 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 674 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 667 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 675 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 668 "@@@STEP_LOG_LINE@json.output@ }@@@", | 676 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 669 "@@@STEP_LOG_LINE@json.output@ }@@@", | 677 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 670 "@@@STEP_LOG_LINE@json.output@}@@@", | 678 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 671 "@@@STEP_LOG_END@json.output@@@", | 679 "@@@STEP_LOG_END@json.output@@@", |
| 672 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 680 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 673 ] | 681 ] |
| 674 }, | 682 }, |
| 675 { | 683 { |
| 676 "cmd": [ | 684 "cmd": [ |
| 677 "python", | 685 "python", |
| 678 "-u", | 686 "-u", |
| 679 "[CWD]/swarming.client/swarming.py", | 687 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 680 "trigger", | 688 "trigger", |
| 681 "--swarming", | 689 "--swarming", |
| 682 "https://chromium-swarm.appspot.com", | 690 "https://chromium-swarm.appspot.com", |
| 683 "--isolate-server", | 691 "--isolate-server", |
| 684 "https://isolateserver.appspot.com", | 692 "https://isolateserver.appspot.com", |
| 685 "--priority", | 693 "--priority", |
| 686 "25", | 694 "25", |
| 687 "--shards", | 695 "--shards", |
| 688 "1", | 696 "1", |
| 689 "--task-name", | 697 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 "--timeout=200", | 752 "--timeout=200", |
| 745 "--random-seed=-1038184575", | 753 "--random-seed=-1038184575", |
| 746 "mjsunit", | 754 "mjsunit", |
| 747 "--extra-flags=--turbo_sp_frame_access", | 755 "--extra-flags=--turbo_sp_frame_access", |
| 748 "--variants=turbofan", | 756 "--variants=turbofan", |
| 749 "--rerun-failures-count=2", | 757 "--rerun-failures-count=2", |
| 750 "--swarming", | 758 "--swarming", |
| 751 "--json-test-results", | 759 "--json-test-results", |
| 752 "${ISOLATED_OUTDIR}/output.json" | 760 "${ISOLATED_OUTDIR}/output.json" |
| 753 ], | 761 ], |
| 762 "cwd": "[SLAVE_BUILD]", |
| 754 "name": "[trigger] Mjsunit - sp frame access on Ubuntu-12.04", | 763 "name": "[trigger] Mjsunit - sp frame access on Ubuntu-12.04", |
| 755 "~followup_annotations": [ | 764 "~followup_annotations": [ |
| 756 "@@@STEP_LOG_LINE@json.output@{@@@", | 765 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 757 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - sp frame a
ccess/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 766 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - sp frame a
ccess/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 758 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 767 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 759 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - sp frame access/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\": {@@@", | 768 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - sp frame access/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\": {@@@", |
| 760 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 769 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 761 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 770 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 762 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 771 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 763 "@@@STEP_LOG_LINE@json.output@ }@@@", | 772 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 764 "@@@STEP_LOG_LINE@json.output@ }@@@", | 773 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 765 "@@@STEP_LOG_LINE@json.output@}@@@", | 774 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 766 "@@@STEP_LOG_END@json.output@@@", | 775 "@@@STEP_LOG_END@json.output@@@", |
| 767 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 776 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 768 ] | 777 ] |
| 769 }, | 778 }, |
| 770 { | 779 { |
| 771 "cmd": [ | 780 "cmd": [ |
| 772 "python", | 781 "python", |
| 773 "-u", | 782 "-u", |
| 774 "[CWD]/swarming.client/swarming.py", | 783 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 775 "trigger", | 784 "trigger", |
| 776 "--swarming", | 785 "--swarming", |
| 777 "https://chromium-swarm.appspot.com", | 786 "https://chromium-swarm.appspot.com", |
| 778 "--isolate-server", | 787 "--isolate-server", |
| 779 "https://isolateserver.appspot.com", | 788 "https://isolateserver.appspot.com", |
| 780 "--priority", | 789 "--priority", |
| 781 "25", | 790 "25", |
| 782 "--shards", | 791 "--shards", |
| 783 "1", | 792 "1", |
| 784 "--task-name", | 793 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 "--random-seed=-1038184575", | 849 "--random-seed=-1038184575", |
| 841 "test262", | 850 "test262", |
| 842 "--ignition-turbofan", | 851 "--ignition-turbofan", |
| 843 "--download-data", | 852 "--download-data", |
| 844 "--variants=ignition_turbofan", | 853 "--variants=ignition_turbofan", |
| 845 "--rerun-failures-count=2", | 854 "--rerun-failures-count=2", |
| 846 "--swarming", | 855 "--swarming", |
| 847 "--json-test-results", | 856 "--json-test-results", |
| 848 "${ISOLATED_OUTDIR}/output.json" | 857 "${ISOLATED_OUTDIR}/output.json" |
| 849 ], | 858 ], |
| 859 "cwd": "[SLAVE_BUILD]", |
| 850 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-12.04", | 860 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-12.04", |
| 851 "~followup_annotations": [ | 861 "~followup_annotations": [ |
| 852 "@@@STEP_LOG_LINE@json.output@{@@@", | 862 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 853 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 863 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 854 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 864 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 855 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
2.04/[dummy has/V8 Linux - debug/571\": {@@@", | 865 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
2.04/[dummy has/V8 Linux - debug/571\": {@@@", |
| 856 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 866 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 857 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 867 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 858 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 868 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 859 "@@@STEP_LOG_LINE@json.output@ }@@@", | 869 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 860 "@@@STEP_LOG_LINE@json.output@ }@@@", | 870 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 861 "@@@STEP_LOG_LINE@json.output@}@@@", | 871 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 862 "@@@STEP_LOG_END@json.output@@@", | 872 "@@@STEP_LOG_END@json.output@@@", |
| 863 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 873 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 864 ] | 874 ] |
| 865 }, | 875 }, |
| 866 { | 876 { |
| 867 "cmd": [ | 877 "cmd": [ |
| 868 "python", | 878 "python", |
| 869 "-u", | 879 "-u", |
| 870 "[CWD]/swarming.client/swarming.py", | 880 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 871 "trigger", | 881 "trigger", |
| 872 "--swarming", | 882 "--swarming", |
| 873 "https://chromium-swarm.appspot.com", | 883 "https://chromium-swarm.appspot.com", |
| 874 "--isolate-server", | 884 "--isolate-server", |
| 875 "https://isolateserver.appspot.com", | 885 "https://isolateserver.appspot.com", |
| 876 "--priority", | 886 "--priority", |
| 877 "25", | 887 "25", |
| 878 "--shards", | 888 "--shards", |
| 879 "2", | 889 "2", |
| 880 "--task-name", | 890 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 "--timeout=200", | 945 "--timeout=200", |
| 936 "--random-seed=-1038184575", | 946 "--random-seed=-1038184575", |
| 937 "bot_default", | 947 "bot_default", |
| 938 "--exhaustive-variants", | 948 "--exhaustive-variants", |
| 939 "--isolates", | 949 "--isolates", |
| 940 "--rerun-failures-count=2", | 950 "--rerun-failures-count=2", |
| 941 "--swarming", | 951 "--swarming", |
| 942 "--json-test-results", | 952 "--json-test-results", |
| 943 "${ISOLATED_OUTDIR}/output.json" | 953 "${ISOLATED_OUTDIR}/output.json" |
| 944 ], | 954 ], |
| 955 "cwd": "[SLAVE_BUILD]", |
| 945 "name": "[trigger] Check - isolates on Ubuntu-12.04", | 956 "name": "[trigger] Check - isolates on Ubuntu-12.04", |
| 946 "~followup_annotations": [ | 957 "~followup_annotations": [ |
| 947 "@@@STEP_LOG_LINE@json.output@{@@@", | 958 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 948 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check - isolates/Ubu
ntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 959 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check - isolates/Ubu
ntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 949 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 960 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 950 "@@@STEP_LOG_LINE@json.output@ \"Check - isolates/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571:2:0\": {@@@", | 961 "@@@STEP_LOG_LINE@json.output@ \"Check - isolates/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571:2:0\": {@@@", |
| 951 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 962 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 952 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 963 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 953 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 964 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 954 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 965 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| 955 "@@@STEP_LOG_LINE@json.output@ \"Check - isolates/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571:2:1\": {@@@", | 966 "@@@STEP_LOG_LINE@json.output@ \"Check - isolates/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571:2:1\": {@@@", |
| 956 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 1, @@@", | 967 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 1, @@@", |
| 957 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10100\", @@@", | 968 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10100\", @@@", |
| 958 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10100\"@@@", | 969 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10100\"@@@", |
| 959 "@@@STEP_LOG_LINE@json.output@ }@@@", | 970 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 960 "@@@STEP_LOG_LINE@json.output@ }@@@", | 971 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 961 "@@@STEP_LOG_LINE@json.output@}@@@", | 972 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 962 "@@@STEP_LOG_END@json.output@@@", | 973 "@@@STEP_LOG_END@json.output@@@", |
| 963 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", | 974 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", |
| 964 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@" | 975 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@" |
| 965 ] | 976 ] |
| 966 }, | 977 }, |
| 967 { | 978 { |
| 968 "cmd": [ | 979 "cmd": [ |
| 969 "python", | 980 "python", |
| 970 "-u", | 981 "-u", |
| 971 "[CWD]/swarming.client/swarming.py", | 982 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 972 "trigger", | 983 "trigger", |
| 973 "--swarming", | 984 "--swarming", |
| 974 "https://chromium-swarm.appspot.com", | 985 "https://chromium-swarm.appspot.com", |
| 975 "--isolate-server", | 986 "--isolate-server", |
| 976 "https://isolateserver.appspot.com", | 987 "https://isolateserver.appspot.com", |
| 977 "--priority", | 988 "--priority", |
| 978 "25", | 989 "25", |
| 979 "--shards", | 990 "--shards", |
| 980 "1", | 991 "1", |
| 981 "--task-name", | 992 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 "--random-seed=-1038184575", | 1048 "--random-seed=-1038184575", |
| 1038 "bot_default", | 1049 "bot_default", |
| 1039 "--exhaustive-variants", | 1050 "--exhaustive-variants", |
| 1040 "--extra-flags", | 1051 "--extra-flags", |
| 1041 "--noenable-sse3 --noenable-avx", | 1052 "--noenable-sse3 --noenable-avx", |
| 1042 "--rerun-failures-count=2", | 1053 "--rerun-failures-count=2", |
| 1043 "--swarming", | 1054 "--swarming", |
| 1044 "--json-test-results", | 1055 "--json-test-results", |
| 1045 "${ISOLATED_OUTDIR}/output.json" | 1056 "${ISOLATED_OUTDIR}/output.json" |
| 1046 ], | 1057 ], |
| 1058 "cwd": "[SLAVE_BUILD]", |
| 1047 "name": "[trigger] Check - nosse3 on Ubuntu-12.04", | 1059 "name": "[trigger] Check - nosse3 on Ubuntu-12.04", |
| 1048 "~followup_annotations": [ | 1060 "~followup_annotations": [ |
| 1049 "@@@STEP_LOG_LINE@json.output@{@@@", | 1061 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1050 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check - nosse3/Ubunt
u-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1062 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check - nosse3/Ubunt
u-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1051 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1063 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1052 "@@@STEP_LOG_LINE@json.output@ \"Check - nosse3/Ubuntu-12.04/[dummy has
/V8 Linux - debug/571\": {@@@", | 1064 "@@@STEP_LOG_LINE@json.output@ \"Check - nosse3/Ubuntu-12.04/[dummy has
/V8 Linux - debug/571\": {@@@", |
| 1053 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1065 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1054 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1066 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1055 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1067 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1056 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1068 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1057 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1069 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1058 "@@@STEP_LOG_LINE@json.output@}@@@", | 1070 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1059 "@@@STEP_LOG_END@json.output@@@", | 1071 "@@@STEP_LOG_END@json.output@@@", |
| 1060 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1072 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1061 ] | 1073 ] |
| 1062 }, | 1074 }, |
| 1063 { | 1075 { |
| 1064 "cmd": [ | 1076 "cmd": [ |
| 1065 "python", | 1077 "python", |
| 1066 "-u", | 1078 "-u", |
| 1067 "[CWD]/swarming.client/swarming.py", | 1079 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1068 "trigger", | 1080 "trigger", |
| 1069 "--swarming", | 1081 "--swarming", |
| 1070 "https://chromium-swarm.appspot.com", | 1082 "https://chromium-swarm.appspot.com", |
| 1071 "--isolate-server", | 1083 "--isolate-server", |
| 1072 "https://isolateserver.appspot.com", | 1084 "https://isolateserver.appspot.com", |
| 1073 "--priority", | 1085 "--priority", |
| 1074 "25", | 1086 "25", |
| 1075 "--shards", | 1087 "--shards", |
| 1076 "1", | 1088 "1", |
| 1077 "--task-name", | 1089 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1134 "test262", | 1146 "test262", |
| 1135 "--download-data", | 1147 "--download-data", |
| 1136 "--variants=default", | 1148 "--variants=default", |
| 1137 "--extra-flags", | 1149 "--extra-flags", |
| 1138 "--noenable-sse3 --noenable-avx", | 1150 "--noenable-sse3 --noenable-avx", |
| 1139 "--rerun-failures-count=2", | 1151 "--rerun-failures-count=2", |
| 1140 "--swarming", | 1152 "--swarming", |
| 1141 "--json-test-results", | 1153 "--json-test-results", |
| 1142 "${ISOLATED_OUTDIR}/output.json" | 1154 "${ISOLATED_OUTDIR}/output.json" |
| 1143 ], | 1155 ], |
| 1156 "cwd": "[SLAVE_BUILD]", |
| 1144 "name": "[trigger] Test262 - no variants - nosse3 on Ubuntu-12.04", | 1157 "name": "[trigger] Test262 - no variants - nosse3 on Ubuntu-12.04", |
| 1145 "~followup_annotations": [ | 1158 "~followup_annotations": [ |
| 1146 "@@@STEP_LOG_LINE@json.output@{@@@", | 1159 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1147 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - no variant
s - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1160 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - no variant
s - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1148 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1161 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1149 "@@@STEP_LOG_LINE@json.output@ \"Test262 - no variants - nosse3/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\": {@@@", | 1162 "@@@STEP_LOG_LINE@json.output@ \"Test262 - no variants - nosse3/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\": {@@@", |
| 1150 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1163 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1151 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1164 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1152 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1165 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1153 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1166 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1154 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1167 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1155 "@@@STEP_LOG_LINE@json.output@}@@@", | 1168 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1156 "@@@STEP_LOG_END@json.output@@@", | 1169 "@@@STEP_LOG_END@json.output@@@", |
| 1157 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1170 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1158 ] | 1171 ] |
| 1159 }, | 1172 }, |
| 1160 { | 1173 { |
| 1161 "cmd": [ | 1174 "cmd": [ |
| 1162 "python", | 1175 "python", |
| 1163 "-u", | 1176 "-u", |
| 1164 "[CWD]/swarming.client/swarming.py", | 1177 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1165 "trigger", | 1178 "trigger", |
| 1166 "--swarming", | 1179 "--swarming", |
| 1167 "https://chromium-swarm.appspot.com", | 1180 "https://chromium-swarm.appspot.com", |
| 1168 "--isolate-server", | 1181 "--isolate-server", |
| 1169 "https://isolateserver.appspot.com", | 1182 "https://isolateserver.appspot.com", |
| 1170 "--priority", | 1183 "--priority", |
| 1171 "25", | 1184 "25", |
| 1172 "--shards", | 1185 "--shards", |
| 1173 "1", | 1186 "1", |
| 1174 "--task-name", | 1187 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1230 "--random-seed=-1038184575", | 1243 "--random-seed=-1038184575", |
| 1231 "mozilla", | 1244 "mozilla", |
| 1232 "--exhaustive-variants", | 1245 "--exhaustive-variants", |
| 1233 "--extra-flags", | 1246 "--extra-flags", |
| 1234 "--noenable-sse3 --noenable-avx", | 1247 "--noenable-sse3 --noenable-avx", |
| 1235 "--rerun-failures-count=2", | 1248 "--rerun-failures-count=2", |
| 1236 "--swarming", | 1249 "--swarming", |
| 1237 "--json-test-results", | 1250 "--json-test-results", |
| 1238 "${ISOLATED_OUTDIR}/output.json" | 1251 "${ISOLATED_OUTDIR}/output.json" |
| 1239 ], | 1252 ], |
| 1253 "cwd": "[SLAVE_BUILD]", |
| 1240 "name": "[trigger] Mozilla - nosse3 on Ubuntu-12.04", | 1254 "name": "[trigger] Mozilla - nosse3 on Ubuntu-12.04", |
| 1241 "~followup_annotations": [ | 1255 "~followup_annotations": [ |
| 1242 "@@@STEP_LOG_LINE@json.output@{@@@", | 1256 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1243 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla - nosse3/Ubu
ntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1257 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla - nosse3/Ubu
ntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1244 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1258 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1245 "@@@STEP_LOG_LINE@json.output@ \"Mozilla - nosse3/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571\": {@@@", | 1259 "@@@STEP_LOG_LINE@json.output@ \"Mozilla - nosse3/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571\": {@@@", |
| 1246 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1260 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1247 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1261 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1248 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1262 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1249 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1263 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1250 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1264 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1251 "@@@STEP_LOG_LINE@json.output@}@@@", | 1265 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1252 "@@@STEP_LOG_END@json.output@@@", | 1266 "@@@STEP_LOG_END@json.output@@@", |
| 1253 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1267 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1254 ] | 1268 ] |
| 1255 }, | 1269 }, |
| 1256 { | 1270 { |
| 1257 "cmd": [ | 1271 "cmd": [ |
| 1258 "python", | 1272 "python", |
| 1259 "-u", | 1273 "-u", |
| 1260 "[CWD]/swarming.client/swarming.py", | 1274 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1261 "trigger", | 1275 "trigger", |
| 1262 "--swarming", | 1276 "--swarming", |
| 1263 "https://chromium-swarm.appspot.com", | 1277 "https://chromium-swarm.appspot.com", |
| 1264 "--isolate-server", | 1278 "--isolate-server", |
| 1265 "https://isolateserver.appspot.com", | 1279 "https://isolateserver.appspot.com", |
| 1266 "--priority", | 1280 "--priority", |
| 1267 "25", | 1281 "25", |
| 1268 "--shards", | 1282 "--shards", |
| 1269 "1", | 1283 "1", |
| 1270 "--task-name", | 1284 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 "simdjs", | 1341 "simdjs", |
| 1328 "--download-data", | 1342 "--download-data", |
| 1329 "--exhaustive-variants", | 1343 "--exhaustive-variants", |
| 1330 "--extra-flags", | 1344 "--extra-flags", |
| 1331 "--noenable-sse3 --noenable-avx", | 1345 "--noenable-sse3 --noenable-avx", |
| 1332 "--rerun-failures-count=2", | 1346 "--rerun-failures-count=2", |
| 1333 "--swarming", | 1347 "--swarming", |
| 1334 "--json-test-results", | 1348 "--json-test-results", |
| 1335 "${ISOLATED_OUTDIR}/output.json" | 1349 "${ISOLATED_OUTDIR}/output.json" |
| 1336 ], | 1350 ], |
| 1351 "cwd": "[SLAVE_BUILD]", |
| 1337 "name": "[trigger] SimdJs - all - nosse3 on Ubuntu-12.04", | 1352 "name": "[trigger] SimdJs - all - nosse3 on Ubuntu-12.04", |
| 1338 "~followup_annotations": [ | 1353 "~followup_annotations": [ |
| 1339 "@@@STEP_LOG_LINE@json.output@{@@@", | 1354 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1340 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all - nosse
3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1355 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all - nosse
3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1341 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1356 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1342 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all - nosse3/Ubuntu-12.04/[du
mmy has/V8 Linux - debug/571\": {@@@", | 1357 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all - nosse3/Ubuntu-12.04/[du
mmy has/V8 Linux - debug/571\": {@@@", |
| 1343 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1358 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1344 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1359 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1345 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1360 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1346 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1361 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1347 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1362 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1348 "@@@STEP_LOG_LINE@json.output@}@@@", | 1363 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1349 "@@@STEP_LOG_END@json.output@@@", | 1364 "@@@STEP_LOG_END@json.output@@@", |
| 1350 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1365 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1351 ] | 1366 ] |
| 1352 }, | 1367 }, |
| 1353 { | 1368 { |
| 1354 "cmd": [ | 1369 "cmd": [ |
| 1355 "python", | 1370 "python", |
| 1356 "-u", | 1371 "-u", |
| 1357 "[CWD]/swarming.client/swarming.py", | 1372 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1358 "trigger", | 1373 "trigger", |
| 1359 "--swarming", | 1374 "--swarming", |
| 1360 "https://chromium-swarm.appspot.com", | 1375 "https://chromium-swarm.appspot.com", |
| 1361 "--isolate-server", | 1376 "--isolate-server", |
| 1362 "https://isolateserver.appspot.com", | 1377 "https://isolateserver.appspot.com", |
| 1363 "--priority", | 1378 "--priority", |
| 1364 "25", | 1379 "25", |
| 1365 "--shards", | 1380 "--shards", |
| 1366 "1", | 1381 "1", |
| 1367 "--task-name", | 1382 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 "--random-seed=-1038184575", | 1438 "--random-seed=-1038184575", |
| 1424 "bot_default", | 1439 "bot_default", |
| 1425 "--exhaustive-variants", | 1440 "--exhaustive-variants", |
| 1426 "--extra-flags", | 1441 "--extra-flags", |
| 1427 "--noenable-sse4-1 --noenable-avx", | 1442 "--noenable-sse4-1 --noenable-avx", |
| 1428 "--rerun-failures-count=2", | 1443 "--rerun-failures-count=2", |
| 1429 "--swarming", | 1444 "--swarming", |
| 1430 "--json-test-results", | 1445 "--json-test-results", |
| 1431 "${ISOLATED_OUTDIR}/output.json" | 1446 "${ISOLATED_OUTDIR}/output.json" |
| 1432 ], | 1447 ], |
| 1448 "cwd": "[SLAVE_BUILD]", |
| 1433 "name": "[trigger] Check - nosse4 on Ubuntu-12.04", | 1449 "name": "[trigger] Check - nosse4 on Ubuntu-12.04", |
| 1434 "~followup_annotations": [ | 1450 "~followup_annotations": [ |
| 1435 "@@@STEP_LOG_LINE@json.output@{@@@", | 1451 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1436 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check - nosse4/Ubunt
u-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1452 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check - nosse4/Ubunt
u-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1437 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1453 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1438 "@@@STEP_LOG_LINE@json.output@ \"Check - nosse4/Ubuntu-12.04/[dummy has
/V8 Linux - debug/571\": {@@@", | 1454 "@@@STEP_LOG_LINE@json.output@ \"Check - nosse4/Ubuntu-12.04/[dummy has
/V8 Linux - debug/571\": {@@@", |
| 1439 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1455 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1440 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1456 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1441 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1457 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1442 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1458 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1443 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1459 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1444 "@@@STEP_LOG_LINE@json.output@}@@@", | 1460 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1445 "@@@STEP_LOG_END@json.output@@@", | 1461 "@@@STEP_LOG_END@json.output@@@", |
| 1446 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1462 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1447 ] | 1463 ] |
| 1448 }, | 1464 }, |
| 1449 { | 1465 { |
| 1450 "cmd": [ | 1466 "cmd": [ |
| 1451 "python", | 1467 "python", |
| 1452 "-u", | 1468 "-u", |
| 1453 "[CWD]/swarming.client/swarming.py", | 1469 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1454 "trigger", | 1470 "trigger", |
| 1455 "--swarming", | 1471 "--swarming", |
| 1456 "https://chromium-swarm.appspot.com", | 1472 "https://chromium-swarm.appspot.com", |
| 1457 "--isolate-server", | 1473 "--isolate-server", |
| 1458 "https://isolateserver.appspot.com", | 1474 "https://isolateserver.appspot.com", |
| 1459 "--priority", | 1475 "--priority", |
| 1460 "25", | 1476 "25", |
| 1461 "--shards", | 1477 "--shards", |
| 1462 "1", | 1478 "1", |
| 1463 "--task-name", | 1479 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1520 "test262", | 1536 "test262", |
| 1521 "--download-data", | 1537 "--download-data", |
| 1522 "--variants=default", | 1538 "--variants=default", |
| 1523 "--extra-flags", | 1539 "--extra-flags", |
| 1524 "--noenable-sse4-1 --noenable-avx", | 1540 "--noenable-sse4-1 --noenable-avx", |
| 1525 "--rerun-failures-count=2", | 1541 "--rerun-failures-count=2", |
| 1526 "--swarming", | 1542 "--swarming", |
| 1527 "--json-test-results", | 1543 "--json-test-results", |
| 1528 "${ISOLATED_OUTDIR}/output.json" | 1544 "${ISOLATED_OUTDIR}/output.json" |
| 1529 ], | 1545 ], |
| 1546 "cwd": "[SLAVE_BUILD]", |
| 1530 "name": "[trigger] Test262 - no variants - nosse4 on Ubuntu-12.04", | 1547 "name": "[trigger] Test262 - no variants - nosse4 on Ubuntu-12.04", |
| 1531 "~followup_annotations": [ | 1548 "~followup_annotations": [ |
| 1532 "@@@STEP_LOG_LINE@json.output@{@@@", | 1549 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1533 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - no variant
s - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1550 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - no variant
s - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1534 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1551 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1535 "@@@STEP_LOG_LINE@json.output@ \"Test262 - no variants - nosse4/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\": {@@@", | 1552 "@@@STEP_LOG_LINE@json.output@ \"Test262 - no variants - nosse4/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\": {@@@", |
| 1536 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1553 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1537 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1554 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1538 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1555 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1539 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1556 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1540 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1557 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1541 "@@@STEP_LOG_LINE@json.output@}@@@", | 1558 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1542 "@@@STEP_LOG_END@json.output@@@", | 1559 "@@@STEP_LOG_END@json.output@@@", |
| 1543 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1560 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1544 ] | 1561 ] |
| 1545 }, | 1562 }, |
| 1546 { | 1563 { |
| 1547 "cmd": [ | 1564 "cmd": [ |
| 1548 "python", | 1565 "python", |
| 1549 "-u", | 1566 "-u", |
| 1550 "[CWD]/swarming.client/swarming.py", | 1567 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1551 "trigger", | 1568 "trigger", |
| 1552 "--swarming", | 1569 "--swarming", |
| 1553 "https://chromium-swarm.appspot.com", | 1570 "https://chromium-swarm.appspot.com", |
| 1554 "--isolate-server", | 1571 "--isolate-server", |
| 1555 "https://isolateserver.appspot.com", | 1572 "https://isolateserver.appspot.com", |
| 1556 "--priority", | 1573 "--priority", |
| 1557 "25", | 1574 "25", |
| 1558 "--shards", | 1575 "--shards", |
| 1559 "1", | 1576 "1", |
| 1560 "--task-name", | 1577 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1616 "--random-seed=-1038184575", | 1633 "--random-seed=-1038184575", |
| 1617 "mozilla", | 1634 "mozilla", |
| 1618 "--exhaustive-variants", | 1635 "--exhaustive-variants", |
| 1619 "--extra-flags", | 1636 "--extra-flags", |
| 1620 "--noenable-sse4-1 --noenable-avx", | 1637 "--noenable-sse4-1 --noenable-avx", |
| 1621 "--rerun-failures-count=2", | 1638 "--rerun-failures-count=2", |
| 1622 "--swarming", | 1639 "--swarming", |
| 1623 "--json-test-results", | 1640 "--json-test-results", |
| 1624 "${ISOLATED_OUTDIR}/output.json" | 1641 "${ISOLATED_OUTDIR}/output.json" |
| 1625 ], | 1642 ], |
| 1643 "cwd": "[SLAVE_BUILD]", |
| 1626 "name": "[trigger] Mozilla - nosse4 on Ubuntu-12.04", | 1644 "name": "[trigger] Mozilla - nosse4 on Ubuntu-12.04", |
| 1627 "~followup_annotations": [ | 1645 "~followup_annotations": [ |
| 1628 "@@@STEP_LOG_LINE@json.output@{@@@", | 1646 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1629 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla - nosse4/Ubu
ntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1647 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla - nosse4/Ubu
ntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1630 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1648 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1631 "@@@STEP_LOG_LINE@json.output@ \"Mozilla - nosse4/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571\": {@@@", | 1649 "@@@STEP_LOG_LINE@json.output@ \"Mozilla - nosse4/Ubuntu-12.04/[dummy h
as/V8 Linux - debug/571\": {@@@", |
| 1632 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1650 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1633 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1651 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1634 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1652 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1635 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1653 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1636 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1654 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1637 "@@@STEP_LOG_LINE@json.output@}@@@", | 1655 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1638 "@@@STEP_LOG_END@json.output@@@", | 1656 "@@@STEP_LOG_END@json.output@@@", |
| 1639 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1657 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1640 ] | 1658 ] |
| 1641 }, | 1659 }, |
| 1642 { | 1660 { |
| 1643 "cmd": [ | 1661 "cmd": [ |
| 1644 "python", | 1662 "python", |
| 1645 "-u", | 1663 "-u", |
| 1646 "[CWD]/swarming.client/swarming.py", | 1664 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1647 "trigger", | 1665 "trigger", |
| 1648 "--swarming", | 1666 "--swarming", |
| 1649 "https://chromium-swarm.appspot.com", | 1667 "https://chromium-swarm.appspot.com", |
| 1650 "--isolate-server", | 1668 "--isolate-server", |
| 1651 "https://isolateserver.appspot.com", | 1669 "https://isolateserver.appspot.com", |
| 1652 "--priority", | 1670 "--priority", |
| 1653 "25", | 1671 "25", |
| 1654 "--shards", | 1672 "--shards", |
| 1655 "1", | 1673 "1", |
| 1656 "--task-name", | 1674 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1713 "simdjs", | 1731 "simdjs", |
| 1714 "--download-data", | 1732 "--download-data", |
| 1715 "--exhaustive-variants", | 1733 "--exhaustive-variants", |
| 1716 "--extra-flags", | 1734 "--extra-flags", |
| 1717 "--noenable-sse4-1 --noenable-avx", | 1735 "--noenable-sse4-1 --noenable-avx", |
| 1718 "--rerun-failures-count=2", | 1736 "--rerun-failures-count=2", |
| 1719 "--swarming", | 1737 "--swarming", |
| 1720 "--json-test-results", | 1738 "--json-test-results", |
| 1721 "${ISOLATED_OUTDIR}/output.json" | 1739 "${ISOLATED_OUTDIR}/output.json" |
| 1722 ], | 1740 ], |
| 1741 "cwd": "[SLAVE_BUILD]", |
| 1723 "name": "[trigger] SimdJs - all - nosse4 on Ubuntu-12.04", | 1742 "name": "[trigger] SimdJs - all - nosse4 on Ubuntu-12.04", |
| 1724 "~followup_annotations": [ | 1743 "~followup_annotations": [ |
| 1725 "@@@STEP_LOG_LINE@json.output@{@@@", | 1744 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1726 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all - nosse
4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1745 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all - nosse
4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1727 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1746 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1728 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all - nosse4/Ubuntu-12.04/[du
mmy has/V8 Linux - debug/571\": {@@@", | 1747 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all - nosse4/Ubuntu-12.04/[du
mmy has/V8 Linux - debug/571\": {@@@", |
| 1729 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1748 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1730 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1749 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1731 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1750 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1732 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1751 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1733 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1752 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1734 "@@@STEP_LOG_LINE@json.output@}@@@", | 1753 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1735 "@@@STEP_LOG_END@json.output@@@", | 1754 "@@@STEP_LOG_END@json.output@@@", |
| 1736 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1755 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1737 ] | 1756 ] |
| 1738 }, | 1757 }, |
| 1739 { | 1758 { |
| 1740 "cmd": [ | 1759 "cmd": [ |
| 1741 "python", | 1760 "python", |
| 1742 "-u", | 1761 "-u", |
| 1743 "[CWD]/swarming.client/swarming.py", | 1762 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1744 "trigger", | 1763 "trigger", |
| 1745 "--swarming", | 1764 "--swarming", |
| 1746 "https://chromium-swarm.appspot.com", | 1765 "https://chromium-swarm.appspot.com", |
| 1747 "--isolate-server", | 1766 "--isolate-server", |
| 1748 "https://isolateserver.appspot.com", | 1767 "https://isolateserver.appspot.com", |
| 1749 "--priority", | 1768 "--priority", |
| 1750 "25", | 1769 "25", |
| 1751 "--shards", | 1770 "--shards", |
| 1752 "1", | 1771 "1", |
| 1753 "--task-name", | 1772 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1809 "--random-seed=-1038184575", | 1828 "--random-seed=-1038184575", |
| 1810 "mjsunit", | 1829 "mjsunit", |
| 1811 "--variants=default", | 1830 "--variants=default", |
| 1812 "--extra-flags", | 1831 "--extra-flags", |
| 1813 "--serialize-toplevel --cache=code", | 1832 "--serialize-toplevel --cache=code", |
| 1814 "--rerun-failures-count=2", | 1833 "--rerun-failures-count=2", |
| 1815 "--swarming", | 1834 "--swarming", |
| 1816 "--json-test-results", | 1835 "--json-test-results", |
| 1817 "${ISOLATED_OUTDIR}/output.json" | 1836 "${ISOLATED_OUTDIR}/output.json" |
| 1818 ], | 1837 ], |
| 1838 "cwd": "[SLAVE_BUILD]", |
| 1819 "name": "[trigger] Mjsunit - code serializer on Ubuntu-12.04", | 1839 "name": "[trigger] Mjsunit - code serializer on Ubuntu-12.04", |
| 1820 "~followup_annotations": [ | 1840 "~followup_annotations": [ |
| 1821 "@@@STEP_LOG_LINE@json.output@{@@@", | 1841 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1822 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - code seria
lizer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1842 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - code seria
lizer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1823 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1843 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1824 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - code serializer/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\": {@@@", | 1844 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - code serializer/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\": {@@@", |
| 1825 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1845 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1826 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1846 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1827 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1847 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1828 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1848 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1829 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1849 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1830 "@@@STEP_LOG_LINE@json.output@}@@@", | 1850 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1831 "@@@STEP_LOG_END@json.output@@@", | 1851 "@@@STEP_LOG_END@json.output@@@", |
| 1832 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1852 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1833 ] | 1853 ] |
| 1834 }, | 1854 }, |
| 1835 { | 1855 { |
| 1836 "cmd": [ | 1856 "cmd": [ |
| 1837 "python", | 1857 "python", |
| 1838 "-u", | 1858 "-u", |
| 1839 "[CWD]/swarming.client/swarming.py", | 1859 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1840 "trigger", | 1860 "trigger", |
| 1841 "--swarming", | 1861 "--swarming", |
| 1842 "https://chromium-swarm.appspot.com", | 1862 "https://chromium-swarm.appspot.com", |
| 1843 "--isolate-server", | 1863 "--isolate-server", |
| 1844 "https://isolateserver.appspot.com", | 1864 "https://isolateserver.appspot.com", |
| 1845 "--priority", | 1865 "--priority", |
| 1846 "25", | 1866 "25", |
| 1847 "--shards", | 1867 "--shards", |
| 1848 "1", | 1868 "1", |
| 1849 "--task-name", | 1869 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1905 "--random-seed=-1038184575", | 1925 "--random-seed=-1038184575", |
| 1906 "mozilla", | 1926 "mozilla", |
| 1907 "--variants=default", | 1927 "--variants=default", |
| 1908 "--extra-flags", | 1928 "--extra-flags", |
| 1909 "--serialize-toplevel --cache=code", | 1929 "--serialize-toplevel --cache=code", |
| 1910 "--rerun-failures-count=2", | 1930 "--rerun-failures-count=2", |
| 1911 "--swarming", | 1931 "--swarming", |
| 1912 "--json-test-results", | 1932 "--json-test-results", |
| 1913 "${ISOLATED_OUTDIR}/output.json" | 1933 "${ISOLATED_OUTDIR}/output.json" |
| 1914 ], | 1934 ], |
| 1935 "cwd": "[SLAVE_BUILD]", |
| 1915 "name": "[trigger] Mozilla - code serializer on Ubuntu-12.04", | 1936 "name": "[trigger] Mozilla - code serializer on Ubuntu-12.04", |
| 1916 "~followup_annotations": [ | 1937 "~followup_annotations": [ |
| 1917 "@@@STEP_LOG_LINE@json.output@{@@@", | 1938 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1918 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla - code seria
lizer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 1939 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla - code seria
lizer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 1919 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1940 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 1920 "@@@STEP_LOG_LINE@json.output@ \"Mozilla - code serializer/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\": {@@@", | 1941 "@@@STEP_LOG_LINE@json.output@ \"Mozilla - code serializer/Ubuntu-12.04
/[dummy has/V8 Linux - debug/571\": {@@@", |
| 1921 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1942 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 1922 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1943 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 1923 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1944 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 1924 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1945 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1925 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1946 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 1926 "@@@STEP_LOG_LINE@json.output@}@@@", | 1947 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 1927 "@@@STEP_LOG_END@json.output@@@", | 1948 "@@@STEP_LOG_END@json.output@@@", |
| 1928 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1949 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 1929 ] | 1950 ] |
| 1930 }, | 1951 }, |
| 1931 { | 1952 { |
| 1932 "cmd": [ | 1953 "cmd": [ |
| 1933 "python", | 1954 "python", |
| 1934 "-u", | 1955 "-u", |
| 1935 "[CWD]/swarming.client/swarming.py", | 1956 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1936 "trigger", | 1957 "trigger", |
| 1937 "--swarming", | 1958 "--swarming", |
| 1938 "https://chromium-swarm.appspot.com", | 1959 "https://chromium-swarm.appspot.com", |
| 1939 "--isolate-server", | 1960 "--isolate-server", |
| 1940 "https://isolateserver.appspot.com", | 1961 "https://isolateserver.appspot.com", |
| 1941 "--priority", | 1962 "--priority", |
| 1942 "25", | 1963 "25", |
| 1943 "--shards", | 1964 "--shards", |
| 1944 "1", | 1965 "1", |
| 1945 "--task-name", | 1966 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2002 "test262", | 2023 "test262", |
| 2003 "--download-data", | 2024 "--download-data", |
| 2004 "--variants=default", | 2025 "--variants=default", |
| 2005 "--extra-flags", | 2026 "--extra-flags", |
| 2006 "--serialize-toplevel --cache=code", | 2027 "--serialize-toplevel --cache=code", |
| 2007 "--rerun-failures-count=2", | 2028 "--rerun-failures-count=2", |
| 2008 "--swarming", | 2029 "--swarming", |
| 2009 "--json-test-results", | 2030 "--json-test-results", |
| 2010 "${ISOLATED_OUTDIR}/output.json" | 2031 "${ISOLATED_OUTDIR}/output.json" |
| 2011 ], | 2032 ], |
| 2033 "cwd": "[SLAVE_BUILD]", |
| 2012 "name": "[trigger] Test262 - no variants - code serializer on Ubuntu-12.04", | 2034 "name": "[trigger] Test262 - no variants - code serializer on Ubuntu-12.04", |
| 2013 "~followup_annotations": [ | 2035 "~followup_annotations": [ |
| 2014 "@@@STEP_LOG_LINE@json.output@{@@@", | 2036 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 2015 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - no variant
s - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 2037 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - no variant
s - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 2016 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 2038 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 2017 "@@@STEP_LOG_LINE@json.output@ \"Test262 - no variants - code serialize
r/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\": {@@@", | 2039 "@@@STEP_LOG_LINE@json.output@ \"Test262 - no variants - code serialize
r/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\": {@@@", |
| 2018 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 2040 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 2019 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 2041 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 2020 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 2042 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 2021 "@@@STEP_LOG_LINE@json.output@ }@@@", | 2043 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 2022 "@@@STEP_LOG_LINE@json.output@ }@@@", | 2044 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 2023 "@@@STEP_LOG_LINE@json.output@}@@@", | 2045 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 2024 "@@@STEP_LOG_END@json.output@@@", | 2046 "@@@STEP_LOG_END@json.output@@@", |
| 2025 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 2047 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 2026 ] | 2048 ] |
| 2027 }, | 2049 }, |
| 2028 { | 2050 { |
| 2029 "cmd": [ | 2051 "cmd": [ |
| 2030 "python", | 2052 "python", |
| 2031 "-u", | 2053 "-u", |
| 2032 "[CWD]/swarming.client/swarming.py", | 2054 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 2033 "trigger", | 2055 "trigger", |
| 2034 "--swarming", | 2056 "--swarming", |
| 2035 "https://chromium-swarm.appspot.com", | 2057 "https://chromium-swarm.appspot.com", |
| 2036 "--isolate-server", | 2058 "--isolate-server", |
| 2037 "https://isolateserver.appspot.com", | 2059 "https://isolateserver.appspot.com", |
| 2038 "--priority", | 2060 "--priority", |
| 2039 "25", | 2061 "25", |
| 2040 "--shards", | 2062 "--shards", |
| 2041 "1", | 2063 "1", |
| 2042 "--task-name", | 2064 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2099 "benchmarks", | 2121 "benchmarks", |
| 2100 "--download-data", | 2122 "--download-data", |
| 2101 "--variants=default", | 2123 "--variants=default", |
| 2102 "--extra-flags", | 2124 "--extra-flags", |
| 2103 "--serialize-toplevel --cache=code", | 2125 "--serialize-toplevel --cache=code", |
| 2104 "--rerun-failures-count=2", | 2126 "--rerun-failures-count=2", |
| 2105 "--swarming", | 2127 "--swarming", |
| 2106 "--json-test-results", | 2128 "--json-test-results", |
| 2107 "${ISOLATED_OUTDIR}/output.json" | 2129 "${ISOLATED_OUTDIR}/output.json" |
| 2108 ], | 2130 ], |
| 2131 "cwd": "[SLAVE_BUILD]", |
| 2109 "name": "[trigger] Benchmarks - code serializer on Ubuntu-12.04", | 2132 "name": "[trigger] Benchmarks - code serializer on Ubuntu-12.04", |
| 2110 "~followup_annotations": [ | 2133 "~followup_annotations": [ |
| 2111 "@@@STEP_LOG_LINE@json.output@{@@@", | 2134 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 2112 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks - code se
rializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 2135 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks - code se
rializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 2113 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 2136 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 2114 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks - code serializer/Ubuntu-12
.04/[dummy has/V8 Linux - debug/571\": {@@@", | 2137 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks - code serializer/Ubuntu-12
.04/[dummy has/V8 Linux - debug/571\": {@@@", |
| 2115 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 2138 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 2116 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 2139 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 2117 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 2140 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 2118 "@@@STEP_LOG_LINE@json.output@ }@@@", | 2141 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 2119 "@@@STEP_LOG_LINE@json.output@ }@@@", | 2142 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 2120 "@@@STEP_LOG_LINE@json.output@}@@@", | 2143 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 2121 "@@@STEP_LOG_END@json.output@@@", | 2144 "@@@STEP_LOG_END@json.output@@@", |
| 2122 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 2145 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 2123 ] | 2146 ] |
| 2124 }, | 2147 }, |
| 2125 { | 2148 { |
| 2126 "cmd": [ | 2149 "cmd": [ |
| 2127 "python", | 2150 "python", |
| 2128 "-u", | 2151 "-u", |
| 2129 "[CWD]/swarming.client/swarming.py", | 2152 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 2130 "trigger", | 2153 "trigger", |
| 2131 "--swarming", | 2154 "--swarming", |
| 2132 "https://chromium-swarm.appspot.com", | 2155 "https://chromium-swarm.appspot.com", |
| 2133 "--isolate-server", | 2156 "--isolate-server", |
| 2134 "https://isolateserver.appspot.com", | 2157 "https://isolateserver.appspot.com", |
| 2135 "--priority", | 2158 "--priority", |
| 2136 "25", | 2159 "25", |
| 2137 "--shards", | 2160 "--shards", |
| 2138 "1", | 2161 "1", |
| 2139 "--task-name", | 2162 "--task-name", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2196 "simdjs", | 2219 "simdjs", |
| 2197 "--download-data", | 2220 "--download-data", |
| 2198 "--variants=default", | 2221 "--variants=default", |
| 2199 "--extra-flags", | 2222 "--extra-flags", |
| 2200 "--serialize-toplevel --cache=code", | 2223 "--serialize-toplevel --cache=code", |
| 2201 "--rerun-failures-count=2", | 2224 "--rerun-failures-count=2", |
| 2202 "--swarming", | 2225 "--swarming", |
| 2203 "--json-test-results", | 2226 "--json-test-results", |
| 2204 "${ISOLATED_OUTDIR}/output.json" | 2227 "${ISOLATED_OUTDIR}/output.json" |
| 2205 ], | 2228 ], |
| 2229 "cwd": "[SLAVE_BUILD]", |
| 2206 "name": "[trigger] SimdJs - all - code serializer on Ubuntu-12.04", | 2230 "name": "[trigger] SimdJs - all - code serializer on Ubuntu-12.04", |
| 2207 "~followup_annotations": [ | 2231 "~followup_annotations": [ |
| 2208 "@@@STEP_LOG_LINE@json.output@{@@@", | 2232 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 2209 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all - code
serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", | 2233 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all - code
serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571\", @@@", |
| 2210 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 2234 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 2211 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all - code serializer/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\": {@@@", | 2235 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all - code serializer/Ubuntu-
12.04/[dummy has/V8 Linux - debug/571\": {@@@", |
| 2212 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 2236 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 2213 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 2237 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 2214 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 2238 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 2215 "@@@STEP_LOG_LINE@json.output@ }@@@", | 2239 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 2216 "@@@STEP_LOG_LINE@json.output@ }@@@", | 2240 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 2217 "@@@STEP_LOG_LINE@json.output@}@@@", | 2241 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 2218 "@@@STEP_LOG_END@json.output@@@", | 2242 "@@@STEP_LOG_END@json.output@@@", |
| 2219 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 2243 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 2220 ] | 2244 ] |
| 2221 }, | 2245 }, |
| 2222 { | 2246 { |
| 2223 "allow_subannotations": true, | 2247 "allow_subannotations": true, |
| 2224 "cmd": [ | 2248 "cmd": [ |
| 2225 "python", | 2249 "python", |
| 2226 "-u", | 2250 "-u", |
| 2227 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2251 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2228 "--swarming-client-dir", | 2252 "--swarming-client-dir", |
| 2229 "[CWD]/swarming.client", | 2253 "[SLAVE_BUILD]/swarming.client", |
| 2230 "--temp-root-dir", | 2254 "--temp-root-dir", |
| 2231 "[TMP]", | 2255 "[TMP_BASE]", |
| 2232 "--merged-test-output", | 2256 "--merged-test-output", |
| 2233 "/path/to/tmp/json", | 2257 "/path/to/tmp/json", |
| 2234 "--", | 2258 "--", |
| 2235 "collect", | 2259 "collect", |
| 2236 "--swarming", | 2260 "--swarming", |
| 2237 "https://chromium-swarm.appspot.com", | 2261 "https://chromium-swarm.appspot.com", |
| 2238 "--decorate", | 2262 "--decorate", |
| 2239 "--print-status-updates", | 2263 "--print-status-updates", |
| 2240 "--shards", | 2264 "--shards", |
| 2241 "1", | 2265 "1", |
| 2242 "Check/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2266 "Check/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2243 ], | 2267 ], |
| 2268 "cwd": "[SLAVE_BUILD]", |
| 2244 "name": "Check", | 2269 "name": "Check", |
| 2245 "~followup_annotations": [ | 2270 "~followup_annotations": [ |
| 2246 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2271 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2247 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2272 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2248 "@@@STEP_LOG_LINE@durations@@@@", | 2273 "@@@STEP_LOG_LINE@durations@@@@", |
| 2249 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2274 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2250 "@@@STEP_LOG_LINE@durations@@@@", | 2275 "@@@STEP_LOG_LINE@durations@@@@", |
| 2251 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2276 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2252 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2277 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2253 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2278 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2254 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2279 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2255 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2280 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2256 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2281 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2257 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2282 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2258 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2283 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2259 "@@@STEP_LOG_END@durations@@@" | 2284 "@@@STEP_LOG_END@durations@@@" |
| 2260 ] | 2285 ] |
| 2261 }, | 2286 }, |
| 2262 { | 2287 { |
| 2263 "allow_subannotations": true, | 2288 "allow_subannotations": true, |
| 2264 "cmd": [ | 2289 "cmd": [ |
| 2265 "python", | 2290 "python", |
| 2266 "-u", | 2291 "-u", |
| 2267 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2292 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2268 "--swarming-client-dir", | 2293 "--swarming-client-dir", |
| 2269 "[CWD]/swarming.client", | 2294 "[SLAVE_BUILD]/swarming.client", |
| 2270 "--temp-root-dir", | 2295 "--temp-root-dir", |
| 2271 "[TMP]", | 2296 "[TMP_BASE]", |
| 2272 "--merged-test-output", | 2297 "--merged-test-output", |
| 2273 "/path/to/tmp/json", | 2298 "/path/to/tmp/json", |
| 2274 "--", | 2299 "--", |
| 2275 "collect", | 2300 "collect", |
| 2276 "--swarming", | 2301 "--swarming", |
| 2277 "https://chromium-swarm.appspot.com", | 2302 "https://chromium-swarm.appspot.com", |
| 2278 "--decorate", | 2303 "--decorate", |
| 2279 "--print-status-updates", | 2304 "--print-status-updates", |
| 2280 "--shards", | 2305 "--shards", |
| 2281 "1", | 2306 "1", |
| 2282 "Benchmarks/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2307 "Benchmarks/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2283 ], | 2308 ], |
| 2309 "cwd": "[SLAVE_BUILD]", |
| 2284 "name": "Benchmarks", | 2310 "name": "Benchmarks", |
| 2285 "~followup_annotations": [ | 2311 "~followup_annotations": [ |
| 2286 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2312 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2287 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2313 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2288 "@@@STEP_LOG_LINE@durations@@@@", | 2314 "@@@STEP_LOG_LINE@durations@@@@", |
| 2289 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2315 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2290 "@@@STEP_LOG_LINE@durations@@@@", | 2316 "@@@STEP_LOG_LINE@durations@@@@", |
| 2291 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2317 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2292 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2318 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2293 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2319 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2294 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2320 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2295 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2321 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2296 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2322 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2297 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2323 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2298 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2324 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2299 "@@@STEP_LOG_END@durations@@@" | 2325 "@@@STEP_LOG_END@durations@@@" |
| 2300 ] | 2326 ] |
| 2301 }, | 2327 }, |
| 2302 { | 2328 { |
| 2303 "allow_subannotations": true, | 2329 "allow_subannotations": true, |
| 2304 "cmd": [ | 2330 "cmd": [ |
| 2305 "python", | 2331 "python", |
| 2306 "-u", | 2332 "-u", |
| 2307 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2333 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2308 "--swarming-client-dir", | 2334 "--swarming-client-dir", |
| 2309 "[CWD]/swarming.client", | 2335 "[SLAVE_BUILD]/swarming.client", |
| 2310 "--temp-root-dir", | 2336 "--temp-root-dir", |
| 2311 "[TMP]", | 2337 "[TMP_BASE]", |
| 2312 "--merged-test-output", | 2338 "--merged-test-output", |
| 2313 "/path/to/tmp/json", | 2339 "/path/to/tmp/json", |
| 2314 "--", | 2340 "--", |
| 2315 "collect", | 2341 "collect", |
| 2316 "--swarming", | 2342 "--swarming", |
| 2317 "https://chromium-swarm.appspot.com", | 2343 "https://chromium-swarm.appspot.com", |
| 2318 "--decorate", | 2344 "--decorate", |
| 2319 "--print-status-updates", | 2345 "--print-status-updates", |
| 2320 "--shards", | 2346 "--shards", |
| 2321 "3", | 2347 "3", |
| 2322 "Test262/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2348 "Test262/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2323 ], | 2349 ], |
| 2350 "cwd": "[SLAVE_BUILD]", |
| 2324 "name": "Test262", | 2351 "name": "Test262", |
| 2325 "~followup_annotations": [ | 2352 "~followup_annotations": [ |
| 2326 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2353 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2327 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2354 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2328 "@@@STEP_LOG_LINE@durations@@@@", | 2355 "@@@STEP_LOG_LINE@durations@@@@", |
| 2329 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2356 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2330 "@@@STEP_LOG_LINE@durations@@@@", | 2357 "@@@STEP_LOG_LINE@durations@@@@", |
| 2331 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2358 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2332 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2359 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2333 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2360 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2334 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2361 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2335 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2362 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2336 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2363 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2337 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2364 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2338 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2365 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2339 "@@@STEP_LOG_END@durations@@@" | 2366 "@@@STEP_LOG_END@durations@@@" |
| 2340 ] | 2367 ] |
| 2341 }, | 2368 }, |
| 2342 { | 2369 { |
| 2343 "allow_subannotations": true, | 2370 "allow_subannotations": true, |
| 2344 "cmd": [ | 2371 "cmd": [ |
| 2345 "python", | 2372 "python", |
| 2346 "-u", | 2373 "-u", |
| 2347 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2374 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2348 "--swarming-client-dir", | 2375 "--swarming-client-dir", |
| 2349 "[CWD]/swarming.client", | 2376 "[SLAVE_BUILD]/swarming.client", |
| 2350 "--temp-root-dir", | 2377 "--temp-root-dir", |
| 2351 "[TMP]", | 2378 "[TMP_BASE]", |
| 2352 "--merged-test-output", | 2379 "--merged-test-output", |
| 2353 "/path/to/tmp/json", | 2380 "/path/to/tmp/json", |
| 2354 "--", | 2381 "--", |
| 2355 "collect", | 2382 "collect", |
| 2356 "--swarming", | 2383 "--swarming", |
| 2357 "https://chromium-swarm.appspot.com", | 2384 "https://chromium-swarm.appspot.com", |
| 2358 "--decorate", | 2385 "--decorate", |
| 2359 "--print-status-updates", | 2386 "--print-status-updates", |
| 2360 "--shards", | 2387 "--shards", |
| 2361 "1", | 2388 "1", |
| 2362 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2389 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2363 ], | 2390 ], |
| 2391 "cwd": "[SLAVE_BUILD]", |
| 2364 "name": "Mozilla", | 2392 "name": "Mozilla", |
| 2365 "~followup_annotations": [ | 2393 "~followup_annotations": [ |
| 2366 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2394 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2367 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2395 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2368 "@@@STEP_LOG_LINE@durations@@@@", | 2396 "@@@STEP_LOG_LINE@durations@@@@", |
| 2369 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2397 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2370 "@@@STEP_LOG_LINE@durations@@@@", | 2398 "@@@STEP_LOG_LINE@durations@@@@", |
| 2371 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2399 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2372 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2400 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2373 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2401 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2374 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2402 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2375 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2403 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2376 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2404 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2377 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2405 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2378 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2406 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2379 "@@@STEP_LOG_END@durations@@@" | 2407 "@@@STEP_LOG_END@durations@@@" |
| 2380 ] | 2408 ] |
| 2381 }, | 2409 }, |
| 2382 { | 2410 { |
| 2383 "allow_subannotations": true, | 2411 "allow_subannotations": true, |
| 2384 "cmd": [ | 2412 "cmd": [ |
| 2385 "python", | 2413 "python", |
| 2386 "-u", | 2414 "-u", |
| 2387 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2415 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2388 "--swarming-client-dir", | 2416 "--swarming-client-dir", |
| 2389 "[CWD]/swarming.client", | 2417 "[SLAVE_BUILD]/swarming.client", |
| 2390 "--temp-root-dir", | 2418 "--temp-root-dir", |
| 2391 "[TMP]", | 2419 "[TMP_BASE]", |
| 2392 "--merged-test-output", | 2420 "--merged-test-output", |
| 2393 "/path/to/tmp/json", | 2421 "/path/to/tmp/json", |
| 2394 "--", | 2422 "--", |
| 2395 "collect", | 2423 "collect", |
| 2396 "--swarming", | 2424 "--swarming", |
| 2397 "https://chromium-swarm.appspot.com", | 2425 "https://chromium-swarm.appspot.com", |
| 2398 "--decorate", | 2426 "--decorate", |
| 2399 "--print-status-updates", | 2427 "--print-status-updates", |
| 2400 "--shards", | 2428 "--shards", |
| 2401 "1", | 2429 "1", |
| 2402 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2430 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2403 ], | 2431 ], |
| 2432 "cwd": "[SLAVE_BUILD]", |
| 2404 "name": "SimdJs - all", | 2433 "name": "SimdJs - all", |
| 2405 "~followup_annotations": [ | 2434 "~followup_annotations": [ |
| 2406 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2435 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2407 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2436 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2408 "@@@STEP_LOG_LINE@durations@@@@", | 2437 "@@@STEP_LOG_LINE@durations@@@@", |
| 2409 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2438 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2410 "@@@STEP_LOG_LINE@durations@@@@", | 2439 "@@@STEP_LOG_LINE@durations@@@@", |
| 2411 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2440 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2412 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2441 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2413 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2442 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2414 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2443 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2415 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2444 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2416 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2445 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2417 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2446 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2418 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2447 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2419 "@@@STEP_LOG_END@durations@@@" | 2448 "@@@STEP_LOG_END@durations@@@" |
| 2420 ] | 2449 ] |
| 2421 }, | 2450 }, |
| 2422 { | 2451 { |
| 2423 "allow_subannotations": true, | 2452 "allow_subannotations": true, |
| 2424 "cmd": [ | 2453 "cmd": [ |
| 2425 "python", | 2454 "python", |
| 2426 "-u", | 2455 "-u", |
| 2427 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2456 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2428 "--swarming-client-dir", | 2457 "--swarming-client-dir", |
| 2429 "[CWD]/swarming.client", | 2458 "[SLAVE_BUILD]/swarming.client", |
| 2430 "--temp-root-dir", | 2459 "--temp-root-dir", |
| 2431 "[TMP]", | 2460 "[TMP_BASE]", |
| 2432 "--merged-test-output", | 2461 "--merged-test-output", |
| 2433 "/path/to/tmp/json", | 2462 "/path/to/tmp/json", |
| 2434 "--", | 2463 "--", |
| 2435 "collect", | 2464 "collect", |
| 2436 "--swarming", | 2465 "--swarming", |
| 2437 "https://chromium-swarm.appspot.com", | 2466 "https://chromium-swarm.appspot.com", |
| 2438 "--decorate", | 2467 "--decorate", |
| 2439 "--print-status-updates", | 2468 "--print-status-updates", |
| 2440 "--shards", | 2469 "--shards", |
| 2441 "1", | 2470 "1", |
| 2442 "Ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2471 "Ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2443 ], | 2472 ], |
| 2473 "cwd": "[SLAVE_BUILD]", |
| 2444 "name": "Ignition - turbofan", | 2474 "name": "Ignition - turbofan", |
| 2445 "~followup_annotations": [ | 2475 "~followup_annotations": [ |
| 2446 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2476 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2447 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2477 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2448 "@@@STEP_LOG_LINE@durations@@@@", | 2478 "@@@STEP_LOG_LINE@durations@@@@", |
| 2449 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2479 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2450 "@@@STEP_LOG_LINE@durations@@@@", | 2480 "@@@STEP_LOG_LINE@durations@@@@", |
| 2451 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2481 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2452 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2482 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2453 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2483 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2454 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2484 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2455 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2485 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2456 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2486 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2457 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2487 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2458 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2488 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2459 "@@@STEP_LOG_END@durations@@@" | 2489 "@@@STEP_LOG_END@durations@@@" |
| 2460 ] | 2490 ] |
| 2461 }, | 2491 }, |
| 2462 { | 2492 { |
| 2463 "allow_subannotations": true, | 2493 "allow_subannotations": true, |
| 2464 "cmd": [ | 2494 "cmd": [ |
| 2465 "python", | 2495 "python", |
| 2466 "-u", | 2496 "-u", |
| 2467 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2497 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2468 "--swarming-client-dir", | 2498 "--swarming-client-dir", |
| 2469 "[CWD]/swarming.client", | 2499 "[SLAVE_BUILD]/swarming.client", |
| 2470 "--temp-root-dir", | 2500 "--temp-root-dir", |
| 2471 "[TMP]", | 2501 "[TMP_BASE]", |
| 2472 "--merged-test-output", | 2502 "--merged-test-output", |
| 2473 "/path/to/tmp/json", | 2503 "/path/to/tmp/json", |
| 2474 "--", | 2504 "--", |
| 2475 "collect", | 2505 "collect", |
| 2476 "--swarming", | 2506 "--swarming", |
| 2477 "https://chromium-swarm.appspot.com", | 2507 "https://chromium-swarm.appspot.com", |
| 2478 "--decorate", | 2508 "--decorate", |
| 2479 "--print-status-updates", | 2509 "--print-status-updates", |
| 2480 "--shards", | 2510 "--shards", |
| 2481 "1", | 2511 "1", |
| 2482 "Mjsunit - sp frame access/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2512 "Mjsunit - sp frame access/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2483 ], | 2513 ], |
| 2514 "cwd": "[SLAVE_BUILD]", |
| 2484 "name": "Mjsunit - sp frame access", | 2515 "name": "Mjsunit - sp frame access", |
| 2485 "~followup_annotations": [ | 2516 "~followup_annotations": [ |
| 2486 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2517 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2487 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2518 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2488 "@@@STEP_LOG_LINE@durations@@@@", | 2519 "@@@STEP_LOG_LINE@durations@@@@", |
| 2489 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2520 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2490 "@@@STEP_LOG_LINE@durations@@@@", | 2521 "@@@STEP_LOG_LINE@durations@@@@", |
| 2491 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2522 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2492 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2523 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2493 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2524 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2494 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2525 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2495 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2526 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2496 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2527 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2497 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2528 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2498 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2529 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2499 "@@@STEP_LOG_END@durations@@@" | 2530 "@@@STEP_LOG_END@durations@@@" |
| 2500 ] | 2531 ] |
| 2501 }, | 2532 }, |
| 2502 { | 2533 { |
| 2503 "allow_subannotations": true, | 2534 "allow_subannotations": true, |
| 2504 "cmd": [ | 2535 "cmd": [ |
| 2505 "python", | 2536 "python", |
| 2506 "-u", | 2537 "-u", |
| 2507 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2538 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2508 "--swarming-client-dir", | 2539 "--swarming-client-dir", |
| 2509 "[CWD]/swarming.client", | 2540 "[SLAVE_BUILD]/swarming.client", |
| 2510 "--temp-root-dir", | 2541 "--temp-root-dir", |
| 2511 "[TMP]", | 2542 "[TMP_BASE]", |
| 2512 "--merged-test-output", | 2543 "--merged-test-output", |
| 2513 "/path/to/tmp/json", | 2544 "/path/to/tmp/json", |
| 2514 "--", | 2545 "--", |
| 2515 "collect", | 2546 "collect", |
| 2516 "--swarming", | 2547 "--swarming", |
| 2517 "https://chromium-swarm.appspot.com", | 2548 "https://chromium-swarm.appspot.com", |
| 2518 "--decorate", | 2549 "--decorate", |
| 2519 "--print-status-updates", | 2550 "--print-status-updates", |
| 2520 "--shards", | 2551 "--shards", |
| 2521 "1", | 2552 "1", |
| 2522 "Test262 - ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux - debug/57
1" | 2553 "Test262 - ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux - debug/57
1" |
| 2523 ], | 2554 ], |
| 2555 "cwd": "[SLAVE_BUILD]", |
| 2524 "name": "Test262 - ignition - turbofan", | 2556 "name": "Test262 - ignition - turbofan", |
| 2525 "~followup_annotations": [ | 2557 "~followup_annotations": [ |
| 2526 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2558 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2527 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2559 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2528 "@@@STEP_LOG_LINE@durations@@@@", | 2560 "@@@STEP_LOG_LINE@durations@@@@", |
| 2529 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2561 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2530 "@@@STEP_LOG_LINE@durations@@@@", | 2562 "@@@STEP_LOG_LINE@durations@@@@", |
| 2531 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2563 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2532 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2564 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2533 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2565 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2534 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2566 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2535 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2567 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2536 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2568 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2537 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2569 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2538 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2570 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2539 "@@@STEP_LOG_END@durations@@@" | 2571 "@@@STEP_LOG_END@durations@@@" |
| 2540 ] | 2572 ] |
| 2541 }, | 2573 }, |
| 2542 { | 2574 { |
| 2543 "allow_subannotations": true, | 2575 "allow_subannotations": true, |
| 2544 "cmd": [ | 2576 "cmd": [ |
| 2545 "python", | 2577 "python", |
| 2546 "-u", | 2578 "-u", |
| 2547 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2579 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2548 "--swarming-client-dir", | 2580 "--swarming-client-dir", |
| 2549 "[CWD]/swarming.client", | 2581 "[SLAVE_BUILD]/swarming.client", |
| 2550 "--temp-root-dir", | 2582 "--temp-root-dir", |
| 2551 "[TMP]", | 2583 "[TMP_BASE]", |
| 2552 "--merged-test-output", | 2584 "--merged-test-output", |
| 2553 "/path/to/tmp/json", | 2585 "/path/to/tmp/json", |
| 2554 "--", | 2586 "--", |
| 2555 "collect", | 2587 "collect", |
| 2556 "--swarming", | 2588 "--swarming", |
| 2557 "https://chromium-swarm.appspot.com", | 2589 "https://chromium-swarm.appspot.com", |
| 2558 "--decorate", | 2590 "--decorate", |
| 2559 "--print-status-updates", | 2591 "--print-status-updates", |
| 2560 "--shards", | 2592 "--shards", |
| 2561 "2", | 2593 "2", |
| 2562 "Check - isolates/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2594 "Check - isolates/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2563 ], | 2595 ], |
| 2596 "cwd": "[SLAVE_BUILD]", |
| 2564 "name": "Check - isolates", | 2597 "name": "Check - isolates", |
| 2565 "~followup_annotations": [ | 2598 "~followup_annotations": [ |
| 2566 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2599 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2567 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2600 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2568 "@@@STEP_LOG_LINE@durations@@@@", | 2601 "@@@STEP_LOG_LINE@durations@@@@", |
| 2569 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2602 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2570 "@@@STEP_LOG_LINE@durations@@@@", | 2603 "@@@STEP_LOG_LINE@durations@@@@", |
| 2571 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2604 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2572 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2605 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2573 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2606 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2574 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2607 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2575 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2608 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2576 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2609 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2577 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2610 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2578 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2611 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2579 "@@@STEP_LOG_END@durations@@@" | 2612 "@@@STEP_LOG_END@durations@@@" |
| 2580 ] | 2613 ] |
| 2581 }, | 2614 }, |
| 2582 { | 2615 { |
| 2583 "allow_subannotations": true, | 2616 "allow_subannotations": true, |
| 2584 "cmd": [ | 2617 "cmd": [ |
| 2585 "python", | 2618 "python", |
| 2586 "-u", | 2619 "-u", |
| 2587 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2620 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2588 "--swarming-client-dir", | 2621 "--swarming-client-dir", |
| 2589 "[CWD]/swarming.client", | 2622 "[SLAVE_BUILD]/swarming.client", |
| 2590 "--temp-root-dir", | 2623 "--temp-root-dir", |
| 2591 "[TMP]", | 2624 "[TMP_BASE]", |
| 2592 "--merged-test-output", | 2625 "--merged-test-output", |
| 2593 "/path/to/tmp/json", | 2626 "/path/to/tmp/json", |
| 2594 "--", | 2627 "--", |
| 2595 "collect", | 2628 "collect", |
| 2596 "--swarming", | 2629 "--swarming", |
| 2597 "https://chromium-swarm.appspot.com", | 2630 "https://chromium-swarm.appspot.com", |
| 2598 "--decorate", | 2631 "--decorate", |
| 2599 "--print-status-updates", | 2632 "--print-status-updates", |
| 2600 "--shards", | 2633 "--shards", |
| 2601 "1", | 2634 "1", |
| 2602 "Check - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2635 "Check - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2603 ], | 2636 ], |
| 2637 "cwd": "[SLAVE_BUILD]", |
| 2604 "name": "Check - nosse3", | 2638 "name": "Check - nosse3", |
| 2605 "~followup_annotations": [ | 2639 "~followup_annotations": [ |
| 2606 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2640 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2607 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2641 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2608 "@@@STEP_LOG_LINE@durations@@@@", | 2642 "@@@STEP_LOG_LINE@durations@@@@", |
| 2609 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2643 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2610 "@@@STEP_LOG_LINE@durations@@@@", | 2644 "@@@STEP_LOG_LINE@durations@@@@", |
| 2611 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2645 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2612 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2646 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2613 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2647 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2614 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2648 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2615 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2649 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2616 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2650 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2617 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2651 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2618 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2652 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2619 "@@@STEP_LOG_END@durations@@@" | 2653 "@@@STEP_LOG_END@durations@@@" |
| 2620 ] | 2654 ] |
| 2621 }, | 2655 }, |
| 2622 { | 2656 { |
| 2623 "allow_subannotations": true, | 2657 "allow_subannotations": true, |
| 2624 "cmd": [ | 2658 "cmd": [ |
| 2625 "python", | 2659 "python", |
| 2626 "-u", | 2660 "-u", |
| 2627 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2661 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2628 "--swarming-client-dir", | 2662 "--swarming-client-dir", |
| 2629 "[CWD]/swarming.client", | 2663 "[SLAVE_BUILD]/swarming.client", |
| 2630 "--temp-root-dir", | 2664 "--temp-root-dir", |
| 2631 "[TMP]", | 2665 "[TMP_BASE]", |
| 2632 "--merged-test-output", | 2666 "--merged-test-output", |
| 2633 "/path/to/tmp/json", | 2667 "/path/to/tmp/json", |
| 2634 "--", | 2668 "--", |
| 2635 "collect", | 2669 "collect", |
| 2636 "--swarming", | 2670 "--swarming", |
| 2637 "https://chromium-swarm.appspot.com", | 2671 "https://chromium-swarm.appspot.com", |
| 2638 "--decorate", | 2672 "--decorate", |
| 2639 "--print-status-updates", | 2673 "--print-status-updates", |
| 2640 "--shards", | 2674 "--shards", |
| 2641 "1", | 2675 "1", |
| 2642 "Test262 - no variants - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/5
71" | 2676 "Test262 - no variants - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/5
71" |
| 2643 ], | 2677 ], |
| 2678 "cwd": "[SLAVE_BUILD]", |
| 2644 "name": "Test262 - no variants - nosse3", | 2679 "name": "Test262 - no variants - nosse3", |
| 2645 "~followup_annotations": [ | 2680 "~followup_annotations": [ |
| 2646 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2681 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2647 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2682 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2648 "@@@STEP_LOG_LINE@durations@@@@", | 2683 "@@@STEP_LOG_LINE@durations@@@@", |
| 2649 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2684 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2650 "@@@STEP_LOG_LINE@durations@@@@", | 2685 "@@@STEP_LOG_LINE@durations@@@@", |
| 2651 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2686 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2652 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2687 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2653 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2688 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2654 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2689 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2655 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2690 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2656 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2691 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2657 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2692 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2658 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2693 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2659 "@@@STEP_LOG_END@durations@@@" | 2694 "@@@STEP_LOG_END@durations@@@" |
| 2660 ] | 2695 ] |
| 2661 }, | 2696 }, |
| 2662 { | 2697 { |
| 2663 "allow_subannotations": true, | 2698 "allow_subannotations": true, |
| 2664 "cmd": [ | 2699 "cmd": [ |
| 2665 "python", | 2700 "python", |
| 2666 "-u", | 2701 "-u", |
| 2667 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2702 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2668 "--swarming-client-dir", | 2703 "--swarming-client-dir", |
| 2669 "[CWD]/swarming.client", | 2704 "[SLAVE_BUILD]/swarming.client", |
| 2670 "--temp-root-dir", | 2705 "--temp-root-dir", |
| 2671 "[TMP]", | 2706 "[TMP_BASE]", |
| 2672 "--merged-test-output", | 2707 "--merged-test-output", |
| 2673 "/path/to/tmp/json", | 2708 "/path/to/tmp/json", |
| 2674 "--", | 2709 "--", |
| 2675 "collect", | 2710 "collect", |
| 2676 "--swarming", | 2711 "--swarming", |
| 2677 "https://chromium-swarm.appspot.com", | 2712 "https://chromium-swarm.appspot.com", |
| 2678 "--decorate", | 2713 "--decorate", |
| 2679 "--print-status-updates", | 2714 "--print-status-updates", |
| 2680 "--shards", | 2715 "--shards", |
| 2681 "1", | 2716 "1", |
| 2682 "Mozilla - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2717 "Mozilla - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2683 ], | 2718 ], |
| 2719 "cwd": "[SLAVE_BUILD]", |
| 2684 "name": "Mozilla - nosse3", | 2720 "name": "Mozilla - nosse3", |
| 2685 "~followup_annotations": [ | 2721 "~followup_annotations": [ |
| 2686 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2722 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2687 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2723 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2688 "@@@STEP_LOG_LINE@durations@@@@", | 2724 "@@@STEP_LOG_LINE@durations@@@@", |
| 2689 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2725 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2690 "@@@STEP_LOG_LINE@durations@@@@", | 2726 "@@@STEP_LOG_LINE@durations@@@@", |
| 2691 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2727 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2692 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2728 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2693 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2729 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2694 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2730 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2695 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2731 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2696 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2732 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2697 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2733 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2698 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2734 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2699 "@@@STEP_LOG_END@durations@@@" | 2735 "@@@STEP_LOG_END@durations@@@" |
| 2700 ] | 2736 ] |
| 2701 }, | 2737 }, |
| 2702 { | 2738 { |
| 2703 "allow_subannotations": true, | 2739 "allow_subannotations": true, |
| 2704 "cmd": [ | 2740 "cmd": [ |
| 2705 "python", | 2741 "python", |
| 2706 "-u", | 2742 "-u", |
| 2707 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2743 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2708 "--swarming-client-dir", | 2744 "--swarming-client-dir", |
| 2709 "[CWD]/swarming.client", | 2745 "[SLAVE_BUILD]/swarming.client", |
| 2710 "--temp-root-dir", | 2746 "--temp-root-dir", |
| 2711 "[TMP]", | 2747 "[TMP_BASE]", |
| 2712 "--merged-test-output", | 2748 "--merged-test-output", |
| 2713 "/path/to/tmp/json", | 2749 "/path/to/tmp/json", |
| 2714 "--", | 2750 "--", |
| 2715 "collect", | 2751 "collect", |
| 2716 "--swarming", | 2752 "--swarming", |
| 2717 "https://chromium-swarm.appspot.com", | 2753 "https://chromium-swarm.appspot.com", |
| 2718 "--decorate", | 2754 "--decorate", |
| 2719 "--print-status-updates", | 2755 "--print-status-updates", |
| 2720 "--shards", | 2756 "--shards", |
| 2721 "1", | 2757 "1", |
| 2722 "SimdJs - all - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2758 "SimdJs - all - nosse3/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2723 ], | 2759 ], |
| 2760 "cwd": "[SLAVE_BUILD]", |
| 2724 "name": "SimdJs - all - nosse3", | 2761 "name": "SimdJs - all - nosse3", |
| 2725 "~followup_annotations": [ | 2762 "~followup_annotations": [ |
| 2726 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2763 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2727 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2764 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2728 "@@@STEP_LOG_LINE@durations@@@@", | 2765 "@@@STEP_LOG_LINE@durations@@@@", |
| 2729 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2766 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2730 "@@@STEP_LOG_LINE@durations@@@@", | 2767 "@@@STEP_LOG_LINE@durations@@@@", |
| 2731 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2768 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2732 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2769 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2733 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2770 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2734 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2771 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2735 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2772 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2736 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2773 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2737 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2774 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2738 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2775 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2739 "@@@STEP_LOG_END@durations@@@" | 2776 "@@@STEP_LOG_END@durations@@@" |
| 2740 ] | 2777 ] |
| 2741 }, | 2778 }, |
| 2742 { | 2779 { |
| 2743 "allow_subannotations": true, | 2780 "allow_subannotations": true, |
| 2744 "cmd": [ | 2781 "cmd": [ |
| 2745 "python", | 2782 "python", |
| 2746 "-u", | 2783 "-u", |
| 2747 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2784 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2748 "--swarming-client-dir", | 2785 "--swarming-client-dir", |
| 2749 "[CWD]/swarming.client", | 2786 "[SLAVE_BUILD]/swarming.client", |
| 2750 "--temp-root-dir", | 2787 "--temp-root-dir", |
| 2751 "[TMP]", | 2788 "[TMP_BASE]", |
| 2752 "--merged-test-output", | 2789 "--merged-test-output", |
| 2753 "/path/to/tmp/json", | 2790 "/path/to/tmp/json", |
| 2754 "--", | 2791 "--", |
| 2755 "collect", | 2792 "collect", |
| 2756 "--swarming", | 2793 "--swarming", |
| 2757 "https://chromium-swarm.appspot.com", | 2794 "https://chromium-swarm.appspot.com", |
| 2758 "--decorate", | 2795 "--decorate", |
| 2759 "--print-status-updates", | 2796 "--print-status-updates", |
| 2760 "--shards", | 2797 "--shards", |
| 2761 "1", | 2798 "1", |
| 2762 "Check - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2799 "Check - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2763 ], | 2800 ], |
| 2801 "cwd": "[SLAVE_BUILD]", |
| 2764 "name": "Check - nosse4", | 2802 "name": "Check - nosse4", |
| 2765 "~followup_annotations": [ | 2803 "~followup_annotations": [ |
| 2766 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2804 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2767 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2805 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2768 "@@@STEP_LOG_LINE@durations@@@@", | 2806 "@@@STEP_LOG_LINE@durations@@@@", |
| 2769 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2807 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2770 "@@@STEP_LOG_LINE@durations@@@@", | 2808 "@@@STEP_LOG_LINE@durations@@@@", |
| 2771 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2809 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2772 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2810 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2773 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2811 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2774 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2812 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2775 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2813 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2776 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2814 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2777 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2815 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2778 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2816 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2779 "@@@STEP_LOG_END@durations@@@" | 2817 "@@@STEP_LOG_END@durations@@@" |
| 2780 ] | 2818 ] |
| 2781 }, | 2819 }, |
| 2782 { | 2820 { |
| 2783 "allow_subannotations": true, | 2821 "allow_subannotations": true, |
| 2784 "cmd": [ | 2822 "cmd": [ |
| 2785 "python", | 2823 "python", |
| 2786 "-u", | 2824 "-u", |
| 2787 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2825 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2788 "--swarming-client-dir", | 2826 "--swarming-client-dir", |
| 2789 "[CWD]/swarming.client", | 2827 "[SLAVE_BUILD]/swarming.client", |
| 2790 "--temp-root-dir", | 2828 "--temp-root-dir", |
| 2791 "[TMP]", | 2829 "[TMP_BASE]", |
| 2792 "--merged-test-output", | 2830 "--merged-test-output", |
| 2793 "/path/to/tmp/json", | 2831 "/path/to/tmp/json", |
| 2794 "--", | 2832 "--", |
| 2795 "collect", | 2833 "collect", |
| 2796 "--swarming", | 2834 "--swarming", |
| 2797 "https://chromium-swarm.appspot.com", | 2835 "https://chromium-swarm.appspot.com", |
| 2798 "--decorate", | 2836 "--decorate", |
| 2799 "--print-status-updates", | 2837 "--print-status-updates", |
| 2800 "--shards", | 2838 "--shards", |
| 2801 "1", | 2839 "1", |
| 2802 "Test262 - no variants - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/5
71" | 2840 "Test262 - no variants - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/5
71" |
| 2803 ], | 2841 ], |
| 2842 "cwd": "[SLAVE_BUILD]", |
| 2804 "name": "Test262 - no variants - nosse4", | 2843 "name": "Test262 - no variants - nosse4", |
| 2805 "~followup_annotations": [ | 2844 "~followup_annotations": [ |
| 2806 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2845 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2807 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2846 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2808 "@@@STEP_LOG_LINE@durations@@@@", | 2847 "@@@STEP_LOG_LINE@durations@@@@", |
| 2809 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2848 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2810 "@@@STEP_LOG_LINE@durations@@@@", | 2849 "@@@STEP_LOG_LINE@durations@@@@", |
| 2811 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2850 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2812 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2851 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2813 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2852 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2814 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2853 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2815 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2854 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2816 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2855 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2817 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2856 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2818 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2857 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2819 "@@@STEP_LOG_END@durations@@@" | 2858 "@@@STEP_LOG_END@durations@@@" |
| 2820 ] | 2859 ] |
| 2821 }, | 2860 }, |
| 2822 { | 2861 { |
| 2823 "allow_subannotations": true, | 2862 "allow_subannotations": true, |
| 2824 "cmd": [ | 2863 "cmd": [ |
| 2825 "python", | 2864 "python", |
| 2826 "-u", | 2865 "-u", |
| 2827 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2866 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2828 "--swarming-client-dir", | 2867 "--swarming-client-dir", |
| 2829 "[CWD]/swarming.client", | 2868 "[SLAVE_BUILD]/swarming.client", |
| 2830 "--temp-root-dir", | 2869 "--temp-root-dir", |
| 2831 "[TMP]", | 2870 "[TMP_BASE]", |
| 2832 "--merged-test-output", | 2871 "--merged-test-output", |
| 2833 "/path/to/tmp/json", | 2872 "/path/to/tmp/json", |
| 2834 "--", | 2873 "--", |
| 2835 "collect", | 2874 "collect", |
| 2836 "--swarming", | 2875 "--swarming", |
| 2837 "https://chromium-swarm.appspot.com", | 2876 "https://chromium-swarm.appspot.com", |
| 2838 "--decorate", | 2877 "--decorate", |
| 2839 "--print-status-updates", | 2878 "--print-status-updates", |
| 2840 "--shards", | 2879 "--shards", |
| 2841 "1", | 2880 "1", |
| 2842 "Mozilla - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2881 "Mozilla - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2843 ], | 2882 ], |
| 2883 "cwd": "[SLAVE_BUILD]", |
| 2844 "name": "Mozilla - nosse4", | 2884 "name": "Mozilla - nosse4", |
| 2845 "~followup_annotations": [ | 2885 "~followup_annotations": [ |
| 2846 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2886 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2847 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2887 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2848 "@@@STEP_LOG_LINE@durations@@@@", | 2888 "@@@STEP_LOG_LINE@durations@@@@", |
| 2849 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2889 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2850 "@@@STEP_LOG_LINE@durations@@@@", | 2890 "@@@STEP_LOG_LINE@durations@@@@", |
| 2851 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2891 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2852 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2892 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2853 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2893 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2854 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2894 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2855 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2895 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2856 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2896 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2857 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2897 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2858 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2898 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2859 "@@@STEP_LOG_END@durations@@@" | 2899 "@@@STEP_LOG_END@durations@@@" |
| 2860 ] | 2900 ] |
| 2861 }, | 2901 }, |
| 2862 { | 2902 { |
| 2863 "allow_subannotations": true, | 2903 "allow_subannotations": true, |
| 2864 "cmd": [ | 2904 "cmd": [ |
| 2865 "python", | 2905 "python", |
| 2866 "-u", | 2906 "-u", |
| 2867 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2907 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2868 "--swarming-client-dir", | 2908 "--swarming-client-dir", |
| 2869 "[CWD]/swarming.client", | 2909 "[SLAVE_BUILD]/swarming.client", |
| 2870 "--temp-root-dir", | 2910 "--temp-root-dir", |
| 2871 "[TMP]", | 2911 "[TMP_BASE]", |
| 2872 "--merged-test-output", | 2912 "--merged-test-output", |
| 2873 "/path/to/tmp/json", | 2913 "/path/to/tmp/json", |
| 2874 "--", | 2914 "--", |
| 2875 "collect", | 2915 "collect", |
| 2876 "--swarming", | 2916 "--swarming", |
| 2877 "https://chromium-swarm.appspot.com", | 2917 "https://chromium-swarm.appspot.com", |
| 2878 "--decorate", | 2918 "--decorate", |
| 2879 "--print-status-updates", | 2919 "--print-status-updates", |
| 2880 "--shards", | 2920 "--shards", |
| 2881 "1", | 2921 "1", |
| 2882 "SimdJs - all - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2922 "SimdJs - all - nosse4/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2883 ], | 2923 ], |
| 2924 "cwd": "[SLAVE_BUILD]", |
| 2884 "name": "SimdJs - all - nosse4", | 2925 "name": "SimdJs - all - nosse4", |
| 2885 "~followup_annotations": [ | 2926 "~followup_annotations": [ |
| 2886 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2927 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2887 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2928 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2888 "@@@STEP_LOG_LINE@durations@@@@", | 2929 "@@@STEP_LOG_LINE@durations@@@@", |
| 2889 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2930 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2890 "@@@STEP_LOG_LINE@durations@@@@", | 2931 "@@@STEP_LOG_LINE@durations@@@@", |
| 2891 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2932 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2892 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2933 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2893 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2934 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2894 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2935 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2895 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2936 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2896 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2937 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2897 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2938 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2898 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2939 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2899 "@@@STEP_LOG_END@durations@@@" | 2940 "@@@STEP_LOG_END@durations@@@" |
| 2900 ] | 2941 ] |
| 2901 }, | 2942 }, |
| 2902 { | 2943 { |
| 2903 "allow_subannotations": true, | 2944 "allow_subannotations": true, |
| 2904 "cmd": [ | 2945 "cmd": [ |
| 2905 "python", | 2946 "python", |
| 2906 "-u", | 2947 "-u", |
| 2907 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2948 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2908 "--swarming-client-dir", | 2949 "--swarming-client-dir", |
| 2909 "[CWD]/swarming.client", | 2950 "[SLAVE_BUILD]/swarming.client", |
| 2910 "--temp-root-dir", | 2951 "--temp-root-dir", |
| 2911 "[TMP]", | 2952 "[TMP_BASE]", |
| 2912 "--merged-test-output", | 2953 "--merged-test-output", |
| 2913 "/path/to/tmp/json", | 2954 "/path/to/tmp/json", |
| 2914 "--", | 2955 "--", |
| 2915 "collect", | 2956 "collect", |
| 2916 "--swarming", | 2957 "--swarming", |
| 2917 "https://chromium-swarm.appspot.com", | 2958 "https://chromium-swarm.appspot.com", |
| 2918 "--decorate", | 2959 "--decorate", |
| 2919 "--print-status-updates", | 2960 "--print-status-updates", |
| 2920 "--shards", | 2961 "--shards", |
| 2921 "1", | 2962 "1", |
| 2922 "Mjsunit - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 2963 "Mjsunit - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2923 ], | 2964 ], |
| 2965 "cwd": "[SLAVE_BUILD]", |
| 2924 "name": "Mjsunit - code serializer", | 2966 "name": "Mjsunit - code serializer", |
| 2925 "~followup_annotations": [ | 2967 "~followup_annotations": [ |
| 2926 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 2968 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2927 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 2969 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2928 "@@@STEP_LOG_LINE@durations@@@@", | 2970 "@@@STEP_LOG_LINE@durations@@@@", |
| 2929 "@@@STEP_LOG_LINE@durations@Details:@@@", | 2971 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2930 "@@@STEP_LOG_LINE@durations@@@@", | 2972 "@@@STEP_LOG_LINE@durations@@@@", |
| 2931 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 2973 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2932 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 2974 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2933 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 2975 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2934 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 2976 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2935 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 2977 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2936 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 2978 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2937 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 2979 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2938 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 2980 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2939 "@@@STEP_LOG_END@durations@@@" | 2981 "@@@STEP_LOG_END@durations@@@" |
| 2940 ] | 2982 ] |
| 2941 }, | 2983 }, |
| 2942 { | 2984 { |
| 2943 "allow_subannotations": true, | 2985 "allow_subannotations": true, |
| 2944 "cmd": [ | 2986 "cmd": [ |
| 2945 "python", | 2987 "python", |
| 2946 "-u", | 2988 "-u", |
| 2947 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 2989 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2948 "--swarming-client-dir", | 2990 "--swarming-client-dir", |
| 2949 "[CWD]/swarming.client", | 2991 "[SLAVE_BUILD]/swarming.client", |
| 2950 "--temp-root-dir", | 2992 "--temp-root-dir", |
| 2951 "[TMP]", | 2993 "[TMP_BASE]", |
| 2952 "--merged-test-output", | 2994 "--merged-test-output", |
| 2953 "/path/to/tmp/json", | 2995 "/path/to/tmp/json", |
| 2954 "--", | 2996 "--", |
| 2955 "collect", | 2997 "collect", |
| 2956 "--swarming", | 2998 "--swarming", |
| 2957 "https://chromium-swarm.appspot.com", | 2999 "https://chromium-swarm.appspot.com", |
| 2958 "--decorate", | 3000 "--decorate", |
| 2959 "--print-status-updates", | 3001 "--print-status-updates", |
| 2960 "--shards", | 3002 "--shards", |
| 2961 "1", | 3003 "1", |
| 2962 "Mozilla - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" | 3004 "Mozilla - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571" |
| 2963 ], | 3005 ], |
| 3006 "cwd": "[SLAVE_BUILD]", |
| 2964 "name": "Mozilla - code serializer", | 3007 "name": "Mozilla - code serializer", |
| 2965 "~followup_annotations": [ | 3008 "~followup_annotations": [ |
| 2966 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 3009 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 2967 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 3010 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 2968 "@@@STEP_LOG_LINE@durations@@@@", | 3011 "@@@STEP_LOG_LINE@durations@@@@", |
| 2969 "@@@STEP_LOG_LINE@durations@Details:@@@", | 3012 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 2970 "@@@STEP_LOG_LINE@durations@@@@", | 3013 "@@@STEP_LOG_LINE@durations@@@@", |
| 2971 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 3014 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 2972 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 3015 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 2973 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 3016 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 2974 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 3017 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 2975 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 3018 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 2976 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 3019 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 2977 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 3020 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 2978 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 3021 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 2979 "@@@STEP_LOG_END@durations@@@" | 3022 "@@@STEP_LOG_END@durations@@@" |
| 2980 ] | 3023 ] |
| 2981 }, | 3024 }, |
| 2982 { | 3025 { |
| 2983 "allow_subannotations": true, | 3026 "allow_subannotations": true, |
| 2984 "cmd": [ | 3027 "cmd": [ |
| 2985 "python", | 3028 "python", |
| 2986 "-u", | 3029 "-u", |
| 2987 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 3030 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 2988 "--swarming-client-dir", | 3031 "--swarming-client-dir", |
| 2989 "[CWD]/swarming.client", | 3032 "[SLAVE_BUILD]/swarming.client", |
| 2990 "--temp-root-dir", | 3033 "--temp-root-dir", |
| 2991 "[TMP]", | 3034 "[TMP_BASE]", |
| 2992 "--merged-test-output", | 3035 "--merged-test-output", |
| 2993 "/path/to/tmp/json", | 3036 "/path/to/tmp/json", |
| 2994 "--", | 3037 "--", |
| 2995 "collect", | 3038 "collect", |
| 2996 "--swarming", | 3039 "--swarming", |
| 2997 "https://chromium-swarm.appspot.com", | 3040 "https://chromium-swarm.appspot.com", |
| 2998 "--decorate", | 3041 "--decorate", |
| 2999 "--print-status-updates", | 3042 "--print-status-updates", |
| 3000 "--shards", | 3043 "--shards", |
| 3001 "1", | 3044 "1", |
| 3002 "Test262 - no variants - code serializer/Ubuntu-12.04/[dummy has/V8 Linux
- debug/571" | 3045 "Test262 - no variants - code serializer/Ubuntu-12.04/[dummy has/V8 Linux
- debug/571" |
| 3003 ], | 3046 ], |
| 3047 "cwd": "[SLAVE_BUILD]", |
| 3004 "name": "Test262 - no variants - code serializer", | 3048 "name": "Test262 - no variants - code serializer", |
| 3005 "~followup_annotations": [ | 3049 "~followup_annotations": [ |
| 3006 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 3050 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 3007 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 3051 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 3008 "@@@STEP_LOG_LINE@durations@@@@", | 3052 "@@@STEP_LOG_LINE@durations@@@@", |
| 3009 "@@@STEP_LOG_LINE@durations@Details:@@@", | 3053 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 3010 "@@@STEP_LOG_LINE@durations@@@@", | 3054 "@@@STEP_LOG_LINE@durations@@@@", |
| 3011 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 3055 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 3012 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 3056 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 3013 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 3057 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 3014 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 3058 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 3015 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 3059 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 3016 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 3060 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 3017 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 3061 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 3018 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 3062 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 3019 "@@@STEP_LOG_END@durations@@@" | 3063 "@@@STEP_LOG_END@durations@@@" |
| 3020 ] | 3064 ] |
| 3021 }, | 3065 }, |
| 3022 { | 3066 { |
| 3023 "allow_subannotations": true, | 3067 "allow_subannotations": true, |
| 3024 "cmd": [ | 3068 "cmd": [ |
| 3025 "python", | 3069 "python", |
| 3026 "-u", | 3070 "-u", |
| 3027 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 3071 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 3028 "--swarming-client-dir", | 3072 "--swarming-client-dir", |
| 3029 "[CWD]/swarming.client", | 3073 "[SLAVE_BUILD]/swarming.client", |
| 3030 "--temp-root-dir", | 3074 "--temp-root-dir", |
| 3031 "[TMP]", | 3075 "[TMP_BASE]", |
| 3032 "--merged-test-output", | 3076 "--merged-test-output", |
| 3033 "/path/to/tmp/json", | 3077 "/path/to/tmp/json", |
| 3034 "--", | 3078 "--", |
| 3035 "collect", | 3079 "collect", |
| 3036 "--swarming", | 3080 "--swarming", |
| 3037 "https://chromium-swarm.appspot.com", | 3081 "https://chromium-swarm.appspot.com", |
| 3038 "--decorate", | 3082 "--decorate", |
| 3039 "--print-status-updates", | 3083 "--print-status-updates", |
| 3040 "--shards", | 3084 "--shards", |
| 3041 "1", | 3085 "1", |
| 3042 "Benchmarks - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571
" | 3086 "Benchmarks - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/571
" |
| 3043 ], | 3087 ], |
| 3088 "cwd": "[SLAVE_BUILD]", |
| 3044 "name": "Benchmarks - code serializer", | 3089 "name": "Benchmarks - code serializer", |
| 3045 "~followup_annotations": [ | 3090 "~followup_annotations": [ |
| 3046 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 3091 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 3047 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 3092 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 3048 "@@@STEP_LOG_LINE@durations@@@@", | 3093 "@@@STEP_LOG_LINE@durations@@@@", |
| 3049 "@@@STEP_LOG_LINE@durations@Details:@@@", | 3094 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 3050 "@@@STEP_LOG_LINE@durations@@@@", | 3095 "@@@STEP_LOG_LINE@durations@@@@", |
| 3051 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 3096 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 3052 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 3097 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 3053 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 3098 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 3054 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 3099 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 3055 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 3100 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 3056 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 3101 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 3057 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 3102 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 3058 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 3103 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 3059 "@@@STEP_LOG_END@durations@@@" | 3104 "@@@STEP_LOG_END@durations@@@" |
| 3060 ] | 3105 ] |
| 3061 }, | 3106 }, |
| 3062 { | 3107 { |
| 3063 "allow_subannotations": true, | 3108 "allow_subannotations": true, |
| 3064 "cmd": [ | 3109 "cmd": [ |
| 3065 "python", | 3110 "python", |
| 3066 "-u", | 3111 "-u", |
| 3067 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 3112 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 3068 "--swarming-client-dir", | 3113 "--swarming-client-dir", |
| 3069 "[CWD]/swarming.client", | 3114 "[SLAVE_BUILD]/swarming.client", |
| 3070 "--temp-root-dir", | 3115 "--temp-root-dir", |
| 3071 "[TMP]", | 3116 "[TMP_BASE]", |
| 3072 "--merged-test-output", | 3117 "--merged-test-output", |
| 3073 "/path/to/tmp/json", | 3118 "/path/to/tmp/json", |
| 3074 "--", | 3119 "--", |
| 3075 "collect", | 3120 "collect", |
| 3076 "--swarming", | 3121 "--swarming", |
| 3077 "https://chromium-swarm.appspot.com", | 3122 "https://chromium-swarm.appspot.com", |
| 3078 "--decorate", | 3123 "--decorate", |
| 3079 "--print-status-updates", | 3124 "--print-status-updates", |
| 3080 "--shards", | 3125 "--shards", |
| 3081 "1", | 3126 "1", |
| 3082 "SimdJs - all - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/5
71" | 3127 "SimdJs - all - code serializer/Ubuntu-12.04/[dummy has/V8 Linux - debug/5
71" |
| 3083 ], | 3128 ], |
| 3129 "cwd": "[SLAVE_BUILD]", |
| 3084 "name": "SimdJs - all - code serializer", | 3130 "name": "SimdJs - all - code serializer", |
| 3085 "~followup_annotations": [ | 3131 "~followup_annotations": [ |
| 3086 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 3132 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 3087 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 3133 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 3088 "@@@STEP_LOG_LINE@durations@@@@", | 3134 "@@@STEP_LOG_LINE@durations@@@@", |
| 3089 "@@@STEP_LOG_LINE@durations@Details:@@@", | 3135 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 3090 "@@@STEP_LOG_LINE@durations@@@@", | 3136 "@@@STEP_LOG_LINE@durations@@@@", |
| 3091 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 3137 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 3092 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 3138 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 3093 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 3139 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 3094 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 3140 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 3095 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 3141 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 3096 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 3142 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 3097 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 3143 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 3098 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 3144 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 3099 "@@@STEP_LOG_END@durations@@@" | 3145 "@@@STEP_LOG_END@durations@@@" |
| 3100 ] | 3146 ] |
| 3101 }, | 3147 }, |
| 3102 { | 3148 { |
| 3103 "name": "$result", | 3149 "name": "$result", |
| 3104 "recipe_result": null, | 3150 "recipe_result": null, |
| 3105 "status_code": 0 | 3151 "status_code": 0 |
| 3106 } | 3152 } |
| 3107 ] | 3153 ] |
| OLD | NEW |