From 416d00233a14988086118bee5393872947f4357b Mon Sep 17 00:00:00 2001 From: Giacomo Dematteis Date: Mon, 9 Dec 2024 09:41:45 +0100 Subject: [PATCH] tests: on_target: relax test timeouts Relax timeouts to reduce CI instabilities. Signed-off-by: Giacomo Dematteis --- tests/on_target/tests/test_functional/test_location.py | 2 +- tests/on_target/tests/test_functional/test_memfault.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/on_target/tests/test_functional/test_location.py b/tests/on_target/tests/test_functional/test_location.py index 3ef1998e..b7f176e9 100644 --- a/tests/on_target/tests/test_functional/test_location.py +++ b/tests/on_target/tests/test_functional/test_location.py @@ -43,7 +43,7 @@ def run_location(t91x_board, hex_file, location_method): # Cloud connection t91x_board.uart.flush() reset_device() - t91x_board.uart.wait_for_str(patterns_cloud_connection, timeout=60) + t91x_board.uart.wait_for_str(patterns_cloud_connection, timeout=120) # Location t91x_board.uart.wait_for_str(patterns_location, timeout=180) diff --git a/tests/on_target/tests/test_functional/test_memfault.py b/tests/on_target/tests/test_functional/test_memfault.py index 247385c3..4ef5efb7 100644 --- a/tests/on_target/tests/test_functional/test_memfault.py +++ b/tests/on_target/tests/test_functional/test_memfault.py @@ -81,7 +81,7 @@ def test_memfault(t91x_board, hex_file): t91x_board.uart.flush() reset_device() - t91x_board.uart.wait_for_str(patterns_memfault, timeout=60) + t91x_board.uart.wait_for_str(patterns_memfault, timeout=120) # Trigger bus fault to generate memfault event t91x_board.uart.write("mflt test busfault\r\n")