Lines Matching refs:options
86 def GetBuildDependencies(self, options): argument
87 if options.coverage_target_path:
88 return [options.coverage_target_path]
91 def Run(self, options, adb): argument
105 if options.test_class is not None:
106 test_class = options.test_class.lstrip()
109 if options.test_method is not None:
110 test_class = "%s#%s" % (test_class, options.test_method)
113 if options.test_package:
114 test_package = options.test_package
124 if options.test_size:
125 instrumentation_args["size"] = options.test_size
126 if options.wait_for_debugger:
128 if options.suite_assign_mode:
130 if options.coverage:
132 if options.test_annotation:
133 instrumentation_args["annotation"] = options.test_annotation
134 if options.test_not_annotation:
135 instrumentation_args["notAnnotation"] = options.test_not_annotation
136 if options.preview:
140 raw_mode=options.raw_mode,
143 elif options.coverage:
145 if options.coverage_target_path:
146 coverage_target = coverage_gen.GetCoverageTargetForPath(options.coverage_target_path)
158 user=options.user,
159 no_hidden_api_checks=options.no_hidden_api_checks)
170 test_qualifier=options.test_size)
179 raw_mode=options.raw_mode,
181 user=options.user,
182 no_hidden_api_checks=options.no_hidden_api_checks)