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

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

Powered by Google App Engine
This is Rietveld 408576698