[lldb] fix fd leak during lldb testsuite (#118093)
[llvm-project.git] / flang / test / Unit / lit.cfg.py
blobc82ac1c5aed4559fd5d15b85f4ad980acf09e4e0
1 # -*- Python -*-
3 # Configuration file for the 'lit' test runner.
5 import os
7 import lit.formats
9 # name: The name of this test suite.
10 config.name = "flang-Unit"
12 # suffixes: A list of file extensions to treat as test files.
13 config.suffixes = []
15 # test_source_root: The root path where unit test binaries are located.
16 # test_exec_root: The root path where tests should be run.
17 config.test_source_root = os.path.join(config.flang_obj_root, "unittests")
18 config.test_exec_root = config.test_source_root
20 # testFormat: The test format to use to interpret tests.
21 config.test_format = lit.formats.GoogleTest(config.llvm_build_mode, "Tests")
23 # Tweak the PATH to include the tools dir.
24 path = os.path.pathsep.join(
25 (config.flang_tools_dir, config.llvm_tools_dir, config.environment["PATH"])
27 config.environment["PATH"] = path
29 path = os.path.pathsep.join(
31 config.flang_libs_dir,
32 config.llvm_libs_dir,
33 config.environment.get("LD_LIBRARY_PATH", ""),
36 config.environment["LD_LIBRARY_PATH"] = path
38 # Propagate PYTHON_EXECUTABLE into the environment
39 # config.environment['PYTHON_EXECUTABLE'] = sys.executable
41 # To modify the default target triple for flang tests.
42 if config.flang_test_triple:
43 config.target_triple = config.flang_test_triple
44 config.environment[config.llvm_target_triple_env] = config.flang_test_triple