blob: 5ba267b67d2e007e7e6370250552889f928b9085 [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
21
22
23def main():
24 parser = argparse.ArgumentParser()
25 parser.add_argument('--host', type=str, required=True)
26 parser.add_argument('--codesign_identity', type=str, required=False)
27 parser.add_argument('--dependencies', type=str, nargs='*', required=True)
28 parser.add_argument('--env', type=str, nargs='*', required=True)
29 (args, remaining) = parser.parse_known_args(sys.argv[1:])
30
31 if len(remaining) < 2:
32 sys.stderr.write('Missing actual commands to run')
Louis Dionne64acef32020-04-01 14:21:3133 return 1
Louis Dionne07e46252020-03-31 16:09:2034
Louis Dionne0489d392020-04-01 15:07:4835 commandLine = remaining[1:] # Skip the '--'
Louis Dionne07e46252020-03-31 16:09:2036
37 ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command]
38 scp = lambda src, dst: ['scp', '-oBatchMode=yes', '-r', src, '{}:{}'.format(args.host, dst)]
39
Louis Dionne64acef32020-04-01 14:21:3140 # Create a temporary directory where the test will be run.
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)
51 testExeOnRemote = lambda exe: posixpath.join(tmp, os.path.basename(exe))
52
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):
57 rc = subprocess.call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
58 if rc != 0:
59 sys.stderr.write('Failed to codesign: {}'.format(exe))
60 return rc
61
Louis Dionne64acef32020-04-01 14:21:3162 # Ensure the test dependencies exist and scp them to the temporary directory.
63 # Test dependencies can be either files or directories, so the `scp` command
64 # needs to use `-r`.
65 for dep in args.dependencies:
66 if not os.path.exists(dep):
67 sys.stderr.write('Missing file or directory {} marked as a dependency of a test'.format(dep))
68 return 1
69 rc = subprocess.call(scp(dep, tmp))
70 if rc != 0:
71 sys.stderr.write('Failed to copy dependency "{}" to remote host'.format(dep))
72 return rc
Louis Dionne07e46252020-03-31 16:09:2073
Louis Dionne0489d392020-04-01 15:07:4874 # Make sure all test-executables in the remote command line have 'execute'
75 # permissions on the remote host. The host that compiled the test-executable
76 # might not have a notion of 'executable' permissions.
77 for exe in map(testExeOnRemote, filter(isTestExe, commandLine)):
Louis Dionne64acef32020-04-01 14:21:3178 rc = subprocess.call(ssh('chmod +x {}'.format(exe)))
79 if rc != 0:
80 sys.stderr.write('Failed to chmod +x test-executable "{}" on the remote host'.format(exe))
81 return rc
Louis Dionne07e46252020-03-31 16:09:2082
Louis Dionne64acef32020-04-01 14:21:3183 # Execute the command through SSH in the temporary directory, with the
Louis Dionne0489d392020-04-01 15:07:4884 # correct environment. We tweak the command line to run it on the remote
85 # host by transforming the path of test-executables to their path in the
86 # temporary directory, where we know they have been copied when we handled
87 # test dependencies above.
Louis Dionne64acef32020-04-01 14:21:3188 commands = [
89 'cd {}'.format(tmp),
90 'export {}'.format(' '.join(args.env)),
Louis Dionne0489d392020-04-01 15:07:4891 ' '.join(testExeOnRemote(x) if isTestExe(x) else x for x in commandLine)
Louis Dionne64acef32020-04-01 14:21:3192 ]
93 rc = subprocess.call(ssh(' && '.join(commands)))
94 return rc
Louis Dionne07e46252020-03-31 16:09:2095
Louis Dionne64acef32020-04-01 14:21:3196 finally:
97 # Make sure the temporary directory is removed when we're done.
98 subprocess.call(ssh('rm -r {}'.format(tmp)))
Louis Dionne07e46252020-03-31 16:09:2099
Louis Dionne07e46252020-03-31 16:09:20100
101if __name__ == '__main__':
102 exit(main())