]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4454] addressed review comments
authorRazvan Becheriu <razvan@isc.org>
Mon, 20 Apr 2026 14:39:07 +0000 (17:39 +0300)
committerRazvan Becheriu <razvan@isc.org>
Mon, 20 Apr 2026 15:10:47 +0000 (15:10 +0000)
src/lib/dhcp/tests/iface_mgr_unittest.cc

index a918cd99aad29df299a94807fd9aa72a4d3de316..ba5b84dd1c7bb4ff6aae19720a07c82c5926f16d 100644 (file)
@@ -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);
 }