Home
last modified time | relevance | path

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

/honee/tests/
H A Djunit.py95 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]: argument
113 … def check_post_skip(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Optional[str]: argument
133 …def check_required_failure(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Tuple[s… argument
187 TestSpec("SmartSim Tests"),
H A Djunit_common.py62 class TestSpec: class
172 def post_test_hook(self, test: str, spec: TestSpec, backend: str) -> None: argument
181 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]: argument
195 … def check_post_skip(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Optional[str]: argument
209 …def check_required_failure(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Tuple[s… argument
309 def parse_test_line(line: str, fallback_name: str = '') -> TestSpec:
318 test_fields = fields(TestSpec)
372 return TestSpec(**known, key_values=other, args=args)
375 def get_test_args(source_file: Path) -> List[TestSpec]:
401 …if line.startswith(f'{comment_str}TESTARGS')] or [TestSpec(source_file.stem, args=['{ceed_resource…
[all …]