Home | History | Annotate | Download | only in testrunner

Lines Matching refs:_options

93     self._options = None
177 self._options, self._test_args = parser.parse_args()
179 if (not self._options.only_list_tests
180 and not self._options.all_tests
181 and not self._options.continuous_tests
182 and not self._options.suite
183 and not self._options.test_path
190 if self._options.emulator:
192 elif self._options.device:
194 elif self._options.serial is not None:
195 self._adb.SetTargetSerial(self._options.serial)
197 if self._options.verbose:
200 if self._options.coverage_target_path:
201 self._options.coverage = True
205 self._options.host_lib_path = android_build.GetHostLibraryPath()
206 self._options.test_data_path = android_build.GetTestAppPath()
219 if not self._options.test_path:
229 if os.path.isfile(self._options.user_tests_file):
230 known_tests.Parse(self._options.user_tests_file)
259 if not self._options.preview:
265 if self._options.coverage:
276 target_build_string, self._options.make_jobs, self._root_path,
279 if not self._options.preview:
338 cmd = ('make -j%s %s' % (self._options.make_jobs,
341 if not self._options.preview:
360 for path in test_suite.GetBuildDependencies(self._options):
375 if self._options.all_tests:
377 elif self._options.continuous_tests:
379 elif self._options.suite:
381 self._known_tests.GetTestsInSuite(self._options.suite)
382 elif self._options.test_path:
384 self._tests_to_run = walker.FindTests(self._options.test_path)
419 if self._options.preview:
431 elif not self._options.preview:
455 if self._options.only_list_tests:
459 if not self._options.skip_build:
464 test_suite.Run(self._options, self._adb)