23
23
import tarfile
24
24
import tempfile
25
25
26
- from shlex import quote as cmd_quote
27
-
28
-
29
- def ssh (args , command ):
30
- cmd = ["ssh" , "-oBatchMode=yes" ]
31
- if args .extra_ssh_args is not None :
32
- cmd .extend (shlex .split (args .extra_ssh_args ))
33
- return cmd + [args .host , command ]
34
-
35
-
36
- def scp (args , src , dst ):
37
- cmd = ["scp" , "-q" , "-oBatchMode=yes" ]
38
- if args .extra_scp_args is not None :
39
- cmd .extend (shlex .split (args .extra_scp_args ))
40
- return cmd + [src , "{}:{}" .format (args .host , dst )]
41
-
42
- def runCommand (command , * args , ** kwargs ):
43
- return subprocess .run (command , * args , ** kwargs )
44
26
45
27
def main ():
46
28
parser = argparse .ArgumentParser ()
@@ -57,6 +39,18 @@ def main():
57
39
args = parser .parse_args ()
58
40
commandLine = args .command
59
41
42
+ def ssh (command ):
43
+ cmd = ["ssh" , "-oBatchMode=yes" ]
44
+ if args .extra_ssh_args is not None :
45
+ cmd .extend (shlex .split (args .extra_ssh_args ))
46
+ return cmd + [args .host , command ]
47
+
48
+ def scp (src , dst ):
49
+ cmd = ["scp" , "-q" , "-oBatchMode=yes" ]
50
+ if args .extra_scp_args is not None :
51
+ cmd .extend (shlex .split (args .extra_scp_args ))
52
+ return cmd + [src , "{}:{}" .format (args .host , dst )]
53
+
60
54
def runCommand (command , * args_ , ** kwargs ):
61
55
if args .verbose :
62
56
print (f"$ { ' ' .join (command )} " )
@@ -65,7 +59,7 @@ def runCommand(command, *args_, **kwargs):
65
59
# Create a temporary directory where the test will be run.
66
60
# That is effectively the value of %T on the remote host.
67
61
tmp = runCommand (
68
- ssh (args , "mktemp -d {}/libcxx.XXXXXXXXXX" .format (args .tempdir )),
62
+ ssh ("mktemp -d {}/libcxx.XXXXXXXXXX" .format (args .tempdir )),
69
63
universal_newlines = True ,
70
64
check = True ,
71
65
capture_output = True
@@ -99,7 +93,7 @@ def runCommand(command, *args_, **kwargs):
99
93
# the temporary file while still open doesn't work on Windows.
100
94
tmpTar .close ()
101
95
remoteTarball = pathOnRemote (tmpTar .name )
102
- runCommand (scp (args , tmpTar .name , remoteTarball ), check = True )
96
+ runCommand (scp (tmpTar .name , remoteTarball ), check = True )
103
97
finally :
104
98
# Make sure we close the file in case an exception happens before
105
99
# we've closed it above -- otherwise close() is idempotent.
@@ -131,17 +125,17 @@ def runCommand(command, *args_, **kwargs):
131
125
args .env .extend (args .prepend_env )
132
126
133
127
if args .env :
134
- env = list (map (cmd_quote , args .env ))
128
+ env = list (map (shlex . quote , args .env ))
135
129
remoteCommands .append ("export {}" .format (" " .join (args .env )))
136
130
remoteCommands .append (subprocess .list2cmdline (commandLine ))
137
131
138
132
# Finally, SSH to the remote host and execute all the commands.
139
- rc = runCommand (ssh (args , " && " .join (remoteCommands ))).returncode
133
+ rc = runCommand (ssh (" && " .join (remoteCommands ))).returncode
140
134
return rc
141
135
142
136
finally :
143
137
# Make sure the temporary directory is removed when we're done.
144
- runCommand (ssh (args , "rm -r {}" .format (tmp )), check = True )
138
+ runCommand (ssh ("rm -r {}" .format (tmp )), check = True )
145
139
146
140
147
141
if __name__ == "__main__" :
0 commit comments