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

Side by Side Diff: scripts/slave/recipes/bisection/android_bisect.expected/local_basic_recipe_no_device.json

Issue 2400963002: Fix file.copy recipe_module to not fail if files are already equal. (Closed)
Patch Set: all expectations, omg! 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 "name": "ensure_goma" 4 "name": "ensure_goma"
5 }, 5 },
6 { 6 {
7 "cmd": [ 7 "cmd": [
8 "python", 8 "python",
9 "-u", 9 "-u",
10 "RECIPE_MODULE[depot_tools::cipd]/resources/bootstrap.py", 10 "RECIPE_MODULE[depot_tools::cipd]/resources/bootstrap.py",
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 "CHROMIUM_OUTPUT_DIR": "[BUILDER_CACHE]/android_one_perf_bisect/src/out/Re lease", 580 "CHROMIUM_OUTPUT_DIR": "[BUILDER_CACHE]/android_one_perf_bisect/src/out/Re lease",
581 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 581 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
582 "PATH": "[BUILDER_CACHE]/android_one_perf_bisect/src/third_party/android_t ools/sdk/platform-tools:[BUILDER_CACHE]/android_one_perf_bisect/src/build/androi d:%(PATH)s" 582 "PATH": "[BUILDER_CACHE]/android_one_perf_bisect/src/third_party/android_t ools/sdk/platform-tools:[BUILDER_CACHE]/android_one_perf_bisect/src/build/androi d:%(PATH)s"
583 }, 583 },
584 "name": "stack_tool_with_logcat_dump" 584 "name": "stack_tool_with_logcat_dump"
585 }, 585 },
586 { 586 {
587 "cmd": [ 587 "cmd": [
588 "python", 588 "python",
589 "-u", 589 "-u",
590 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 590 "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shuti l, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit (0)\nshutil.copy(sys.argv[1], sys.argv[2])\n",
591 "[BUILDER_CACHE]/android_one_perf_bisect/src/chrome/VERSION", 591 "[BUILDER_CACHE]/android_one_perf_bisect/src/chrome/VERSION",
592 "/path/to/tmp/" 592 "/path/to/tmp/"
593 ], 593 ],
594 "cwd": "[BUILDER_CACHE]/android_one_perf_bisect", 594 "cwd": "[BUILDER_CACHE]/android_one_perf_bisect",
595 "name": "get version" 595 "name": "get version"
596 }, 596 },
597 { 597 {
598 "cmd": [ 598 "cmd": [
599 "[BUILDER_CACHE]/android_one_perf_bisect/src/build/android/tombstones.py", 599 "[BUILDER_CACHE]/android_one_perf_bisect/src/build/android/tombstones.py",
600 "-a", 600 "-a",
(...skipping 28 matching lines...) Expand all
629 "@@@STEP_LOG_END@python.inline@@@" 629 "@@@STEP_LOG_END@python.inline@@@"
630 ] 630 ]
631 }, 631 },
632 { 632 {
633 "name": "$result", 633 "name": "$result",
634 "reason": "No Android test devices are available", 634 "reason": "No Android test devices are available",
635 "recipe_result": null, 635 "recipe_result": null,
636 "status_code": 1 636 "status_code": 1
637 } 637 }
638 ] 638 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698