blob: 6c2b4cca45466c23e3c322a198442fa39798f6d1 [file] [log] [blame]
Alexey Samsonov7274ff82012-07-31 15:43:11 +00001# -*- Python -*-
2
3# Configuration file for 'lit' test runner.
4# This file contains common rules for various compiler-rt testsuites.
5# It is mostly copied from lit.cfg used by Clang.
6import os
7import platform
8
Daniel Dunbara1b15b42013-08-09 22:14:01 +00009import lit.formats
10
Alexey Samsonov7274ff82012-07-31 15:43:11 +000011# Setup test format
12execute_external = (platform.system() != 'Windows'
Daniel Dunbara1b15b42013-08-09 22:14:01 +000013 or lit_config.getBashPath() not in [None, ""])
Alexey Samsonov7274ff82012-07-31 15:43:11 +000014config.test_format = lit.formats.ShTest(execute_external)
15
16# Setup clang binary.
17clang_path = getattr(config, 'clang', None)
18if (not clang_path) or (not os.path.exists(clang_path)):
Daniel Dunbara1b15b42013-08-09 22:14:01 +000019 lit_config.fatal("Can't find Clang on path %r" % clang_path)
Alexey Samsonov7274ff82012-07-31 15:43:11 +000020
21# Clear some environment variables that might affect Clang.
22possibly_dangerous_env_vars = ['COMPILER_PATH', 'RC_DEBUG_OPTIONS',
23 'CINDEXTEST_PREAMBLE_FILE', 'LIBRARY_PATH',
24 'CPATH', 'C_INCLUDE_PATH', 'CPLUS_INCLUDE_PATH',
25 'OBJC_INCLUDE_PATH', 'OBJCPLUS_INCLUDE_PATH',
26 'LIBCLANG_TIMING', 'LIBCLANG_OBJTRACKING',
27 'LIBCLANG_LOGGING', 'LIBCLANG_BGPRIO_INDEX',
28 'LIBCLANG_BGPRIO_EDIT', 'LIBCLANG_NOTHREADS',
29 'LIBCLANG_RESOURCE_USAGE',
30 'LIBCLANG_CODE_COMPLETION_LOGGING']
31# Clang/Win32 may refer to %INCLUDE%. vsvarsall.bat sets it.
32if platform.system() != 'Windows':
33 possibly_dangerous_env_vars.append('INCLUDE')
34for name in possibly_dangerous_env_vars:
35 if name in config.environment:
36 del config.environment[name]
37
Alexey Samsonov6ffcb582012-08-07 11:00:19 +000038# Tweak PATH to include llvm tools dir.
39llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
40if (not llvm_tools_dir) or (not os.path.exists(llvm_tools_dir)):
Daniel Dunbara1b15b42013-08-09 22:14:01 +000041 lit_config.fatal("Invalid llvm_tools_dir config attribute: %r" % llvm_tools_dir)
Alexey Samsonov6ffcb582012-08-07 11:00:19 +000042path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
43config.environment['PATH'] = path
44
Alexey Samsonovfe187232013-06-30 14:47:38 +000045# Define path to external llvm-symbolizer tool.
46config.llvm_symbolizer_path = os.path.join(llvm_tools_dir, "llvm-symbolizer")
47
Alexey Samsonov7274ff82012-07-31 15:43:11 +000048# Use ugly construction to explicitly prohibit "clang", "clang++" etc.
49# in RUN lines.
50config.substitutions.append(
51 (' clang', """\n\n*** Do not use 'clangXXX' in tests,
52 instead define '%clangXXX' substitution in lit config. ***\n\n""") )
Alexey Samsonov6b5346e2013-05-21 08:22:03 +000053
54# Add supported compiler_rt architectures to a list of available features.
55compiler_rt_arch = getattr(config, 'compiler_rt_arch', None)
56if compiler_rt_arch:
57 for arch in compiler_rt_arch.split(";"):
58 config.available_features.add(arch + "-supported-target")
Peter Collingbourne7e8db742013-10-25 23:03:34 +000059
60compiler_rt_debug = getattr(config, 'compiler_rt_debug', False)
61if not compiler_rt_debug:
62 config.available_features.add('compiler-rt-optimized')