Remove unused Unit test directory for xray.

This commit is contained in:
Eric Christopher 2019-12-09 18:40:05 -08:00
parent 848934c67d
commit 22d516261a
2 changed files with 0 additions and 43 deletions

View File

@ -25,17 +25,6 @@ if (COMPILER_RT_BUILD_XRAY AND COMPILER_RT_HAS_XRAY)
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py)
list(APPEND XRAY_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
endforeach()
# Add unit tests.
if(COMPILER_RT_INCLUDE_TESTS)
if(UNIX AND NOT APPLE)
configure_lit_site_cfg(
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.py.in
${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg.py)
list(APPEND XRAY_TEST_DEPS XRayUnitTests)
list(APPEND XRAY_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit)
endif()
endif()
endif()
add_lit_testsuite(check-xray "Running the XRay tests"

View File

@ -1,32 +0,0 @@
@LIT_SITE_CFG_IN_HEADER@
import os
import platform
# Load common config for all compiler-rt unit tests.
lit_config.load_config(config, "@COMPILER_RT_BINARY_DIR@/unittests/lit.common.unit.configured")
# Setup config name.
config.name = 'XRay-Unit'
config.test_exec_root = "@COMPILER_RT_BINARY_DIR@/lib/xray/tests"
config.test_source_root = config.test_exec_root
# Do not patch the XRay unit tests pre-main, and also make the error logging
# verbose to get a more accurate error logging mechanism.
config.environment['XRAY_OPTIONS'] = 'patch_premain=false'
# Add the LLVM Library directory to the LD_LIBRARY_PATH to allow tests to look
# up the shared libraries.
if 'LD_LIBRARY_PATH' in os.environ:
libdirs = os.path.pathsep.join((config.llvm_lib_dir, os.environ['LD_LIBRARY_PATH']))
config.environment['LD_LIBRARY_PATH'] = libdirs
else:
config.environment['LD_LIBRARY_PATH'] = config.llvm_lib_dir
if platform.system() == 'FreeBSD':
if 'LD_32_LIBRARY_PATH' in os.environ:
libdirs = os.path.pathsep.join((config.llvm_lib_dir, os.environ['LD_32_LIBRARY_PATH']))
config.environment['LD_32_LIBRARY_PATH'] = libdirs
else:
config.environment['LD_32_LIBRARY_PATH'] = config.llvm_lib_dir