Skip to content

Commit 40d60f2

Browse files
committed
test/crimson/seastore/CMakeLists: re-enable seastore unittests
Fixes: https://tracker.ceph.com/issues/70254 Signed-off-by: Chanyoung Park <[email protected]>
1 parent b9b8349 commit 40d60f2

File tree

1 file changed

+21
-24
lines changed

1 file changed

+21
-24
lines changed

src/test/crimson/seastore/CMakeLists.txt

Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,28 @@ function(avoid_asan_uar_slowdown name)
55
ASAN_OPTIONS=string_append::max_uar_stack_size_log=16)
66
endfunction()
77

8-
if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM")
9-
# See https://tracker.ceph.com/issues/70254
10-
add_executable(unittest-transaction-manager
11-
test_block.cc
12-
test_transaction_manager.cc
13-
../gtest_seastar.cc)
14-
add_ceph_unittest(unittest-transaction-manager
15-
--memory 256M --smp 1)
16-
target_link_libraries(
17-
unittest-transaction-manager
18-
${CMAKE_DL_LIBS}
19-
crimson-seastore)
20-
avoid_asan_uar_slowdown(unittest-transaction-manager)
8+
add_executable(unittest-transaction-manager
9+
test_block.cc
10+
test_transaction_manager.cc
11+
../gtest_seastar.cc)
12+
add_ceph_unittest(unittest-transaction-manager
13+
--memory 256M --smp 1)
14+
target_link_libraries(
15+
unittest-transaction-manager
16+
${CMAKE_DL_LIBS}
17+
crimson-seastore)
18+
avoid_asan_uar_slowdown(unittest-transaction-manager)
2119

22-
add_executable(unittest-omap-manager
23-
test_omap_manager.cc
24-
../gtest_seastar.cc)
25-
add_ceph_unittest(unittest-omap-manager
26-
--memory 256M --smp 1)
27-
target_link_libraries(
28-
unittest-omap-manager
29-
${CMAKE_DL_LIBS}
30-
crimson-seastore)
31-
avoid_asan_uar_slowdown(unittest-omap-manager)
32-
endif(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM")
20+
add_executable(unittest-omap-manager
21+
test_omap_manager.cc
22+
../gtest_seastar.cc)
23+
add_ceph_unittest(unittest-omap-manager
24+
--memory 256M --smp 1)
25+
target_link_libraries(
26+
unittest-omap-manager
27+
${CMAKE_DL_LIBS}
28+
crimson-seastore)
29+
avoid_asan_uar_slowdown(unittest-omap-manager)
3330

3431
add_executable(unittest-btree-lba-manager
3532
test_btree_lba_manager.cc

0 commit comments

Comments
 (0)