ead1e536d6
Type: fix Since CentOS 8, RPM build script doesn't accept '#!/usr/bin/env python' as a valid shebang line. It requires scripts to explicitly chose between python2 or python3. Change all to use python3 as suggested by Paul Vinciguerra. Depends-On: https://gerrit.fd.io/r/23170 Signed-off-by: Renato Botelho do Couto <renato@netgate.com> Change-Id: Ie72af9f60fd0609e07f05b70f8d96e738b2754d1
35 lines
886 B
Python
35 lines
886 B
Python
#!/usr/bin/env python3
|
|
|
|
import unittest
|
|
|
|
from framework import VppTestCase, VppTestRunner
|
|
from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
|
|
|
|
|
|
class TestSparseVec(VppTestCase):
|
|
""" SparseVec Test Cases """
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(TestSparseVec, cls).setUpClass()
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
super(TestSparseVec, cls).tearDownClass()
|
|
|
|
def setUp(self):
|
|
super(TestSparseVec, self).setUp()
|
|
|
|
def tearDown(self):
|
|
super(TestSparseVec, self).tearDown()
|
|
|
|
def test_string_unittest(self):
|
|
""" SparseVec unit tests """
|
|
error = self.vapi.cli("test sparse_vec")
|
|
if error.find("failed") != -1:
|
|
self.logger.critical("FAILURE in the sparse_vec test")
|
|
self.assertNotIn("failed", error)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(testRunner=VppTestRunner)
|