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

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

Powered by Google App Engine
This is Rietveld 408576698