Commit 3b6cb60e authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

rpcrt4: Added RpcServerRegisterAuthInfoW failure test.

parent f3e5e76d
......@@ -911,6 +911,14 @@ static void test_RpcServerInqDefaultPrincName(void)
HeapFree( GetProcessHeap(), 0, username );
}
static void test_RpcServerRegisterAuthInfo(void)
{
RPC_STATUS status;
status = RpcServerRegisterAuthInfoW(NULL, 600, NULL, NULL);
ok(status == RPC_S_UNKNOWN_AUTHN_SERVICE, "status = %x\n", status);
}
START_TEST( rpc )
{
UuidConversionAndComparison();
......@@ -925,4 +933,5 @@ START_TEST( rpc )
test_UuidCreateSequential();
test_RpcBindingFree();
test_RpcServerInqDefaultPrincName();
test_RpcServerRegisterAuthInfo();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment