mirror of
https://github.com/reactos/reactos.git
synced 2025-07-14 12:24:14 +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
|
todo_wine
|
||||||
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
|
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
|
||||||
if (status == RPC_S_OK)
|
if (status == RPC_S_OK)
|
||||||
|
{
|
||||||
MesHandleFree(handle);
|
MesHandleFree(handle);
|
||||||
|
}
|
||||||
|
|
||||||
status = MesEncodeFixedBufferHandleCreate(buffer, 32, NULL, &handle);
|
status = MesEncodeFixedBufferHandleCreate(buffer, 32, NULL, &handle);
|
||||||
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
|
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
|
||||||
|
|
|
@ -909,6 +909,14 @@ static void test_RpcServerInqDefaultPrincName(void)
|
||||||
HeapFree( GetProcessHeap(), 0, username );
|
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 )
|
START_TEST( rpc )
|
||||||
{
|
{
|
||||||
UuidConversionAndComparison();
|
UuidConversionAndComparison();
|
||||||
|
@ -923,4 +931,5 @@ START_TEST( rpc )
|
||||||
test_UuidCreateSequential();
|
test_UuidCreateSequential();
|
||||||
test_RpcBindingFree();
|
test_RpcBindingFree();
|
||||||
test_RpcServerInqDefaultPrincName();
|
test_RpcServerInqDefaultPrincName();
|
||||||
|
test_RpcServerRegisterAuthInfo();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue