diff options
author | Dave Barach <dave@barachs.net> | 2019-07-08 12:25:38 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-07-09 02:23:00 +0000 |
commit | 32dcd3b2f227dec638c39ade0c58d6741d83ec30 (patch) | |
tree | 8d9a2a1761b5d5c6ec88445b9385ef8c991df535 /test | |
parent | 369db83f91a411977015748a74c5a4579170a16c (diff) |
vppinfra: allocate bihash virtual space on demand
Reduces the vpp image virtual size by multiple gigabytes
Add a "show bihash" command which displays configured and current
virtual space in use by bihash tables.
Modify the .py test framework to call "show bihash" on test tear-down
Type: refactor
Change-Id: Ifc1b7e2c43d29bbef645f6802fa29ff8ef09940c
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'test')
-rw-r--r-- | test/framework.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py index 4bc64a1331b..6bed1eb55b3 100644 --- a/test/framework.py +++ b/test/framework.py @@ -656,6 +656,7 @@ class VppTestCase(unittest.TestCase): self.logger.info(self.statistics.set_errors_str()) self.logger.info(self.vapi.ppcli("show run")) self.logger.info(self.vapi.ppcli("show log")) + self.logger.info(self.vapi.ppcli("show bihash")) self.logger.info("Logging testcase specific show commands.") self.show_commands_at_teardown() self.registry.remove_vpp_config(self.logger) |