Lines Matching refs:test
43 def get_source_path(self, test: str) -> Path:
52 prefix, rest = test.split('-', 1)
67 elif test.startswith('ex'):
68 if test.endswith('-f'):
69 return (Path('examples') / 'ceed' / test).with_suffix('.f90')
71 return (Path('examples') / 'ceed' / test).with_suffix('.c')
72 elif test.endswith('-f'):
73 return (Path('tests') / test).with_suffix('.f90')
75 return (Path('tests') / test).with_suffix('.c')
78 def get_run_path(self, test: str) -> Path:
87 return Path('build') / test
89 def get_output_path(self, test: str, output_file: str) -> Path:
101 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]:
113 if test.startswith('t318') and contains_any(resource, ['/gpu/cuda/ref']):
115 if test.startswith('t506') and contains_any(resource, ['/gpu/cuda/shared']):
121 … def check_post_skip(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Optional[str]:
147 …def check_required_failure(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Tuple[s…
159 test_id: str = test[:4]
186 def check_allowed_stdout(self, test: str) -> bool:
195 return test[:4] in ['t003']
202 args.test,