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
14444fab
Commit
14444fab
authored
Dec 19, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust/tests: Fix test failures on Windows 8.1 and 10.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3a8801b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
crypt.c
dlls/wintrust/tests/crypt.c
+5
-2
No files found.
dlls/wintrust/tests/crypt.c
View file @
14444fab
...
...
@@ -1020,8 +1020,11 @@ static void test_cdf_parsing(void)
catmember
=
NULL
;
catmembertag
=
NULL
;
while
((
catmembertag
=
pCryptCATCDFEnumMembersByCDFTagEx
(
catcdf
,
catmembertag
,
cdf_callback
,
&
catmember
,
FALSE
,
NULL
)))
;
todo_wine
CHECK_EXPECT
(
CRYPTCAT_E_AREA_MEMBER
,
CRYPTCAT_E_CDF_MEMBER_FILE_PATH
);
ok
(
error_area
==
0xffffffff
||
broken
(
error_area
==
CRYPTCAT_E_AREA_MEMBER
)
/* < win81 */
,
"Expected area 0xffffffff, got %08x
\n
"
,
error_area
);
ok
(
local_error
==
0xffffffff
||
broken
(
local_error
==
CRYPTCAT_E_CDF_MEMBER_FILE_PATH
)
/* < win81 */
,
"Expected error 0xffffffff, got %08x
\n
"
,
local_error
);
pCryptCATCDFClose
(
catcdf
);
DeleteFileA
(
cdffileA
);
todo_wine
...
...
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