From f4ecae7c96c9a7dce65a7ba4158c0d7ca98b3a07 Mon Sep 17 00:00:00 2001 From: Olli Saarikivi Date: Wed, 10 May 2023 18:49:02 +0000 Subject: [PATCH] Rename tests/ to test/ --- CMakeLists.txt | 2 +- {tests => test}/CMakeLists.txt | 0 {tests => test}/allgather_test.cu | 0 {tests => test}/allgather_test_cpp.cu | 0 {tests => test}/allgather_test_standalone.cu | 0 {tests => test}/allreduce_allpairs_test.cu | 0 {tests => test}/bootstrap_test.cc | 0 {tests => test}/bootstrap_test_cpp.cc | 0 {tests => test}/common.cu | 0 {tests => test}/common.h | 0 {tests => test}/communicator_test_cpp.cu | 0 {tests => test}/ib_test.cc | 0 {tests => test}/p2p_test.cu | 0 {tests => test}/unit/CMakeLists.txt | 0 {tests => test}/unit/core_tests.cc | 0 15 files changed, 1 insertion(+), 1 deletion(-) rename {tests => test}/CMakeLists.txt (100%) rename {tests => test}/allgather_test.cu (100%) rename {tests => test}/allgather_test_cpp.cu (100%) rename {tests => test}/allgather_test_standalone.cu (100%) rename {tests => test}/allreduce_allpairs_test.cu (100%) rename {tests => test}/bootstrap_test.cc (100%) rename {tests => test}/bootstrap_test_cpp.cc (100%) rename {tests => test}/common.cu (100%) rename {tests => test}/common.h (100%) rename {tests => test}/communicator_test_cpp.cu (100%) rename {tests => test}/ib_test.cc (100%) rename {tests => test}/p2p_test.cu (100%) rename {tests => test}/unit/CMakeLists.txt (100%) rename {tests => test}/unit/core_tests.cc (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2597313f..270a1ed8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,4 +45,4 @@ if(ALLOW_GDRCOPY AND GDRCOPY_FOUND) endif() add_subdirectory(src) # This adds the sources to the mscclpp target -add_subdirectory(tests) +add_subdirectory(test) diff --git a/tests/CMakeLists.txt b/test/CMakeLists.txt similarity index 100% rename from tests/CMakeLists.txt rename to test/CMakeLists.txt diff --git a/tests/allgather_test.cu b/test/allgather_test.cu similarity index 100% rename from tests/allgather_test.cu rename to test/allgather_test.cu diff --git a/tests/allgather_test_cpp.cu b/test/allgather_test_cpp.cu similarity index 100% rename from tests/allgather_test_cpp.cu rename to test/allgather_test_cpp.cu diff --git a/tests/allgather_test_standalone.cu b/test/allgather_test_standalone.cu similarity index 100% rename from tests/allgather_test_standalone.cu rename to test/allgather_test_standalone.cu diff --git a/tests/allreduce_allpairs_test.cu b/test/allreduce_allpairs_test.cu similarity index 100% rename from tests/allreduce_allpairs_test.cu rename to test/allreduce_allpairs_test.cu diff --git a/tests/bootstrap_test.cc b/test/bootstrap_test.cc similarity index 100% rename from tests/bootstrap_test.cc rename to test/bootstrap_test.cc diff --git a/tests/bootstrap_test_cpp.cc b/test/bootstrap_test_cpp.cc similarity index 100% rename from tests/bootstrap_test_cpp.cc rename to test/bootstrap_test_cpp.cc diff --git a/tests/common.cu b/test/common.cu similarity index 100% rename from tests/common.cu rename to test/common.cu diff --git a/tests/common.h b/test/common.h similarity index 100% rename from tests/common.h rename to test/common.h diff --git a/tests/communicator_test_cpp.cu b/test/communicator_test_cpp.cu similarity index 100% rename from tests/communicator_test_cpp.cu rename to test/communicator_test_cpp.cu diff --git a/tests/ib_test.cc b/test/ib_test.cc similarity index 100% rename from tests/ib_test.cc rename to test/ib_test.cc diff --git a/tests/p2p_test.cu b/test/p2p_test.cu similarity index 100% rename from tests/p2p_test.cu rename to test/p2p_test.cu diff --git a/tests/unit/CMakeLists.txt b/test/unit/CMakeLists.txt similarity index 100% rename from tests/unit/CMakeLists.txt rename to test/unit/CMakeLists.txt diff --git a/tests/unit/core_tests.cc b/test/unit/core_tests.cc similarity index 100% rename from tests/unit/core_tests.cc rename to test/unit/core_tests.cc