projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb1766a
)
Make check-libcxx dependant on libc++experimental if present.
author
Eric Fiselier
<eric@efcs.ca>
Tue, 3 May 2016 21:58:07 +0000
(21:58 +0000)
committer
Eric Fiselier
<eric@efcs.ca>
Tue, 3 May 2016 21:58:07 +0000
(21:58 +0000)
llvm-svn: 268451
libcxx/test/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/libcxx/test/CMakeLists.txt
b/libcxx/test/CMakeLists.txt
index
34a559d
..
ae6fee1
100644
(file)
--- a/
libcxx/test/CMakeLists.txt
+++ b/
libcxx/test/CMakeLists.txt
@@
-44,10
+44,14
@@
configure_file(
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
@ONLY)
+if (LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY)
+ set(experimental_dep cxx_experimental)
+endif()
+
add_lit_testsuite(check-libcxx
"Running libcxx tests"
${CMAKE_CURRENT_BINARY_DIR}
- DEPENDS cxx)
+ DEPENDS cxx
${experimental_dep}
)
if (LIBCXX_GENERATE_COVERAGE)
include(CodeCoverage)