From 50272a38225a2ef4a670a45967cf038887bcc6fd Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sat, 27 Apr 2019 16:40:09 +0200 Subject: [PATCH] moves core tests into separate subdirectory --- CMakeLists.txt | 14 +++++++------- test/{ => core}/test_container_of.cc | 0 test/{ => core}/test_message.cc | 0 test/{ => core}/test_message_queue.cc | 0 test/{ => core}/test_path.cc | 0 test/{ => core}/test_slist.cc | 0 test/{ => core}/test_status.cc | 0 test/{ => core}/test_string.cc | 0 8 files changed, 7 insertions(+), 7 deletions(-) rename test/{ => core}/test_container_of.cc (100%) rename test/{ => core}/test_message.cc (100%) rename test/{ => core}/test_message_queue.cc (100%) rename test/{ => core}/test_path.cc (100%) rename test/{ => core}/test_slist.cc (100%) rename test/{ => core}/test_status.cc (100%) rename test/{ => core}/test_string.cc (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0459576..1b61998 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -293,7 +293,6 @@ add_executable(alltests test/msleep.cc test/mock_authenticator.cc test/mock_request.cc - test/test_container_of.cc test/test_response_parser.cc test/test_server.cc test/test_timepoint.cc @@ -302,14 +301,15 @@ add_executable(alltests test/test_credentials.cc test/test_authenticator.cc test/test_authenticators.cc - test/test_string.cc - test/test_slist.cc - test/test_path.cc test/test_static_filesystem.cc test/test_fuse_req.cc - test/test_status.cc - test/test_message.cc - test/test_message_queue.cc + test/core/test_container_of.cc + test/core/test_string.cc + test/core/test_slist.cc + test/core/test_path.cc + test/core/test_status.cc + test/core/test_message.cc + test/core/test_message_queue.cc ) target_link_libraries(alltests PUBLIC webfuse-adapter-static webfuse-provider-static webfuse-core ${EXTRA_LIBS} ${GMOCK_LIBRARIES} ${GTEST_LIBRARIES}) diff --git a/test/test_container_of.cc b/test/core/test_container_of.cc similarity index 100% rename from test/test_container_of.cc rename to test/core/test_container_of.cc diff --git a/test/test_message.cc b/test/core/test_message.cc similarity index 100% rename from test/test_message.cc rename to test/core/test_message.cc diff --git a/test/test_message_queue.cc b/test/core/test_message_queue.cc similarity index 100% rename from test/test_message_queue.cc rename to test/core/test_message_queue.cc diff --git a/test/test_path.cc b/test/core/test_path.cc similarity index 100% rename from test/test_path.cc rename to test/core/test_path.cc diff --git a/test/test_slist.cc b/test/core/test_slist.cc similarity index 100% rename from test/test_slist.cc rename to test/core/test_slist.cc diff --git a/test/test_status.cc b/test/core/test_status.cc similarity index 100% rename from test/test_status.cc rename to test/core/test_status.cc diff --git a/test/test_string.cc b/test/core/test_string.cc similarity index 100% rename from test/test_string.cc rename to test/core/test_string.cc