Remove unused Unit test directory for xray.
authorEric Christopher <echristo@gmail.com>
Tue, 10 Dec 2019 02:40:05 +0000 (18:40 -0800)
committerEric Christopher <echristo@gmail.com>
Tue, 10 Dec 2019 02:40:44 +0000 (18:40 -0800)
compiler-rt/test/xray/CMakeLists.txt
compiler-rt/test/xray/Unit/lit.site.cfg.py.in [deleted file]

index b44e824..2633717 100644 (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"
diff --git a/compiler-rt/test/xray/Unit/lit.site.cfg.py.in b/compiler-rt/test/xray/Unit/lit.site.cfg.py.in
deleted file mode 100644 (file)
index 54709ac..0000000
+++ /dev/null
@@ -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