Lines Matching full:path
18 from os import path
38 dest_path = path.join(build_dir, 'test262')
39 stamp_file = path.join(dest_path, 'test262.stamp')
41 if path.isfile(stamp_file):
44 test262_path = path.join(path.sep, 'tmp', 'test262-%s' % revision)
46 if not path.exists(test262_path):
47 archive_file = path.join(path.sep, 'tmp', 'test262.zip')
63 if path.isdir(test262_path):
67 ['unzip', '-q', '-d', path.join(path.sep, 'tmp'), archive_file])
76 src_path = path.join(test262_path, 'test')
78 glob_expression = path.join(src_path, "**/*.js")
89 os.makedirs(path.dirname(dest_file), exist_ok=True)
110 with open(path.join(test262_dir, 'harness', include), 'r') as fp: