From cbfbd4d174a49a004dc90a120b080cb816c9b2fb Mon Sep 17 00:00:00 2001 From: Hyotaek Shim Date: Wed, 12 Jan 2022 18:11:11 +0900 Subject: [PATCH] Change directory name from test to tests Change-Id: I699f87c6ca9d80bb4f2885ed33510fffb6ded564 Signed-off-by: Hyotaek Shim --- CMakeLists.txt | 4 ++-- {test => tests}/orientation_test/CMakeLists.txt | 0 {test => tests}/orientation_test/errors.h | 0 {test => tests}/orientation_test/fusion.cpp | 0 {test => tests}/orientation_test/fusion.h | 0 {test => tests}/orientation_test/main.cpp | 0 {test => tests}/orientation_test/mat.h | 0 {test => tests}/orientation_test/quat.h | 0 {test => tests}/orientation_test/tizen_orientation.h | 0 {test => tests}/orientation_test/traits.h | 0 {test => tests}/orientation_test/vec.h | 0 {test => tests}/stress_test/CMakeLists.txt | 0 {test => tests}/stress_test/main.c | 0 13 files changed, 2 insertions(+), 2 deletions(-) rename {test => tests}/orientation_test/CMakeLists.txt (100%) rename {test => tests}/orientation_test/errors.h (100%) rename {test => tests}/orientation_test/fusion.cpp (100%) rename {test => tests}/orientation_test/fusion.h (100%) rename {test => tests}/orientation_test/main.cpp (100%) rename {test => tests}/orientation_test/mat.h (100%) rename {test => tests}/orientation_test/quat.h (100%) rename {test => tests}/orientation_test/tizen_orientation.h (100%) rename {test => tests}/orientation_test/traits.h (100%) rename {test => tests}/orientation_test/vec.h (100%) rename {test => tests}/stress_test/CMakeLists.txt (100%) rename {test => tests}/stress_test/main.c (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a56b76..d84e224 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,6 @@ INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}.pc DESTINATION ${CMAKE INSTALL(FILES include/sensor.h include/sensor-internal.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/sensor) INSTALL(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) -ADD_SUBDIRECTORY(test/stress_test) -ADD_SUBDIRECTORY(test/orientation_test) +ADD_SUBDIRECTORY(tests/stress_test) +ADD_SUBDIRECTORY(tests/orientation_test) ADD_SUBDIRECTORY(tools) diff --git a/test/orientation_test/CMakeLists.txt b/tests/orientation_test/CMakeLists.txt similarity index 100% rename from test/orientation_test/CMakeLists.txt rename to tests/orientation_test/CMakeLists.txt diff --git a/test/orientation_test/errors.h b/tests/orientation_test/errors.h similarity index 100% rename from test/orientation_test/errors.h rename to tests/orientation_test/errors.h diff --git a/test/orientation_test/fusion.cpp b/tests/orientation_test/fusion.cpp similarity index 100% rename from test/orientation_test/fusion.cpp rename to tests/orientation_test/fusion.cpp diff --git a/test/orientation_test/fusion.h b/tests/orientation_test/fusion.h similarity index 100% rename from test/orientation_test/fusion.h rename to tests/orientation_test/fusion.h diff --git a/test/orientation_test/main.cpp b/tests/orientation_test/main.cpp similarity index 100% rename from test/orientation_test/main.cpp rename to tests/orientation_test/main.cpp diff --git a/test/orientation_test/mat.h b/tests/orientation_test/mat.h similarity index 100% rename from test/orientation_test/mat.h rename to tests/orientation_test/mat.h diff --git a/test/orientation_test/quat.h b/tests/orientation_test/quat.h similarity index 100% rename from test/orientation_test/quat.h rename to tests/orientation_test/quat.h diff --git a/test/orientation_test/tizen_orientation.h b/tests/orientation_test/tizen_orientation.h similarity index 100% rename from test/orientation_test/tizen_orientation.h rename to tests/orientation_test/tizen_orientation.h diff --git a/test/orientation_test/traits.h b/tests/orientation_test/traits.h similarity index 100% rename from test/orientation_test/traits.h rename to tests/orientation_test/traits.h diff --git a/test/orientation_test/vec.h b/tests/orientation_test/vec.h similarity index 100% rename from test/orientation_test/vec.h rename to tests/orientation_test/vec.h diff --git a/test/stress_test/CMakeLists.txt b/tests/stress_test/CMakeLists.txt similarity index 100% rename from test/stress_test/CMakeLists.txt rename to tests/stress_test/CMakeLists.txt diff --git a/test/stress_test/main.c b/tests/stress_test/main.c similarity index 100% rename from test/stress_test/main.c rename to tests/stress_test/main.c -- 2.34.1