mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[RPCRT4_WINETEST] Sync with Wine Staging 1.9.16. CORE-11866
svn path=/trunk/; revision=72351
This commit is contained in:
parent
5f766a75dc
commit
ae7213af9a
2 changed files with 11 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue