
Pool's pool_put_will_expand() calls clib_bitmap_will_expand(), so every put except ones that leads to free_bitmap reallocation will get false positive results and vice versa. Unfortunatelly there's no related test and existing bitmap tests are failing silently with false positive result as well. Fortunatelly neither clib_bitmap_will_expand() nor pool_put_will_expand() are being used by current vpp codebase. Type: fix Signed-off-by: Vladislav Grishenko <themiron@yandex-team.ru> Change-Id: Id5bb900cf6a1b1002d37670f5c415c74165b5421
39 lines
836 B
Python
39 lines
836 B
Python
#!/usr/bin/env python3
|
|
|
|
import unittest
|
|
|
|
from asfframework import VppTestCase, VppTestRunner
|
|
|
|
|
|
class TestVppinfra(VppTestCase):
|
|
"""Vppinfra Unit Test Cases"""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(TestVppinfra, cls).setUpClass()
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
super(TestVppinfra, cls).tearDownClass()
|
|
|
|
def setUp(self):
|
|
super(TestVppinfra, self).setUp()
|
|
|
|
def tearDown(self):
|
|
super(TestVppinfra, self).tearDown()
|
|
|
|
def test_bitmap_unittest(self):
|
|
"""Bitmap unit tests"""
|
|
|
|
cmds = ["test bitmap"]
|
|
|
|
for cmd in cmds:
|
|
error = self.vapi.cli(cmd)
|
|
if error:
|
|
self.logger.critical(error)
|
|
self.assertNotIn("failed", error)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main(testRunner=VppTestRunner)
|