mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The `__future__` we relied on is now, where the 3 specific things are all included [since Python 3.0](https://docs.python.org/3/library/__future__.html): * absolute_import * print_function * unicode_literals * division These import statements are no-ops and are no longer necessary.
58 lines
2.0 KiB
Python
Executable File
58 lines
2.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# ===--- generate_harness.py ---------------------------------------------===//
|
|
#
|
|
# This source file is part of the Swift.org open source project
|
|
#
|
|
# Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
# Licensed under Apache License v2.0 with Runtime Library Exception
|
|
#
|
|
# See https://swift.org/LICENSE.txt for license information
|
|
# See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
#
|
|
# ===---------------------------------------------------------------------===//
|
|
|
|
# Generate boilerplate, CMakeLists.txt and utils/main.swift from templates.
|
|
|
|
import argparse
|
|
import os
|
|
import subprocess
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
perf_dir = os.path.realpath(os.path.join(script_dir, "../.."))
|
|
gyb = os.path.realpath(os.path.join(perf_dir, "../utils/gyb"))
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument(
|
|
"--output-dir", help="Output directory (for validation test)", default=perf_dir
|
|
)
|
|
args = parser.parse_args()
|
|
output_dir = args.output_dir
|
|
|
|
|
|
def all_files(directory, extension): # matching: [directory]/**/*[extension]
|
|
return [
|
|
os.path.join(root, f)
|
|
for root, _, files in os.walk(directory)
|
|
for f in files
|
|
if f.endswith(extension)
|
|
]
|
|
|
|
|
|
def will_write(filename): # ensure path to file exists before writing
|
|
print(filename)
|
|
output_path = os.path.split(filename)[0]
|
|
if not os.path.exists(output_path):
|
|
os.makedirs(output_path)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Generate Your Boilerplate
|
|
# Make sure longer paths are done first as CMakeLists.txt and main.swift
|
|
# depend on the other gybs being generated first.
|
|
gyb_files = sorted(all_files(perf_dir, ".gyb"), key=len, reverse=True)
|
|
for f in gyb_files:
|
|
relative_path = os.path.relpath(f[:-4], perf_dir)
|
|
out_file = os.path.join(output_dir, relative_path)
|
|
will_write(out_file)
|
|
subprocess.call([gyb, "--line-directive", "", "-o", out_file, f])
|