diff options
author | 2019-07-19 09:14:19 +0000 | |
---|---|---|
committer | 2019-09-25 22:05:36 +0000 | |
commit | 69bf8326f145cf6b63d5cdf9893578266d455ee7 (patch) | |
tree | a31ae7981b31e4b7964acaa17fc9431d09d21538 /test/framework.py | |
parent | 51699e62c4d0b6ecf153d9802131dd969839ccd0 (diff) |
ip: reassembly: send packet out on correct worker
Note which worker received fragment with offset zero and use this worker
to send out the reassembled packet.
Type: fix
Change-Id: I1d3cee16788db3b230682525239c0100d51dc380
Signed-off-by: Klement Sekera <ksekera@cisco.com>
(cherry picked from commit 630ab5846bceddf8d663e9f488a2dc0378949827)
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/framework.py b/test/framework.py index 2bfb4b2fcd9..307da8f22f2 100644 --- a/test/framework.py +++ b/test/framework.py @@ -362,13 +362,16 @@ class VppTestCase(unittest.TestCase): coredump_size = "coredump-size unlimited" cpu_core_number = cls.get_least_used_cpu() + if not hasattr(cls, "worker_config"): + cls.worker_config = "" cls.vpp_cmdline = [cls.vpp_bin, "unix", "{", "nodaemon", debug_cli, "full-coredump", coredump_size, "runtime-dir", cls.tempdir, "}", "api-trace", "{", "on", "}", "api-segment", "{", "prefix", cls.shm_prefix, "}", "cpu", "{", - "main-core", str(cpu_core_number), "}", + "main-core", str(cpu_core_number), + cls.worker_config, "}", "statseg", "{", "socket-name", cls.stats_sock, "}", "socksvr", "{", "socket-name", cls.api_sock, "}", "plugins", |