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

Side by Side Diff: scripts/slave/recipe_modules/chromedriver/example.expected/Android_ChromeDriver_basic.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'}]", 8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag ed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromium/src .git'}]",
9 "--patch_root", 9 "--patch_root",
10 "src", 10 "src",
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 ], 641 ],
642 "name": "Download Test Results Log.gsutil download results log", 642 "name": "Download Test Results Log.gsutil download results log",
643 "~followup_annotations": [ 643 "~followup_annotations": [
644 "@@@STEP_NEST_LEVEL@1@@@" 644 "@@@STEP_NEST_LEVEL@1@@@"
645 ] 645 ]
646 }, 646 },
647 { 647 {
648 "cmd": [ 648 "cmd": [
649 "python", 649 "python",
650 "-u", 650 "-u",
651 "\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", 651 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
652 "[TMP_BASE]/results_log_tmp_10/android_log.json", 652 "[TMP_BASE]/results_log_tmp_10/android_log.json",
653 "/path/to/tmp/" 653 "/path/to/tmp/"
654 ], 654 ],
655 "name": "Download Test Results Log.read results log file", 655 "name": "Download Test Results Log.read results log file",
656 "~followup_annotations": [ 656 "~followup_annotations": [
657 "@@@STEP_NEST_LEVEL@1@@@" 657 "@@@STEP_NEST_LEVEL@1@@@"
658 ] 658 ]
659 }, 659 },
660 { 660 {
661 "cmd": [ 661 "cmd": [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 "~followup_annotations": [ 715 "~followup_annotations": [
716 "@@@STEP_NEST_LEVEL@1@@@" 716 "@@@STEP_NEST_LEVEL@1@@@"
717 ] 717 ]
718 }, 718 },
719 { 719 {
720 "name": "$result", 720 "name": "$result",
721 "recipe_result": null, 721 "recipe_result": null,
722 "status_code": 0 722 "status_code": 0
723 } 723 }
724 ] 724 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698