summaryrefslogtreecommitdiffstats
path: root/test/test_vcl.py
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2019-03-04 10:56:23 -0800
committerDave Barach <openvpp@barachs.net>2019-03-06 17:53:39 +0000
commit653e43f06a974121343b2c1f0e4533926020877b (patch)
tree6ab92561e8eccbda6b29316f794de531032a1259 /test/test_vcl.py
parenta55df1081762b4e40698ef7d9196551851be646a (diff)
session: use vpp to switch io events for ct sessions
Instead of allocating pairs of message queues per cut-thru session and having the applications map them, this uses vpp as an io event message switch. Change-Id: I51db1c7564df479a7d1a3288342394251fd188bb Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'test/test_vcl.py')
-rw-r--r--test/test_vcl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py
index 71ad902d208..9a8662d2275 100644
--- a/test/test_vcl.py
+++ b/test/test_vcl.py
@@ -259,8 +259,8 @@ class LDPCutThruTestCase(VCLTestCase):
self.server_port]
def tearDown(self):
+ self.logger.debug(self.vapi.cli("show session verbose 2"))
self.cut_thru_tear_down()
-
super(LDPCutThruTestCase, self).tearDown()
@unittest.skipUnless(running_extended_tests, "part of extended tests")