From: Xuehan Xu Date: Sat, 9 May 2026 02:15:24 +0000 (+0800) Subject: test/crimson/seastore/test_transaction_manager: the scatter_allocation case shouldn... X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=828a91e1181575a76b6854426c38f14171bd0d6a;p=ceph-ci.git test/crimson/seastore/test_transaction_manager: the scatter_allocation case shouldn't submit the trans Signed-off-by: Xuehan Xu --- diff --git a/src/test/crimson/seastore/test_transaction_manager.cc b/src/test/crimson/seastore/test_transaction_manager.cc index 74b8fdd1279..e3bc9f352cb 100644 --- a/src/test/crimson/seastore/test_transaction_manager.cc +++ b/src/test/crimson/seastore/test_transaction_manager.cc @@ -1895,13 +1895,12 @@ TEST_P(tm_random_block_device_test_t, scatter_allocation) epm->prefill_fragmented_devices(); auto t = create_transaction(); for (int i = 0; i < 1958; i++) { + std::cout << "scatter_allocation " << i << std::endl; auto extents = alloc_extents(t, (ADDR + i * 16384).checked_to_laddr(), 16384, 'a'); } alloc_extents_deemed_fail(t, (ADDR + 1958 * 16384).checked_to_laddr(), 16384, 'a'); check_mappings(t); check(); - submit_transaction(std::move(t)); - check(); }); }