forked from OSchip/llvm-project
22 lines
633 B
Python
22 lines
633 B
Python
# -*- Python -*-
|
|
|
|
# Configuration file for 'lit' test runner.
|
|
# This file contains common config setup rules for unit tests in various
|
|
# compiler-rt testsuites.
|
|
|
|
import os
|
|
|
|
# Setup test format
|
|
llvm_build_mode = getattr(config, "llvm_build_mode", "Debug")
|
|
config.test_format = lit.formats.GoogleTest(llvm_build_mode, "Test")
|
|
|
|
# Setup test suffixes.
|
|
config.suffixes = []
|
|
|
|
# Propagate the temp directory. Windows requires this because it uses \Windows\
|
|
# if none of these are present.
|
|
if 'TMP' in os.environ:
|
|
config.environment['TMP'] = os.environ['TMP']
|
|
if 'TEMP' in os.environ:
|
|
config.environment['TEMP'] = os.environ['TEMP']
|