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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/webview_cts_unexecuted_tests.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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 "[SLAVE_BUILD]/src/out/bad_devices.json" 541 "[SLAVE_BUILD]/src/out/bad_devices.json"
542 ], 542 ],
543 "cwd": "[SLAVE_BUILD]", 543 "cwd": "[SLAVE_BUILD]",
544 "env": { 544 "env": {
545 "BUILDTYPE": "Release" 545 "BUILDTYPE": "Release"
546 }, 546 },
547 "name": "Monkey Test" 547 "name": "Monkey Test"
548 }, 548 },
549 { 549 {
550 "cmd": [ 550 "cmd": [
551 "[SLAVE_BUILD]/src/build/android/adb_install_apk.py",
552 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
553 "-v",
554 "--blacklist-file",
555 "[SLAVE_BUILD]/src/out/bad_devices.json",
556 "--release"
557 ],
558 "cwd": "[SLAVE_BUILD]",
559 "env": {
560 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
561 },
562 "name": "install AndroidWebView.apk"
563 },
564 {
565 "cmd": [
566 "python", 551 "python",
567 "-u", 552 "-u",
568 "[SLAVE_BUILD]/src/build/android/test_runner.py", 553 "out/Release/bin/run_android_webview_test_apk",
569 "instrumentation", 554 "instrumentation",
570 "--test-apk",
571 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
572 "--blacklist-file", 555 "--blacklist-file",
573 "[SLAVE_BUILD]/src/out/bad_devices.json", 556 "[SLAVE_BUILD]/src/out/bad_devices.json",
574 "--logcat-output-file", 557 "--logcat-output-file",
575 "/path/to/tmp/", 558 "/path/to/tmp/",
576 "--apk-under-test",
577 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
578 "--isolate-file-path",
579 "android_webview/android_webview_test_apk.isolate",
580 "--flakiness-dashboard-server", 559 "--flakiness-dashboard-server",
581 "test-results.appspot.com", 560 "test-results.appspot.com",
582 "-A", 561 "-A",
583 "SmallTest", 562 "SmallTest",
584 "-E", 563 "-E",
585 "FlakyTest", 564 "FlakyTest",
586 "--screenshot", 565 "--screenshot",
587 "--release",
588 "--host-driven-root", 566 "--host-driven-root",
589 "[SLAVE_BUILD]/src/chrome/test", 567 "[SLAVE_BUILD]/src/chrome/test"
590 "--official-build"
591 ], 568 ],
592 "cwd": "[SLAVE_BUILD]", 569 "cwd": "[SLAVE_BUILD]",
593 "name": "Instrumentation test SmallTest", 570 "name": "Instrumentation test SmallTest",
594 "~followup_annotations": [ 571 "~followup_annotations": [
595 "@@@STEP_LOG_LINE@logcat@logging...@@@", 572 "@@@STEP_LOG_LINE@logcat@logging...@@@",
596 "@@@STEP_LOG_LINE@logcat@beep@@@", 573 "@@@STEP_LOG_LINE@logcat@beep@@@",
597 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@", 574 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
598 "@@@STEP_LOG_END@logcat@@@" 575 "@@@STEP_LOG_END@logcat@@@"
599 ] 576 ]
600 }, 577 },
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@", 697 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
721 "@@@STEP_LOG_END@python.inline@@@" 698 "@@@STEP_LOG_END@python.inline@@@"
722 ] 699 ]
723 }, 700 },
724 { 701 {
725 "name": "$result", 702 "name": "$result",
726 "reason": "Tests not executed.", 703 "reason": "Tests not executed.",
727 "status_code": 1 704 "status_code": 1
728 } 705 }
729 ] 706 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698