From: Radoslaw Zarzynski Date: Thu, 27 Nov 2025 15:41:07 +0000 (+0000) Subject: fixup: crimson/osd, test: turn the EC tests on for crimson X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=26181e22f667d3ac5ba6b12cde1996460349a908;p=ceph-ci.git fixup: crimson/osd, test: turn the EC tests on for crimson Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/test/librados/TestCase.cc b/src/test/librados/TestCase.cc index b224a497650..b6610470d3a 100644 --- a/src/test/librados/TestCase.cc +++ b/src/test/librados/TestCase.cc @@ -165,7 +165,6 @@ rados_t RadosTestEC::s_cluster = NULL; void RadosTestEC::SetUpTestCase() { - SKIP_IF_CRIMSON(); auto pool_prefix = fmt::format("{}_", ::testing::UnitTest::GetInstance()->current_test_case()->name()); pool_name = get_temp_pool_name(pool_prefix); ASSERT_EQ("", create_one_ec_pool(pool_name, &s_cluster)); @@ -173,13 +172,11 @@ void RadosTestEC::SetUpTestCase() void RadosTestEC::TearDownTestCase() { - SKIP_IF_CRIMSON(); ASSERT_EQ(0, destroy_one_ec_pool(pool_name, &s_cluster)); } void RadosTestEC::SetUp() { - SKIP_IF_CRIMSON(); cluster = RadosTestEC::s_cluster; ASSERT_EQ(0, rados_ioctx_create(cluster, pool_name.c_str(), &ioctx)); nspace = get_temp_pool_name(); @@ -193,7 +190,6 @@ void RadosTestEC::SetUp() void RadosTestEC::TearDown() { - SKIP_IF_CRIMSON(); if (cleanup) { cleanup_default_namespace(ioctx); cleanup_namespace(ioctx, nspace);