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
876c3c35
Commit
876c3c35
authored
Dec 16, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Dec 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Skip more tests on Win9x/WinMe.
parent
4d1fa583
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
server.c
dlls/rpcrt4/tests/server.c
+5
-5
No files found.
dlls/rpcrt4/tests/server.c
View file @
876c3c35
...
...
@@ -1338,6 +1338,11 @@ s_authinfo_test(unsigned int protseq, int secure)
if
(
secure
||
protseq
==
RPC_PROTSEQ_LRPC
)
{
status
=
RpcBindingInqAuthClientA
(
binding
,
&
privs
,
&
principal
,
&
level
,
&
authnsvc
,
NULL
);
if
(
status
==
RPC_S_CANNOT_SUPPORT
)
{
win_skip
(
"RpcBindingInqAuthClientA not supported
\n
"
);
return
;
}
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
ok
(
privs
!=
(
RPC_AUTHZ_HANDLE
)
0xdeadbeef
,
"privs unchanged
\n
"
);
ok
(
principal
!=
(
unsigned
char
*
)
0xdeadbeef
,
"principal unchanged
\n
"
);
...
...
@@ -1362,11 +1367,6 @@ s_authinfo_test(unsigned int protseq, int secure)
ok
(
authnsvc
==
RPC_C_AUTHN_WINNT
,
"authnsvc unchanged
\n
"
);
status
=
RpcImpersonateClient
(
NULL
);
if
(
status
==
RPC_S_CANNOT_SUPPORT
)
{
win_skip
(
"RpcImpersonateClient not supported
\n
"
);
return
;
}
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
status
=
RpcRevertToSelf
();
ok
(
status
==
RPC_S_OK
,
"expected RPC_S_OK got %u
\n
"
,
status
);
...
...
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