1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Author: Andreas Beckmann <anbe@debian.org>
Description: do not require a lit executable
--- a/libcudacxx/test/libcudacxx/CMakeLists.txt
+++ b/libcudacxx/test/libcudacxx/CMakeLists.txt
@@ -117,7 +117,8 @@ add_lit_testsuite(check-cudacxx
"Running libcu++ tests"
"${CMAKE_CURRENT_BINARY_DIR}")
-find_program(libcudacxx_LIT lit REQUIRED)
+set (libcudacxx_LIT "${LIT_COMMAND}")
+#find_program(libcudacxx_LIT lit REQUIRED)
if (NOT LIBCUDACXX_TEST_WITH_NVRTC)
# Build but don't run the tests. Used by CI to pre-seed sccache for the test machines.
|