From: Kautilya Tripathi Date: Wed, 24 Sep 2025 05:20:06 +0000 (+0000) Subject: test/librbd: Remove crimson skip from TestDeepCopy X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fwip-kautilya-renable-testmigration;p=ceph-ci.git 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 --- 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;