We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e02139 commit 946e408Copy full SHA for 946e408
lit.cfg
@@ -24,9 +24,11 @@ config.suffixes = ['.test']
24
config.excludes = ['ABI-Testsuite']
25
config.traditional_output = False
26
config.single_source = False
27
-config.remote_host = lit_config.params.get('remote_host', config.remote_host)
28
if 'SSH_AUTH_SOCK' in os.environ:
29
config.environment['SSH_AUTH_SOCK'] = os.environ['SSH_AUTH_SOCK']
+if not hasattr(config, 'remote_host'):
30
+ config.remote_host = ""
31
+config.remote_host = lit_config.params.get('remote_host', config.remote_host)
32
if config.remote_host:
33
config.test_modules.append('remote')
34
0 commit comments