From d7103602acfa21723d022adc47d9dbc97057b80d Mon Sep 17 00:00:00 2001 From: Olli Saarikivi Date: Thu, 4 May 2023 00:55:35 +0000 Subject: [PATCH] Only build C++ tests in CMake --- tests/CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fd02e658..457003e3 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,8 +1,8 @@ -add_executable(bootstrap_test bootstrap_test.cc) -target_link_libraries(bootstrap_test mscclpp MPI::MPI_CXX) +add_executable(bootstrap_test_cpp bootstrap_test_cpp.cc) +target_link_libraries(bootstrap_test_cpp mscclpp MPI::MPI_CXX) + +add_executable(communicator_test_cpp communicator_test_cpp.cu) +target_link_libraries(communicator_test_cpp mscclpp MPI::MPI_CXX) add_executable(allgather_test_cpp allgather_test_cpp.cu) target_link_libraries(allgather_test_cpp mscclpp MPI::MPI_CXX) - -add_executable(allgather_test_standalone allgather_test_standalone.cu) -target_link_libraries(allgather_test_standalone mscclpp MPI::MPI_CXX)