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
b37c3d84
Commit
b37c3d84
authored
Aug 21, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dssenh/tests: add a trailing '\n' to a couple of ok() calls.
parent
e83e0573
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dssenh.c
dlls/dssenh/tests/dssenh.c
+2
-2
No files found.
dlls/dssenh/tests/dssenh.c
View file @
b37c3d84
...
...
@@ -861,7 +861,7 @@ static void test_signhash_array(HCRYPTPROV hProv, const struct signature_test *t
ok
(
result
,
"Failed to return hash value.
\n
"
);
/* Compare hashes to ensure they are the same */
ok
(
hashLen1
==
hashLen2
,
"Hash lengths were not the same."
);
ok
(
hashLen1
==
hashLen2
,
"Hash lengths were not the same.
\n
"
);
ok
(
!
memcmp
(
hashValue1
,
hashValue2
,
hashLen2
),
"Hashes were not identical.
\n
"
);
/* Sign hash 1 */
...
...
@@ -883,7 +883,7 @@ static void test_signhash_array(HCRYPTPROV hProv, const struct signature_test *t
/* Compare signatures to ensure they are both different, because every DSS signature
should be different even if the input hash data is identical */
ok
(
memcmp
(
signValue1
,
signValue2
,
signLen2
),
"Expected two different signatures from "
"the same hash input."
);
"the same hash input.
\n
"
);
result
=
CryptExportKey
(
privKey
,
0
,
PUBLICKEYBLOB
,
0
,
NULL
,
&
pubKeyLen
);
ok
(
result
,
"Failed to acquire public key length, got %x
\n
"
,
GetLastError
());
...
...
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