]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
test/crimson/seastore/CMakeLists: [arm64] disable omap manager 61735/head
authorMatan Breizman <mbreizma@redhat.com>
Mon, 3 Mar 2025 09:31:56 +0000 (09:31 +0000)
committerMatan Breizman <mbreizma@redhat.com>
Mon, 3 Mar 2025 09:31:56 +0000 (09:31 +0000)
Signed-off-by: Matan Breizman <mbreizma@redhat.com>
src/test/crimson/seastore/CMakeLists.txt

index c4804c30f257b3617941661dc8b08a324012a57a..dcd10ce10ddb6c059ceebab22f0939c5602eb3aa 100644 (file)
@@ -1,4 +1,5 @@
 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
@@ -9,6 +10,16 @@ if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM")
     unittest-transaction-manager
     ${CMAKE_DL_LIBS}
     crimson-seastore)
+
+    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)
 endif(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM")
 
 add_executable(unittest-btree-lba-manager
@@ -66,16 +77,6 @@ target_link_libraries(
   crimson-os
   crimson-common)
 
-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)
-
 add_executable(unittest-seastore
   test_seastore.cc
   ../gtest_seastar.cc)