[SE] Fix config bug with CUDA tests
authorJason Henline <jhen@google.com>
Thu, 15 Sep 2016 20:26:28 +0000 (20:26 +0000)
committerJason Henline <jhen@google.com>
Thu, 15 Sep 2016 20:26:28 +0000 (20:26 +0000)
Summary:
It turns out CMake errors out if a processed directory contains source
files that are not used. This was causing an error with the CUDATest.cpp
file when configuring StreamExecutor with the CUDA platform disabled.

Moving CUDATest.cpp to its own directory fixes this problem.

Reviewers: jlebar, jprice

Subscribers: beanz, mgorny, jlebar, parallel_libs-commits

Differential Revision: https://reviews.llvm.org/D24618

llvm-svn: 281654

parallel-libs/streamexecutor/unittests/CoreTests/CMakeLists.txt
parallel-libs/streamexecutor/unittests/CoreTests/cuda/CUDATest.cpp [moved from parallel-libs/streamexecutor/unittests/CoreTests/CUDATest.cpp with 100% similarity]

index 5a66a66..ffc3371 100644 (file)
@@ -1,5 +1,5 @@
 if(STREAM_EXECUTOR_ENABLE_CUDA_PLATFORM)
-    set(CUDA_TEST_SOURCES CUDATest.cpp)
+    set(CUDA_TEST_SOURCES cuda/CUDATest.cpp)
 endif()
 
 add_se_unittest(