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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/downgrade_install_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: 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 "[SLAVE_BUILD]/src/out/bad_devices.json" 557 "[SLAVE_BUILD]/src/out/bad_devices.json"
558 ], 558 ],
559 "cwd": "[SLAVE_BUILD]", 559 "cwd": "[SLAVE_BUILD]",
560 "env": { 560 "env": {
561 "BUILDTYPE": "Release" 561 "BUILDTYPE": "Release"
562 }, 562 },
563 "name": "Monkey Test" 563 "name": "Monkey Test"
564 }, 564 },
565 { 565 {
566 "cmd": [ 566 "cmd": [
567 "[SLAVE_BUILD]/src/build/android/adb_install_apk.py",
568 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
569 "-v",
570 "--blacklist-file",
571 "[SLAVE_BUILD]/src/out/bad_devices.json",
572 "--release"
573 ],
574 "cwd": "[SLAVE_BUILD]",
575 "env": {
576 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
577 },
578 "name": "install AndroidWebView.apk"
579 },
580 {
581 "cmd": [
582 "python", 567 "python",
583 "-u", 568 "-u",
584 "[SLAVE_BUILD]/src/build/android/test_runner.py", 569 "out/Release/bin/run_android_webview_test_apk",
585 "instrumentation", 570 "instrumentation",
586 "--test-apk",
587 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
588 "--blacklist-file", 571 "--blacklist-file",
589 "[SLAVE_BUILD]/src/out/bad_devices.json", 572 "[SLAVE_BUILD]/src/out/bad_devices.json",
590 "--logcat-output-file", 573 "--logcat-output-file",
591 "/path/to/tmp/", 574 "/path/to/tmp/",
592 "--apk-under-test",
593 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
594 "--isolate-file-path",
595 "android_webview/android_webview_test_apk.isolate",
596 "--flakiness-dashboard-server", 575 "--flakiness-dashboard-server",
597 "test-results.appspot.com", 576 "test-results.appspot.com",
598 "-A", 577 "-A",
599 "SmallTest", 578 "SmallTest",
600 "-E", 579 "-E",
601 "FlakyTest", 580 "FlakyTest",
602 "--screenshot", 581 "--screenshot",
603 "--release",
604 "--host-driven-root", 582 "--host-driven-root",
605 "[SLAVE_BUILD]/src/chrome/test", 583 "[SLAVE_BUILD]/src/chrome/test"
606 "--official-build"
607 ], 584 ],
608 "cwd": "[SLAVE_BUILD]", 585 "cwd": "[SLAVE_BUILD]",
609 "name": "Instrumentation test SmallTest", 586 "name": "Instrumentation test SmallTest",
610 "~followup_annotations": [ 587 "~followup_annotations": [
611 "@@@STEP_LOG_LINE@logcat@logging...@@@", 588 "@@@STEP_LOG_LINE@logcat@logging...@@@",
612 "@@@STEP_LOG_LINE@logcat@beep@@@", 589 "@@@STEP_LOG_LINE@logcat@beep@@@",
613 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 590 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
614 "@@@STEP_LOG_END@logcat@@@" 591 "@@@STEP_LOG_END@logcat@@@"
615 ] 592 ]
616 }, 593 },
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 689 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
713 }, 690 },
714 "name": "stack_tool_for_asan" 691 "name": "stack_tool_for_asan"
715 }, 692 },
716 { 693 {
717 "name": "$result", 694 "name": "$result",
718 "recipe_result": null, 695 "recipe_result": null,
719 "status_code": 0 696 "status_code": 0
720 } 697 }
721 ] 698 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698