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
38372d19
Commit
38372d19
authored
Nov 15, 2016
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Add a trailing '\n' to ok() calls.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
437f7a37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
store.c
dlls/crypt32/tests/store.c
+4
-4
No files found.
dlls/crypt32/tests/store.c
View file @
38372d19
...
...
@@ -411,7 +411,7 @@ static void testRegStoreSavedCerts(void)
skip
(
"Insufficient privileges for the test %d
\n
"
,
i
);
continue
;
}
ok
(
store
!=
NULL
,
"Failed to open the store at %d, %x"
,
i
,
GetLastError
());
ok
(
store
!=
NULL
,
"Failed to open the store at %d, %x
\n
"
,
i
,
GetLastError
());
cert1
=
CertCreateCertificateContext
(
X509_ASN_ENCODING
,
bigCert
,
sizeof
(
bigCert
));
ok
(
cert1
!=
NULL
,
"Create cert context failed at %d, %x
\n
"
,
i
,
GetLastError
());
ret
=
CertAddCertificateContextToStore
(
store
,
cert1
,
CERT_STORE_ADD_REPLACE_EXISTING
,
NULL
);
...
...
@@ -458,7 +458,7 @@ static void testRegStoreSavedCerts(void)
/* deleting cert from store */
store
=
CertOpenStore
(
CERT_STORE_PROV_SYSTEM_REGISTRY_W
,
0
,
0
,
reg_store_saved_certs
[
i
].
cert_store
,
reg_store_saved_certs
[
i
].
store_name
);
ok
(
store
!=
NULL
,
"Failed to open the store at %d, %x"
,
i
,
GetLastError
());
ok
(
store
!=
NULL
,
"Failed to open the store at %d, %x
\n
"
,
i
,
GetLastError
());
cert1
=
CertCreateCertificateContext
(
X509_ASN_ENCODING
,
bigCert
,
sizeof
(
bigCert
));
ok
(
cert1
!=
NULL
,
"Create cert context failed at %d, %x
\n
"
,
i
,
GetLastError
());
...
...
@@ -556,7 +556,7 @@ static void testStoresInCollection(void)
ok
(
ret
,
"Failed to add rw_store_2 to collection %x
\n
"
,
GetLastError
());
cert2
=
CertCreateCertificateContext
(
X509_ASN_ENCODING
,
signedBigCert
,
sizeof
(
signedBigCert
));
ok
(
cert2
!=
NULL
,
"Failed to create cert context %x
\n
"
,
GetLastError
());
ok
(
cert2
!=
NULL
,
"Failed to create cert context %x
\n
"
,
GetLastError
());
ret
=
CertAddCertificateContextToStore
(
collection
,
cert2
,
CERT_STORE_ADD_REPLACE_EXISTING
,
NULL
);
ok
(
ret
,
"Failed to add cert3 to the store %x
\n
"
,
GetLastError
());
...
...
@@ -2231,7 +2231,7 @@ static void testCertRegisterSystemStore(void)
}
ret
=
CertCloseStore
(
hstore
,
0
);
ok
(
ret
,
"CertCloseStore failed at %08x, last error %x"
,
cur_flag
,
GetLastError
());
ok
(
ret
,
"CertCloseStore failed at %08x, last error %x
\n
"
,
cur_flag
,
GetLastError
());
ret
=
pCertUnregisterSystemStore
(
WineTestW
,
cur_flag
);
todo_wine_if
(
reg_system_store_test_data
[
i
].
todo
)
...
...
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