diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2022-02-08 09:40:00 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-02-08 16:46:11 +0000 |
commit | 48bdf24ad2a1266f8c6bf4932b92d0165f370171 (patch) | |
tree | 298d565f322bb0e189587bdc2ec4b8765e929bfe /test | |
parent | 261a059b3d03b00e85cf91bd75158f9b6772762e (diff) |
tests: vcl: add missing host stack echo test
Type: test
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: I3b6e56b319aab3ffd2cc82d31e646bd42901275b
Diffstat (limited to 'test')
-rw-r--r-- | test/test_vcl.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py index fbbcd7b390d..e40e416ebfa 100644 --- a/test/test_vcl.py +++ b/test/test_vcl.py @@ -450,6 +450,14 @@ class VCLThruHostStackEcho(VCLTestCase): self.thru_host_stack_tear_down() super(VCLThruHostStackEcho, self).tearDown() + def test_vcl_thru_host_stack_echo(self): + """ run VCL IPv4 thru host stack echo test """ + + self.thru_host_stack_test("vcl_test_server", + self.server_args, + "vcl_test_client", + self.client_echo_test_args) + def show_commands_at_teardown(self): self.logger.debug(self.vapi.cli("show app server")) self.logger.debug(self.vapi.cli("show session verbose")) |