File tree Expand file tree Collapse file tree 2 files changed +32
-32
lines changed
tests/drivers/rtc/rtc_api/src Expand file tree Collapse file tree 2 files changed +32
-32
lines changed Original file line number Diff line number Diff line change @@ -18,30 +18,30 @@ static const struct device *rtc = DEVICE_DT_GET(DT_ALIAS(rtc));
18
18
static const uint16_t alarms_count = DT_PROP (DT_ALIAS (rtc ), alarms_count );
19
19
static const uint16_t test_alarm_time_mask_set = CONFIG_TEST_RTC_ALARM_TIME_MASK ;
20
20
21
- /* Fri Jan 01 2021 13:29:50 GMT+0000 */
21
+ /* Tue Dec 31 2024 23:59:55 GMT+0000 */
22
22
static const struct rtc_time test_rtc_time_set = {
23
- .tm_sec = 50 ,
24
- .tm_min = 29 ,
25
- .tm_hour = 13 ,
26
- .tm_mday = 1 ,
27
- .tm_mon = 0 ,
28
- .tm_year = 121 ,
29
- .tm_wday = 5 ,
30
- .tm_yday = 1 ,
23
+ .tm_sec = 55 ,
24
+ .tm_min = 59 ,
25
+ .tm_hour = 23 ,
26
+ .tm_mday = 31 ,
27
+ .tm_mon = 11 ,
28
+ .tm_year = 124 ,
29
+ .tm_wday = 2 ,
30
+ .tm_yday = 365 ,
31
31
.tm_isdst = -1 ,
32
32
.tm_nsec = 0 ,
33
33
};
34
34
35
- /* Fri Jan 01 2021 13:30:00 GMT+0000 */
35
+ /* Wed Jan 01 2025 00:00:05 GMT+0000 */
36
36
static const struct rtc_time test_alarm_time_set = {
37
- .tm_sec = 0 ,
38
- .tm_min = 30 ,
39
- .tm_hour = 13 ,
37
+ .tm_sec = 5 ,
38
+ .tm_min = 0 ,
39
+ .tm_hour = 0 ,
40
40
.tm_mday = 1 ,
41
41
.tm_mon = 0 ,
42
- .tm_year = 121 ,
43
- .tm_wday = 5 ,
44
- .tm_yday = 1 ,
42
+ .tm_year = 125 ,
43
+ .tm_wday = 3 ,
44
+ .tm_yday = 0 ,
45
45
.tm_isdst = -1 ,
46
46
.tm_nsec = 0 ,
47
47
};
Original file line number Diff line number Diff line change @@ -22,30 +22,30 @@ static atomic_t callback_called_mask_even;
22
22
23
23
static const uint16_t test_alarm_time_mask_set = CONFIG_TEST_RTC_ALARM_TIME_MASK ;
24
24
25
- /* Fri Jan 01 2021 13:29:50 GMT+0000 */
25
+ /* Tue Dec 31 2024 23:59:55 GMT+0000 */
26
26
static const struct rtc_time test_rtc_time_set = {
27
- .tm_sec = 50 ,
28
- .tm_min = 29 ,
29
- .tm_hour = 13 ,
30
- .tm_mday = 1 ,
31
- .tm_mon = 0 ,
32
- .tm_year = 121 ,
33
- .tm_wday = 5 ,
34
- .tm_yday = 1 ,
27
+ .tm_sec = 55 ,
28
+ .tm_min = 59 ,
29
+ .tm_hour = 23 ,
30
+ .tm_mday = 31 ,
31
+ .tm_mon = 11 ,
32
+ .tm_year = 124 ,
33
+ .tm_wday = 2 ,
34
+ .tm_yday = 365 ,
35
35
.tm_isdst = -1 ,
36
36
.tm_nsec = 0 ,
37
37
};
38
38
39
- /* Fri Jan 01 2021 13:30:00 GMT+0000 */
39
+ /* Wed Jan 01 2025 00:00:05 GMT+0000 */
40
40
static const struct rtc_time test_alarm_time_set = {
41
- .tm_sec = 0 ,
42
- .tm_min = 30 ,
43
- .tm_hour = 13 ,
41
+ .tm_sec = 5 ,
42
+ .tm_min = 0 ,
43
+ .tm_hour = 0 ,
44
44
.tm_mday = 1 ,
45
45
.tm_mon = 0 ,
46
- .tm_year = 121 ,
47
- .tm_wday = 5 ,
48
- .tm_yday = 1 ,
46
+ .tm_year = 125 ,
47
+ .tm_wday = 3 ,
48
+ .tm_yday = 0 ,
49
49
.tm_isdst = -1 ,
50
50
.tm_nsec = 0 ,
51
51
};
You can’t perform that action at this time.
0 commit comments