summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2014-12-20 03:16:55 +0000
committerEric Fiselier <eric@efcs.ca>2014-12-20 03:16:55 +0000
commita78a26783e832f9814a59389c10b9a01c949cb33 (patch)
tree559848a16d463735bd231de9407c1c0dfda182f2
parentb12a136cddb5fea6e1a502bbc9fd815b7818a30c (diff)
downloadbcm5719-llvm-a78a26783e832f9814a59389c10b9a01c949cb33.tar.gz
bcm5719-llvm-a78a26783e832f9814a59389c10b9a01c949cb33.zip
[libcxx] Teach libcxx's lit configuration new ways to find lit.site.cfg
Summary: Currently to run tests in tree you need to symlink the lit.site.cfg file generated by the cmake build into the source tree, and teach your VCS to ignore it. This allows the user to specify where to find the lit.site.cfg file two different ways: * lit_site_config lit parameter * LIT_SITE_CONFIG enviroment variable. example usage: ``` lit -sv --param=libcxx_site_config=path/to/libcxx-build/test/lit.site.cfg path/to/tests ``` Or ``` export LIBCXX_SITE_CONFIG=path/to/libcxx-build/test/lit.site.cfg lit -sv path/to/tests ``` The command line parameter will override the environment variable. If neither options are present a warning is issued and the `lit.cfg` file is loaded directly. Reviewers: mclow.lists, jroelofs, danalbert Reviewed By: danalbert Subscribers: ddunbar, cfe-commits Differential Revision: http://reviews.llvm.org/D6255 llvm-svn: 224671
-rw-r--r--libcxx/CMakeLists.txt5
-rw-r--r--libcxx/test/CMakeLists.txt4
-rw-r--r--libcxx/test/lit.cfg39
-rw-r--r--libcxx/test/lit.site.cfg.in2
-rw-r--r--libcxx/www/index.html5
5 files changed, 45 insertions, 10 deletions
diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt
index 58abdf8a8f6..6995011910e 100644
--- a/libcxx/CMakeLists.txt
+++ b/libcxx/CMakeLists.txt
@@ -91,6 +91,11 @@ get_target_triple(LIBCXX_TARGET_TRIPLE
set(LIBCXX_TARGET_TRIPLE ${LIBCXX_TARGET_TRIPLE} CACHE STRING "Target triple.")
+set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER})
+set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
+set(LIBCXX_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
+set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib)
+
# Declare libc++ configuration variables.
# They are intended for use as follows:
# LIBCXX_CXX_FLAGS: General flags for both the compiler and linker.
diff --git a/libcxx/test/CMakeLists.txt b/libcxx/test/CMakeLists.txt
index fe82dee0b8e..e72cfbe1cff 100644
--- a/libcxx/test/CMakeLists.txt
+++ b/libcxx/test/CMakeLists.txt
@@ -23,10 +23,6 @@ if(PYTHONINTERP_FOUND)
set(LIT_ARGS "${LLVM_LIT_ARGS}")
separate_arguments(LIT_ARGS)
- set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER})
- set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/..)
- set(LIBCXX_BINARY_DIR ${CMAKE_BINARY_DIR})
- set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE})
pythonize_bool(LIBCXX_ENABLE_EXCEPTIONS)
pythonize_bool(LIBCXX_ENABLE_RTTI)
pythonize_bool(LIBCXX_ENABLE_SHARED)
diff --git a/libcxx/test/lit.cfg b/libcxx/test/lit.cfg
index 4e6a7985052..9df01375a8b 100644
--- a/libcxx/test/lit.cfg
+++ b/libcxx/test/lit.cfg
@@ -211,6 +211,7 @@ class Configuration(object):
self.cxx = None
self.src_root = None
self.obj_root = None
+ self.library_root = None
self.env = {}
self.compile_flags = ['-nostdinc++']
self.link_flags = ['-nodefaultlibs']
@@ -246,6 +247,7 @@ class Configuration(object):
self.configure_triple()
self.configure_src_root()
self.configure_obj_root()
+ self.configure_library_root()
self.configure_use_system_lib()
self.configure_use_clang_verify()
self.configure_ccache()
@@ -333,6 +335,9 @@ class Configuration(object):
def configure_obj_root(self):
self.obj_root = self.get_lit_conf('libcxx_obj_root', self.src_root)
+ def configure_library_root(self):
+ self.library_root = self.get_lit_conf('libcxx_library_root', self.obj_root)
+
def configure_use_system_lib(self):
# This test suite supports testing against either the system library or
# the locally built one; the former mode is useful for testing ABI
@@ -483,8 +488,8 @@ class Configuration(object):
# Configure library search paths
abi_library_path = self.get_lit_conf('abi_library_path', '')
if not self.use_system_lib:
- self.link_flags += ['-L' + self.obj_root + '/lib']
- self.link_flags += ['-Wl,-rpath,' + self.obj_root + '/lib']
+ self.link_flags += ['-L' + self.library_root]
+ self.link_flags += ['-Wl,-rpath,' + self.library_root]
if abi_library_path:
self.link_flags += ['-L' + abi_library_path,
'-Wl,-rpath,' + abi_library_path]
@@ -599,7 +604,7 @@ class Configuration(object):
def configure_env(self):
if sys.platform == 'darwin' and not self.use_system_lib:
- self.env['DYLD_LIBRARY_PATH'] = os.path.join(self.obj_root, 'lib')
+ self.env['DYLD_LIBRARY_PATH'] = self.library_root
# name: The name of this test suite.
config.name = 'libc++'
@@ -610,6 +615,34 @@ config.suffixes = ['.cpp']
# test_source_root: The root path where tests are located.
config.test_source_root = os.path.dirname(__file__)
+# Infer the test_exec_root from the libcxx_object root.
+libcxx_obj_root = getattr(config, 'libcxx_obj_root', None)
+if libcxx_obj_root is not None:
+ config.test_exec_root = os.path.join(libcxx_obj_root, 'test')
+
+# Check that the test exec root is known.
+if config.test_exec_root is None:
+ # Otherwise, we haven't loaded the site specific configuration (the user is
+ # probably trying to run on a test file directly, and either the site
+ # configuration hasn't been created by the build system, or we are in an
+ # out-of-tree build situation).
+ site_cfg = lit_config.params.get('libcxx_site_config',
+ os.environ.get('LIBCXX_SITE_CONFIG'))
+ if not site_cfg:
+ lit_config.warning('No site specific configuration file found!'
+ ' Running the tests in the default configuration.')
+ # TODO: Set test_exec_root to a temporary directory where output files
+ # can be placed. This is needed for ShTest.
+ elif not os.path.isfile(site_cfg):
+ lit_config.fatal(
+ "Specified site configuration file does not exist: '%s'" %
+ site_cfg)
+ else:
+ lit_config.note('using site specific configuration at %s' % site_cfg)
+ lit_config.load_config(config, site_cfg)
+ raise SystemExit()
+
+
cfg_variant = getattr(config, 'configuration_variant', '')
if cfg_variant:
print 'Using configuration variant: %s' % cfg_variant
diff --git a/libcxx/test/lit.site.cfg.in b/libcxx/test/lit.site.cfg.in
index f4bd8e46707..af29f6647fc 100644
--- a/libcxx/test/lit.site.cfg.in
+++ b/libcxx/test/lit.site.cfg.in
@@ -3,7 +3,7 @@ config.cxx_under_test = "@LIBCXX_COMPILER@"
config.std = "@LIBCXX_STD_VERSION@"
config.libcxx_src_root = "@LIBCXX_SOURCE_DIR@"
config.libcxx_obj_root = "@LIBCXX_BINARY_DIR@"
-config.python_executable = "@PYTHON_EXECUTABLE@"
+config.libcxx_library_root = "@LIBCXX_LIBRARY_DIR@"
config.enable_exceptions = "@LIBCXX_ENABLE_EXCEPTIONS@"
config.enable_rtti = "@LIBCXX_ENABLE_RTTI@"
config.enable_shared = "@LIBCXX_ENABLE_SHARED@"
diff --git a/libcxx/www/index.html b/libcxx/www/index.html
index 52edd482087..b69f969b39c 100644
--- a/libcxx/www/index.html
+++ b/libcxx/www/index.html
@@ -216,8 +216,9 @@
<ul>
<li><code>cd path/to/libcxx/libcxx</code></li>
<li><code>alias lit='python path/to/llvm/utils/lit/lit.py'</code></li>
- <li><code>ln -s path/to/build/dir/projects/libcxx/test/lit.site.cfg
- test/lit.site.cfg</code></li>
+ <li><code>export
+ LIBCXX_SITE_CONFIG=path/to/build/dir/projects/libcxx/test/lit.site.cfg
+ </code></li>
<li><code>lit -sv test/re/ # or whichever subset of tests you're interested
in</code></li>
</ul>
OpenPOWER on IntegriCloud