Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(573)

Side by Side Diff: scripts/slave/recipes/chromium_trybot.expected/blink_minimal_pass_continues.json

Issue 1366353002: Change test_util summarize_retried_test not to use inline python (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/bot_update.py", 6 "[BUILD]/scripts/slave/bot_update.py",
7 "--master", 7 "--master",
8 "tryserver.blink", 8 "tryserver.blink",
9 "--builder", 9 "--builder",
10 "linux_blink_rel", 10 "linux_blink_rel",
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 "cwd": "[SLAVE_BUILD]", 418 "cwd": "[SLAVE_BUILD]",
419 "name": "webkit_tests (without patch)", 419 "name": "webkit_tests (without patch)",
420 "~followup_annotations": [ 420 "~followup_annotations": [
421 "@@@STEP_TEXT@<br/>Total executed: 9001<br/>@@@" 421 "@@@STEP_TEXT@<br/>Total executed: 9001<br/>@@@"
422 ] 422 ]
423 }, 423 },
424 { 424 {
425 "cmd": [ 425 "cmd": [
426 "python", 426 "python",
427 "-u", 427 "-u",
428 "\nimport sys, json\nfailures = json.load(open(sys.argv[1], 'rb'))\n\nsucc ess = True\n\nif failures['new']:\n success = False\n print 'New failures:'\n for f in failures['new']:\n print f\n\nif failures['ignored']:\n print 'Ign ored failures:'\n for f in failures['ignored']:\n print f\n\nsys.exit(0 if s uccess else 1)\n", 428 "import sys; sys.exit(1)"
429 "{\"ignored\": [], \"new\": [\"bad/totally-bad-probably.html\", \"tricky/t otally-maybe-not-awesome.html\"]}"
430 ], 429 ],
431 "cwd": "[SLAVE_BUILD]", 430 "cwd": "[SLAVE_BUILD]",
432 "name": "webkit_tests", 431 "name": "webkit_tests",
433 "~followup_annotations": [ 432 "~followup_annotations": [
433 "step returned non-zero exit code: 1",
434 "@@@STEP_TEXT@<br/>failures:<br/>bad/totally-bad-probably.html<br/>tricky/ totally-maybe-not-awesome.html<br/>@@@", 434 "@@@STEP_TEXT@<br/>failures:<br/>bad/totally-bad-probably.html<br/>tricky/ totally-maybe-not-awesome.html<br/>@@@",
435 "@@@STEP_LOG_LINE@python.inline@@@@",
436 "@@@STEP_LOG_LINE@python.inline@import sys, json@@@",
437 "@@@STEP_LOG_LINE@python.inline@failures = json.load(open(sys.argv[1], 'rb '))@@@",
438 "@@@STEP_LOG_LINE@python.inline@@@@",
439 "@@@STEP_LOG_LINE@python.inline@success = True@@@",
440 "@@@STEP_LOG_LINE@python.inline@@@@",
441 "@@@STEP_LOG_LINE@python.inline@if failures['new']:@@@",
442 "@@@STEP_LOG_LINE@python.inline@ success = False@@@",
443 "@@@STEP_LOG_LINE@python.inline@ print 'New failures:'@@@",
444 "@@@STEP_LOG_LINE@python.inline@ for f in failures['new']:@@@",
445 "@@@STEP_LOG_LINE@python.inline@ print f@@@",
446 "@@@STEP_LOG_LINE@python.inline@@@@",
447 "@@@STEP_LOG_LINE@python.inline@if failures['ignored']:@@@",
448 "@@@STEP_LOG_LINE@python.inline@ print 'Ignored failures:'@@@",
449 "@@@STEP_LOG_LINE@python.inline@ for f in failures['ignored']:@@@",
450 "@@@STEP_LOG_LINE@python.inline@ print f@@@",
451 "@@@STEP_LOG_LINE@python.inline@@@@",
452 "@@@STEP_LOG_LINE@python.inline@sys.exit(0 if success else 1)@@@",
453 "@@@STEP_LOG_END@python.inline@@@",
454 "@@@STEP_FAILURE@@@", 435 "@@@STEP_FAILURE@@@",
455 "@@@SET_BUILD_PROPERTY@failure_type@\"TEST_FAILURE\"@@@" 436 "@@@SET_BUILD_PROPERTY@failure_type@\"TEST_FAILURE\"@@@",
437 "@@@SET_BUILD_PROPERTY@failure_hash@\"37e83d2b25b93551efc3a64c06c7c9c349ae 06c9\"@@@"
456 ] 438 ]
439 },
440 {
441 "name": "$final_result",
442 "reason": "1 out of 1 aggregated steps failed. Failures: Step('webkit_tests' ) failed with return_code 1",
443 "status_code": 1
457 } 444 }
458 ] 445 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698