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
fea384ce
Commit
fea384ce
authored
Jun 22, 2010
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Add a trailing '\n' to ok() calls.
parent
802c4dee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
encode.c
dlls/crypt32/tests/encode.c
+2
-2
store.c
dlls/crypt32/tests/store.c
+5
-5
No files found.
dlls/crypt32/tests/encode.c
View file @
fea384ce
...
...
@@ -7962,7 +7962,7 @@ static void testPortPublicKeyInfo(void)
CRYPT_DELETEKEYSET
);
ret
=
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
,
PROV_RSA_FULL
,
CRYPT_NEWKEYSET
);
ok
(
ret
,
"CryptAcquireContextA failed"
);
ok
(
ret
,
"CryptAcquireContextA failed
\n
"
);
testExportPublicKey
(
csp
,
&
info
);
testImportPublicKey
(
csp
,
info
);
...
...
@@ -7971,7 +7971,7 @@ static void testPortPublicKeyInfo(void)
CryptReleaseContext
(
csp
,
0
);
ret
=
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
,
PROV_RSA_FULL
,
CRYPT_DELETEKEYSET
);
ok
(
ret
,
"CryptAcquireContextA failed"
);
ok
(
ret
,
"CryptAcquireContextA failed
\n
"
);
}
START_TEST
(
encode
)
...
...
dlls/crypt32/tests/store.c
View file @
fea384ce
...
...
@@ -2228,7 +2228,7 @@ static void testAddCertificateLink(void)
ok
(
ret
,
"CertAddCertificateLinkToStore failed: %08x
\n
"
,
GetLastError
());
if
(
ret
)
{
ok
(
linked
->
hCertStore
==
store1
,
"unexpected store"
);
ok
(
linked
->
hCertStore
==
store1
,
"unexpected store
\n
"
);
ret
=
CertSerializeCertificateStoreElement
(
linked
,
0
,
NULL
,
&
size
);
ok
(
ret
,
"CertSerializeCertificateStoreElement failed: %08x
\n
"
,
GetLastError
());
...
...
@@ -2300,7 +2300,7 @@ static void testAddCertificateLink(void)
ok
(
ret
,
"CertAddCertificateLinkToStore failed: %08x
\n
"
,
GetLastError
());
if
(
ret
)
{
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store"
);
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store
\n
"
);
ret
=
CertSerializeCertificateStoreElement
(
linked
,
0
,
NULL
,
&
size
);
ok
(
ret
,
"CertSerializeCertificateStoreElement failed: %08x
\n
"
,
GetLastError
());
...
...
@@ -2360,7 +2360,7 @@ static void testAddCertificateLink(void)
ok
(
ret
,
"CertAddCertificateLinkToStore failed: %08x
\n
"
,
GetLastError
());
if
(
ret
)
{
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store"
);
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store
\n
"
);
ret
=
CertSerializeCertificateStoreElement
(
linked
,
0
,
NULL
,
&
size
);
ok
(
ret
,
"CertSerializeCertificateStoreElement failed: %08x
\n
"
,
GetLastError
());
...
...
@@ -2429,7 +2429,7 @@ static void testAddCertificateLink(void)
ok
(
ret
,
"CertAddCertificateLinkToStore failed: %08x
\n
"
,
GetLastError
());
if
(
ret
)
{
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store"
);
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store
\n
"
);
ret
=
pCertControlStore
(
store2
,
0
,
CERT_STORE_CTRL_COMMIT
,
NULL
);
ok
(
ret
,
"CertControlStore failed: %d
\n
"
,
ret
);
compareStore
(
store2
,
"file store -> system store"
,
...
...
@@ -2452,7 +2452,7 @@ static void testAddCertificateLink(void)
ok
(
ret
,
"CertAddCertificateLinkToStore failed: %08x
\n
"
,
GetLastError
());
if
(
ret
)
{
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store"
);
ok
(
linked
->
hCertStore
==
store2
,
"unexpected store
\n
"
);
CertDeleteCertificateFromStore
(
linked
);
}
CertCloseStore
(
store2
,
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