Home
last modified time | relevance | path

Searched refs:test_paths (Results 1 – 7 of 7) sorted by relevance

/tools/asuite/atest/test_finders/
Dtest_info.py137 test_paths = []
140 test_paths.append(
143 return test_paths if test_paths else None
Dmodule_finder.py534 test_paths = test_finder_utils.find_class_file(search_dir, search_class_name,
536 if not test_paths and rel_config:
539 test_paths = test_finder_utils.find_class_file(self.root_dir,
543 test_paths = test_paths if test_paths is not None else []
545 if not test_paths:
550 test_paths = []
552 test_paths.append(os.path.join(self.root_dir, rel_module_path))
554 for test_path in test_paths:
Dtest_finder_utils.py1015 test_paths = run_find_cmd(FIND_REFERENCE_TYPE.INTEGRATION, abs_path,
1017 if test_paths:
1018 test_files.extend(test_paths)
/tools/asuite/aidegen/idea/
Diml_unittest.py178 test_paths = {
196 test_paths.update(mod_info._get_path_to_module_info(
198 print('\n{} {}.'.format('Test_paths length:', len(test_paths)))
201 for path in test_paths:
/tools/asuite/atest-py2/test_finders/
Dmodule_finder.py412 test_paths = test_finder_utils.find_class_file(search_dir, class_name,
414 if not test_paths and rel_config:
417 test_paths = test_finder_utils.find_class_file(self.root_dir,
421 if not test_paths:
424 for test_path in test_paths:
Dtest_finder_utils.py860 test_paths = run_find_cmd(FIND_REFERENCE_TYPE.INTEGRATION, abs_path,
862 if test_paths:
863 test_files.extend(test_paths)
/tools/test/connectivity/acts/framework/acts/
Dtest_runner.py139 def import_test_modules(self, test_paths): argument
160 file_list = utils.find_files(test_paths, is_testfile_name)