mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
84ab5e6b2a
llvm-svn: 242851
16 lines
601 B
INI
16 lines
601 B
INI
import lit.formats
|
|
|
|
config.name = "LLVMFuzzer"
|
|
config.test_format = lit.formats.ShTest(True)
|
|
config.suffixes = ['.test']
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
# Tweak PATH to include llvm tools dir and current exec dir.
|
|
llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
|
|
if (not llvm_tools_dir) or (not os.path.exists(llvm_tools_dir)):
|
|
lit_config.fatal("Invalid llvm_tools_dir config attribute: %r" % llvm_tools_dir)
|
|
path = os.path.pathsep.join((llvm_tools_dir, config.test_exec_root,
|
|
config.environment['PATH']))
|
|
config.environment['PATH'] = path
|
|
|