blob: 4bb983e5d2cbb5ae8a12625b88bd7b16d60555c3 [file] [log] [blame]
Louis Dionne07e46252020-03-31 16:09:201#===----------------------------------------------------------------------===##
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"""
10Runs an executable on a remote host.
11
12This is meant to be used as an executor when running the C++ Standard Library
13conformance test suite.
14"""
15
16import argparse
17import os
Sergej Jaskiewiczfee00262020-04-01 14:02:5518import posixpath
Louis Dionne07e46252020-03-31 16:09:2019import subprocess
20import sys
Louis Dionne92e563b2020-04-01 18:52:1221import tarfile
22import tempfile
Louis Dionne07e46252020-03-31 16:09:2023
24
25def main():
26 parser = argparse.ArgumentParser()
27 parser.add_argument('--host', type=str, required=True)
Louis Dionneceb58ad2020-04-03 21:50:3928 parser.add_argument('--codesign_identity', type=str, required=False, default=None)
29 parser.add_argument('--dependencies', type=str, nargs='*', required=False, default=[])
30 parser.add_argument('--env', type=str, nargs='*', required=False, default=dict())
Louis Dionne07e46252020-03-31 16:09:2031 (args, remaining) = parser.parse_known_args(sys.argv[1:])
32
33 if len(remaining) < 2:
34 sys.stderr.write('Missing actual commands to run')
Louis Dionne64acef32020-04-01 14:21:3135 return 1
Louis Dionne07e46252020-03-31 16:09:2036
Louis Dionne0489d392020-04-01 15:07:4837 commandLine = remaining[1:] # Skip the '--'
Louis Dionne07e46252020-03-31 16:09:2038
39 ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command]
Louis Dionne92e563b2020-04-01 18:52:1240 scp = lambda src, dst: ['scp', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)]
Louis Dionne07e46252020-03-31 16:09:2041
Louis Dionne64acef32020-04-01 14:21:3142 # Create a temporary directory where the test will be run.
Sergej Jaskiewiczfee00262020-04-01 14:02:5543 tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip()
Louis Dionne0489d392020-04-01 15:07:4844
45 # HACK:
46 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
47 # of an executable generated by a test file. We call these test-executables
48 # below. This allows us to do custom processing like codesigning test-executables
49 # and changing their path when running on the remote host. It's also possible
50 # for there to be no such executable, for example in the case of a .sh.cpp
51 # test.
52 isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe)
Louis Dionne92e563b2020-04-01 18:52:1253 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne0489d392020-04-01 15:07:4854
Louis Dionne64acef32020-04-01 14:21:3155 try:
Louis Dionne0489d392020-04-01 15:07:4856 # Do any necessary codesigning of test-executables found in the command line.
57 if args.codesign_identity:
58 for exe in filter(isTestExe, commandLine):
Louis Dionne92e563b2020-04-01 18:52:1259 subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
Louis Dionne0489d392020-04-01 15:07:4860
Louis Dionne92e563b2020-04-01 18:52:1261 # Ensure the test dependencies exist, tar them up and copy the tarball
62 # over to the remote host.
Louis Dionneb00a8742020-04-06 13:33:0863 try:
64 tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False)
Louis Dionne92e563b2020-04-01 18:52:1265 with tarfile.open(fileobj=tmpTar, mode='w') as tarball:
66 for dep in args.dependencies:
67 if not os.path.exists(dep):
68 sys.stderr.write('Missing file or directory "{}" marked as a dependency of a test'.format(dep))
69 return 1
70 tarball.add(dep, arcname=os.path.basename(dep))
71
Louis Dionneb00a8742020-04-06 13:33:0872 # Make sure we close the file before we scp it, because accessing
73 # the temporary file while still open doesn't work on Windows.
74 tmpTar.close()
Louis Dionne92e563b2020-04-01 18:52:1275 remoteTarball = pathOnRemote(tmpTar.name)
Louis Dionne92e563b2020-04-01 18:52:1276 subprocess.check_call(scp(tmpTar.name, remoteTarball))
Louis Dionneb00a8742020-04-06 13:33:0877 finally:
78 # Make sure we close the file in case an exception happens before
79 # we've closed it above -- otherwise close() is idempotent.
80 tmpTar.close()
81 os.remove(tmpTar.name)
Louis Dionne92e563b2020-04-01 18:52:1282
83 # Untar the dependencies in the temporary directory and remove the tarball.
84 remoteCommands = [
85 'tar -xf {} -C {}'.format(remoteTarball, tmp),
86 'rm {}'.format(remoteTarball)
87 ]
Louis Dionne07e46252020-03-31 16:09:2088
Louis Dionne0489d392020-04-01 15:07:4889 # Make sure all test-executables in the remote command line have 'execute'
90 # permissions on the remote host. The host that compiled the test-executable
91 # might not have a notion of 'executable' permissions.
Louis Dionne92e563b2020-04-01 18:52:1292 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
93 remoteCommands.append('chmod +x {}'.format(exe))
Louis Dionne07e46252020-03-31 16:09:2094
Louis Dionne64acef32020-04-01 14:21:3195 # Execute the command through SSH in the temporary directory, with the
Louis Dionne0489d392020-04-01 15:07:4896 # correct environment. We tweak the command line to run it on the remote
97 # host by transforming the path of test-executables to their path in the
98 # temporary directory, where we know they have been copied when we handled
99 # test dependencies above.
Louis Dionne5eb8d452020-04-17 20:43:35100 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Louis Dionne92e563b2020-04-01 18:52:12101 remoteCommands += [
Louis Dionne64acef32020-04-01 14:21:31102 'cd {}'.format(tmp),
103 'export {}'.format(' '.join(args.env)),
Louis Dionne5eb8d452020-04-17 20:43:35104 subprocess.list2cmdline(commandLine)
Louis Dionne64acef32020-04-01 14:21:31105 ]
Louis Dionne92e563b2020-04-01 18:52:12106
107 # Finally, SSH to the remote host and execute all the commands.
108 rc = subprocess.call(ssh(' && '.join(remoteCommands)))
Louis Dionne64acef32020-04-01 14:21:31109 return rc
Louis Dionne07e46252020-03-31 16:09:20110
Louis Dionne64acef32020-04-01 14:21:31111 finally:
112 # Make sure the temporary directory is removed when we're done.
Louis Dionne92e563b2020-04-01 18:52:12113 subprocess.check_call(ssh('rm -r {}'.format(tmp)))
Louis Dionne07e46252020-03-31 16:09:20114
Louis Dionne07e46252020-03-31 16:09:20115
116if __name__ == '__main__':
117 exit(main())