Lines Matching +full:- +full:f

5 def create_argparser() -> argparse.ArgumentParser:
13 '-c',
14 '--ceed-backends',
20 '-m',
21 '--mode',
26 parser.add_argument('-n', '--nproc', type=int, default=1, help='number of MPI processes')
27 …parser.add_argument('-b', '--junit-batch', type=str, default='', help='Name of JUnit batch for out…
28 …parser.add_argument('-np', '--pool-size', type=int, default=1, help='Number of test cases to run i…
29 …parser.add_argument('--smartredis-dir', type=str, default='', help='path to SmartSim library, if p…
30 parser.add_argument('--has-torch', type=bool, default=False, help='Whether to build with torch')
31 parser.add_argument('-s', '--search', type=str, default='.*',
33 parser.add_argument('-v', '--verbose', action='store_true', default=False,
40 def diff_csv_comment_function(test_line: str, true_line: str) -> Optional[str]:
53 self.csv_rtol = 1e-9
57 def get_source_path(self, test: str) -> Path:
72 def get_run_path(self, test: str) -> Path:
83 def get_output_path(self, test: str, output_file: str) -> Path:
95 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]:
113 … def check_post_skip(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Optional[str]:
126 return f'SYCL device type not available'
127 elif 'Loading meshes requires CGNS support. Reconfigure using --with-cgns-dir' in stderr:
128 return f'CGNS not installed in PETSc for {test}, {spec.name}'
129 elif 'You may need to add --download-ctetgen or --download-tetgen' in stderr:
130 return f'Tet mesh generator not installed for {test}, {spec.name}'
133 …def check_required_failure(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Tuple[s…
147 def check_allowed_stdout(self, test: str) -> bool:
169 print(f'1..1')
182 print(f'# Subtest: {test_cases[0].category}')
183 print(f' 1..{len(args.ceed_backends)}')
194 print(f'{"" if subtest_ok else "not "}ok 1 - {test_cases[0].category}')
197 print(f'ok 1 - # SKIP SmartSim not installed')