[libcxx-commits] [PATCH] D76092: Allow site-specific test_exec_root.

Dan Albert via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Mar 13 12:24:59 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG14d2d8c9761b: Allow site-specific test_exec_root. (authored by danalbert).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D76092/new/

https://reviews.llvm.org/D76092

Files:
  libcxx/test/lit.cfg


Index: libcxx/test/lit.cfg
===================================================================
--- libcxx/test/lit.cfg
+++ libcxx/test/lit.cfg
@@ -38,7 +38,8 @@
         lit_config.warning('Creating temporary directory for object root: %s' %
                            obj_root)
 
-config.test_exec_root = os.path.join(obj_root, 'test')
+if not config.test_exec_root:
+    config.test_exec_root = os.path.join(obj_root, 'test')
 
 cfg_variant = getattr(config, 'configuration_variant', 'libcxx')
 if cfg_variant:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76092.250278.patch
Type: text/x-patch
Size: 514 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200313/cb17782a/attachment-0001.bin>


More information about the libcxx-commits mailing list