From cddb376171e1e39f16484b44965a68e93fcb461a Mon Sep 17 00:00:00 2001 From: Jordan Hand Date: Mon, 11 Mar 2024 12:49:12 -0700 Subject: [PATCH] Extend wdt timeout for ROM w/ no UART The RT watchdog test is failing in nightly release builds because the wdt timeout for ROM w/o UART is too short. --- test/tests/caliptra_integration_tests/smoke_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/caliptra_integration_tests/smoke_test.rs b/test/tests/caliptra_integration_tests/smoke_test.rs index 7c827bd42b..a9e9f40739 100644 --- a/test/tests/caliptra_integration_tests/smoke_test.rs +++ b/test/tests/caliptra_integration_tests/smoke_test.rs @@ -671,7 +671,7 @@ fn test_rt_wdt_timeout() { } else if firmware::rom_from_env() == &firmware::ROM_WITH_UART { 3_300_000 } else { - 3_100_000 + 3_200_000 }; let security_state = *caliptra_hw_model::SecurityState::default().set_debug_locked(true);