| 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=-1690478353", | 167 "--random-seed=-1690478353", |
| 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 Linux64 - debug/571\", @@@", | 179 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux64 - 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
64 - debug/571\": {@@@", | 181 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
64 - 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 "3", | 205 "3", |
| 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=-1690478353", | 262 "--random-seed=-1690478353", |
| 260 "test262", | 263 "test262", |
| 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] Test262 on Ubuntu-12.04", | 272 "name": "[trigger] Test262 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\": \"Test262/Ubuntu-12.04
/[dummy has/V8 Linux64 - debug/571\", @@@", | 275 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262/Ubuntu-12.04
/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 272 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 276 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 273 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux64 - debug/571:3:0\": {@@@", | 277 "@@@STEP_LOG_LINE@json.output@ \"Test262/Ubuntu-12.04/[dummy has/V8 Lin
ux64 - debug/571:3:0\": {@@@", |
| 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@ }, @@@", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 290 "@@@STEP_LOG_END@json.output@@@", | 294 "@@@STEP_LOG_END@json.output@@@", |
| 291 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", | 295 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", |
| 292 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@", | 296 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@", |
| 293 "@@@STEP_LINK@shard #2@https://chromium-swarm.appspot.com/user/task/10200@
@@" | 297 "@@@STEP_LINK@shard #2@https://chromium-swarm.appspot.com/user/task/10200@
@@" |
| 294 ] | 298 ] |
| 295 }, | 299 }, |
| 296 { | 300 { |
| 297 "cmd": [ | 301 "cmd": [ |
| 298 "python", | 302 "python", |
| 299 "-u", | 303 "-u", |
| 300 "[CWD]/swarming.client/swarming.py", | 304 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 301 "trigger", | 305 "trigger", |
| 302 "--swarming", | 306 "--swarming", |
| 303 "https://chromium-swarm.appspot.com", | 307 "https://chromium-swarm.appspot.com", |
| 304 "--isolate-server", | 308 "--isolate-server", |
| 305 "https://isolateserver.appspot.com", | 309 "https://isolateserver.appspot.com", |
| 306 "--priority", | 310 "--priority", |
| 307 "25", | 311 "25", |
| 308 "--shards", | 312 "--shards", |
| 309 "1", | 313 "1", |
| 310 "--task-name", | 314 "--task-name", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 "--buildbot", | 368 "--buildbot", |
| 365 "--timeout=200", | 369 "--timeout=200", |
| 366 "--random-seed=-1690478353", | 370 "--random-seed=-1690478353", |
| 367 "mozilla", | 371 "mozilla", |
| 368 "--exhaustive-variants", | 372 "--exhaustive-variants", |
| 369 "--rerun-failures-count=2", | 373 "--rerun-failures-count=2", |
| 370 "--swarming", | 374 "--swarming", |
| 371 "--json-test-results", | 375 "--json-test-results", |
| 372 "${ISOLATED_OUTDIR}/output.json" | 376 "${ISOLATED_OUTDIR}/output.json" |
| 373 ], | 377 ], |
| 378 "cwd": "[SLAVE_BUILD]", |
| 374 "name": "[trigger] Mozilla on Ubuntu-12.04", | 379 "name": "[trigger] Mozilla on Ubuntu-12.04", |
| 375 "~followup_annotations": [ | 380 "~followup_annotations": [ |
| 376 "@@@STEP_LOG_LINE@json.output@{@@@", | 381 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 377 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux64 - debug/571\", @@@", | 382 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 378 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 383 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 379 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux64 - debug/571\": {@@@", | 384 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux64 - debug/571\": {@@@", |
| 380 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 385 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 381 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 386 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 382 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 387 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 383 "@@@STEP_LOG_LINE@json.output@ }@@@", | 388 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 384 "@@@STEP_LOG_LINE@json.output@ }@@@", | 389 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 385 "@@@STEP_LOG_LINE@json.output@}@@@", | 390 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 386 "@@@STEP_LOG_END@json.output@@@", | 391 "@@@STEP_LOG_END@json.output@@@", |
| 387 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 392 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 388 ] | 393 ] |
| 389 }, | 394 }, |
| 390 { | 395 { |
| 391 "cmd": [ | 396 "cmd": [ |
| 392 "python", | 397 "python", |
| 393 "-u", | 398 "-u", |
| 394 "[CWD]/swarming.client/swarming.py", | 399 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 395 "trigger", | 400 "trigger", |
| 396 "--swarming", | 401 "--swarming", |
| 397 "https://chromium-swarm.appspot.com", | 402 "https://chromium-swarm.appspot.com", |
| 398 "--isolate-server", | 403 "--isolate-server", |
| 399 "https://isolateserver.appspot.com", | 404 "https://isolateserver.appspot.com", |
| 400 "--priority", | 405 "--priority", |
| 401 "25", | 406 "25", |
| 402 "--shards", | 407 "--shards", |
| 403 "1", | 408 "1", |
| 404 "--task-name", | 409 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 "--timeout=200", | 464 "--timeout=200", |
| 460 "--random-seed=-1690478353", | 465 "--random-seed=-1690478353", |
| 461 "simdjs", | 466 "simdjs", |
| 462 "--download-data", | 467 "--download-data", |
| 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] SimdJs - all on Ubuntu-12.04", | 475 "name": "[trigger] SimdJs - all 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\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux64 - debug/571\", @@@", | 478 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 473 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 479 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 474 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux64 - debug/571\": {@@@", | 480 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux64 - 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=-1690478353", | 561 "--random-seed=-1690478353", |
| 556 "ignition", | 562 "ignition", |
| 557 "--ignition-turbofan", | 563 "--ignition-turbofan", |
| 558 "--variants=ignition_turbofan", | 564 "--variants=ignition_turbofan", |
| 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] Ignition - turbofan on Ubuntu-12.04", | 571 "name": "[trigger] Ignition - turbofan 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\": \"Ignition - turbofan/
Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", | 574 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 568 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 575 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 569 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-12.04/[dumm
y has/V8 Linux64 - debug/571\": {@@@", | 576 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-12.04/[dumm
y has/V8 Linux64 - 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=-1690478353", | 657 "--random-seed=-1690478353", |
| 651 "mjsunit", | 658 "mjsunit", |
| 652 "--extra-flags=--turbo_sp_frame_access", | 659 "--extra-flags=--turbo_sp_frame_access", |
| 653 "--variants=turbofan", | 660 "--variants=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] Mjsunit - sp frame access on Ubuntu-12.04", | 667 "name": "[trigger] Mjsunit - sp frame access 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\": \"Mjsunit - sp frame a
ccess/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", | 670 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mjsunit - sp frame a
ccess/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 663 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 671 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 664 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - sp frame access/Ubuntu-12.04
/[dummy has/V8 Linux64 - debug/571\": {@@@", | 672 "@@@STEP_LOG_LINE@json.output@ \"Mjsunit - sp frame access/Ubuntu-12.04
/[dummy has/V8 Linux64 - 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 "--random-seed=-1690478353", | 753 "--random-seed=-1690478353", |
| 746 "test262", | 754 "test262", |
| 747 "--ignition-turbofan", | 755 "--ignition-turbofan", |
| 748 "--download-data", | 756 "--download-data", |
| 749 "--variants=ignition_turbofan", | 757 "--variants=ignition_turbofan", |
| 750 "--rerun-failures-count=2", | 758 "--rerun-failures-count=2", |
| 751 "--swarming", | 759 "--swarming", |
| 752 "--json-test-results", | 760 "--json-test-results", |
| 753 "${ISOLATED_OUTDIR}/output.json" | 761 "${ISOLATED_OUTDIR}/output.json" |
| 754 ], | 762 ], |
| 763 "cwd": "[SLAVE_BUILD]", |
| 755 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-12.04", | 764 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-12.04", |
| 756 "~followup_annotations": [ | 765 "~followup_annotations": [ |
| 757 "@@@STEP_LOG_LINE@json.output@{@@@", | 766 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 758 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", | 767 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 759 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 768 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 760 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
2.04/[dummy has/V8 Linux64 - debug/571\": {@@@", | 769 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
2.04/[dummy has/V8 Linux64 - debug/571\": {@@@", |
| 761 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 770 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 762 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 771 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 763 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 772 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 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_LINE@json.output@}@@@", | 775 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 767 "@@@STEP_LOG_END@json.output@@@", | 776 "@@@STEP_LOG_END@json.output@@@", |
| 768 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 777 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 769 ] | 778 ] |
| 770 }, | 779 }, |
| 771 { | 780 { |
| 772 "cmd": [ | 781 "cmd": [ |
| 773 "python", | 782 "python", |
| 774 "-u", | 783 "-u", |
| 775 "[CWD]/swarming.client/swarming.py", | 784 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 776 "trigger", | 785 "trigger", |
| 777 "--swarming", | 786 "--swarming", |
| 778 "https://chromium-swarm.appspot.com", | 787 "https://chromium-swarm.appspot.com", |
| 779 "--isolate-server", | 788 "--isolate-server", |
| 780 "https://isolateserver.appspot.com", | 789 "https://isolateserver.appspot.com", |
| 781 "--priority", | 790 "--priority", |
| 782 "25", | 791 "25", |
| 783 "--shards", | 792 "--shards", |
| 784 "1", | 793 "1", |
| 785 "--task-name", | 794 "--task-name", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 "slavename:TestSlavename", | 835 "slavename:TestSlavename", |
| 827 "--tag", | 836 "--tag", |
| 828 "stepname:Simple Leak Check on Ubuntu-12.04", | 837 "stepname:Simple Leak Check on Ubuntu-12.04", |
| 829 "--idempotent", | 838 "--idempotent", |
| 830 "[dummy hash for run-valgrind]", | 839 "[dummy hash for run-valgrind]", |
| 831 "--", | 840 "--", |
| 832 "out/Debug/d8", | 841 "out/Debug/d8", |
| 833 "-e", | 842 "-e", |
| 834 "print(1+2)" | 843 "print(1+2)" |
| 835 ], | 844 ], |
| 845 "cwd": "[SLAVE_BUILD]", |
| 836 "name": "[trigger] Simple Leak Check on Ubuntu-12.04", | 846 "name": "[trigger] Simple Leak Check on Ubuntu-12.04", |
| 837 "~followup_annotations": [ | 847 "~followup_annotations": [ |
| 838 "@@@STEP_LOG_LINE@json.output@{@@@", | 848 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 839 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Simple Leak Check/Ub
untu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", | 849 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Simple Leak Check/Ub
untu-12.04/[dummy has/V8 Linux64 - debug/571\", @@@", |
| 840 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 850 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 841 "@@@STEP_LOG_LINE@json.output@ \"Simple Leak Check/Ubuntu-12.04/[dummy
has/V8 Linux64 - debug/571\": {@@@", | 851 "@@@STEP_LOG_LINE@json.output@ \"Simple Leak Check/Ubuntu-12.04/[dummy
has/V8 Linux64 - debug/571\": {@@@", |
| 842 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 852 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 843 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 853 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 844 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 854 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 845 "@@@STEP_LOG_LINE@json.output@ }@@@", | 855 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 846 "@@@STEP_LOG_LINE@json.output@ }@@@", | 856 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 847 "@@@STEP_LOG_LINE@json.output@}@@@", | 857 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 848 "@@@STEP_LOG_END@json.output@@@", | 858 "@@@STEP_LOG_END@json.output@@@", |
| 849 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 859 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 850 ] | 860 ] |
| 851 }, | 861 }, |
| 852 { | 862 { |
| 853 "allow_subannotations": true, | 863 "allow_subannotations": true, |
| 854 "cmd": [ | 864 "cmd": [ |
| 855 "python", | 865 "python", |
| 856 "-u", | 866 "-u", |
| 857 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 867 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 858 "--swarming-client-dir", | 868 "--swarming-client-dir", |
| 859 "[CWD]/swarming.client", | 869 "[SLAVE_BUILD]/swarming.client", |
| 860 "--temp-root-dir", | 870 "--temp-root-dir", |
| 861 "[TMP]", | 871 "[TMP_BASE]", |
| 862 "--merged-test-output", | 872 "--merged-test-output", |
| 863 "/path/to/tmp/json", | 873 "/path/to/tmp/json", |
| 864 "--", | 874 "--", |
| 865 "collect", | 875 "collect", |
| 866 "--swarming", | 876 "--swarming", |
| 867 "https://chromium-swarm.appspot.com", | 877 "https://chromium-swarm.appspot.com", |
| 868 "--decorate", | 878 "--decorate", |
| 869 "--print-status-updates", | 879 "--print-status-updates", |
| 870 "--shards", | 880 "--shards", |
| 871 "1", | 881 "1", |
| 872 "Check/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" | 882 "Check/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" |
| 873 ], | 883 ], |
| 884 "cwd": "[SLAVE_BUILD]", |
| 874 "name": "Check", | 885 "name": "Check", |
| 875 "~followup_annotations": [ | 886 "~followup_annotations": [ |
| 876 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 887 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 877 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 888 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 878 "@@@STEP_LOG_LINE@durations@@@@", | 889 "@@@STEP_LOG_LINE@durations@@@@", |
| 879 "@@@STEP_LOG_LINE@durations@Details:@@@", | 890 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 880 "@@@STEP_LOG_LINE@durations@@@@", | 891 "@@@STEP_LOG_LINE@durations@@@@", |
| 881 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 892 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 882 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 893 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 883 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 894 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 884 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 895 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 885 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 896 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 886 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 897 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 887 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 898 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 888 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 899 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 889 "@@@STEP_LOG_END@durations@@@" | 900 "@@@STEP_LOG_END@durations@@@" |
| 890 ] | 901 ] |
| 891 }, | 902 }, |
| 892 { | 903 { |
| 893 "allow_subannotations": true, | 904 "allow_subannotations": true, |
| 894 "cmd": [ | 905 "cmd": [ |
| 895 "python", | 906 "python", |
| 896 "-u", | 907 "-u", |
| 897 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 908 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 898 "--swarming-client-dir", | 909 "--swarming-client-dir", |
| 899 "[CWD]/swarming.client", | 910 "[SLAVE_BUILD]/swarming.client", |
| 900 "--temp-root-dir", | 911 "--temp-root-dir", |
| 901 "[TMP]", | 912 "[TMP_BASE]", |
| 902 "--merged-test-output", | 913 "--merged-test-output", |
| 903 "/path/to/tmp/json", | 914 "/path/to/tmp/json", |
| 904 "--", | 915 "--", |
| 905 "collect", | 916 "collect", |
| 906 "--swarming", | 917 "--swarming", |
| 907 "https://chromium-swarm.appspot.com", | 918 "https://chromium-swarm.appspot.com", |
| 908 "--decorate", | 919 "--decorate", |
| 909 "--print-status-updates", | 920 "--print-status-updates", |
| 910 "--shards", | 921 "--shards", |
| 911 "3", | 922 "3", |
| 912 "Test262/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" | 923 "Test262/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" |
| 913 ], | 924 ], |
| 925 "cwd": "[SLAVE_BUILD]", |
| 914 "name": "Test262", | 926 "name": "Test262", |
| 915 "~followup_annotations": [ | 927 "~followup_annotations": [ |
| 916 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 928 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 917 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 929 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 918 "@@@STEP_LOG_LINE@durations@@@@", | 930 "@@@STEP_LOG_LINE@durations@@@@", |
| 919 "@@@STEP_LOG_LINE@durations@Details:@@@", | 931 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 920 "@@@STEP_LOG_LINE@durations@@@@", | 932 "@@@STEP_LOG_LINE@durations@@@@", |
| 921 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 933 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 922 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 934 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 923 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 935 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 924 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 936 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 925 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 937 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 926 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 938 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 927 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 939 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 928 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 940 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 929 "@@@STEP_LOG_END@durations@@@" | 941 "@@@STEP_LOG_END@durations@@@" |
| 930 ] | 942 ] |
| 931 }, | 943 }, |
| 932 { | 944 { |
| 933 "allow_subannotations": true, | 945 "allow_subannotations": true, |
| 934 "cmd": [ | 946 "cmd": [ |
| 935 "python", | 947 "python", |
| 936 "-u", | 948 "-u", |
| 937 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 949 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 938 "--swarming-client-dir", | 950 "--swarming-client-dir", |
| 939 "[CWD]/swarming.client", | 951 "[SLAVE_BUILD]/swarming.client", |
| 940 "--temp-root-dir", | 952 "--temp-root-dir", |
| 941 "[TMP]", | 953 "[TMP_BASE]", |
| 942 "--merged-test-output", | 954 "--merged-test-output", |
| 943 "/path/to/tmp/json", | 955 "/path/to/tmp/json", |
| 944 "--", | 956 "--", |
| 945 "collect", | 957 "collect", |
| 946 "--swarming", | 958 "--swarming", |
| 947 "https://chromium-swarm.appspot.com", | 959 "https://chromium-swarm.appspot.com", |
| 948 "--decorate", | 960 "--decorate", |
| 949 "--print-status-updates", | 961 "--print-status-updates", |
| 950 "--shards", | 962 "--shards", |
| 951 "1", | 963 "1", |
| 952 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" | 964 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" |
| 953 ], | 965 ], |
| 966 "cwd": "[SLAVE_BUILD]", |
| 954 "name": "Mozilla", | 967 "name": "Mozilla", |
| 955 "~followup_annotations": [ | 968 "~followup_annotations": [ |
| 956 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 969 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 957 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 970 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 958 "@@@STEP_LOG_LINE@durations@@@@", | 971 "@@@STEP_LOG_LINE@durations@@@@", |
| 959 "@@@STEP_LOG_LINE@durations@Details:@@@", | 972 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 960 "@@@STEP_LOG_LINE@durations@@@@", | 973 "@@@STEP_LOG_LINE@durations@@@@", |
| 961 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 974 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 962 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 975 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 963 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 976 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 964 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 977 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 965 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 978 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 966 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 979 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 967 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 980 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 968 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 981 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 969 "@@@STEP_LOG_END@durations@@@" | 982 "@@@STEP_LOG_END@durations@@@" |
| 970 ] | 983 ] |
| 971 }, | 984 }, |
| 972 { | 985 { |
| 973 "allow_subannotations": true, | 986 "allow_subannotations": true, |
| 974 "cmd": [ | 987 "cmd": [ |
| 975 "python", | 988 "python", |
| 976 "-u", | 989 "-u", |
| 977 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 990 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 978 "--swarming-client-dir", | 991 "--swarming-client-dir", |
| 979 "[CWD]/swarming.client", | 992 "[SLAVE_BUILD]/swarming.client", |
| 980 "--temp-root-dir", | 993 "--temp-root-dir", |
| 981 "[TMP]", | 994 "[TMP_BASE]", |
| 982 "--merged-test-output", | 995 "--merged-test-output", |
| 983 "/path/to/tmp/json", | 996 "/path/to/tmp/json", |
| 984 "--", | 997 "--", |
| 985 "collect", | 998 "collect", |
| 986 "--swarming", | 999 "--swarming", |
| 987 "https://chromium-swarm.appspot.com", | 1000 "https://chromium-swarm.appspot.com", |
| 988 "--decorate", | 1001 "--decorate", |
| 989 "--print-status-updates", | 1002 "--print-status-updates", |
| 990 "--shards", | 1003 "--shards", |
| 991 "1", | 1004 "1", |
| 992 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" | 1005 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" |
| 993 ], | 1006 ], |
| 1007 "cwd": "[SLAVE_BUILD]", |
| 994 "name": "SimdJs - all", | 1008 "name": "SimdJs - all", |
| 995 "~followup_annotations": [ | 1009 "~followup_annotations": [ |
| 996 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1010 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 997 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1011 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 998 "@@@STEP_LOG_LINE@durations@@@@", | 1012 "@@@STEP_LOG_LINE@durations@@@@", |
| 999 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1013 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1000 "@@@STEP_LOG_LINE@durations@@@@", | 1014 "@@@STEP_LOG_LINE@durations@@@@", |
| 1001 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1015 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1002 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1016 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1003 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1017 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1004 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1018 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1005 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1019 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1006 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1020 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1007 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1021 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1008 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1022 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1009 "@@@STEP_LOG_END@durations@@@" | 1023 "@@@STEP_LOG_END@durations@@@" |
| 1010 ] | 1024 ] |
| 1011 }, | 1025 }, |
| 1012 { | 1026 { |
| 1013 "allow_subannotations": true, | 1027 "allow_subannotations": true, |
| 1014 "cmd": [ | 1028 "cmd": [ |
| 1015 "python", | 1029 "python", |
| 1016 "-u", | 1030 "-u", |
| 1017 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1031 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1018 "--swarming-client-dir", | 1032 "--swarming-client-dir", |
| 1019 "[CWD]/swarming.client", | 1033 "[SLAVE_BUILD]/swarming.client", |
| 1020 "--temp-root-dir", | 1034 "--temp-root-dir", |
| 1021 "[TMP]", | 1035 "[TMP_BASE]", |
| 1022 "--merged-test-output", | 1036 "--merged-test-output", |
| 1023 "/path/to/tmp/json", | 1037 "/path/to/tmp/json", |
| 1024 "--", | 1038 "--", |
| 1025 "collect", | 1039 "collect", |
| 1026 "--swarming", | 1040 "--swarming", |
| 1027 "https://chromium-swarm.appspot.com", | 1041 "https://chromium-swarm.appspot.com", |
| 1028 "--decorate", | 1042 "--decorate", |
| 1029 "--print-status-updates", | 1043 "--print-status-updates", |
| 1030 "--shards", | 1044 "--shards", |
| 1031 "1", | 1045 "1", |
| 1032 "Ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" | 1046 "Ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" |
| 1033 ], | 1047 ], |
| 1048 "cwd": "[SLAVE_BUILD]", |
| 1034 "name": "Ignition - turbofan", | 1049 "name": "Ignition - turbofan", |
| 1035 "~followup_annotations": [ | 1050 "~followup_annotations": [ |
| 1036 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1051 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1037 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1052 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1038 "@@@STEP_LOG_LINE@durations@@@@", | 1053 "@@@STEP_LOG_LINE@durations@@@@", |
| 1039 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1054 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1040 "@@@STEP_LOG_LINE@durations@@@@", | 1055 "@@@STEP_LOG_LINE@durations@@@@", |
| 1041 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1056 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1042 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1057 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1043 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1058 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1044 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1059 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1045 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1060 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1046 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1061 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1047 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1062 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1048 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1063 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1049 "@@@STEP_LOG_END@durations@@@" | 1064 "@@@STEP_LOG_END@durations@@@" |
| 1050 ] | 1065 ] |
| 1051 }, | 1066 }, |
| 1052 { | 1067 { |
| 1053 "allow_subannotations": true, | 1068 "allow_subannotations": true, |
| 1054 "cmd": [ | 1069 "cmd": [ |
| 1055 "python", | 1070 "python", |
| 1056 "-u", | 1071 "-u", |
| 1057 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1072 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1058 "--swarming-client-dir", | 1073 "--swarming-client-dir", |
| 1059 "[CWD]/swarming.client", | 1074 "[SLAVE_BUILD]/swarming.client", |
| 1060 "--temp-root-dir", | 1075 "--temp-root-dir", |
| 1061 "[TMP]", | 1076 "[TMP_BASE]", |
| 1062 "--merged-test-output", | 1077 "--merged-test-output", |
| 1063 "/path/to/tmp/json", | 1078 "/path/to/tmp/json", |
| 1064 "--", | 1079 "--", |
| 1065 "collect", | 1080 "collect", |
| 1066 "--swarming", | 1081 "--swarming", |
| 1067 "https://chromium-swarm.appspot.com", | 1082 "https://chromium-swarm.appspot.com", |
| 1068 "--decorate", | 1083 "--decorate", |
| 1069 "--print-status-updates", | 1084 "--print-status-updates", |
| 1070 "--shards", | 1085 "--shards", |
| 1071 "1", | 1086 "1", |
| 1072 "Mjsunit - sp frame access/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" | 1087 "Mjsunit - sp frame access/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571" |
| 1073 ], | 1088 ], |
| 1089 "cwd": "[SLAVE_BUILD]", |
| 1074 "name": "Mjsunit - sp frame access", | 1090 "name": "Mjsunit - sp frame access", |
| 1075 "~followup_annotations": [ | 1091 "~followup_annotations": [ |
| 1076 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1092 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1077 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1093 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1078 "@@@STEP_LOG_LINE@durations@@@@", | 1094 "@@@STEP_LOG_LINE@durations@@@@", |
| 1079 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1095 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1080 "@@@STEP_LOG_LINE@durations@@@@", | 1096 "@@@STEP_LOG_LINE@durations@@@@", |
| 1081 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1097 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1082 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1098 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1083 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1099 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1084 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1100 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1085 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1101 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1086 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1102 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1087 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1103 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1088 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1104 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1089 "@@@STEP_LOG_END@durations@@@" | 1105 "@@@STEP_LOG_END@durations@@@" |
| 1090 ] | 1106 ] |
| 1091 }, | 1107 }, |
| 1092 { | 1108 { |
| 1093 "allow_subannotations": true, | 1109 "allow_subannotations": true, |
| 1094 "cmd": [ | 1110 "cmd": [ |
| 1095 "python", | 1111 "python", |
| 1096 "-u", | 1112 "-u", |
| 1097 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 1113 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 1098 "--swarming-client-dir", | 1114 "--swarming-client-dir", |
| 1099 "[CWD]/swarming.client", | 1115 "[SLAVE_BUILD]/swarming.client", |
| 1100 "--temp-root-dir", | 1116 "--temp-root-dir", |
| 1101 "[TMP]", | 1117 "[TMP_BASE]", |
| 1102 "--merged-test-output", | 1118 "--merged-test-output", |
| 1103 "/path/to/tmp/json", | 1119 "/path/to/tmp/json", |
| 1104 "--", | 1120 "--", |
| 1105 "collect", | 1121 "collect", |
| 1106 "--swarming", | 1122 "--swarming", |
| 1107 "https://chromium-swarm.appspot.com", | 1123 "https://chromium-swarm.appspot.com", |
| 1108 "--decorate", | 1124 "--decorate", |
| 1109 "--print-status-updates", | 1125 "--print-status-updates", |
| 1110 "--shards", | 1126 "--shards", |
| 1111 "1", | 1127 "1", |
| 1112 "Test262 - ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/
571" | 1128 "Test262 - ignition - turbofan/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/
571" |
| 1113 ], | 1129 ], |
| 1130 "cwd": "[SLAVE_BUILD]", |
| 1114 "name": "Test262 - ignition - turbofan", | 1131 "name": "Test262 - ignition - turbofan", |
| 1115 "~followup_annotations": [ | 1132 "~followup_annotations": [ |
| 1116 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 1133 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 1117 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 1134 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 1118 "@@@STEP_LOG_LINE@durations@@@@", | 1135 "@@@STEP_LOG_LINE@durations@@@@", |
| 1119 "@@@STEP_LOG_LINE@durations@Details:@@@", | 1136 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 1120 "@@@STEP_LOG_LINE@durations@@@@", | 1137 "@@@STEP_LOG_LINE@durations@@@@", |
| 1121 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 1138 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 1122 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 1139 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 1123 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 1140 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 1124 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 1141 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 1125 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 1142 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 1126 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 1143 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 1127 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 1144 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 1128 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 1145 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 1129 "@@@STEP_LOG_END@durations@@@" | 1146 "@@@STEP_LOG_END@durations@@@" |
| 1130 ] | 1147 ] |
| 1131 }, | 1148 }, |
| 1132 { | 1149 { |
| 1133 "cmd": [ | 1150 "cmd": [ |
| 1134 "python", | 1151 "python", |
| 1135 "-u", | 1152 "-u", |
| 1136 "[CWD]/swarming.client/swarming.py", | 1153 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 1137 "collect", | 1154 "collect", |
| 1138 "--swarming", | 1155 "--swarming", |
| 1139 "https://chromium-swarm.appspot.com", | 1156 "https://chromium-swarm.appspot.com", |
| 1140 "--decorate", | 1157 "--decorate", |
| 1141 "--print-status-updates", | 1158 "--print-status-updates", |
| 1142 "--shards", | 1159 "--shards", |
| 1143 "1", | 1160 "1", |
| 1144 "Simple Leak Check/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571", | 1161 "Simple Leak Check/Ubuntu-12.04/[dummy has/V8 Linux64 - debug/571", |
| 1145 "--task-summary-json", | 1162 "--task-summary-json", |
| 1146 "/path/to/tmp/json" | 1163 "/path/to/tmp/json" |
| 1147 ], | 1164 ], |
| 1165 "cwd": "[SLAVE_BUILD]", |
| 1148 "name": "Simple Leak Check on Ubuntu-12.04", | 1166 "name": "Simple Leak Check on Ubuntu-12.04", |
| 1149 "~followup_annotations": [ | 1167 "~followup_annotations": [ |
| 1150 "@@@STEP_TEXT@swarming pending 71s@@@", | 1168 "@@@STEP_TEXT@swarming pending 71s@@@", |
| 1151 "@@@STEP_LOG_LINE@json.output@{@@@", | 1169 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 1152 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 1170 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
| 1153 "@@@STEP_LOG_LINE@json.output@ {@@@", | 1171 "@@@STEP_LOG_LINE@json.output@ {@@@", |
| 1154 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 1172 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
| 1155 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 1173 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
| 1156 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 1174 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
| 1157 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 1175 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 1188 "@@@STEP_LOG_END@json.output@@@", | 1206 "@@@STEP_LOG_END@json.output@@@", |
| 1189 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1207 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
| 1190 ] | 1208 ] |
| 1191 }, | 1209 }, |
| 1192 { | 1210 { |
| 1193 "name": "$result", | 1211 "name": "$result", |
| 1194 "recipe_result": null, | 1212 "recipe_result": null, |
| 1195 "status_code": 0 | 1213 "status_code": 0 |
| 1196 } | 1214 } |
| 1197 ] | 1215 ] |
| OLD | NEW |