1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*clang- Python -*-
# Configuration file for the 'lit' test runner.
# name: The name of this test suite.
=
# testFormat: The test format to use to interpret tests.
#
# For now we require '&&' between commands, until they get globally killed and
# the test runner updated.
= !=
=
# suffixes: A list of file extensions to treat as test files.
=
# test_source_root: The root path where tests are located.
=
# test_exec_root: The root path where tests should be run.
=
#ToolSubst('%lli', FindTool('lli'), post='.', extra_args=lli_args),
# Tweak the PATH to include the tools dir and the scripts dir.
=
= # + config.extra_paths)
=
=
=
#tools = ['opt', 'lli', 'clang', 'clang++']
#llvm_config.add_tool_substitutions(tools, config.llvm_tools_dir)
# opt knows whether it is compiled with -DNDEBUG.
"""
import subprocess
try:
opt_cmd = subprocess.Popen([os.path.join(config.llvm_tools_dir, 'opt'), '-version'],
stdout = subprocess.PIPE,
env=config.environment)
except OSError:
print("Could not find opt in " + config.llvm_tools_dir)
exit(42)
if re.search(r'with assertions', opt_cmd.stdout.read().decode('ascii')):
config.available_features.add('asserts')
opt_cmd.wait()
try:
llvm_config_cmd = subprocess.Popen([os.path.join(
config.llvm_tools_dir,
'llvm-config'),
'--targets-built'],
stdout = subprocess.PIPE,
env=config.environment)
except OSError:
print("Could not find llvm-config in " + config.llvm_tools_dir)
exit(42)
"""