mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 06:00:45 +00:00
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>
This commit is contained in:
parent
3a8801b1cc
commit
14444fab92
@ -1020,8 +1020,11 @@ static void test_cdf_parsing(void)
|
|||||||
catmember = NULL;
|
catmember = NULL;
|
||||||
catmembertag = NULL;
|
catmembertag = NULL;
|
||||||
while ((catmembertag = pCryptCATCDFEnumMembersByCDFTagEx(catcdf, catmembertag, cdf_callback, &catmember, FALSE, NULL))) ;
|
while ((catmembertag = pCryptCATCDFEnumMembersByCDFTagEx(catcdf, catmembertag, cdf_callback, &catmember, FALSE, NULL))) ;
|
||||||
todo_wine
|
ok(error_area == 0xffffffff || broken(error_area == CRYPTCAT_E_AREA_MEMBER) /* < win81 */,
|
||||||
CHECK_EXPECT(CRYPTCAT_E_AREA_MEMBER, CRYPTCAT_E_CDF_MEMBER_FILE_PATH);
|
"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);
|
pCryptCATCDFClose(catcdf);
|
||||||
DeleteFileA(cdffileA);
|
DeleteFileA(cdffileA);
|
||||||
todo_wine
|
todo_wine
|
||||||
|
Loading…
Reference in New Issue
Block a user