Home
last modified time | relevance | path

Searched refs:test_cls_name (Results 1 – 2 of 2) sorted by relevance

/tools/test/connectivity/acts/framework/acts/bin/
Dact.py86 def _verify_test_class_name(test_cls_name): argument
87 if not test_cls_name.endswith("Test"):
89 "class naming convention *Test.") % test_cls_name)
112 test_cls_name = tokens[0]
113 _verify_test_class_name(test_cls_name)
114 return (test_cls_name, None)
118 test_cls_name, test_case_names = tokens
120 _verify_test_class_name(test_cls_name)
127 test_case_name, test_cls_name))
129 return (test_cls_name, clean_names)
/tools/test/connectivity/acts/framework/acts/
Dtest_runner.py116 for test_cls_name, _ in self.run_list:
118 alt_cls_name = test_cls_name.lower()
122 if name == test_cls_name or alt_name == alt_cls_name:
124 "abort.") % test_cls_name
305 def run_test_class(self, test_cls_name, test_cases=None): argument
321 test_cls = self.test_classes[test_cls_name]
324 "paths specified.") % test_cls_name)
353 for test_cls_name, test_case_names in self.run_list:
359 test_cls_name)
361 self.log.debug("Executing test class %s", test_cls_name)
[all …]