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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/tester_offline_devices.json

Issue 1855663002: Make android's run_instrumentation_suite() use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@wrapper-1
Patch Set: 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
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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 "[SLAVE_BUILD]/src/out/bad_devices.json" 459 "[SLAVE_BUILD]/src/out/bad_devices.json"
460 ], 460 ],
461 "cwd": "[SLAVE_BUILD]", 461 "cwd": "[SLAVE_BUILD]",
462 "env": { 462 "env": {
463 "BUILDTYPE": "Release" 463 "BUILDTYPE": "Release"
464 }, 464 },
465 "name": "Monkey Test" 465 "name": "Monkey Test"
466 }, 466 },
467 { 467 {
468 "cmd": [ 468 "cmd": [
469 "[SLAVE_BUILD]/src/build/android/adb_install_apk.py",
470 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
471 "-v",
472 "--blacklist-file",
473 "[SLAVE_BUILD]/src/out/bad_devices.json",
474 "--release"
475 ],
476 "cwd": "[SLAVE_BUILD]",
477 "env": {
478 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
479 },
480 "name": "install AndroidWebView.apk"
481 },
482 {
483 "cmd": [
484 "python", 469 "python",
485 "-u", 470 "-u",
486 "[SLAVE_BUILD]/src/build/android/test_runner.py", 471 "out/Release/bin/run_android_webview_test_apk",
487 "instrumentation", 472 "instrumentation",
488 "--test-apk",
489 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
490 "--blacklist-file", 473 "--blacklist-file",
491 "[SLAVE_BUILD]/src/out/bad_devices.json", 474 "[SLAVE_BUILD]/src/out/bad_devices.json",
492 "--logcat-output-file", 475 "--logcat-output-file",
493 "/path/to/tmp/", 476 "/path/to/tmp/",
494 "--apk-under-test",
495 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
496 "--isolate-file-path",
497 "android_webview/android_webview_test_apk.isolate",
498 "--flakiness-dashboard-server", 477 "--flakiness-dashboard-server",
499 "test-results.appspot.com", 478 "test-results.appspot.com",
500 "-A", 479 "-A",
501 "SmallTest", 480 "SmallTest",
502 "-E", 481 "-E",
503 "FlakyTest", 482 "FlakyTest",
504 "--screenshot", 483 "--screenshot",
505 "--release",
506 "--host-driven-root", 484 "--host-driven-root",
507 "[SLAVE_BUILD]/src/chrome/test", 485 "[SLAVE_BUILD]/src/chrome/test"
508 "--official-build"
509 ], 486 ],
510 "cwd": "[SLAVE_BUILD]", 487 "cwd": "[SLAVE_BUILD]",
511 "name": "Instrumentation test SmallTest", 488 "name": "Instrumentation test SmallTest",
512 "~followup_annotations": [ 489 "~followup_annotations": [
513 "@@@STEP_LOG_LINE@logcat@logging...@@@", 490 "@@@STEP_LOG_LINE@logcat@logging...@@@",
514 "@@@STEP_LOG_LINE@logcat@beep@@@", 491 "@@@STEP_LOG_LINE@logcat@beep@@@",
515 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 492 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
516 "@@@STEP_LOG_END@logcat@@@" 493 "@@@STEP_LOG_END@logcat@@@"
517 ] 494 ]
518 }, 495 },
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 591 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
615 }, 592 },
616 "name": "stack_tool_for_asan" 593 "name": "stack_tool_for_asan"
617 }, 594 },
618 { 595 {
619 "name": "$result", 596 "name": "$result",
620 "recipe_result": null, 597 "recipe_result": null,
621 "status_code": 0 598 "status_code": 0
622 } 599 }
623 ] 600 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698