From 0434ff45c899ff11bce5084f7ec744311f0efc37 Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Tue, 10 Mar 2020 18:39:05 +0100 Subject: [PATCH] tests/lwip: stabalize test script While running this test script, I encountered the problem, that the process for the previous test was not finished, not allowing the next test to use its TAP interface. This small timer should fix that. --- tests/lwip/tests/01-run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/lwip/tests/01-run.py b/tests/lwip/tests/01-run.py index 12a8bd3480..86fa686547 100755 --- a/tests/lwip/tests/01-run.py +++ b/tests/lwip/tests/01-run.py @@ -181,6 +181,8 @@ class TestStrategy(ApplicationStrategy): test_case(board_group, self.app_dir, env=None) sys.stdout.write('.') sys.stdout.flush() + # wait a bit for tear down of test case + time.sleep(.2) print()