Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 1 | #===----------------------------------------------------------------------===## |
| 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 | """ |
| 10 | Runs an executable on a remote host. |
| 11 | |
| 12 | This is meant to be used as an executor when running the C++ Standard Library |
| 13 | conformance test suite. |
| 14 | """ |
| 15 | |
| 16 | import argparse |
| 17 | import os |
Sergej Jaskiewicz | fee0026 | 2020-04-01 14:02:55 | [diff] [blame] | 18 | import posixpath |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 19 | import subprocess |
| 20 | import sys |
| 21 | |
| 22 | |
| 23 | def 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 Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 33 | return 1 |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 34 | remaining = remaining[1:] # Skip the '--' |
| 35 | |
| 36 | # HACK: |
| 37 | # If the first argument is a file that ends in `.tmp.exe`, assume it is |
| 38 | # the name of an executable generated by a test file. This allows us to |
| 39 | # do custom processing like codesigning the executable and changing its |
| 40 | # path when running on the remote host. It's possible for there to be no |
| 41 | # such executable, for example in the case of a .sh.cpp test. |
| 42 | exe = None |
| 43 | if os.path.exists(remaining[0]) and remaining[0].endswith('.tmp.exe'): |
| 44 | exe = remaining.pop(0) |
| 45 | |
| 46 | # If there's an executable, do any necessary codesigning. |
| 47 | if exe and args.codesign_identity: |
| 48 | rc = subprocess.call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={}) |
| 49 | if rc != 0: |
| 50 | sys.stderr.write('Failed to codesign: {}'.format(exe)) |
| 51 | return rc |
| 52 | |
| 53 | ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command] |
| 54 | scp = lambda src, dst: ['scp', '-oBatchMode=yes', '-r', src, '{}:{}'.format(args.host, dst)] |
| 55 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 56 | # Create a temporary directory where the test will be run. |
Sergej Jaskiewicz | fee0026 | 2020-04-01 14:02:55 | [diff] [blame] | 57 | tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip() |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 58 | try: |
| 59 | # Ensure the test dependencies exist and scp them to the temporary directory. |
| 60 | # Test dependencies can be either files or directories, so the `scp` command |
| 61 | # needs to use `-r`. |
| 62 | for dep in args.dependencies: |
| 63 | if not os.path.exists(dep): |
| 64 | sys.stderr.write('Missing file or directory {} marked as a dependency of a test'.format(dep)) |
| 65 | return 1 |
| 66 | rc = subprocess.call(scp(dep, tmp)) |
| 67 | if rc != 0: |
| 68 | sys.stderr.write('Failed to copy dependency "{}" to remote host'.format(dep)) |
| 69 | return rc |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 70 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 71 | # If there's an executable, change its path to be in the temporary directory. |
| 72 | # We know it has been copied to the remote host when we handled the test |
| 73 | # dependencies above. |
| 74 | if exe: |
| 75 | exe = posixpath.join(tmp, os.path.basename(exe)) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 76 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 77 | # If there's an executable, make sure it has 'execute' permissions on the |
| 78 | # remote host. The host that compiled the executable might not have a notion |
| 79 | # of 'executable' permissions. |
| 80 | if exe: |
| 81 | rc = subprocess.call(ssh('chmod +x {}'.format(exe))) |
| 82 | if rc != 0: |
| 83 | sys.stderr.write('Failed to chmod +x test-executable "{}" on the remote host'.format(exe)) |
| 84 | return rc |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 85 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 86 | # Execute the command through SSH in the temporary directory, with the |
| 87 | # correct environment. |
| 88 | commands = [ |
| 89 | 'cd {}'.format(tmp), |
| 90 | 'export {}'.format(' '.join(args.env)), |
| 91 | ' '.join([exe] + remaining if exe else remaining) |
| 92 | ] |
| 93 | rc = subprocess.call(ssh(' && '.join(commands))) |
| 94 | return rc |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 95 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame^] | 96 | finally: |
| 97 | # Make sure the temporary directory is removed when we're done. |
| 98 | subprocess.call(ssh('rm -r {}'.format(tmp))) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 99 | |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 100 | |
| 101 | if __name__ == '__main__': |
| 102 | exit(main()) |