Lines Matching refs:path
190 base = os.path.basename(self.input_path)
289 base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
294 default=os.path.join(base_path, 'out', 'Debug'),
295 help='path to build directory')
297 default=os.path.join(os.path.dirname(__file__), 'cases'),
298 help='path to directory containing test files')
299 parser.add_option('--test-prog-path', default=None,
300 help='path to program to test')
320 test_prog = os.path.abspath(os.path.join(self.options.build_dir, 'amber'))
321 if not os.path.isfile(test_prog):
327 if not os.path.isfile(self.options.test_prog_path):
328 print("--test-prog-path must point to an executable")
336 input_path = os.path.join(self.options.test_dir, filename)
337 if not os.path.isfile(input_path):
349 input_path = os.path.join(file_dir, input_filename)
350 if os.path.isfile(input_path):