From e92c946498f544d6d435353eb06aa07fb20e054e Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Wed, 25 Nov 2020 08:44:16 -0800 Subject: session: add startup option to poll in main Type: improvement Needed to support multi-worker tests Signed-off-by: Florin Coras Change-Id: I68d5590cece24a744513dc6c324dfb2861a38a94 --- src/plugins/quic/test/test_quic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/quic') diff --git a/src/plugins/quic/test/test_quic.py b/src/plugins/quic/test/test_quic.py index d2c2476b7e6..0a654cba52b 100644 --- a/src/plugins/quic/test/test_quic.py +++ b/src/plugins/quic/test/test_quic.py @@ -110,7 +110,7 @@ class QUICTestCase(VppTestCase): class QUICEchoIntTestCase(QUICTestCase): """QUIC Echo Internal Test Case""" test_bytes = ' test-bytes' - extra_vpp_punt_config = ["session", "{", "enable", "}"] + extra_vpp_punt_config = ["session", "{", "enable", "poll-main", "}"] def setUp(self): super(QUICEchoIntTestCase, self).setUp() @@ -177,7 +177,7 @@ class QUICEchoExtTestCase(QUICTestCase): server_fifo_size = "1M" client_fifo_size = "4M" extra_vpp_punt_config = ["session", "{", - "enable", "evt_qs_memfd_seg", + "enable", "poll-main", "evt_qs_memfd_seg", "evt_qs_seg_size", "64M", "event-queue-length", f"{evt_q_len}", "preallocated-sessions", "1024", -- cgit 1.2.3-korg