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

Side by Side Diff: scripts/slave/recipes/chromium.expected/dynamic_instrumentation_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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release", 710 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release",
711 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 711 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
712 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 712 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
713 }, 713 },
714 "name": "stack_tool_with_logcat_dump" 714 "name": "stack_tool_with_logcat_dump"
715 }, 715 },
716 { 716 {
717 "cmd": [ 717 "cmd": [
718 "python", 718 "python",
719 "-u", 719 "-u",
720 "\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", 720 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
721 "[SLAVE_BUILD]/src/chrome/VERSION", 721 "[SLAVE_BUILD]/src/chrome/VERSION",
722 "/path/to/tmp/" 722 "/path/to/tmp/"
723 ], 723 ],
724 "env": { 724 "env": {
725 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 725 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
726 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 726 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
727 }, 727 },
728 "name": "get version" 728 "name": "get version"
729 }, 729 },
730 { 730 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 "@@@STEP_LOG_END@python.inline@@@" 764 "@@@STEP_LOG_END@python.inline@@@"
765 ] 765 ]
766 }, 766 },
767 { 767 {
768 "name": "$result", 768 "name": "$result",
769 "reason": "1 tests failed: ['ChromePublicTest']", 769 "reason": "1 tests failed: ['ChromePublicTest']",
770 "recipe_result": null, 770 "recipe_result": null,
771 "status_code": 1 771 "status_code": 1
772 } 772 }
773 ] 773 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698