Python API: Change from cPython to CFFI.

Change-Id: I03e52466fb3f909ae52b8fba601168f3eadbd972
Signed-off-by: Ole Troan <ot@cisco.com>
This commit is contained in:
Ole Troan
2017-03-08 12:02:24 +01:00
parent 9d676afbb7
commit 3cc4971882
16 changed files with 185 additions and 350 deletions

View File

@ -55,7 +55,7 @@ class VppPapiProvider(object):
for filename in fnmatch.filter(filenames, '*.api.json'):
jsonfiles.append(os.path.join(root, filename))
self.vpp = VPP(jsonfiles)
self.vpp = VPP(jsonfiles, logger=test_class.logger)
self._events = deque()
def __enter__(self):