diff options
author | Florin Coras <fcoras@cisco.com> | 2020-11-25 08:44:16 -0800 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-11-25 19:02:59 +0000 |
commit | e92c946498f544d6d435353eb06aa07fb20e054e (patch) | |
tree | 60e27e57cb7e26099bf0ab4fc4e27416d38d4f49 /src/plugins/quic/test | |
parent | bc867c3d2137dab4b1395196c1936233517980ab (diff) |
session: add startup option to poll in main
Type: improvement
Needed to support multi-worker tests
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I68d5590cece24a744513dc6c324dfb2861a38a94
Diffstat (limited to 'src/plugins/quic/test')
-rw-r--r-- | src/plugins/quic/test/test_quic.py | 4 |
1 files changed, 2 insertions, 2 deletions
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", |