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
3b7c62f8
Commit
3b7c62f8
authored
Jan 29, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Jan 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Fix a few test failures on older Windows versions.
parent
b5b097fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
cryptui.c
dlls/cryptui/tests/cryptui.c
+9
-3
No files found.
dlls/cryptui/tests/cryptui.c
View file @
3b7c62f8
...
...
@@ -406,7 +406,9 @@ static void test_crypt_ui_wiz_import(void)
if
(
ca
)
{
ret
=
find_and_delete_cert_in_store
(
ca
,
info
.
u
.
pCertContext
);
ok
(
ret
,
"expected to find v1CertWithValidPubKey in CA store
\n
"
);
ok
(
ret
||
broken
(
!
ret
)
/* Win9x/NT4 */
,
"expected to find v1CertWithValidPubKey in CA store
\n
"
);
CertCloseStore
(
ca
,
0
);
}
}
...
...
@@ -463,7 +465,9 @@ static void test_crypt_ui_wiz_import(void)
CRYPTUI_WIZ_IMPORT_NO_CHANGE_DEST_STORE
,
0
,
NULL
,
&
info
,
store
);
ok
(
ret
,
"CryptUIWizImport failed: %08x
\n
"
,
GetLastError
());
ret
=
find_and_delete_cert_in_store
(
store
,
info
.
u
.
pCertContext
);
ok
(
ret
,
"expected to find iTunesCert3 in memory store
\n
"
);
ok
(
ret
||
broken
(
!
ret
)
/* Win9x/NT4 */
,
"expected to find iTunesCert3 in memory store
\n
"
);
CertFreeCertificateContext
(
info
.
u
.
pCertContext
);
CertCloseStore
(
store
,
0
);
...
...
@@ -503,7 +507,9 @@ static void test_crypt_ui_wiz_import(void)
if
(
ca
)
{
ret
=
find_and_delete_cert_in_store
(
ca
,
info
.
u
.
pCertContext
);
ok
(
ret
,
"expected to find iTunesCert2 in CA store
\n
"
);
ok
(
ret
||
broken
(
!
ret
)
/* Win9x/NT4 */
,
"expected to find iTunesCert2 in CA store
\n
"
);
CertCloseStore
(
ca
,
0
);
}
}
...
...
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