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

Side by Side Diff: scripts/slave/recipes/blink_downstream.expected/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 "client.v8.fyi", 8 "client.v8.fyi",
9 "--builder", 9 "--builder",
10 "V8-Blink Linux 64", 10 "V8-Blink Linux 64",
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 "cwd": "[SLAVE_BUILD]", 308 "cwd": "[SLAVE_BUILD]",
309 "name": "webkit_tests (without patch)", 309 "name": "webkit_tests (without patch)",
310 "~followup_annotations": [ 310 "~followup_annotations": [
311 "@@@STEP_TEXT@<br/>Total executed: 9001<br/>@@@" 311 "@@@STEP_TEXT@<br/>Total executed: 9001<br/>@@@"
312 ] 312 ]
313 }, 313 },
314 { 314 {
315 "cmd": [ 315 "cmd": [
316 "python", 316 "python",
317 "-u", 317 "-u",
318 "\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", 318 "import sys; sys.exit(1)"
319 "{\"ignored\": [], \"new\": [\"bad/totally-bad-probably.html\", \"tricky/t otally-maybe-not-awesome.html\"]}"
320 ], 319 ],
321 "cwd": "[SLAVE_BUILD]", 320 "cwd": "[SLAVE_BUILD]",
322 "name": "webkit_tests", 321 "name": "webkit_tests",
323 "~followup_annotations": [ 322 "~followup_annotations": [
323 "step returned non-zero exit code: 1",
324 "@@@STEP_TEXT@<br/>failures:<br/>bad/totally-bad-probably.html<br/>tricky/ totally-maybe-not-awesome.html<br/>@@@", 324 "@@@STEP_TEXT@<br/>failures:<br/>bad/totally-bad-probably.html<br/>tricky/ totally-maybe-not-awesome.html<br/>@@@",
325 "@@@STEP_LOG_LINE@python.inline@@@@",
326 "@@@STEP_LOG_LINE@python.inline@import sys, json@@@",
327 "@@@STEP_LOG_LINE@python.inline@failures = json.load(open(sys.argv[1], 'rb '))@@@",
328 "@@@STEP_LOG_LINE@python.inline@@@@",
329 "@@@STEP_LOG_LINE@python.inline@success = True@@@",
330 "@@@STEP_LOG_LINE@python.inline@@@@",
331 "@@@STEP_LOG_LINE@python.inline@if failures['new']:@@@",
332 "@@@STEP_LOG_LINE@python.inline@ success = False@@@",
333 "@@@STEP_LOG_LINE@python.inline@ print 'New failures:'@@@",
334 "@@@STEP_LOG_LINE@python.inline@ for f in failures['new']:@@@",
335 "@@@STEP_LOG_LINE@python.inline@ print f@@@",
336 "@@@STEP_LOG_LINE@python.inline@@@@",
337 "@@@STEP_LOG_LINE@python.inline@if failures['ignored']:@@@",
338 "@@@STEP_LOG_LINE@python.inline@ print 'Ignored failures:'@@@",
339 "@@@STEP_LOG_LINE@python.inline@ for f in failures['ignored']:@@@",
340 "@@@STEP_LOG_LINE@python.inline@ print f@@@",
341 "@@@STEP_LOG_LINE@python.inline@@@@",
342 "@@@STEP_LOG_LINE@python.inline@sys.exit(0 if success else 1)@@@",
343 "@@@STEP_LOG_END@python.inline@@@",
344 "@@@STEP_FAILURE@@@" 325 "@@@STEP_FAILURE@@@"
345 ] 326 ]
327 },
328 {
329 "name": "$final_result",
330 "reason": "1 out of 1 aggregated steps failed. Failures: Step('webkit_tests' ) failed with return_code 1",
331 "status_code": 1
346 } 332 }
347 ] 333 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698