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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/webview_cts_unexecuted_tests.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 "--test-apk", 567 "--test-apk",
570 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk", 568 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
571 "--apk-under-test", 569 "--apk-under-test",
572 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk", 570 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
573 "--additional-apk", 571 "--additional-apk",
574 "Additional.apk", 572 "Additional.apk",
575 "--isolate-file-path", 573 "--isolate-file-path",
576 "android_webview/android_webview_test_apk.isolate", 574 "android_webview/android_webview_test_apk.isolate",
577 "--release", 575 "--release",
578 "--official-build" 576 "--official-build"
579 ], 577 ],
580 "cwd": "[SLAVE_BUILD]", 578 "cwd": "[SLAVE_BUILD]",
581 "env": { 579 "env": {
582 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 580 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
583 }, 581 },
584 "name": "Instrumentation test SmallTest", 582 "name": "Instrumentation test SmallTest"
585 "~followup_annotations": [
586 "@@@STEP_LOG_LINE@logcat@logging...@@@",
587 "@@@STEP_LOG_LINE@logcat@beep@@@",
588 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
589 "@@@STEP_LOG_END@logcat@@@"
590 ]
591 }, 583 },
592 { 584 {
593 "cmd": [ 585 "cmd": [
594 "python", 586 "python",
595 "-u", 587 "-u",
596 "[SLAVE_BUILD]/src/build/android/test_runner.py", 588 "[SLAVE_BUILD]/src/build/android/test_runner.py",
597 "gtest", 589 "gtest",
598 "-s", 590 "-s",
599 "unittests", 591 "unittests",
600 "--blacklist-file", 592 "--blacklist-file",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@", 704 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
713 "@@@STEP_LOG_END@python.inline@@@" 705 "@@@STEP_LOG_END@python.inline@@@"
714 ] 706 ]
715 }, 707 },
716 { 708 {
717 "name": "$result", 709 "name": "$result",
718 "reason": "Tests not executed.", 710 "reason": "Tests not executed.",
719 "status_code": 1 711 "status_code": 1
720 } 712 }
721 ] 713 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698