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
1b403596
Commit
1b403596
authored
Jan 24, 2016
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcrypt/tests: Add a trailing '\n' to some ok() calls.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9dab25c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
bcrypt.c
dlls/bcrypt/tests/bcrypt.c
+4
-4
No files found.
dlls/bcrypt/tests/bcrypt.c
View file @
1b403596
...
...
@@ -92,7 +92,7 @@ static void test_sha1(void)
alg
=
NULL
;
ret
=
BCryptOpenAlgorithmProvider
(
&
alg
,
BCRYPT_SHA1_ALGORITHM
,
MS_PRIMITIVE_PROVIDER
,
0
);
ok
(
ret
==
STATUS_SUCCESS
,
"got %08x
\n
"
,
ret
);
ok
(
alg
!=
NULL
,
"alg not set"
);
ok
(
alg
!=
NULL
,
"alg not set
\n
"
);
len
=
size
=
0xdeadbeef
;
ret
=
BCryptGetProperty
(
NULL
,
BCRYPT_OBJECT_LENGTH
,
(
UCHAR
*
)
&
len
,
sizeof
(
len
),
&
size
,
0
);
...
...
@@ -171,7 +171,7 @@ static void test_sha256(void)
alg
=
NULL
;
ret
=
BCryptOpenAlgorithmProvider
(
&
alg
,
BCRYPT_SHA256_ALGORITHM
,
MS_PRIMITIVE_PROVIDER
,
0
);
ok
(
ret
==
STATUS_SUCCESS
,
"got %08x
\n
"
,
ret
);
ok
(
alg
!=
NULL
,
"alg not set"
);
ok
(
alg
!=
NULL
,
"alg not set
\n
"
);
len
=
size
=
0xdeadbeef
;
ret
=
BCryptGetProperty
(
NULL
,
BCRYPT_OBJECT_LENGTH
,
(
UCHAR
*
)
&
len
,
sizeof
(
len
),
&
size
,
0
);
...
...
@@ -250,7 +250,7 @@ static void test_sha384(void)
alg
=
NULL
;
ret
=
BCryptOpenAlgorithmProvider
(
&
alg
,
BCRYPT_SHA384_ALGORITHM
,
MS_PRIMITIVE_PROVIDER
,
0
);
ok
(
ret
==
STATUS_SUCCESS
,
"got %08x
\n
"
,
ret
);
ok
(
alg
!=
NULL
,
"alg not set"
);
ok
(
alg
!=
NULL
,
"alg not set
\n
"
);
len
=
size
=
0xdeadbeef
;
ret
=
BCryptGetProperty
(
NULL
,
BCRYPT_OBJECT_LENGTH
,
(
UCHAR
*
)
&
len
,
sizeof
(
len
),
&
size
,
0
);
...
...
@@ -330,7 +330,7 @@ static void test_sha512(void)
alg
=
NULL
;
ret
=
BCryptOpenAlgorithmProvider
(
&
alg
,
BCRYPT_SHA512_ALGORITHM
,
MS_PRIMITIVE_PROVIDER
,
0
);
ok
(
ret
==
STATUS_SUCCESS
,
"got %08x
\n
"
,
ret
);
ok
(
alg
!=
NULL
,
"alg not set"
);
ok
(
alg
!=
NULL
,
"alg not set
\n
"
);
len
=
size
=
0xdeadbeef
;
ret
=
BCryptGetProperty
(
NULL
,
BCRYPT_OBJECT_LENGTH
,
(
UCHAR
*
)
&
len
,
sizeof
(
len
),
&
size
,
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