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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_chromium_webkit_WebKit_Android__Nexus4_.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 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
7 "[BUILDER_CACHE]/WebKit_Android__Nexus4_", 7 "[BUILDER_CACHE]/WebKit_Android__Nexus4_",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout path", 10 "name": "makedirs checkout path",
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 "CHROMIUM_OUTPUT_DIR": "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/out/Re lease", 786 "CHROMIUM_OUTPUT_DIR": "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/out/Re lease",
787 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 787 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
788 "PATH": "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/third_party/android_t ools/sdk/platform-tools:[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/build/androi d:%(PATH)s" 788 "PATH": "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/third_party/android_t ools/sdk/platform-tools:[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/build/androi d:%(PATH)s"
789 }, 789 },
790 "name": "stack_tool_with_logcat_dump" 790 "name": "stack_tool_with_logcat_dump"
791 }, 791 },
792 { 792 {
793 "cmd": [ 793 "cmd": [
794 "python", 794 "python",
795 "-u", 795 "-u",
796 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 796 "\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",
797 "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/chrome/VERSION", 797 "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/chrome/VERSION",
798 "/path/to/tmp/" 798 "/path/to/tmp/"
799 ], 799 ],
800 "cwd": "[BUILDER_CACHE]/WebKit_Android__Nexus4_", 800 "cwd": "[BUILDER_CACHE]/WebKit_Android__Nexus4_",
801 "env": { 801 "env": {
802 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 802 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
803 "PATH": "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/third_party/android_t ools/sdk/platform-tools:[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/build/androi d:%(PATH)s" 803 "PATH": "[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/third_party/android_t ools/sdk/platform-tools:[BUILDER_CACHE]/WebKit_Android__Nexus4_/src/build/androi d:%(PATH)s"
804 }, 804 },
805 "name": "get version" 805 "name": "get version"
806 }, 806 },
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", 842 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@",
843 "@@@STEP_LOG_END@python.inline@@@" 843 "@@@STEP_LOG_END@python.inline@@@"
844 ] 844 ]
845 }, 845 },
846 { 846 {
847 "name": "$result", 847 "name": "$result",
848 "recipe_result": null, 848 "recipe_result": null,
849 "status_code": 0 849 "status_code": 0
850 } 850 }
851 ] 851 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698