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
43bdfce4
Commit
43bdfce4
authored
Feb 27, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Feb 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Mark win8 behaviour as broken.
parent
ad5c4671
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
time.c
dlls/msvcrt/tests/time.c
+2
-2
No files found.
dlls/msvcrt/tests/time.c
View file @
43bdfce4
...
...
@@ -181,8 +181,8 @@ static void test_gmtime(void)
errno
=
0
;
gmt
=
-
1
;
err
=
p_gmtime32_s
(
&
gmt_tm_s
,
&
gmt
);
ok
(
gmt_tm_s
.
tm_year
==-
1
||
broken
(
gmt_tm_s
.
tm_year
==
70
&&
gmt_tm
->
tm_sec
<
0
),
"tm_year = %d
\n
"
,
gmt_tm_s
.
tm_year
);
ok
(
gmt_tm_s
.
tm_year
==
-
1
||
broken
(
gmt_tm_s
.
tm_year
==
70
&&
gmt_tm_s
.
tm_sec
<
0
),
"tm_year = %d, tm_sec = %d
\n
"
,
gmt_tm_s
.
tm_year
,
gmt_tm_s
.
tm_sec
);
if
(
gmt_tm_s
.
tm_year
==
-
1
)
{
ok
(
err
==
EINVAL
,
"err = %d
\n
"
,
err
);
ok
(
errno
==
EINVAL
,
"errno = %d
\n
"
,
errno
);
...
...
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