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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_chromium_fyi_Android_Remoting_Tests.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]/Android_Remoting_Tests", 7 "[BUILDER_CACHE]/Android_Remoting_Tests",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout path", 10 "name": "makedirs checkout path",
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 "CHROMIUM_OUTPUT_DIR": "[BUILDER_CACHE]/Android_Remoting_Tests/src/out/Rel ease", 737 "CHROMIUM_OUTPUT_DIR": "[BUILDER_CACHE]/Android_Remoting_Tests/src/out/Rel ease",
738 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 738 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
739 "PATH": "[BUILDER_CACHE]/Android_Remoting_Tests/src/third_party/android_to ols/sdk/platform-tools:[BUILDER_CACHE]/Android_Remoting_Tests/src/build/android: %(PATH)s" 739 "PATH": "[BUILDER_CACHE]/Android_Remoting_Tests/src/third_party/android_to ols/sdk/platform-tools:[BUILDER_CACHE]/Android_Remoting_Tests/src/build/android: %(PATH)s"
740 }, 740 },
741 "name": "stack_tool_with_logcat_dump" 741 "name": "stack_tool_with_logcat_dump"
742 }, 742 },
743 { 743 {
744 "cmd": [ 744 "cmd": [
745 "python", 745 "python",
746 "-u", 746 "-u",
747 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 747 "\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",
748 "[BUILDER_CACHE]/Android_Remoting_Tests/src/chrome/VERSION", 748 "[BUILDER_CACHE]/Android_Remoting_Tests/src/chrome/VERSION",
749 "/path/to/tmp/" 749 "/path/to/tmp/"
750 ], 750 ],
751 "cwd": "[BUILDER_CACHE]/Android_Remoting_Tests", 751 "cwd": "[BUILDER_CACHE]/Android_Remoting_Tests",
752 "env": { 752 "env": {
753 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 753 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
754 "PATH": "[BUILDER_CACHE]/Android_Remoting_Tests/src/third_party/android_to ols/sdk/platform-tools:[BUILDER_CACHE]/Android_Remoting_Tests/src/build/android: %(PATH)s" 754 "PATH": "[BUILDER_CACHE]/Android_Remoting_Tests/src/third_party/android_to ols/sdk/platform-tools:[BUILDER_CACHE]/Android_Remoting_Tests/src/build/android: %(PATH)s"
755 }, 755 },
756 "name": "get version" 756 "name": "get version"
757 }, 757 },
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 "@@@STEP_LOG_END@python.inline@@@" 794 "@@@STEP_LOG_END@python.inline@@@"
795 ] 795 ]
796 }, 796 },
797 { 797 {
798 "name": "$result", 798 "name": "$result",
799 "reason": "1 tests failed: ['ChromotingTest']", 799 "reason": "1 tests failed: ['ChromotingTest']",
800 "recipe_result": null, 800 "recipe_result": null,
801 "status_code": 1 801 "status_code": 1
802 } 802 }
803 ] 803 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698