Lines Matching full:path
29 …parser.add_argument('--smartredis-dir', type=str, default='', help='path to SmartSim library, if p…
57 def get_source_path(self, test: str) -> Path:
58 """Compute path to test source file
64 Path: Path to source file
67 return (Path('examples') / 'navierstokes').with_suffix('.c')
69 return (Path('tests') / test).with_suffix('.c')
71 # get path to executable
72 def get_run_path(self, test: str) -> Path:
73 """Compute path to built test executable file
79 Path: Path to test executable
81 return Path('build') / test
83 def get_output_path(self, test: str, output_file: str) -> Path:
84 """Compute path to expected output file
91 Path: Path to expected output file
93 return Path('tests') / 'output' / output_file
164 has_smartsim: bool = args.smartredis_dir and Path(args.smartredis_dir).is_dir()
166 test_directory = Path(__file__).parent / 'smartsim_test_dir'