2020-04-27 08:55:15 +08:00
|
|
|
# -*- Python -*-
|
|
|
|
|
|
|
|
import os
|
|
|
|
import platform
|
|
|
|
import re
|
|
|
|
import subprocess
|
|
|
|
import tempfile
|
|
|
|
|
|
|
|
import lit.formats
|
|
|
|
import lit.util
|
|
|
|
|
|
|
|
from lit.llvm import llvm_config
|
|
|
|
from lit.llvm.subst import ToolSubst
|
|
|
|
from lit.llvm.subst import FindTool
|
|
|
|
|
|
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
|
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'NPCOMP_OPT'
|
|
|
|
|
|
|
|
config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
|
|
|
|
|
|
|
|
# suffixes: A list of file extensions to treat as test files.
|
2020-08-04 08:41:16 +08:00
|
|
|
config.suffixes = ['.mlir', '.py']
|
2020-04-27 08:55:15 +08:00
|
|
|
|
|
|
|
# test_source_root: The root path where tests are located.
|
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
|
|
|
|
# test_exec_root: The root path where tests should be run.
|
|
|
|
config.test_exec_root = os.path.join(config.npcomp_obj_root, 'test')
|
|
|
|
|
|
|
|
config.substitutions.append(('%PATH%', config.environment['PATH']))
|
|
|
|
config.substitutions.append(('%shlibext', config.llvm_shlib_ext))
|
2020-08-04 08:41:16 +08:00
|
|
|
config.substitutions.append(('%PYTHON', config.python_executable))
|
2020-04-27 08:55:15 +08:00
|
|
|
|
|
|
|
llvm_config.with_system_environment(
|
2020-08-04 08:41:16 +08:00
|
|
|
['HOME', 'INCLUDE', 'LIB', 'NPCOMP_DEBUG', 'TMP', 'TEMP'])
|
2020-04-27 08:55:15 +08:00
|
|
|
|
|
|
|
llvm_config.use_default_substitutions()
|
|
|
|
|
|
|
|
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
|
|
|
|
# subdirectories contain auxiliary inputs for various tests in their parent
|
|
|
|
# directories.
|
2020-10-02 09:59:58 +08:00
|
|
|
config.excludes = ['lit.cfg.py', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
|
2020-04-27 08:55:15 +08:00
|
|
|
|
|
|
|
# test_source_root: The root path where tests are located.
|
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
|
|
|
|
# test_exec_root: The root path where tests should be run.
|
|
|
|
config.test_exec_root = os.path.join(config.npcomp_obj_root, 'test')
|
2020-10-09 09:29:59 +08:00
|
|
|
config.npcomp_bin_dir = os.path.join(config.npcomp_obj_root, 'bin')
|
2020-05-29 07:41:36 +08:00
|
|
|
config.npcomp_runtime_shlib = os.path.join(
|
2020-10-02 09:59:58 +08:00
|
|
|
config.npcomp_obj_root, 'lib',
|
|
|
|
'libNPCOMPCompilerRuntimeShlib' + config.llvm_shlib_ext)
|
2020-04-27 08:55:15 +08:00
|
|
|
|
2020-08-04 08:41:16 +08:00
|
|
|
# Tweak the PATH and PYTHONPATH to include the tools dir.
|
2021-01-27 02:43:43 +08:00
|
|
|
npcomp_python_dir = "python" if config.npcomp_built_standalone else "tools/npcomp/python"
|
2020-04-27 08:55:15 +08:00
|
|
|
llvm_config.with_environment('PATH', config.llvm_tools_dir, append_path=True)
|
2020-10-10 07:21:01 +08:00
|
|
|
llvm_config.with_environment('PYTHONPATH', [
|
2021-07-28 07:10:10 +08:00
|
|
|
os.path.join(config.npcomp_python_packages_dir, 'npcomp_core')],
|
2020-10-10 07:21:01 +08:00
|
|
|
append_path=True)
|
2020-04-27 08:55:15 +08:00
|
|
|
|
2020-05-29 07:41:36 +08:00
|
|
|
tool_dirs = [
|
2020-10-09 09:29:59 +08:00
|
|
|
os.path.join(config.npcomp_bin_dir),
|
2020-10-02 09:59:58 +08:00
|
|
|
os.path.join(config.test_exec_root, 'CAPI'),
|
|
|
|
config.llvm_tools_dir,
|
2020-05-29 07:41:36 +08:00
|
|
|
]
|
2020-04-27 08:55:15 +08:00
|
|
|
tools = [
|
2020-05-29 07:41:36 +08:00
|
|
|
'npcomp-opt',
|
2021-08-04 08:53:31 +08:00
|
|
|
'refback-run',
|
2020-05-29 07:41:36 +08:00
|
|
|
ToolSubst('%npcomp_runtime_shlib', config.npcomp_runtime_shlib),
|
2020-04-27 08:55:15 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
llvm_config.add_tool_substitutions(tools, tool_dirs)
|