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

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

Issue 2402583003: Revert "Fix file.copy recipe_module to not fail if files are already equal." (Closed)
Patch Set: 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_MODULE[depot_tools::bot_update]/resources/bot_update.py", 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7 "--spec", 7 "--spec",
8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag ed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src .git'}]\ntarget_os = ['android']", 8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag ed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src .git'}]\ntarget_os = ['android']",
9 "--patch_root", 9 "--patch_root",
10 "src", 10 "src",
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release", 704 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release",
705 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 705 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
706 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 706 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
707 }, 707 },
708 "name": "stack_tool_with_logcat_dump" 708 "name": "stack_tool_with_logcat_dump"
709 }, 709 },
710 { 710 {
711 "cmd": [ 711 "cmd": [
712 "python", 712 "python",
713 "-u", 713 "-u",
714 "\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", 714 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
715 "[SLAVE_BUILD]/src/chrome/VERSION", 715 "[SLAVE_BUILD]/src/chrome/VERSION",
716 "/path/to/tmp/" 716 "/path/to/tmp/"
717 ], 717 ],
718 "env": { 718 "env": {
719 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 719 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
720 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 720 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
721 }, 721 },
722 "name": "get version" 722 "name": "get version"
723 }, 723 },
724 { 724 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 "@@@STEP_LOG_END@python.inline@@@" 758 "@@@STEP_LOG_END@python.inline@@@"
759 ] 759 ]
760 }, 760 },
761 { 761 {
762 "name": "$result", 762 "name": "$result",
763 "reason": "1 tests failed: ['blimp_test_apk']", 763 "reason": "1 tests failed: ['blimp_test_apk']",
764 "recipe_result": null, 764 "recipe_result": null,
765 "status_code": 1 765 "status_code": 1
766 } 766 }
767 ] 767 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698