rpcrt4: Added RpcServerRegisterAuthInfoW failure test.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2016-06-27 17:08:46 +02:00 committed by Alexandre Julliard
parent f3e5e76da9
commit 3b6cb60ea6
1 changed files with 9 additions and 0 deletions

View File

@ -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();
}