From 23397d32607fc307359d63cd651df3c83ada3a7f Mon Sep 17 00:00:00 2001 From: Igor Fedotov Date: Thu, 21 Aug 2025 13:42:54 +0300 Subject: [PATCH] test/libcephfs: use more entries to reproduce snapdiff fragmentation issue. Snapdiff listing fragments have different boundaries in Reef and Squid+ releases hence original reproducer (made for Reef) doesn't work properly in S+ releases. This patch fixes that at cost of longer execution. This might be redundant/senseless when backporting to Reef. Related-to: https://tracker.ceph.com/issues/72518 Signed-off-by: Igor Fedotov --- src/test/libcephfs/snapdiff.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/libcephfs/snapdiff.cc b/src/test/libcephfs/snapdiff.cc index f6427506803..e337716a017 100644 --- a/src/test/libcephfs/snapdiff.cc +++ b/src/test/libcephfs/snapdiff.cc @@ -2140,7 +2140,7 @@ TEST(LibCephFS, SnapDiffChangedBlockWithCustomObjectSize) } TEST(LibCephFS, SnapDiffDeletionRecreation) { - int bulk_count = 1 << 13; + int bulk_count = 1 << 15; TestMount test_mount("/SnapdiffDeletionRecreation"); ASSERT_EQ(0, test_mount.mkdir("bulk")); -- 2.39.5