From: Milind Changire Date: Thu, 14 Nov 2024 03:44:03 +0000 (+0530) Subject: test/common: keeping build happy X-Git-Tag: v18.2.5~264^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4d6eed0bb3c5437478e77005cfb2c4b0b4ea3607;p=ceph.git test/common: keeping build happy Since ceph_pthread_setname() has now been moved from a macro to a function, we need to reference the common library to link it to. Signed-off-by: Milind Changire --- diff --git a/src/test/common/CMakeLists.txt b/src/test/common/CMakeLists.txt index 11e111115d7f9..3d21db73b1292 100644 --- a/src/test/common/CMakeLists.txt +++ b/src/test/common/CMakeLists.txt @@ -356,6 +356,7 @@ target_link_libraries(unittest_cdc global ceph-common) add_ceph_unittest(unittest_cdc) add_executable(unittest_ceph_timer test_ceph_timer.cc) +target_link_libraries(unittest_ceph_timer ceph-common) add_ceph_unittest(unittest_ceph_timer) add_executable(unittest_option test_option.cc)