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
f98c896e
Commit
f98c896e
authored
Sep 25, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Sep 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Improve test output.
parent
0da26cfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sip.c
dlls/crypt32/tests/sip.c
+3
-3
No files found.
dlls/crypt32/tests/sip.c
View file @
f98c896e
...
...
@@ -101,7 +101,7 @@ static void test_AddRemoveProvider(void)
skip
(
"Need admin rights
\n
"
);
return
;
}
ok
(
ret
,
"CryptSIPAddProvider should have succeeded
\n
"
);
ok
(
ret
,
"CryptSIPAddProvider should have succeeded
, last error %d
\n
"
,
GetLastError
()
);
/* Dummy provider will be deleted, but the function still fails because
* pwszIsFunctionName and pwszIsFunctionNameFmt2 are not present in the
...
...
@@ -132,12 +132,12 @@ static void test_AddRemoveProvider(void)
newprov
.
pwszIsFunctionName
=
dummyfunction
;
SetLastError
(
0xdeadbeef
);
ret
=
CryptSIPAddProvider
(
&
newprov
);
ok
(
ret
,
"CryptSIPAddProvider should have succeeded
\n
"
);
ok
(
ret
,
"CryptSIPAddProvider should have succeeded
, last error %d
\n
"
,
GetLastError
()
);
/* Dummy provider should be deleted */
SetLastError
(
0xdeadbeef
);
ret
=
CryptSIPRemoveProvider
(
&
actionid
);
ok
(
ret
,
"CryptSIPRemoveProvider should have succeeded
\n
"
);
ok
(
ret
,
"CryptSIPRemoveProvider should have succeeded
, last error %d
\n
"
,
GetLastError
()
);
}
static
const
BYTE
cabFileData
[]
=
{
...
...
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