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

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

Issue 1869193003: Remove logcats from instrumentation test run steps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase! 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 | Annotate | Revision Log
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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 "name": "Monkey Test" 565 "name": "Monkey Test"
566 }, 566 },
567 { 567 {
568 "cmd": [ 568 "cmd": [
569 "python", 569 "python",
570 "-u", 570 "-u",
571 "[SLAVE_BUILD]/src/build/android/test_runner.py", 571 "[SLAVE_BUILD]/src/build/android/test_runner.py",
572 "instrumentation", 572 "instrumentation",
573 "--blacklist-file", 573 "--blacklist-file",
574 "[SLAVE_BUILD]/src/out/bad_devices.json", 574 "[SLAVE_BUILD]/src/out/bad_devices.json",
575 "--logcat-output-file",
576 "/path/to/tmp/",
577 "--flakiness-dashboard-server", 575 "--flakiness-dashboard-server",
578 "test-results.appspot.com", 576 "test-results.appspot.com",
579 "-A", 577 "-A",
580 "SmallTest", 578 "SmallTest",
581 "-E", 579 "-E",
582 "FlakyTest", 580 "FlakyTest",
583 "--screenshot", 581 "--screenshot",
584 "--host-driven-root", 582 "--host-driven-root",
585 "[SLAVE_BUILD]/src/chrome/test", 583 "[SLAVE_BUILD]/src/chrome/test",
586 "--test-apk", 584 "--test-apk",
587 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk", 585 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
588 "--apk-under-test", 586 "--apk-under-test",
589 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk", 587 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
590 "--additional-apk", 588 "--additional-apk",
591 "Additional.apk", 589 "Additional.apk",
592 "--isolate-file-path", 590 "--isolate-file-path",
593 "android_webview/android_webview_test_apk.isolate", 591 "android_webview/android_webview_test_apk.isolate",
594 "--release", 592 "--release",
595 "--official-build" 593 "--official-build"
596 ], 594 ],
597 "cwd": "[SLAVE_BUILD]", 595 "cwd": "[SLAVE_BUILD]",
598 "env": { 596 "env": {
599 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 597 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
600 }, 598 },
601 "name": "Instrumentation test SmallTest", 599 "name": "Instrumentation test SmallTest"
602 "~followup_annotations": [
603 "@@@STEP_LOG_LINE@logcat@logging...@@@",
604 "@@@STEP_LOG_LINE@logcat@beep@@@",
605 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
606 "@@@STEP_LOG_END@logcat@@@"
607 ]
608 }, 600 },
609 { 601 {
610 "cmd": [ 602 "cmd": [
611 "python", 603 "python",
612 "-u", 604 "-u",
613 "[SLAVE_BUILD]/src/build/android/test_runner.py", 605 "[SLAVE_BUILD]/src/build/android/test_runner.py",
614 "gtest", 606 "gtest",
615 "-s", 607 "-s",
616 "unittests", 608 "unittests",
617 "--blacklist-file", 609 "--blacklist-file",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 697 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
706 }, 698 },
707 "name": "stack_tool_for_asan" 699 "name": "stack_tool_for_asan"
708 }, 700 },
709 { 701 {
710 "name": "$result", 702 "name": "$result",
711 "recipe_result": null, 703 "recipe_result": null,
712 "status_code": 0 704 "status_code": 0
713 } 705 }
714 ] 706 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698