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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/perf_tests_failure.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 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n", 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n",
7 "[SLAVE_BUILD]" 7 "[SLAVE_BUILD]"
8 ], 8 ],
9 "name": "cleanup index.lock", 9 "name": "cleanup index.lock",
10 "~followup_annotations": [ 10 "~followup_annotations": [
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 "src", 181 "src",
182 "foo", 182 "foo",
183 "src/repo" 183 "src/repo"
184 ], 184 ],
185 "name": "tree truth steps" 185 "name": "tree truth steps"
186 }, 186 },
187 { 187 {
188 "cmd": [ 188 "cmd": [
189 "python", 189 "python",
190 "-u", 190 "-u",
191 "\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", 191 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
192 "[SLAVE_BUILD]/src/chrome/VERSION", 192 "[SLAVE_BUILD]/src/chrome/VERSION",
193 "/path/to/tmp/" 193 "/path/to/tmp/"
194 ], 194 ],
195 "name": "get version" 195 "name": "get version"
196 }, 196 },
197 { 197 {
198 "cmd": [ 198 "cmd": [
199 "[SLAVE_BUILD]/src/testing/scripts/host_info.py", 199 "[SLAVE_BUILD]/src/testing/scripts/host_info.py",
200 "--args", 200 "--args",
201 "[\"--known-devices-file\", \"[HOME]/.android/known_devices.json\"]", 201 "[\"--known-devices-file\", \"[HOME]/.android/known_devices.json\"]",
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 ] 639 ]
640 }, 640 },
641 { 641 {
642 "cmd": [], 642 "cmd": [],
643 "name": "fix_device_file_format" 643 "name": "fix_device_file_format"
644 }, 644 },
645 { 645 {
646 "cmd": [ 646 "cmd": [
647 "python", 647 "python",
648 "-u", 648 "-u",
649 "\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", 649 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
650 "[HOME]/.android/known_devices.json", 650 "[HOME]/.android/known_devices.json",
651 "/path/to/tmp/" 651 "/path/to/tmp/"
652 ], 652 ],
653 "name": "fix_device_file_format.read_device_file", 653 "name": "fix_device_file_format.read_device_file",
654 "~followup_annotations": [ 654 "~followup_annotations": [
655 "@@@STEP_NEST_LEVEL@1@@@", 655 "@@@STEP_NEST_LEVEL@1@@@",
656 "@@@STEP_TEXT@file format is compatible@@@" 656 "@@@STEP_TEXT@file format is compatible@@@"
657 ] 657 ]
658 }, 658 },
659 { 659 {
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release", 1083 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release",
1084 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 1084 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
1085 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 1085 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
1086 }, 1086 },
1087 "name": "stack_tool_with_logcat_dump" 1087 "name": "stack_tool_with_logcat_dump"
1088 }, 1088 },
1089 { 1089 {
1090 "cmd": [ 1090 "cmd": [
1091 "python", 1091 "python",
1092 "-u", 1092 "-u",
1093 "\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", 1093 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
1094 "[SLAVE_BUILD]/src/chrome/VERSION", 1094 "[SLAVE_BUILD]/src/chrome/VERSION",
1095 "/path/to/tmp/" 1095 "/path/to/tmp/"
1096 ], 1096 ],
1097 "name": "get version (2)" 1097 "name": "get version (2)"
1098 }, 1098 },
1099 { 1099 {
1100 "cmd": [ 1100 "cmd": [
1101 "[SLAVE_BUILD]/src/build/android/tombstones.py", 1101 "[SLAVE_BUILD]/src/build/android/tombstones.py",
1102 "-a", 1102 "-a",
1103 "-s", 1103 "-s",
(...skipping 19 matching lines...) Expand all
1123 }, 1123 },
1124 "name": "stack_tool_for_asan" 1124 "name": "stack_tool_for_asan"
1125 }, 1125 },
1126 { 1126 {
1127 "name": "$result", 1127 "name": "$result",
1128 "reason": "sharded perf tests failed [StepFailure(\"Step('perf_test.foo') fa iled with return_code 1\",)]", 1128 "reason": "sharded perf tests failed [StepFailure(\"Step('perf_test.foo') fa iled with return_code 1\",)]",
1129 "recipe_result": null, 1129 "recipe_result": null,
1130 "status_code": 1 1130 "status_code": 1
1131 } 1131 }
1132 ] 1132 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698