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/chromium_android/example.expected/basic_builder_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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 577 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
578 }, 578 },
579 "name": "install AndroidWebView.apk" 579 "name": "install AndroidWebView.apk"
580 }, 580 },
581 { 581 {
582 "cmd": [ 582 "cmd": [
583 "python", 583 "python",
584 "-u", 584 "-u",
585 "[SLAVE_BUILD]/src/build/android/test_runner.py", 585 "[SLAVE_BUILD]/src/build/android/test_runner.py",
586 "instrumentation", 586 "instrumentation",
587 "--test-apk",
588 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
589 "--blacklist-file", 587 "--blacklist-file",
590 "[SLAVE_BUILD]/src/out/bad_devices.json", 588 "[SLAVE_BUILD]/src/out/bad_devices.json",
591 "--logcat-output-file", 589 "--logcat-output-file",
592 "/path/to/tmp/", 590 "/path/to/tmp/",
593 "--apk-under-test",
594 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
595 "--isolate-file-path",
596 "android_webview/android_webview_test_apk.isolate",
597 "--flakiness-dashboard-server", 591 "--flakiness-dashboard-server",
598 "test-results.appspot.com", 592 "test-results.appspot.com",
599 "-A", 593 "-A",
600 "SmallTest", 594 "SmallTest",
601 "-E", 595 "-E",
602 "FlakyTest", 596 "FlakyTest",
603 "--screenshot", 597 "--screenshot",
604 "--release",
605 "--host-driven-root", 598 "--host-driven-root",
606 "[SLAVE_BUILD]/src/chrome/test", 599 "[SLAVE_BUILD]/src/chrome/test",
600 "--test-apk",
601 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
602 "--apk-under-test",
603 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
604 "--additional-apk",
605 "Additional.apk",
606 "--isolate-file-path",
607 "android_webview/android_webview_test_apk.isolate",
608 "--release",
607 "--official-build" 609 "--official-build"
608 ], 610 ],
609 "cwd": "[SLAVE_BUILD]", 611 "cwd": "[SLAVE_BUILD]",
610 "name": "Instrumentation test SmallTest", 612 "name": "Instrumentation test SmallTest",
611 "~followup_annotations": [ 613 "~followup_annotations": [
612 "@@@STEP_LOG_LINE@logcat@logging...@@@", 614 "@@@STEP_LOG_LINE@logcat@logging...@@@",
613 "@@@STEP_LOG_LINE@logcat@beep@@@", 615 "@@@STEP_LOG_LINE@logcat@beep@@@",
614 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 616 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
615 "@@@STEP_LOG_END@logcat@@@" 617 "@@@STEP_LOG_END@logcat@@@"
616 ] 618 ]
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 715 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
714 }, 716 },
715 "name": "stack_tool_for_asan" 717 "name": "stack_tool_for_asan"
716 }, 718 },
717 { 719 {
718 "name": "$result", 720 "name": "$result",
719 "recipe_result": null, 721 "recipe_result": null,
720 "status_code": 0 722 "status_code": 0
721 } 723 }
722 ] 724 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698