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
22dddce9
Commit
22dddce9
authored
Oct 11, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/monthcal: Fix a test skip condition - zero is a valid day of week.
parent
6b72f169
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
monthcal.c
dlls/comctl32/tests/monthcal.c
+6
-6
No files found.
dlls/comctl32/tests/monthcal.c
View file @
22dddce9
...
...
@@ -1584,18 +1584,18 @@ static void test_monthcal_selrange(void)
expect
(
st
.
wYear
,
range
[
0
].
wYear
);
expect
(
st
.
wMonth
,
range
[
0
].
wMonth
);
expect
(
st
.
wDay
,
range
[
0
].
wDay
);
if
(
range
[
0
].
wDayOfWeek
==
0
)
if
(
range
[
0
].
wDayOfWeek
!=
st
.
wDayOfWeek
)
{
win_skip
(
"comctl32 <= 4.70 doesn't set some values
\n
"
);
old_comctl32
=
TRUE
;
}
else
{
expect
(
st
.
wDayOfWeek
,
range
[
0
].
wDayOfWeek
);
expect
(
st
.
wHour
,
range
[
0
].
wHour
);
expect
(
st
.
wMinute
,
range
[
0
].
wMinute
);
expect
(
st
.
wSecond
,
range
[
0
].
wSecond
);
expect
(
st
.
wMilliseconds
,
range
[
0
].
wMilliseconds
);
expect
(
st
.
wDayOfWeek
,
range
[
0
].
wDayOfWeek
);
expect
(
st
.
wHour
,
range
[
0
].
wHour
);
expect
(
st
.
wMinute
,
range
[
0
].
wMinute
);
expect
(
st
.
wSecond
,
range
[
0
].
wSecond
);
expect
(
st
.
wMilliseconds
,
range
[
0
].
wMilliseconds
);
}
expect
(
st
.
wYear
,
range
[
1
].
wYear
);
...
...
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