blob: f9bcabe3c321507e14b8294c250d4f5545276e04 [file] [log] [blame]
Louis Dionne00170d82020-03-31 12:09:20 -04001#===----------------------------------------------------------------------===##
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
Louis Dionne2341acb2020-04-17 16:43:35 -040018import pipes
Sergej Jaskiewicz97627cc2020-04-01 10:02:55 -040019import posixpath
Louis Dionne00170d82020-03-31 12:09:20 -040020import subprocess
21import sys
Louis Dionnee78c5922020-04-01 14:52:12 -040022import tarfile
23import tempfile
Louis Dionne00170d82020-03-31 12:09:20 -040024
25
26def main():
27 parser = argparse.ArgumentParser()
28 parser.add_argument('--host', type=str, required=True)
Louis Dionne00fddf42020-04-03 17:50:39 -040029 parser.add_argument('--codesign_identity', type=str, required=False, default=None)
30 parser.add_argument('--dependencies', type=str, nargs='*', required=False, default=[])
31 parser.add_argument('--env', type=str, nargs='*', required=False, default=dict())
Louis Dionne00170d82020-03-31 12:09:20 -040032 (args, remaining) = parser.parse_known_args(sys.argv[1:])
33
34 if len(remaining) < 2:
35 sys.stderr.write('Missing actual commands to run')
Louis Dionne234dcdf2020-04-01 10:21:31 -040036 return 1
Louis Dionne00170d82020-03-31 12:09:20 -040037
Louis Dionne30ce3862020-04-01 11:07:48 -040038 commandLine = remaining[1:] # Skip the '--'
Louis Dionne00170d82020-03-31 12:09:20 -040039
40 ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command]
Louis Dionnee78c5922020-04-01 14:52:12 -040041 scp = lambda src, dst: ['scp', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)]
Louis Dionne00170d82020-03-31 12:09:20 -040042
Louis Dionne234dcdf2020-04-01 10:21:31 -040043 # Create a temporary directory where the test will be run.
Sergej Jaskiewicz97627cc2020-04-01 10:02:55 -040044 tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip()
Louis Dionne30ce3862020-04-01 11:07:48 -040045
46 # HACK:
47 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
48 # of an executable generated by a test file. We call these test-executables
49 # below. This allows us to do custom processing like codesigning test-executables
50 # and changing their path when running on the remote host. It's also possible
51 # for there to be no such executable, for example in the case of a .sh.cpp
52 # test.
53 isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe)
Louis Dionnee78c5922020-04-01 14:52:12 -040054 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne30ce3862020-04-01 11:07:48 -040055
Louis Dionne234dcdf2020-04-01 10:21:31 -040056 try:
Louis Dionne30ce3862020-04-01 11:07:48 -040057 # Do any necessary codesigning of test-executables found in the command line.
58 if args.codesign_identity:
59 for exe in filter(isTestExe, commandLine):
Louis Dionnee78c5922020-04-01 14:52:12 -040060 subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
Louis Dionne30ce3862020-04-01 11:07:48 -040061
Louis Dionnee78c5922020-04-01 14:52:12 -040062 # Ensure the test dependencies exist, tar them up and copy the tarball
63 # over to the remote host.
Louis Dionne91a1bbb2020-04-06 09:33:08 -040064 try:
65 tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False)
Louis Dionnee78c5922020-04-01 14:52:12 -040066 with tarfile.open(fileobj=tmpTar, mode='w') as tarball:
67 for dep in args.dependencies:
68 if not os.path.exists(dep):
69 sys.stderr.write('Missing file or directory "{}" marked as a dependency of a test'.format(dep))
70 return 1
71 tarball.add(dep, arcname=os.path.basename(dep))
72
Louis Dionne91a1bbb2020-04-06 09:33:08 -040073 # Make sure we close the file before we scp it, because accessing
74 # the temporary file while still open doesn't work on Windows.
75 tmpTar.close()
Louis Dionnee78c5922020-04-01 14:52:12 -040076 remoteTarball = pathOnRemote(tmpTar.name)
Louis Dionnee78c5922020-04-01 14:52:12 -040077 subprocess.check_call(scp(tmpTar.name, remoteTarball))
Louis Dionne91a1bbb2020-04-06 09:33:08 -040078 finally:
79 # Make sure we close the file in case an exception happens before
80 # we've closed it above -- otherwise close() is idempotent.
81 tmpTar.close()
82 os.remove(tmpTar.name)
Louis Dionnee78c5922020-04-01 14:52:12 -040083
84 # Untar the dependencies in the temporary directory and remove the tarball.
85 remoteCommands = [
86 'tar -xf {} -C {}'.format(remoteTarball, tmp),
87 'rm {}'.format(remoteTarball)
88 ]
Louis Dionne00170d82020-03-31 12:09:20 -040089
Louis Dionne30ce3862020-04-01 11:07:48 -040090 # Make sure all test-executables in the remote command line have 'execute'
91 # permissions on the remote host. The host that compiled the test-executable
92 # might not have a notion of 'executable' permissions.
Louis Dionnee78c5922020-04-01 14:52:12 -040093 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
94 remoteCommands.append('chmod +x {}'.format(exe))
Louis Dionne00170d82020-03-31 12:09:20 -040095
Louis Dionne234dcdf2020-04-01 10:21:31 -040096 # Execute the command through SSH in the temporary directory, with the
Louis Dionne30ce3862020-04-01 11:07:48 -040097 # correct environment. We tweak the command line to run it on the remote
98 # host by transforming the path of test-executables to their path in the
99 # temporary directory, where we know they have been copied when we handled
100 # test dependencies above.
Louis Dionne2341acb2020-04-17 16:43:35 -0400101 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Louis Dionnee78c5922020-04-01 14:52:12 -0400102 remoteCommands += [
Louis Dionne234dcdf2020-04-01 10:21:31 -0400103 'cd {}'.format(tmp),
104 'export {}'.format(' '.join(args.env)),
Louis Dionne2341acb2020-04-17 16:43:35 -0400105 ' '.join(pipes.quote(x) for x in commandLine)
Louis Dionne234dcdf2020-04-01 10:21:31 -0400106 ]
Louis Dionnee78c5922020-04-01 14:52:12 -0400107
108 # Finally, SSH to the remote host and execute all the commands.
109 rc = subprocess.call(ssh(' && '.join(remoteCommands)))
Louis Dionne234dcdf2020-04-01 10:21:31 -0400110 return rc
Louis Dionne00170d82020-03-31 12:09:20 -0400111
Louis Dionne234dcdf2020-04-01 10:21:31 -0400112 finally:
113 # Make sure the temporary directory is removed when we're done.
Louis Dionnee78c5922020-04-01 14:52:12 -0400114 subprocess.check_call(ssh('rm -r {}'.format(tmp)))
Louis Dionne00170d82020-03-31 12:09:20 -0400115
Louis Dionne00170d82020-03-31 12:09:20 -0400116
117if __name__ == '__main__':
118 exit(main())