You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CMake] Move LLDB_TEST_BUILD_DIRECTORY into test/CMakeLists.txt
The LLDB_TEST_BUILD_DIRECTORY variable only matters to the different
test suites. Therefore they belong in test/CMakeLists.txt rather than
the top-level CMakeLists.txt.
Copy file name to clipboardExpand all lines: lldb/test/CMakeLists.txt
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
# Test runner infrastructure for LLDB. This configures the LLDB test trees
2
2
# for use by Lit, and delegates to LLVM's lit test handlers.
3
3
4
+
# Configure the build directory.
5
+
set(LLDB_TEST_BUILD_DIRECTORY"${PROJECT_BINARY_DIR}/lldb-test-build.noindex"CACHEPATH"The build root for building tests.")
6
+
4
7
# Configure and create module cache directories.
5
8
set(LLDB_TEST_MODULE_CACHE_LLDB"${LLDB_TEST_BUILD_DIRECTORY}/module-cache-lldb"CACHEPATH"The Clang module cache used by the Clang embedded in LLDB while running tests.")
6
9
set(LLDB_TEST_MODULE_CACHE_CLANG"${LLDB_TEST_BUILD_DIRECTORY}/module-cache-clang"CACHEPATH"The Clang module cache used by the Clang while building tests.")
0 commit comments