[RPCRT4_WINETEST] Sync with Wine Staging 1.9.16. CORE-11866

svn path=/trunk/; revision=72351
This commit is contained in:
Amine Khaldi 2016-08-19 09:41:01 +00:00
parent 5f766a75dc
commit ae7213af9a
2 changed files with 11 additions and 0 deletions

View file

@ -2434,7 +2434,9 @@ static void test_MesEncodeFixedBufferHandleCreate(void)
todo_wine
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
if (status == RPC_S_OK)
{
MesHandleFree(handle);
}
status = MesEncodeFixedBufferHandleCreate(buffer, 32, NULL, &handle);
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);

View file

@ -909,6 +909,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();
@ -923,4 +931,5 @@ START_TEST( rpc )
test_UuidCreateSequential();
test_RpcBindingFree();
test_RpcServerInqDefaultPrincName();
test_RpcServerRegisterAuthInfo();
}