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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/slow_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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 "name": "Monkey Test" 548 "name": "Monkey Test"
549 }, 549 },
550 { 550 {
551 "cmd": [ 551 "cmd": [
552 "python", 552 "python",
553 "-u", 553 "-u",
554 "[SLAVE_BUILD]/src/build/android/test_runner.py", 554 "[SLAVE_BUILD]/src/build/android/test_runner.py",
555 "instrumentation", 555 "instrumentation",
556 "--blacklist-file", 556 "--blacklist-file",
557 "[SLAVE_BUILD]/src/out/bad_devices.json", 557 "[SLAVE_BUILD]/src/out/bad_devices.json",
558 "--logcat-output-file",
559 "/path/to/tmp/",
560 "--flakiness-dashboard-server", 558 "--flakiness-dashboard-server",
561 "test-results.appspot.com", 559 "test-results.appspot.com",
562 "-A", 560 "-A",
563 "SmallTest", 561 "SmallTest",
564 "-E", 562 "-E",
565 "FlakyTest", 563 "FlakyTest",
566 "--screenshot", 564 "--screenshot",
567 "--host-driven-root", 565 "--host-driven-root",
568 "[SLAVE_BUILD]/src/chrome/test", 566 "[SLAVE_BUILD]/src/chrome/test",
569 "--timeout-scale", 567 "--timeout-scale",
570 "2", 568 "2",
571 "--test-apk", 569 "--test-apk",
572 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk", 570 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
573 "--apk-under-test", 571 "--apk-under-test",
574 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk", 572 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
575 "--additional-apk", 573 "--additional-apk",
576 "Additional.apk", 574 "Additional.apk",
577 "--isolate-file-path", 575 "--isolate-file-path",
578 "android_webview/android_webview_test_apk.isolate", 576 "android_webview/android_webview_test_apk.isolate",
579 "--release", 577 "--release",
580 "--official-build" 578 "--official-build"
581 ], 579 ],
582 "cwd": "[SLAVE_BUILD]", 580 "cwd": "[SLAVE_BUILD]",
583 "env": { 581 "env": {
584 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 582 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
585 }, 583 },
586 "name": "Instrumentation test SmallTest", 584 "name": "Instrumentation test SmallTest"
587 "~followup_annotations": [
588 "@@@STEP_LOG_LINE@logcat@logging...@@@",
589 "@@@STEP_LOG_LINE@logcat@beep@@@",
590 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
591 "@@@STEP_LOG_END@logcat@@@"
592 ]
593 }, 585 },
594 { 586 {
595 "cmd": [ 587 "cmd": [
596 "python", 588 "python",
597 "-u", 589 "-u",
598 "[SLAVE_BUILD]/src/build/android/test_runner.py", 590 "[SLAVE_BUILD]/src/build/android/test_runner.py",
599 "gtest", 591 "gtest",
600 "-s", 592 "-s",
601 "unittests", 593 "unittests",
602 "--blacklist-file", 594 "--blacklist-file",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 682 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
691 }, 683 },
692 "name": "stack_tool_for_asan" 684 "name": "stack_tool_for_asan"
693 }, 685 },
694 { 686 {
695 "name": "$result", 687 "name": "$result",
696 "recipe_result": null, 688 "recipe_result": null,
697 "status_code": 0 689 "status_code": 0
698 } 690 }
699 ] 691 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698