diff options
author | Klement Sekera <ksekera@cisco.com> | 2017-02-14 07:11:52 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-02-15 12:10:23 +0000 |
commit | aeeac3bf4429235c952ce54abad7d3729be6a2f5 (patch) | |
tree | cbdd7eb65a86687988557f87f92ecde6ed0f97b8 /test/framework.py | |
parent | 12ba252193148c06137a4f811aee71fec0801ea4 (diff) |
BFD: loop back echo packets
Change-Id: I772b63ac25ebfccaff9ab9d8d0b1445e85f21df7
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py index 8dd61aa14ba..beed1803554 100644 --- a/test/framework.py +++ b/test/framework.py @@ -236,6 +236,7 @@ class VppTestCase(unittest.TestCase): cls.pump_thread_stop_flag = Event() cls.pump_thread_wakeup_pipe = os.pipe() cls.pump_thread = Thread(target=pump_output, args=(cls,)) + cls.pump_thread.daemon = True cls.pump_thread.start() cls.vapi = VppPapiProvider(cls.shm_prefix, cls.shm_prefix, cls) if cls.step: |