blob: 876e35460dc7d81e634e917f526cae9fecb5b5cd [file] [log] [blame]
Louis Dionnef998e0d2020-06-12 14:28:191#!/usr/bin/env python
Louis Dionne07e46252020-03-31 16:09:202#===----------------------------------------------------------------------===##
3#
4# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5# See https://llvm.org/LICENSE.txt for license information.
6# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7#
8#===----------------------------------------------------------------------===##
9
10"""
11Runs an executable on a remote host.
12
13This is meant to be used as an executor when running the C++ Standard Library
14conformance test suite.
15"""
16
17import argparse
18import os
Sergej Jaskiewiczfee00262020-04-01 14:02:5519import posixpath
Louis Dionne07e46252020-03-31 16:09:2020import subprocess
21import sys
Louis Dionne92e563b2020-04-01 18:52:1222import tarfile
23import tempfile
Louis Dionne07e46252020-03-31 16:09:2024
25
26def main():
27 parser = argparse.ArgumentParser()
28 parser.add_argument('--host', type=str, required=True)
Louis Dionne1fc50102020-06-10 18:41:4729 parser.add_argument('--execdir', type=str, required=True)
Louis Dionneceb58ad2020-04-03 21:50:3930 parser.add_argument('--codesign_identity', type=str, required=False, default=None)
Louis Dionneceb58ad2020-04-03 21:50:3931 parser.add_argument('--env', type=str, nargs='*', required=False, default=dict())
Alex Richardson3980e892020-07-21 07:35:4732 parser.add_argument("command", nargs=argparse.ONE_OR_MORE)
33 args = parser.parse_args()
34 commandLine = args.command
Louis Dionne07e46252020-03-31 16:09:2035
36 ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command]
Louis Dionne7f482462020-04-24 18:47:0937 scp = lambda src, dst: ['scp', '-q', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)]
Louis Dionne07e46252020-03-31 16:09:2038
Louis Dionne64acef32020-04-01 14:21:3139 # Create a temporary directory where the test will be run.
Louis Dionne1fc50102020-06-10 18:41:4740 # That is effectively the value of %T on the remote host.
Sergej Jaskiewiczfee00262020-04-01 14:02:5541 tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip()
Louis Dionne0489d392020-04-01 15:07:4842
43 # HACK:
44 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
45 # of an executable generated by a test file. We call these test-executables
46 # below. This allows us to do custom processing like codesigning test-executables
47 # and changing their path when running on the remote host. It's also possible
48 # for there to be no such executable, for example in the case of a .sh.cpp
49 # test.
50 isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe)
Louis Dionne92e563b2020-04-01 18:52:1251 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne0489d392020-04-01 15:07:4852
Louis Dionne64acef32020-04-01 14:21:3153 try:
Louis Dionne0489d392020-04-01 15:07:4854 # Do any necessary codesigning of test-executables found in the command line.
55 if args.codesign_identity:
56 for exe in filter(isTestExe, commandLine):
Louis Dionne92e563b2020-04-01 18:52:1257 subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
Louis Dionne0489d392020-04-01 15:07:4858
Louis Dionne1fc50102020-06-10 18:41:4759 # tar up the execution directory (which contains everything that's needed
60 # to run the test), and copy the tarball over to the remote host.
Louis Dionneb00a8742020-04-06 13:33:0861 try:
62 tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False)
Louis Dionne92e563b2020-04-01 18:52:1263 with tarfile.open(fileobj=tmpTar, mode='w') as tarball:
Louis Dionne1fc50102020-06-10 18:41:4764 tarball.add(args.execdir, arcname=os.path.basename(args.execdir))
Louis Dionne92e563b2020-04-01 18:52:1265
Louis Dionneb00a8742020-04-06 13:33:0866 # Make sure we close the file before we scp it, because accessing
67 # the temporary file while still open doesn't work on Windows.
68 tmpTar.close()
Louis Dionne92e563b2020-04-01 18:52:1269 remoteTarball = pathOnRemote(tmpTar.name)
Louis Dionne92e563b2020-04-01 18:52:1270 subprocess.check_call(scp(tmpTar.name, remoteTarball))
Louis Dionneb00a8742020-04-06 13:33:0871 finally:
72 # Make sure we close the file in case an exception happens before
73 # we've closed it above -- otherwise close() is idempotent.
74 tmpTar.close()
75 os.remove(tmpTar.name)
Louis Dionne92e563b2020-04-01 18:52:1276
77 # Untar the dependencies in the temporary directory and remove the tarball.
78 remoteCommands = [
Louis Dionne1fc50102020-06-10 18:41:4779 'tar -xf {} -C {} --strip-components 1'.format(remoteTarball, tmp),
Louis Dionne92e563b2020-04-01 18:52:1280 'rm {}'.format(remoteTarball)
81 ]
Louis Dionne07e46252020-03-31 16:09:2082
Louis Dionne0489d392020-04-01 15:07:4883 # Make sure all test-executables in the remote command line have 'execute'
84 # permissions on the remote host. The host that compiled the test-executable
85 # might not have a notion of 'executable' permissions.
Louis Dionne92e563b2020-04-01 18:52:1286 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
87 remoteCommands.append('chmod +x {}'.format(exe))
Louis Dionne07e46252020-03-31 16:09:2088
Louis Dionne64acef32020-04-01 14:21:3189 # Execute the command through SSH in the temporary directory, with the
Louis Dionne0489d392020-04-01 15:07:4890 # correct environment. We tweak the command line to run it on the remote
91 # host by transforming the path of test-executables to their path in the
Louis Dionne1fc50102020-06-10 18:41:4792 # temporary directory on the remote host.
Louis Dionne5eb8d452020-04-17 20:43:3593 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Louis Dionned98b9a42020-05-06 14:35:0294 remoteCommands.append('cd {}'.format(tmp))
95 if args.env:
96 remoteCommands.append('export {}'.format(' '.join(args.env)))
97 remoteCommands.append(subprocess.list2cmdline(commandLine))
Louis Dionne92e563b2020-04-01 18:52:1298
99 # Finally, SSH to the remote host and execute all the commands.
100 rc = subprocess.call(ssh(' && '.join(remoteCommands)))
Louis Dionne64acef32020-04-01 14:21:31101 return rc
Louis Dionne07e46252020-03-31 16:09:20102
Louis Dionne64acef32020-04-01 14:21:31103 finally:
104 # Make sure the temporary directory is removed when we're done.
Louis Dionne92e563b2020-04-01 18:52:12105 subprocess.check_call(ssh('rm -r {}'.format(tmp)))
Louis Dionne07e46252020-03-31 16:09:20106
Louis Dionne07e46252020-03-31 16:09:20107
108if __name__ == '__main__':
109 exit(main())