From db99fde1cfc9a742af635988c6dbbb2e62f284bc Mon Sep 17 00:00:00 2001 From: Kautilya Tripathi Date: Wed, 24 Sep 2025 05:20:06 +0000 Subject: [PATCH] test/librbd: Remove crimson skip from TestDeepCopy The TestDeepCopy.Stress and TestDeepCopy.Stress_SmallerDstObjSize tests were previously skipped for the crimson store. This commit removes the SKIP_IF_CRIMSON() calls, indicating that the tests should now pass with the crimson osd. Fixes: https://tracker.ceph.com/issues/72042 Signed-off-by: Kautilya Tripathi --- src/test/librbd/test_DeepCopy.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/test/librbd/test_DeepCopy.cc b/src/test/librbd/test_DeepCopy.cc index c3ae925af1a..d8ec437a2ef 100644 --- a/src/test/librbd/test_DeepCopy.cc +++ b/src/test/librbd/test_DeepCopy.cc @@ -510,8 +510,6 @@ TEST_F(TestDeepCopy, CloneFlatten) TEST_F(TestDeepCopy, Stress) { - // https://tracker.ceph.com/issues/72042 - SKIP_IF_CRIMSON(); test_stress(); } @@ -609,8 +607,6 @@ TEST_F(TestDeepCopy, CloneFlatten_SmallerDstObjSize) TEST_F(TestDeepCopy, Stress_SmallerDstObjSize) { - // https://tracker.ceph.com/issues/72042 - SKIP_IF_CRIMSON(); uint64_t order = m_src_ictx->order - 1 - rand() % 2; ASSERT_EQ(0, m_opts.set(RBD_IMAGE_OPTION_ORDER, order)); uint64_t stripe_unit = m_src_ictx->stripe_unit >> 2; -- 2.39.5