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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/last_known_devices_basic.json

Issue 1882103002: 🏨 Switch Android gtests to use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: revert removing timeouts (premature) Created 4 years, 8 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 "cwd": "[SLAVE_BUILD]", 9 "cwd": "[SLAVE_BUILD]",
10 "name": "cleanup index.lock", 10 "name": "cleanup index.lock",
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 "cwd": "[SLAVE_BUILD]", 737 "cwd": "[SLAVE_BUILD]",
738 "env": { 738 "env": {
739 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 739 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
740 }, 740 },
741 "name": "Instrumentation test SmallTest" 741 "name": "Instrumentation test SmallTest"
742 }, 742 },
743 { 743 {
744 "cmd": [ 744 "cmd": [
745 "python", 745 "python",
746 "-u", 746 "-u",
747 "[SLAVE_BUILD]/src/build/android/test_runner.py", 747 "[SLAVE_BUILD]/src/out/Release/bin/run_unittests",
748 "gtest",
749 "-s",
750 "unittests",
751 "--blacklist-file", 748 "--blacklist-file",
752 "[SLAVE_BUILD]/src/out/bad_devices.json", 749 "[SLAVE_BUILD]/src/out/bad_devices.json",
753 "--verbose", 750 "--verbose",
754 "--release",
755 "--isolate_file_path=[SLAVE_BUILD]/src/some_file.isolate", 751 "--isolate_file_path=[SLAVE_BUILD]/src/some_file.isolate",
756 "--gtest_filter=WebRtc*", 752 "--gtest_filter=WebRtc*",
757 "--tool=asan" 753 "--tool=asan"
758 ], 754 ],
759 "cwd": "[SLAVE_BUILD]", 755 "cwd": "[SLAVE_BUILD]",
760 "env": { 756 "env": {
761 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release",
762 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 757 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
763 }, 758 },
764 "name": "unittests" 759 "name": "unittests"
765 }, 760 },
766 { 761 {
767 "cmd": [ 762 "cmd": [
768 "[SLAVE_BUILD]/src/tools/prepare-bisect-perf-regression.py", 763 "[SLAVE_BUILD]/src/tools/prepare-bisect-perf-regression.py",
769 "-w", 764 "-w",
770 "[SLAVE_BUILD]" 765 "[SLAVE_BUILD]"
771 ], 766 ],
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 834 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
840 }, 835 },
841 "name": "stack_tool_for_asan" 836 "name": "stack_tool_for_asan"
842 }, 837 },
843 { 838 {
844 "name": "$result", 839 "name": "$result",
845 "recipe_result": null, 840 "recipe_result": null,
846 "status_code": 0 841 "status_code": 0
847 } 842 }
848 ] 843 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698