From: Jon Bailey Date: Wed, 4 Mar 2026 13:45:57 +0000 (+0000) Subject: test: modify osd types tests to include the new pool parameters so they are tested X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d7118734cbe7867a5889205f9a7af22dc59aee52;p=ceph.git test: modify osd types tests to include the new pool parameters so they are tested Signed-off-by: Jon Bailey --- diff --git a/src/test/osd/types.cc b/src/test/osd/types.cc index 5cc6e9f88d1..52636f2e8e0 100644 --- a/src/test/osd/types.cc +++ b/src/test/osd/types.cc @@ -62,6 +62,8 @@ void compare_pg_pool_t(const pg_pool_t l, const pg_pool_t r) ASSERT_EQ(l.cache_min_flush_age, r.cache_min_flush_age); ASSERT_EQ(l.cache_min_evict_age, r.cache_min_evict_age); ASSERT_EQ(l.erasure_code_profile, r.erasure_code_profile); + ASSERT_EQ(l.ec_data_shard_count, r.ec_data_shard_count); + ASSERT_EQ(l.ec_coding_shard_count, r.ec_coding_shard_count); ASSERT_EQ(l.last_force_op_resend_preluminous, r.last_force_op_resend_preluminous); ASSERT_EQ(l.min_read_recency_for_promote, r.min_read_recency_for_promote); ASSERT_EQ(l.expected_num_objects, r.expected_num_objects);