Home | History | Annotate | Download | only in test_defs

Lines Matching refs:options

86   def GetBuildDependencies(self, options):
87 if options.coverage_target_path:
88 return [options.coverage_target_path]
91 def Run(self, options, adb):
97 options: command line options to provide to test run
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
117 logger.Log('Error: both class and java package options are specified')
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)
168 test_qualifier=options.test_size)
176 raw_mode=options.raw_mode,