blob: 7de82c78dbfa72ab1e566b0d05f51feeab2cc312 [file] [log] [blame]
Vedant Kumare56ddc52019-09-05 21:24:23 +00001#===----------------------------------------------------------------------===##
2#
3# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6#
7#===----------------------------------------------------------------------===##
8
9"""run.py is a utility for running a program.
10
11It can perform code signing, forward arguments to the program, and return the
12program's error code.
13"""
14
Louis Dionneab950ac2020-03-20 19:28:36 -040015import argparse
16import os
Louis Dionne2022e662020-04-01 18:48:22 -040017import shutil
Vedant Kumare56ddc52019-09-05 21:24:23 +000018import subprocess
19import sys
Louis Dionne2022e662020-04-01 18:48:22 -040020import tempfile
Vedant Kumare56ddc52019-09-05 21:24:23 +000021
22
23def main():
Louis Dionnea6d477a2020-03-20 18:11:38 -040024 parser = argparse.ArgumentParser()
25 parser.add_argument('--codesign_identity', type=str, required=False)
Louis Dionnea6d477a2020-03-20 18:11:38 -040026 parser.add_argument('--dependencies', type=str, nargs='*', required=True)
27 parser.add_argument('--env', type=str, nargs='*', required=True)
28 (args, remaining) = parser.parse_known_args(sys.argv[1:])
Vedant Kumare56ddc52019-09-05 21:24:23 +000029
Louis Dionnea6d477a2020-03-20 18:11:38 -040030 if len(remaining) < 2:
31 sys.stderr.write('Missing actual commands to run')
32 exit(1)
33 remaining = remaining[1:] # Skip the '--'
Vedant Kumare56ddc52019-09-05 21:24:23 +000034
35 # Do any necessary codesigning.
Louis Dionnea6d477a2020-03-20 18:11:38 -040036 if args.codesign_identity:
37 exe = remaining[0]
38 rc = subprocess.call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
39 if rc != 0:
40 sys.stderr.write('Failed to codesign: ' + exe)
41 return rc
Vedant Kumare56ddc52019-09-05 21:24:23 +000042
Louis Dionnea6d477a2020-03-20 18:11:38 -040043 # Extract environment variables into a dictionary
Louis Dionneab950ac2020-03-20 19:28:36 -040044 env = {k : v for (k, v) in map(lambda s: s.split('=', 1), args.env)}
Louis Dionnea6d477a2020-03-20 18:11:38 -040045
Louis Dionne2022e662020-04-01 18:48:22 -040046 try:
47 tmpDir = tempfile.mkdtemp()
Louis Dionnea6d477a2020-03-20 18:11:38 -040048
Louis Dionne2022e662020-04-01 18:48:22 -040049 # Ensure the file dependencies exist and copy them to a temporary directory.
50 for dep in args.dependencies:
51 if not os.path.exists(dep):
52 sys.stderr.write('Missing file or directory "{}" marked as a dependency of a test'.format(dep))
53 exit(1)
54 if os.path.isdir(dep):
55 shutil.copytree(dep, os.path.join(tmpDir, os.path.basename(dep)), symlinks=True)
56 else:
57 shutil.copy2(dep, tmpDir)
58
59 # Run the executable with the given environment in the temporary directory.
60 return subprocess.call(' '.join(remaining), cwd=tmpDir, env=env, shell=True)
61 finally:
62 shutil.rmtree(tmpDir)
Vedant Kumare56ddc52019-09-05 21:24:23 +000063
64if __name__ == '__main__':
65 exit(main())