From aa72950b3d08c1964cd734e7b49ef43c959a2fcc Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Wed, 9 Dec 2009 11:21:08 +0100 Subject: [PATCH] s4-smbtorture: skip over ValidatePassword if DCERPC error is returned. Guenther --- source4/torture/rpc/samr.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 4ab4a2cdc7e..62716da0cd9 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -7661,6 +7661,10 @@ static bool test_samr_ValidatePassword(struct dcerpc_pipe *p, struct torture_con for (i=0; passwords[i]; i++) { req.req3.password.string = passwords[i]; status = dcerpc_samr_ValidatePassword(p, tctx, &r); + if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT) && + p->last_fault_code == DCERPC_FAULT_OP_RNG_ERROR) { + torture_skip(tctx, "ValidatePassword not supported by server\n"); + } torture_assert_ntstatus_ok(tctx, status, "samr_ValidatePassword"); torture_comment(tctx, "Server %s password '%s' with code %i\n", repp->ctr3.status==SAMR_VALIDATION_STATUS_SUCCESS?"allowed":"refused", -- 2.11.4.GIT