From: Ali Maredia Date: Tue, 2 Feb 2016 01:02:42 +0000 (-0500) Subject: cmake: moved tests into test/filestore dir X-Git-Tag: v10.2.0~27^2~31 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=997291e6f1a3d2f162e0f6ebbad90e28d7e15a87;p=ceph.git cmake: moved tests into test/filestore dir Added a CMakeLists.txt into test/filestore. Signed-off-by: Ali Maredia --- diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index 4c379cad8d3b..b4270d795d0e 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -14,6 +14,7 @@ add_subdirectory(cls_rgw) add_subdirectory(cls_statelog) add_subdirectory(cls_version) add_subdirectory(compressor) +add_subdirectory(filestore) # test_timers add_executable(ceph_test_timers @@ -437,12 +438,6 @@ set_target_properties(ceph_perf_msgr_client PROPERTIES COMPILE_FLAGS ${UNITTEST_CXX_FLAGS}) target_link_libraries(ceph_perf_msgr_client os global ${UNITTEST_LIBS}) -#ceph_test_filestore -add_executable(ceph_test_filestore filestore/TestFileStore.cc) -set_target_properties(ceph_test_filestore PROPERTIES COMPILE_FLAGS - ${UNITTEST_CXX_FLAGS}) -target_link_libraries(ceph_test_filestore os global ${UNITTEST_LIBS}) - # ceph_test_xattr_bench add_executable(ceph_test_xattr_bench xattr_bench.cc diff --git a/src/test/filestore/CMakeLists.txt b/src/test/filestore/CMakeLists.txt new file mode 100644 index 000000000000..82a47f8c48bd --- /dev/null +++ b/src/test/filestore/CMakeLists.txt @@ -0,0 +1,8 @@ +#ceph_test_filestore +add_executable(ceph_test_filestore + TestFileStore.cc) +set_target_properties(ceph_test_filestore PROPERTIES COMPILE_FLAGS + ${UNITTEST_CXX_FLAGS}) +target_link_libraries(ceph_test_filestore os global ${UNITTEST_LIBS}) + +