commit | a9cb3cec5762a03e76bb093e9602aa2caedcfd71 | [log] [tgz] |
---|---|---|
author | Armando Montanez <amontanez@google.com> | Mon Jul 20 13:24:33 2020 -0700 |
committer | CQ Bot Account <commit-bot@chromium.org> | Mon Jul 20 22:36:29 2020 +0000 |
tree | 120da32865b790daf71776fa8e66ae41fe8ed110 | |
parent | 980954ae72835df8205fde5cf150d4f2dfbe67bf [diff] |
stm32f429i-disc1: Increase test runner timeout A few longer tests have made their way into the codebase. Some tests run for a few seconds before emitting any test output. Increase the default test output timeout for the python test runner so these tests are given enough time to run. 5 seconds is a reasonable timeout for cases where a test locks up. Fixed: 217 Change-Id: Ia79fa7177e0c1e623de9c596bdde5acba2e3cbb4 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/14301 Reviewed-by: Keir Mierle <keir@google.com> Commit-Queue: Armando Montanez <amontanez@google.com>
diff --git a/targets/stm32f429i-disc1/py/stm32f429i_disc1_utils/unit_test_runner.py b/targets/stm32f429i-disc1/py/stm32f429i_disc1_utils/unit_test_runner.py index b49514f..d290198 100755 --- a/targets/stm32f429i-disc1/py/stm32f429i_disc1_utils/unit_test_runner.py +++ b/targets/stm32f429i-disc1/py/stm32f429i_disc1_utils/unit_test_runner.py
@@ -83,7 +83,7 @@ ' with target device') parser.add_argument('--test-timeout', type=float, - default=2.0, + default=5.0, help='Maximum communication delay in seconds before a ' 'test is considered unresponsive and aborted') parser.add_argument('--verbose',