1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-20 22:50:26 +03:00

s4-torture: make setup of the clusapi pipe non-critical in witness test.

Samba currently does not implement clusapi.

Guenther

Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Günther Deschner 2015-05-13 10:47:37 +02:00
parent 9cdb69c8dd
commit 6e9c678c8b

View File

@ -515,13 +515,17 @@ static bool test_witness_RegisterEx(struct torture_context *tctx,
static bool setup_clusapi_connection(struct torture_context *tctx,
struct torture_test_witness_state *s)
{
NTSTATUS status;
if (s->clusapi.p) {
return true;
}
torture_assert_ntstatus_ok(tctx,
torture_rpc_connection_transport(tctx, &s->clusapi.p, &ndr_table_clusapi, NCACN_IP_TCP, 0),
"failed to connect to clusapi");
status = torture_rpc_connection_transport(tctx, &s->clusapi.p, &ndr_table_clusapi, NCACN_IP_TCP, 0);
if (!NT_STATUS_IS_OK(status)) {
torture_comment(tctx, "clusapi interface not available\n");
return true;
}
return true;
}