Home
last modified time | relevance | path

Searched refs:sub_tests_path (Results 1 – 4 of 4) sorted by relevance

/development/testrunner/test_defs/
Dgtest.py66 def CreateTests(self, sub_tests_path=None): argument
79 if not sub_tests_path:
80 sub_tests_path = self.GetTestRootPath()
82 if os.path.isfile(sub_tests_path):
83 self._EvaluateFile(test_file_list, os.path.basename(sub_tests_path))
85 os.path.walk(sub_tests_path, self._CollectTestSources, test_file_list)
Dinstrumentation_test.py228 def CreateTests(self, sub_tests_path=None): argument
238 if sub_tests_path:
240 if self._IsJavaFile(sub_tests_path):
241 class_name_arg = self._GetClassNameFromFile(sub_tests_path)
243 elif self._IsJavaPackage(sub_tests_path):
244 java_package_name = self._GetPackageNameFromDir(sub_tests_path)
Dtest_suite.py129 def CreateTests(self, sub_tests_path=None): argument
Dtest_walker.py177 return factory.CreateTests(sub_tests_path=path)