/tools/tradefederation/core/atest/test_runners/ |
D | atest_tf_test_runner_unittest.py | 163 test_infos = self.tr._flatten_test_infos({uc.MODULE_INFO}) 164 unittest_utils.assert_equal_testinfo_sets(self, test_infos, {uc.MODULE_INFO}) 166 test_infos = self.tr._flatten_test_infos([uc.MODULE_INFO, MODULE2_INFO]) 168 self, test_infos, {uc.MODULE_INFO, MODULE2_INFO}) 170 test_infos = self.tr._flatten_test_infos({CLASS1_INFO}) 171 unittest_utils.assert_equal_testinfo_sets(self, test_infos, {CLASS1_INFO}) 173 test_infos = self.tr._flatten_test_infos({uc.INT_INFO}) 174 unittest_utils.assert_equal_testinfo_sets(self, test_infos, {uc.INT_INFO}) 176 test_infos = self.tr._flatten_test_infos({uc.METHOD_INFO}) 177 unittest_utils.assert_equal_testinfo_sets(self, test_infos, {uc.METHOD_INFO}) [all …]
|
D | vts_tf_test_runner.py | 56 def run_tests(self, test_infos, extra_args): argument 63 run_cmds = self._generate_run_commands(test_infos, extra_args) 98 def _generate_run_commands(self, test_infos, extra_args): argument 112 for test_info in test_infos:
|
D | atest_tf_test_runner.py | 47 def run_tests(self, test_infos, extra_args): argument 62 args = self._create_test_args(test_infos) 177 def _flatten_test_infos(self, test_infos): argument 200 for module, group in atest_utils.sort_and_group(test_infos, key): 265 def _create_test_args(self, test_infos): argument 273 test_infos = self._flatten_test_infos(test_infos) 275 for info in test_infos:
|
D | example_test_runner.py | 30 def run_tests(self, test_infos, extra_args): argument 37 for test_info in test_infos:
|
D | robolectric_test_runner.py | 42 def run_tests(self, test_infos, extra_args): argument 49 for test_info in test_infos:
|
D | test_runner_base.py | 54 def run_tests(self, test_infos, extra_args): argument
|
D | regression_test_runner.py | 37 def run_tests(self, test_infos, extra_args): argument
|
/tools/tradefederation/core/atest/ |
D | cli_translator_unittest.py | 42 test_infos = set() 45 test_infos.add(uc.MODULE_INFO) 47 test_infos.add(uc.CLASS_INFO) 48 return test_infos 99 test_infos = ctr._get_test_infos( 102 self, test_infos, expected_test_infos) 103 for test_info in test_infos: 120 targets, test_infos = self.ctr.translate([uc.CLASS_NAME]) 123 unittest_utils.assert_strict_equal(self, test_infos, {uc.CLASS_INFO}) 126 targets, test_infos = self.ctr.translate([uc.MODULE_NAME, [all …]
|
D | test_runner_handler.py | 54 def _group_tests_by_test_runners(test_infos): argument 66 sorted_test_infos = sorted(list(test_infos), key=key) 78 def get_test_runner_reqs(module_info, test_infos): argument 90 for test_runner, _ in _group_tests_by_test_runners(test_infos): 97 def run_all_tests(results_dir, test_infos, extra_args): argument 104 for test_runner, tests in _group_tests_by_test_runners(test_infos):
|
D | cli_translator.py | 70 test_infos = set() 86 test_infos.add(test_info) 92 return test_infos 143 def _gather_build_targets(self, test_infos): argument 145 for test_info in test_infos: 189 test_infos = self._get_test_infos(tests, test_details_list) 192 for test_info in test_infos: 194 build_targets = self._gather_build_targets(test_infos) 195 return build_targets, test_infos
|
D | test_runner_handler_unittest.py | 52 def run_tests(self, test_infos, extra_args): argument 89 test_infos = [MODULE_INFO_A, MODULE_INFO_A_AGAIN, MODULE_INFO_B, 95 test_runner_handler._group_tests_by_test_runners(test_infos)) 104 test_infos = [MODULE_INFO_A, MODULE_INFO_B] 110 test_infos))
|
D | atest.py | 510 test_infos = set() 513 build_targets, test_infos = translator.translate(args.tests) 521 test_infos) 540 test_runner_handler.run_all_tests(results_dir, test_infos, extra_args)
|