]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
test/crimson/seastore/CMakeLists: re-enable seastore unittests 64810/head
authorChanyoung Park <chaney.p@kakaoenterprise.com>
Thu, 7 Aug 2025 08:07:16 +0000 (08:07 +0000)
committerChanyoung Park <chaney.p@kakaoenterprise.com>
Thu, 7 Aug 2025 08:21:46 +0000 (08:21 +0000)
Fixes: https://tracker.ceph.com/issues/70254
Signed-off-by: Chanyoung Park <chaney.p@kakaoenterprise.com>
src/test/crimson/seastore/CMakeLists.txt

index 9c6dbb316b89272ea55a4880daab680d820ca331..1ef1d05e1ee5d8a6a754812612e02e3c472e6fc2 100644 (file)
@@ -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