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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/tester_offline_devices.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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 "name": "Monkey Test" 466 "name": "Monkey Test"
467 }, 467 },
468 { 468 {
469 "cmd": [ 469 "cmd": [
470 "python", 470 "python",
471 "-u", 471 "-u",
472 "[SLAVE_BUILD]/src/build/android/test_runner.py", 472 "[SLAVE_BUILD]/src/build/android/test_runner.py",
473 "instrumentation", 473 "instrumentation",
474 "--blacklist-file", 474 "--blacklist-file",
475 "[SLAVE_BUILD]/src/out/bad_devices.json", 475 "[SLAVE_BUILD]/src/out/bad_devices.json",
476 "--logcat-output-file",
477 "/path/to/tmp/",
478 "--flakiness-dashboard-server", 476 "--flakiness-dashboard-server",
479 "test-results.appspot.com", 477 "test-results.appspot.com",
480 "-A", 478 "-A",
481 "SmallTest", 479 "SmallTest",
482 "-E", 480 "-E",
483 "FlakyTest", 481 "FlakyTest",
484 "--screenshot", 482 "--screenshot",
485 "--host-driven-root", 483 "--host-driven-root",
486 "[SLAVE_BUILD]/src/chrome/test", 484 "[SLAVE_BUILD]/src/chrome/test",
487 "--test-apk", 485 "--test-apk",
488 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk", 486 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
489 "--apk-under-test", 487 "--apk-under-test",
490 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk", 488 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
491 "--additional-apk", 489 "--additional-apk",
492 "Additional.apk", 490 "Additional.apk",
493 "--isolate-file-path", 491 "--isolate-file-path",
494 "android_webview/android_webview_test_apk.isolate", 492 "android_webview/android_webview_test_apk.isolate",
495 "--release", 493 "--release",
496 "--official-build" 494 "--official-build"
497 ], 495 ],
498 "cwd": "[SLAVE_BUILD]", 496 "cwd": "[SLAVE_BUILD]",
499 "env": { 497 "env": {
500 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 498 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
501 }, 499 },
502 "name": "Instrumentation test SmallTest", 500 "name": "Instrumentation test SmallTest"
503 "~followup_annotations": [
504 "@@@STEP_LOG_LINE@logcat@logging...@@@",
505 "@@@STEP_LOG_LINE@logcat@beep@@@",
506 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
507 "@@@STEP_LOG_END@logcat@@@"
508 ]
509 }, 501 },
510 { 502 {
511 "cmd": [ 503 "cmd": [
512 "python", 504 "python",
513 "-u", 505 "-u",
514 "[SLAVE_BUILD]/src/build/android/test_runner.py", 506 "[SLAVE_BUILD]/src/build/android/test_runner.py",
515 "gtest", 507 "gtest",
516 "-s", 508 "-s",
517 "unittests", 509 "unittests",
518 "--blacklist-file", 510 "--blacklist-file",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 598 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
607 }, 599 },
608 "name": "stack_tool_for_asan" 600 "name": "stack_tool_for_asan"
609 }, 601 },
610 { 602 {
611 "name": "$result", 603 "name": "$result",
612 "recipe_result": null, 604 "recipe_result": null,
613 "status_code": 0 605 "status_code": 0
614 } 606 }
615 ] 607 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698