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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_client_v8_fyi_Chromium_Win_SyzyASAN.json

Issue 2399353002: Chromium-recipe: add rmtree before copy for llvm_tools_to_copy. (Closed)
Patch Set: Added expected results generated by simulation test. Created 4 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_PACKAGE_REPO[build]\\scripts\\slave\\kill_processes.py" 6 "RECIPE_PACKAGE_REPO[build]\\scripts\\slave\\kill_processes.py"
7 ], 7 ],
8 "name": "taskkill" 8 "name": "taskkill"
9 }, 9 },
10 { 10 {
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 307 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
308 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 308 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
309 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 309 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
310 "@@@STEP_LOG_END@python.inline@@@" 310 "@@@STEP_LOG_END@python.inline@@@"
311 ] 311 ]
312 }, 312 },
313 { 313 {
314 "cmd": [ 314 "cmd": [
315 "python", 315 "python",
316 "-u", 316 "-u",
317 "\nimport os, sys\nfrom common import chromium_utils # Error? See https:// crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD irectory(sys.argv[1])\n",
318 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release\\llvm-symbolize r.exe"
319 ],
320 "name": "rmtree Purge llvm-symbolizer",
321 "~followup_annotations": [
322 "@@@STEP_LOG_LINE@python.inline@@@@",
323 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
324 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error? See https://crbug.com/584783.@@@",
325 "@@@STEP_LOG_LINE@python.inline@@@@",
326 "@@@STEP_LOG_LINE@python.inline@@@@",
327 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@",
328 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
329 "@@@STEP_LOG_END@python.inline@@@"
330 ]
331 },
332 {
333 "cmd": [
334 "python",
335 "-u",
336 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
337 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\third_party\\llvm-build\\Rel ease+Asserts\\bin\\llvm-symbolizer.exe",
338 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release"
339 ],
340 "name": "Copy llvm-symbolizer"
341 },
342 {
343 "cmd": [
344 "python",
345 "-u",
346 "\nimport os, sys\nfrom common import chromium_utils # Error? See https:// crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD irectory(sys.argv[1])\n",
347 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release\\sancov.exe"
348 ],
349 "name": "rmtree Purge sancov",
350 "~followup_annotations": [
351 "@@@STEP_LOG_LINE@python.inline@@@@",
352 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
353 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error? See https://crbug.com/584783.@@@",
354 "@@@STEP_LOG_LINE@python.inline@@@@",
355 "@@@STEP_LOG_LINE@python.inline@@@@",
356 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@",
357 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
358 "@@@STEP_LOG_END@python.inline@@@"
359 ]
360 },
361 {
362 "cmd": [
363 "python",
364 "-u",
365 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
366 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\third_party\\llvm-build\\Rel ease+Asserts\\bin\\sancov.exe",
367 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release"
368 ],
369 "name": "Copy sancov"
370 },
371 {
372 "cmd": [
373 "python",
374 "-u",
317 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir( sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys .argv[1]), f)\n", 375 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir( sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys .argv[1]), f)\n",
318 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release", 376 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release",
319 "/path/to/tmp/json" 377 "/path/to/tmp/json"
320 ], 378 ],
321 "name": "listdir build_dir", 379 "name": "listdir build_dir",
322 "~followup_annotations": [ 380 "~followup_annotations": [
323 "@@@STEP_LOG_LINE@json.output@[@@@", 381 "@@@STEP_LOG_LINE@json.output@[@@@",
324 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", 382 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@",
325 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", 383 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@",
326 "@@@STEP_LOG_LINE@json.output@]@@@", 384 "@@@STEP_LOG_LINE@json.output@]@@@",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@", 441 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@",
384 "@@@STEP_LOG_END@python.inline@@@" 442 "@@@STEP_LOG_END@python.inline@@@"
385 ] 443 ]
386 }, 444 },
387 { 445 {
388 "name": "$result", 446 "name": "$result",
389 "recipe_result": null, 447 "recipe_result": null,
390 "status_code": 0 448 "status_code": 0
391 } 449 }
392 ] 450 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698