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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/webview_tester_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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 562 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
563 }, 563 },
564 "name": "install AndroidWebView.apk" 564 "name": "install AndroidWebView.apk"
565 }, 565 },
566 { 566 {
567 "cmd": [ 567 "cmd": [
568 "python", 568 "python",
569 "-u", 569 "-u",
570 "[SLAVE_BUILD]/src/build/android/test_runner.py", 570 "[SLAVE_BUILD]/src/build/android/test_runner.py",
571 "instrumentation", 571 "instrumentation",
572 "--test-apk",
573 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
574 "--blacklist-file", 572 "--blacklist-file",
575 "[SLAVE_BUILD]/src/out/bad_devices.json", 573 "[SLAVE_BUILD]/src/out/bad_devices.json",
576 "--logcat-output-file", 574 "--logcat-output-file",
577 "/path/to/tmp/", 575 "/path/to/tmp/",
578 "--apk-under-test",
579 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
580 "--isolate-file-path",
581 "android_webview/android_webview_test_apk.isolate",
582 "--flakiness-dashboard-server", 576 "--flakiness-dashboard-server",
583 "test-results.appspot.com", 577 "test-results.appspot.com",
584 "-A", 578 "-A",
585 "SmallTest", 579 "SmallTest",
586 "-E", 580 "-E",
587 "FlakyTest", 581 "FlakyTest",
588 "--screenshot", 582 "--screenshot",
589 "--release",
590 "--host-driven-root", 583 "--host-driven-root",
591 "[SLAVE_BUILD]/src/chrome/test", 584 "[SLAVE_BUILD]/src/chrome/test",
585 "--test-apk",
586 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
587 "--apk-under-test",
588 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
589 "--additional-apk",
590 "Additional.apk",
591 "--isolate-file-path",
592 "android_webview/android_webview_test_apk.isolate",
593 "--release",
592 "--official-build" 594 "--official-build"
593 ], 595 ],
594 "cwd": "[SLAVE_BUILD]", 596 "cwd": "[SLAVE_BUILD]",
595 "name": "Instrumentation test SmallTest", 597 "name": "Instrumentation test SmallTest",
596 "~followup_annotations": [ 598 "~followup_annotations": [
597 "@@@STEP_LOG_LINE@logcat@logging...@@@", 599 "@@@STEP_LOG_LINE@logcat@logging...@@@",
598 "@@@STEP_LOG_LINE@logcat@beep@@@", 600 "@@@STEP_LOG_LINE@logcat@beep@@@",
599 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 601 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
600 "@@@STEP_LOG_END@logcat@@@" 602 "@@@STEP_LOG_END@logcat@@@"
601 ] 603 ]
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 700 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
699 }, 701 },
700 "name": "stack_tool_for_asan" 702 "name": "stack_tool_for_asan"
701 }, 703 },
702 { 704 {
703 "name": "$result", 705 "name": "$result",
704 "recipe_result": null, 706 "recipe_result": null,
705 "status_code": 0 707 "status_code": 0
706 } 708 }
707 ] 709 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698