mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
rpcrt4/tests: Skip ok check for win9x.
This commit is contained in:
parent
1cfb958a2e
commit
00662a190d
1 changed files with 4 additions and 1 deletions
|
@ -1295,7 +1295,10 @@ server(void)
|
|||
iptcp_status = RpcServerUseProtseqEp(iptcp, 20, port, NULL);
|
||||
ok(iptcp_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_ip_tcp) failed with status %ld\n", iptcp_status);
|
||||
np_status = RpcServerUseProtseqEp(np, 0, pipe, NULL);
|
||||
ok(np_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_np) failed with status %ld\n", np_status);
|
||||
if (np_status == RPC_S_PROTSEQ_NOT_SUPPORTED)
|
||||
skip("Protocol sequence ncacn_np is not supported\n");
|
||||
else
|
||||
ok(np_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_np) failed with status %ld\n", np_status);
|
||||
|
||||
pRpcServerRegisterIfEx = (void *)GetProcAddress(GetModuleHandle("rpcrt4.dll"), "RpcServerRegisterIfEx");
|
||||
if (pRpcServerRegisterIfEx)
|
||||
|
|
Loading…
Reference in a new issue