1
0
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:
Martine Lenders 2021-04-13 18:16:47 +02:00 committed by GitHub
commit 33ca462af6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;