aboutsummaryrefslogtreecommitdiffstats
path: root/extras/vpp_config/vpp_config.py
AgeCommit message (Expand)AuthorFilesLines
2018-03-01Change tcp config to reflect some recent changes.John DeNisco1-0/+0
2018-02-16Add iperf VM/vhost creationJohn DeNisco1-8/+8
2018-01-26Add support for 18.01.John DeNisco1-6/+16
2017-11-17Add a non interactive modeJohn DeNisco1-91/+157
2017-11-01A bit of cleanup, updated the README, started vhost test.John DeNisco1-1/+17
2017-10-17Initial commit for phase 2, Add some simple validation.John DeNisco1-1/+67
2017-10-11Redhat and small system supportJohn DeNisco1-0/+573
lor: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/env python3

from framework import VppTestCase


class TestBuffers(VppTestCase):
    """ Buffer C Unit Tests """

    @classmethod
    def setUpClass(cls):
        super(TestBuffers, cls).setUpClass()

    @classmethod
    def tearDownClass(cls):
        super(TestBuffers, cls).tearDownClass()

    def setUp(self):
        super(TestBuffers, self).setUp()

    def tearDown(self):
        super(TestBuffers, self).tearDown()

    def test_linearize(self):
        """ Chained Buffer Linearization """
        error = self.vapi.cli("test chained-buffer-linearization")

        if error:
            self.logger.critical(error)
            self.assertNotIn('failed', error)