rpcrt4/tests: Skip more tests on Win9x/WinMe.
This commit is contained in:
parent
4d1fa5833e
commit
876c3c352b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue