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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/device_flags_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: 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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 "[SLAVE_BUILD]/src/out/bad_devices.json" 541 "[SLAVE_BUILD]/src/out/bad_devices.json"
542 ], 542 ],
543 "cwd": "[SLAVE_BUILD]", 543 "cwd": "[SLAVE_BUILD]",
544 "env": { 544 "env": {
545 "BUILDTYPE": "Release" 545 "BUILDTYPE": "Release"
546 }, 546 },
547 "name": "Monkey Test" 547 "name": "Monkey Test"
548 }, 548 },
549 { 549 {
550 "cmd": [ 550 "cmd": [
551 "[SLAVE_BUILD]/src/build/android/adb_install_apk.py",
552 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
553 "-v",
554 "--blacklist-file",
555 "[SLAVE_BUILD]/src/out/bad_devices.json",
556 "--release"
557 ],
558 "cwd": "[SLAVE_BUILD]",
559 "env": {
560 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
561 },
562 "name": "install AndroidWebView.apk"
563 },
564 {
565 "cmd": [
566 "python", 551 "python",
567 "-u", 552 "-u",
568 "[SLAVE_BUILD]/src/build/android/test_runner.py", 553 "out/Release/bin/run_android_webview_test_apk",
569 "instrumentation", 554 "instrumentation",
570 "--test-apk",
571 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
572 "--blacklist-file", 555 "--blacklist-file",
573 "[SLAVE_BUILD]/src/out/bad_devices.json", 556 "[SLAVE_BUILD]/src/out/bad_devices.json",
574 "--logcat-output-file", 557 "--logcat-output-file",
575 "/path/to/tmp/", 558 "/path/to/tmp/",
576 "--apk-under-test",
577 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
578 "--isolate-file-path",
579 "android_webview/android_webview_test_apk.isolate",
580 "--flakiness-dashboard-server", 559 "--flakiness-dashboard-server",
581 "test-results.appspot.com", 560 "test-results.appspot.com",
582 "-A", 561 "-A",
583 "SmallTest", 562 "SmallTest",
584 "-E", 563 "-E",
585 "FlakyTest", 564 "FlakyTest",
586 "--screenshot", 565 "--screenshot",
587 "--release",
588 "--host-driven-root", 566 "--host-driven-root",
589 "[SLAVE_BUILD]/src/chrome/test", 567 "[SLAVE_BUILD]/src/chrome/test",
590 "--official-build",
591 "--device-flags", 568 "--device-flags",
592 "device_flags_file" 569 "device_flags_file"
593 ], 570 ],
594 "cwd": "[SLAVE_BUILD]", 571 "cwd": "[SLAVE_BUILD]",
595 "name": "Instrumentation test SmallTest", 572 "name": "Instrumentation test SmallTest",
596 "~followup_annotations": [ 573 "~followup_annotations": [
597 "@@@STEP_LOG_LINE@logcat@logging...@@@", 574 "@@@STEP_LOG_LINE@logcat@logging...@@@",
598 "@@@STEP_LOG_LINE@logcat@beep@@@", 575 "@@@STEP_LOG_LINE@logcat@beep@@@",
599 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 576 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
600 "@@@STEP_LOG_END@logcat@@@" 577 "@@@STEP_LOG_END@logcat@@@"
(...skipping 97 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" 675 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
699 }, 676 },
700 "name": "stack_tool_for_asan" 677 "name": "stack_tool_for_asan"
701 }, 678 },
702 { 679 {
703 "name": "$result", 680 "name": "$result",
704 "recipe_result": null, 681 "recipe_result": null,
705 "status_code": 0 682 "status_code": 0
706 } 683 }
707 ] 684 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698