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

Side by Side Diff: scripts/slave/recipes/chromium.expected/dynamic_instrumentation_test_with_timeout_scale.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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Debug", 647 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Debug",
648 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 648 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
649 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 649 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
650 }, 650 },
651 "name": "stack_tool_with_logcat_dump" 651 "name": "stack_tool_with_logcat_dump"
652 }, 652 },
653 { 653 {
654 "cmd": [ 654 "cmd": [
655 "python", 655 "python",
656 "-u", 656 "-u",
657 "\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", 657 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
658 "[SLAVE_BUILD]/src/chrome/VERSION", 658 "[SLAVE_BUILD]/src/chrome/VERSION",
659 "/path/to/tmp/" 659 "/path/to/tmp/"
660 ], 660 ],
661 "env": { 661 "env": {
662 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 662 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
663 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 663 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
664 }, 664 },
665 "name": "get version" 665 "name": "get version"
666 }, 666 },
667 { 667 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 "@@@STEP_LOG_END@python.inline@@@" 701 "@@@STEP_LOG_END@python.inline@@@"
702 ] 702 ]
703 }, 703 },
704 { 704 {
705 "name": "$result", 705 "name": "$result",
706 "reason": "1 tests failed: ['ChromePublicTest']", 706 "reason": "1 tests failed: ['ChromePublicTest']",
707 "recipe_result": null, 707 "recipe_result": null,
708 "status_code": 1 708 "status_code": 1
709 } 709 }
710 ] 710 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698