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

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

Issue 1855663002: Make android's run_instrumentation_suite() use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@wrapper-1
Patch Set: coverage :( 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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 711 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
712 }, 712 },
713 "name": "install AndroidWebView.apk" 713 "name": "install AndroidWebView.apk"
714 }, 714 },
715 { 715 {
716 "cmd": [ 716 "cmd": [
717 "python", 717 "python",
718 "-u", 718 "-u",
719 "[SLAVE_BUILD]/src/build/android/test_runner.py", 719 "[SLAVE_BUILD]/src/build/android/test_runner.py",
720 "instrumentation", 720 "instrumentation",
721 "--test-apk",
722 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
723 "--blacklist-file", 721 "--blacklist-file",
724 "[SLAVE_BUILD]/src/out/bad_devices.json", 722 "[SLAVE_BUILD]/src/out/bad_devices.json",
725 "--logcat-output-file", 723 "--logcat-output-file",
726 "/path/to/tmp/", 724 "/path/to/tmp/",
727 "--apk-under-test",
728 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
729 "--isolate-file-path",
730 "android_webview/android_webview_test_apk.isolate",
731 "--flakiness-dashboard-server", 725 "--flakiness-dashboard-server",
732 "test-results.appspot.com", 726 "test-results.appspot.com",
733 "-A", 727 "-A",
734 "SmallTest", 728 "SmallTest",
735 "-E", 729 "-E",
736 "FlakyTest", 730 "FlakyTest",
737 "--screenshot", 731 "--screenshot",
738 "--release",
739 "--host-driven-root", 732 "--host-driven-root",
740 "[SLAVE_BUILD]/src/chrome/test", 733 "[SLAVE_BUILD]/src/chrome/test",
734 "--test-apk",
735 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
736 "--apk-under-test",
737 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
738 "--additional-apk",
739 "Additional.apk",
740 "--isolate-file-path",
741 "android_webview/android_webview_test_apk.isolate",
742 "--release",
741 "--official-build" 743 "--official-build"
742 ], 744 ],
743 "cwd": "[SLAVE_BUILD]", 745 "cwd": "[SLAVE_BUILD]",
744 "name": "Instrumentation test SmallTest", 746 "name": "Instrumentation test SmallTest",
745 "~followup_annotations": [ 747 "~followup_annotations": [
746 "@@@STEP_LOG_LINE@logcat@logging...@@@", 748 "@@@STEP_LOG_LINE@logcat@logging...@@@",
747 "@@@STEP_LOG_LINE@logcat@beep@@@", 749 "@@@STEP_LOG_LINE@logcat@beep@@@",
748 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 750 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
749 "@@@STEP_LOG_END@logcat@@@" 751 "@@@STEP_LOG_END@logcat@@@"
750 ] 752 ]
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 849 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
848 }, 850 },
849 "name": "stack_tool_for_asan" 851 "name": "stack_tool_for_asan"
850 }, 852 },
851 { 853 {
852 "name": "$result", 854 "name": "$result",
853 "recipe_result": null, 855 "recipe_result": null,
854 "status_code": 0 856 "status_code": 0
855 } 857 }
856 ] 858 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698