[libcxx-commits] [libcxx] c2f6a00 - [libc++] Allow overriding the cached value of LIBCXX_TEST_CONFIG
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Sep 8 08:30:13 PDT 2020
Author: Louis Dionne
Date: 2020-09-08T11:29:32-04:00
New Revision: c2f6a0012882ba9b39ccee53f3d7f4f1aedf2181
URL: https://github.com/llvm/llvm-project/commit/c2f6a0012882ba9b39ccee53f3d7f4f1aedf2181
DIFF: https://github.com/llvm/llvm-project/commit/c2f6a0012882ba9b39ccee53f3d7f4f1aedf2181.diff
LOG: [libc++] Allow overriding the cached value of LIBCXX_TEST_CONFIG
Added:
Modified:
libcxx/CMakeLists.txt
Removed:
################################################################################
diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt
index a5c32d94aea2..8e7df5d19610 100644
--- a/libcxx/CMakeLists.txt
+++ b/libcxx/CMakeLists.txt
@@ -96,7 +96,7 @@ option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS})
option(LIBCXX_ENABLE_PARALLEL_ALGORITHMS "Enable the parallel algorithms library. This requires the PSTL to be available." OFF)
option(LIBCXX_TEST_GDB_PRETTY_PRINTERS "Test gdb pretty printers." OFF)
set(LIBCXX_TEST_CONFIG "${CMAKE_CURRENT_SOURCE_DIR}/test/configs/legacy.cfg.in" CACHE STRING
- "The Lit testing configuration to use when running the tests." FORCE) # TODO: Stop using 'FORCE' once we can assume all CMake build dirs have been re-generated
+ "The Lit testing configuration to use when running the tests.")
set(LIBCXX_TEST_PARAMS "" CACHE STRING
"A list of parameters to run the Lit test suite with.")
More information about the libcxx-commits
mailing list