test/crimson: disable logging for unittest-*fltree*

these two tests are very chatty, just silence it. we can always re-enable the
logging, if something goes wrong with any of them.

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2021-08-14 20:28:07 +08:00
parent d3c315703a
commit 57877075c0

View File

@ -2,7 +2,7 @@ add_executable(unittest-staged-fltree
test_staged_fltree.cc
../../gtest_seastar.cc)
add_ceph_unittest(unittest-staged-fltree
--memory 256M --smp 1)
--log-to-stdout 0 --memory 256M --smp 1)
target_link_libraries(unittest-staged-fltree
crimson-seastore)
@ -10,6 +10,6 @@ add_executable(unittest-fltree-onode-manager
test_fltree_onode_manager.cc
../../gtest_seastar.cc)
add_ceph_unittest(unittest-fltree-onode-manager
--memory 256M --smp 1)
--log-to-stdout 0 --memory 256M --smp 1)
target_link_libraries(unittest-fltree-onode-manager
crimson-seastore)