Skip to content

Commit 6d5e217

Browse files
committed
Fix for issue #8214
Change the base time value to more realistic: START_TIME = 1537789823 # GMT: Monday, 24 September 2018 11:50:23 This fix has been proposed by STM in order to enhance test efficiency. Current test version did not detect problem with RTC reset on F1 family boards since the base time was too small.
1 parent ac6ca73 commit 6d5e217

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TESTS/host_tests/rtc_reset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class RtcResetTest(BaseHostTest):
2929
"""
3030

3131
"""Start of the RTC"""
32-
START_TIME = 50000
32+
START_TIME = 1537789823 # GMT: Monday, 24 September 2018 11:50:23
3333
START_TIME_TOLERANCE = 10
3434
"""Time to delay after sending reset"""
3535
DELAY_TIME = 5.0

0 commit comments

Comments
 (0)