From: Chanyoung Park Date: Thu, 7 Aug 2025 08:07:16 +0000 (+0000) Subject: test/crimson/seastore/CMakeLists: re-enable seastore unittests X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=40d60f2a2a20ced836e498be65be333563410cfe;p=ceph.git test/crimson/seastore/CMakeLists: re-enable seastore unittests Fixes: https://tracker.ceph.com/issues/70254 Signed-off-by: Chanyoung Park --- diff --git a/src/test/crimson/seastore/CMakeLists.txt b/src/test/crimson/seastore/CMakeLists.txt index 9c6dbb316b892..1ef1d05e1ee5d 100644 --- a/src/test/crimson/seastore/CMakeLists.txt +++ b/src/test/crimson/seastore/CMakeLists.txt @@ -5,31 +5,28 @@ function(avoid_asan_uar_slowdown name) ASAN_OPTIONS=string_append::max_uar_stack_size_log=16) endfunction() -if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM") - # See https://tracker.ceph.com/issues/70254 - add_executable(unittest-transaction-manager - test_block.cc - test_transaction_manager.cc - ../gtest_seastar.cc) - add_ceph_unittest(unittest-transaction-manager - --memory 256M --smp 1) - target_link_libraries( - unittest-transaction-manager - ${CMAKE_DL_LIBS} - crimson-seastore) - avoid_asan_uar_slowdown(unittest-transaction-manager) +add_executable(unittest-transaction-manager + test_block.cc + test_transaction_manager.cc + ../gtest_seastar.cc) + add_ceph_unittest(unittest-transaction-manager + --memory 256M --smp 1) +target_link_libraries( + unittest-transaction-manager + ${CMAKE_DL_LIBS} + crimson-seastore) +avoid_asan_uar_slowdown(unittest-transaction-manager) - add_executable(unittest-omap-manager - test_omap_manager.cc - ../gtest_seastar.cc) - add_ceph_unittest(unittest-omap-manager - --memory 256M --smp 1) - target_link_libraries( - unittest-omap-manager - ${CMAKE_DL_LIBS} - crimson-seastore) - avoid_asan_uar_slowdown(unittest-omap-manager) -endif(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM") +add_executable(unittest-omap-manager + test_omap_manager.cc + ../gtest_seastar.cc) +add_ceph_unittest(unittest-omap-manager + --memory 256M --smp 1) +target_link_libraries( + unittest-omap-manager + ${CMAKE_DL_LIBS} + crimson-seastore) +avoid_asan_uar_slowdown(unittest-omap-manager) add_executable(unittest-btree-lba-manager test_btree_lba_manager.cc