From 48379b8bbe6e9d5ea448427d5834457c8471aa6c Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 26 Apr 2018 17:57:33 +0800 Subject: [PATCH] unit-test.py: increase timeout for test app start up --- tools/unit-test-app/unit_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unit-test-app/unit_test.py b/tools/unit-test-app/unit_test.py index 4ea7ddf57..594a71bec 100644 --- a/tools/unit-test-app/unit_test.py +++ b/tools/unit-test-app/unit_test.py @@ -142,7 +142,7 @@ def run_unit_test_cases(env, extra_data): # to determine if DUT is ready to test. dut.write("-", flush=False) dut.expect_any(UT_APP_BOOT_UP_DONE, - "0 Tests 0 Failures 0 Ignored") + "0 Tests 0 Failures 0 Ignored", timeout=UT_TIMEOUT) # run test case dut.write("\"{}\"".format(one_case["name"]))