mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-28 16:01:18 +01:00
Merge pull request #16325 from miri64/tests/fix/tests-rtc
tests/unittests/tests-rtc: do not use DST info for normalization
This commit is contained in:
commit
33ca462af6
@ -42,7 +42,7 @@ static void test_rtc_compat(void)
|
||||
.tm_year = 84,
|
||||
.tm_wday = 0,
|
||||
.tm_yday = 0,
|
||||
.tm_isdst=1
|
||||
.tm_isdst = -1,
|
||||
};
|
||||
|
||||
struct tm t2 = t1;
|
||||
@ -63,7 +63,7 @@ static void test_rtc_sec_wrap(void)
|
||||
.tm_year = 100,
|
||||
.tm_wday = 0,
|
||||
.tm_yday = 0,
|
||||
.tm_isdst= 1
|
||||
.tm_isdst= -1,
|
||||
};
|
||||
|
||||
struct tm t2 = t1;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user