[llvm-exegesis] Fix missing std::move.
[llvm-complete.git] / utils / lit / tests / Inputs / shtest-timeout / lit.cfg
blob96bf18170a8f9d74ea2e5e3581fd565c44ed98a0
1 # -*- Python -*-
2 import os
3 import sys
5 import lit.formats
7 config.name = 'per_test_timeout'
9 shellType = lit_config.params.get('external', '1')
11 if shellType == '0':
12     lit_config.note('Using internal shell')
13     externalShell = False
14 else:
15     lit_config.note('Using external shell')
16     externalShell = True
18 configSetTimeout = lit_config.params.get('set_timeout', '0')
20 if configSetTimeout != '0':
21     # Try setting the max individual test time in the configuration
22     lit_config.maxIndividualTestTime = int(configSetTimeout)
24 config.test_format = lit.formats.ShTest(execute_external=externalShell)
25 config.suffixes = ['.py']
27 config.test_source_root = os.path.dirname(__file__)
28 config.test_exec_root = config.test_source_root
29 config.target_triple = '(unused)'
30 src_root = os.path.join(config.test_source_root, '..')
31 config.environment['PYTHONPATH'] = src_root
32 config.substitutions.append(('%{python}', '"%s"' % (sys.executable)))