Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
99cfc8bd
Commit
99cfc8bd
authored
May 14, 2006
by
Vitaliy Margolen
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix times tests to pass on windows.
Add more tests for daylight-time savings.
parent
3396a66e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
11 deletions
+18
-11
time.c
dlls/msvcrt/tests/time.c
+18
-11
No files found.
dlls/msvcrt/tests/time.c
View file @
99cfc8bd
...
...
@@ -59,9 +59,7 @@ static void test_mktime(void)
ok
(
res
!=
TIME_ZONE_ID_INVALID
,
"GetTimeZoneInformation failed
\n
"
);
/* Bias may be positive or negative, to use offset of one day */
secs
=
SECSPERDAY
-
(
tzinfo
.
Bias
+
(
res
==
TIME_ZONE_ID_STANDARD
?
tzinfo
.
StandardBias
:
(
res
==
TIME_ZONE_ID_DAYLIGHT
?
tzinfo
.
DaylightBias
:
0
)))
*
SECSPERMIN
;
secs
=
SECSPERDAY
-
tzinfo
.
Bias
*
SECSPERMIN
;
my_tm
.
tm_mday
=
1
+
secs
/
SECSPERDAY
;
secs
=
secs
%
SECSPERDAY
;
my_tm
.
tm_hour
=
secs
/
SECSPERHOUR
;
...
...
@@ -150,9 +148,7 @@ static void test_localtime(void)
{
TIME_ZONE_INFORMATION
tzinfo
;
DWORD
res
=
GetTimeZoneInformation
(
&
tzinfo
);
time_t
gmt
=
(
time_t
)(
SECSPERDAY
+
(
tzinfo
.
Bias
+
(
res
==
TIME_ZONE_ID_STANDARD
?
tzinfo
.
StandardBias
:
(
res
==
TIME_ZONE_ID_DAYLIGHT
?
tzinfo
.
DaylightBias
:
0
)))
*
SECSPERMIN
);
time_t
gmt
=
(
time_t
)(
SECSPERDAY
+
tzinfo
.
Bias
*
SECSPERMIN
);
char
TZ_env
[
256
];
struct
tm
*
lt
;
...
...
@@ -161,9 +157,8 @@ static void test_localtime(void)
lt
=
localtime
(
&
gmt
);
ok
(((
lt
->
tm_year
==
70
)
&&
(
lt
->
tm_mon
==
0
)
&&
(
lt
->
tm_yday
==
1
)
&&
(
lt
->
tm_mday
==
2
)
&&
(
lt
->
tm_wday
==
5
)
&&
(
lt
->
tm_hour
==
0
)
&&
(
lt
->
tm_min
==
0
)
&&
(
lt
->
tm_sec
==
0
)
&&
(
lt
->
tm_isdst
==
(
res
==
TIME_ZONE_ID_DAYLIGHT
))),
"Wrong date:Year %4d mon %2d yday %3d mday %2d wday %1d hour%2d min %2d sec %2d dst %2d
\n
"
,
(
lt
->
tm_min
==
0
)
&&
(
lt
->
tm_sec
==
0
)
&&
(
lt
->
tm_isdst
==
0
)),
"Wrong date:Year %4d mon %2d yday %3d mday %2d wday %1d hour %2d min %2d sec %2d dst %2d
\n
"
,
lt
->
tm_year
,
lt
->
tm_mon
,
lt
->
tm_yday
,
lt
->
tm_mday
,
lt
->
tm_wday
,
lt
->
tm_hour
,
lt
->
tm_min
,
lt
->
tm_sec
,
lt
->
tm_isdst
);
...
...
@@ -172,12 +167,24 @@ static void test_localtime(void)
lt
=
localtime
(
&
gmt
);
ok
(((
lt
->
tm_year
==
70
)
&&
(
lt
->
tm_mon
==
0
)
&&
(
lt
->
tm_yday
==
1
)
&&
(
lt
->
tm_mday
==
2
)
&&
(
lt
->
tm_wday
==
5
)
&&
(
lt
->
tm_hour
==
0
)
&&
(
lt
->
tm_min
==
0
)
&&
(
lt
->
tm_sec
==
0
)
&&
(
lt
->
tm_isdst
==
0
)),
"Wrong date:Year %4d mon %2d yday %3d mday %2d wday %1d hour %2d min %2d sec %2d dst %2d
\n
"
,
lt
->
tm_year
,
lt
->
tm_mon
,
lt
->
tm_yday
,
lt
->
tm_mday
,
lt
->
tm_wday
,
lt
->
tm_hour
,
lt
->
tm_min
,
lt
->
tm_sec
,
lt
->
tm_isdst
);
putenv
(
TZ_env
);
/* June 22 */
gmt
+=
201
*
SECSPERDAY
+
(
res
==
TIME_ZONE_ID_STANDARD
?
tzinfo
.
StandardBias
:
(
res
==
TIME_ZONE_ID_DAYLIGHT
?
tzinfo
.
DaylightBias
:
0
))
*
SECSPERMIN
;
lt
=
localtime
(
&
gmt
);
ok
(((
lt
->
tm_year
==
70
)
&&
(
lt
->
tm_mon
==
6
)
&&
(
lt
->
tm_yday
==
202
)
&&
(
lt
->
tm_mday
==
22
)
&&
(
lt
->
tm_wday
==
3
)
&&
(
lt
->
tm_hour
==
0
)
&&
(
lt
->
tm_min
==
0
)
&&
(
lt
->
tm_sec
==
0
)
&&
(
lt
->
tm_isdst
==
(
res
==
TIME_ZONE_ID_DAYLIGHT
))),
"Wrong date:Year %4d mon %2d yday %3d mday %2d wday %1d hour%2d min %2d sec %2d dst %2d
\n
"
,
"Wrong date:Year %4d mon %2d yday %3d mday %2d wday %1d hour
%2d min %2d sec %2d dst %2d
\n
"
,
lt
->
tm_year
,
lt
->
tm_mon
,
lt
->
tm_yday
,
lt
->
tm_mday
,
lt
->
tm_wday
,
lt
->
tm_hour
,
lt
->
tm_min
,
lt
->
tm_sec
,
lt
->
tm_isdst
);
putenv
(
TZ_env
);
}
static
void
test_strdate
(
void
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment