[ROSTESTS]

Bug 5778:
Disable part of rpcrt4:rpc test,
it needs unimplemented functionality in current rpcrt4 version.

svn path=/trunk/; revision=50905
This commit is contained in:
Sylvain Petreolle 2011-02-25 23:34:52 +00:00
parent d6f4155e39
commit 75d6f0438b

View file

@ -277,6 +277,10 @@ todo_wine {
RPC_C_AUTHN_WINNT, NULL, RPC_C_AUTHZ_NAME);
ok(status == RPC_S_OK, "RpcBindingSetAuthInfo failed (%u)\n", status);
if(1)
skip("bug 5778: this test part needs rpcrt4 sync >= 1.2rc6\n");
else
{
level = authnsvc = authzsvc = 0;
principal = (unsigned char *)0xdeadbeef;
identity = (RPC_AUTH_IDENTITY_HANDLE *)0xdeadbeef;
@ -291,7 +295,7 @@ todo_wine {
todo_wine ok(authzsvc == RPC_C_AUTHZ_NAME, "expected RPC_C_AUTHZ_NAME\n");
RpcStringFree(&principal);
}
status = RpcMgmtStopServerListening(NULL);
ok(status == RPC_S_OK, "RpcMgmtStopServerListening failed (%u)\n",
status);