From: Razvan Becheriu Date: Mon, 20 Apr 2026 14:39:07 +0000 (+0300) Subject: [#4454] addressed review comments X-Git-Tag: Kea-3.1.8~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1faa8bbecce768b01ee8f2ef09f3a64774b7e0d7;p=thirdparty%2Fkea.git [#4454] addressed review comments --- diff --git a/src/lib/dhcp/tests/iface_mgr_unittest.cc b/src/lib/dhcp/tests/iface_mgr_unittest.cc index a918cd99aa..ba5b84dd1c 100644 --- a/src/lib/dhcp/tests/iface_mgr_unittest.cc +++ b/src/lib/dhcp/tests/iface_mgr_unittest.cc @@ -1575,7 +1575,7 @@ public: size_t callback_count = 0; size_t callback2_count = 0; - size_t loop_count = 1024; + const size_t loop_count = 1024; if (!direct) { auto queue_control = makeQueueConfig(PacketQueueMgr4::DEFAULT_QUEUE_TYPE4, 500, true); @@ -1671,7 +1671,7 @@ public: size_t callback_count = 0; size_t callback2_count = 0; - size_t loop_count = 1024; + const size_t loop_count = 1024; if (!direct) { auto queue_control = makeQueueConfig(PacketQueueMgr6::DEFAULT_QUEUE_TYPE6, 500, true); @@ -4736,7 +4736,7 @@ TEST_F(IfaceMgrTest, directReceive4RotateAll) { testReceive4RotateAll(); } -TEST_F(IfaceMgrTest, indirectReceive4RotateAll) { +TEST_F(IfaceMgrTest, DISABLED_indirectReceive4RotateAll) { testReceive4RotateAll(false); } @@ -4744,7 +4744,7 @@ TEST_F(IfaceMgrTest, directReceive6RotateAll) { testReceive6RotateAll(); } -TEST_F(IfaceMgrTest, indirectReceive6RotateAll) { +TEST_F(IfaceMgrTest, DISABLED_indirectReceive6RotateAll) { testReceive6RotateAll(false); }