Lines Matching full:options
88 def GetBuildDependencies(self, options):
89 if options.coverage:
93 def Run(self, options, adb):
99 options: command line options to provide to test run
107 if options.test_class is not None:
108 test_class = options.test_class.lstrip()
111 if options.test_method is not None:
112 test_class = "%s#%s" % (test_class, options.test_method)
115 if options.test_package:
116 test_package = options.test_package
119 logger.Log('Error: both class and java package options are specified')
126 if options.test_size:
127 instrumentation_args["size"] = options.test_size
128 if options.wait_for_debugger:
130 if options.suite_assign_mode:
132 if options.coverage:
134 if options.test_annotation:
135 instrumentation_args["annotation"] = options.test_annotation
136 if options.test_not_annotation:
137 instrumentation_args["notAnnotation"] = options.test_not_annotation
138 if options.preview:
142 raw_mode=options.raw_mode,
145 elif options.coverage:
166 self, device_coverage_path, test_qualifier=options.test_size)
175 raw_mode=options.raw_mode,