• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# -*- Python -*-
2
3# Configuration file for the 'lit' test runner.
4
5import os
6
7import lit.formats
8
9# name: The name of this test suite.
10config.name = 'flang-Unit'
11
12# suffixes: A list of file extensions to treat as test files.
13config.suffixes =  []
14
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.
17config.test_source_root = os.path.join(config.flang_obj_root, 'unittests')
18config.test_exec_root = config.test_source_root
19
20# testFormat: The test format to use to interpret tests.
21config.test_format = lit.formats.GoogleTest(config.llvm_build_mode, 'Tests')
22
23# Tweak the PATH to include the tools dir.
24path = os.path.pathsep.join((config.flang_tools_dir, config.llvm_tools_dir, config.environment['PATH']))
25config.environment['PATH'] = path
26
27path = os.path.pathsep.join((config.flang_libs_dir, config.llvm_libs_dir,
28                              config.environment.get('LD_LIBRARY_PATH','')))
29config.environment['LD_LIBRARY_PATH'] = path
30
31# Propagate PYTHON_EXECUTABLE into the environment
32#config.environment['PYTHON_EXECUTABLE'] = sys.executable
33