mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
parent
00ccbd2f39
commit
28088ab25d
1 changed files with 0 additions and 3 deletions
|
@ -634,14 +634,11 @@ static void test_RpcStringBindingParseA(void)
|
||||||
|
|
||||||
/* test with invalid binding */
|
/* test with invalid binding */
|
||||||
status = RpcStringBindingParseA(invalid_binding, &uuid, &protseq, &network_addr, &endpoint, &options);
|
status = RpcStringBindingParseA(invalid_binding, &uuid, &protseq, &network_addr, &endpoint, &options);
|
||||||
todo_wine
|
|
||||||
ok(status == RPC_S_INVALID_STRING_BINDING, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_BINDING instead of %d\n", status);
|
ok(status == RPC_S_INVALID_STRING_BINDING, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_BINDING instead of %d\n", status);
|
||||||
todo_wine
|
|
||||||
ok(uuid == NULL, "uuid was %p instead of NULL\n", uuid);
|
ok(uuid == NULL, "uuid was %p instead of NULL\n", uuid);
|
||||||
if (uuid)
|
if (uuid)
|
||||||
RpcStringFreeA(&uuid);
|
RpcStringFreeA(&uuid);
|
||||||
ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq);
|
ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq);
|
||||||
todo_wine
|
|
||||||
ok(network_addr == NULL, "network_addr was %p instead of NULL\n", network_addr);
|
ok(network_addr == NULL, "network_addr was %p instead of NULL\n", network_addr);
|
||||||
if (network_addr)
|
if (network_addr)
|
||||||
RpcStringFreeA(&network_addr);
|
RpcStringFreeA(&network_addr);
|
||||||
|
|
Loading…
Reference in a new issue