diff options
Diffstat (limited to 'test/test_vlib.py')
-rw-r--r-- | test/test_vlib.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_vlib.py b/test/test_vlib.py index 64218eabbb3..a9a5f6aeb89 100644 --- a/test/test_vlib.py +++ b/test/test_vlib.py @@ -192,7 +192,8 @@ class TestVlib(VppTestCase): """ Private Binary API Segment Test (takes 70 seconds) """ vat_path = self.vpp_bin + '_api_test' - vat = pexpect.spawn(vat_path, ['socket-name', self.api_sock]) + vat = pexpect.spawn(vat_path, ['socket-name', + self.get_api_sock_path()]) vat.expect("vat# ", timeout=10) vat.sendline('sock_init_shm') vat.expect("vat# ", timeout=10) @@ -203,5 +204,6 @@ class TestVlib(VppTestCase): time.sleep(70) self.logger.info("Reaper should be complete...") + if __name__ == '__main__': unittest.main(testRunner=VppTestRunner) |