Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
59776ccc
Commit
59776ccc
authored
Dec 10, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _tzset tests.
parent
351dff91
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
time.c
dlls/msvcrt/tests/time.c
+46
-0
No files found.
dlls/msvcrt/tests/time.c
View file @
59776ccc
...
...
@@ -46,6 +46,8 @@ static errno_t (__cdecl *p_localtime32_s)(struct tm*, __time32_t*);
static
errno_t
(
__cdecl
*
p_localtime64_s
)(
struct
tm
*
,
__time64_t
*
);
static
int
*
(
__cdecl
*
p__daylight
)(
void
);
static
int
*
(
__cdecl
*
p___p__daylight
)(
void
);
static
long
*
(
__cdecl
*
p___p__dstbias
)(
void
);
static
long
*
(
__cdecl
*
p___p__timezone
)(
void
);
static
size_t
(
__cdecl
*
p_strftime
)(
char
*
,
size_t
,
const
char
*
,
const
struct
tm
*
);
static
size_t
(
__cdecl
*
p_wcsftime
)(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
const
struct
tm
*
);
static
char
*
(
__cdecl
*
p_asctime
)(
const
struct
tm
*
);
...
...
@@ -64,6 +66,8 @@ static void init(void)
p_localtime64_s
=
(
void
*
)
GetProcAddress
(
hmod
,
"_localtime64_s"
);
p__daylight
=
(
void
*
)
GetProcAddress
(
hmod
,
"__daylight"
);
p___p__daylight
=
(
void
*
)
GetProcAddress
(
hmod
,
"__p__daylight"
);
p___p__dstbias
=
(
void
*
)
GetProcAddress
(
hmod
,
"__p__dstbias"
);
p___p__timezone
=
(
void
*
)
GetProcAddress
(
hmod
,
"__p__timezone"
);
p_strftime
=
(
void
*
)
GetProcAddress
(
hmod
,
"strftime"
);
p_wcsftime
=
(
void
*
)
GetProcAddress
(
hmod
,
"wcsftime"
);
p_asctime
=
(
void
*
)
GetProcAddress
(
hmod
,
"asctime"
);
...
...
@@ -804,10 +808,52 @@ static void test_asctime(void)
ok
(
errno
==
EINVAL
||
broken
(
errno
==
0xdeadbeef
),
"errno = %d
\n
"
,
errno
);
}
static
void
test__tzset
(
void
)
{
char
TZ_env
[
256
];
int
ret
;
if
(
!
p___p__daylight
||
!
p___p__timezone
||
!
p___p__dstbias
)
{
win_skip
(
"__p__daylight, __p__timezone or __p__dstbias is not available
\n
"
);
return
;
}
_snprintf
(
TZ_env
,
255
,
"TZ=%s"
,(
getenv
(
"TZ"
)
?
getenv
(
"TZ"
)
:
""
));
ret
=
*
p___p__daylight
();
ok
(
ret
==
1
,
"*__p__daylight() = %d
\n
"
,
ret
);
ret
=
*
p___p__timezone
();
ok
(
ret
==
28800
,
"*__p__timezone() = %d
\n
"
,
ret
);
ret
=
*
p___p__dstbias
();
ok
(
ret
==
-
3600
,
"*__p__dstbias() = %d
\n
"
,
ret
);
_putenv
(
"TZ=xxx+1yyy"
);
_tzset
();
ret
=
*
p___p__daylight
();
ok
(
ret
==
121
,
"*__p__daylight() = %d
\n
"
,
ret
);
ret
=
*
p___p__timezone
();
ok
(
ret
==
3600
,
"*__p__timezone() = %d
\n
"
,
ret
);
ret
=
*
p___p__dstbias
();
ok
(
ret
==
-
3600
,
"*__p__dstbias() = %d
\n
"
,
ret
);
*
p___p__dstbias
()
=
0
;
_putenv
(
"TZ=xxx+1:3:5zzz"
);
_tzset
();
ret
=
*
p___p__daylight
();
ok
(
ret
==
122
,
"*__p__daylight() = %d
\n
"
,
ret
);
ret
=
*
p___p__timezone
();
ok
(
ret
==
3785
,
"*__p__timezone() = %d
\n
"
,
ret
);
ret
=
*
p___p__dstbias
();
ok
(
ret
==
0
,
"*__p__dstbias() = %d
\n
"
,
ret
);
_putenv
(
TZ_env
);
}
START_TEST
(
time
)
{
init
();
test__tzset
();
test_strftime
();
test_ctime
();
test_gmtime
();
...
...
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