1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4-smbtorture: handle NT_STATUS_NOT_IMPLEMENTED in GetForestTrustInformation test.

When skipping over it, we can at least verify the credential chain.

Guenther
This commit is contained in:
Günther Deschner 2010-06-29 17:19:28 +02:00
parent 5bc77c8778
commit 92f3e143b7

View File

@ -2085,8 +2085,12 @@ static bool test_netr_GetForestTrustInformation(struct torture_context *tctx,
torture_assert_ntstatus_ok(tctx,
dcerpc_netr_GetForestTrustInformation_r(b, tctx, &r),
"netr_GetForestTrustInformation failed");
torture_assert_ntstatus_ok(tctx, r.out.result,
"netr_GetForestTrustInformation failed");
if (NT_STATUS_EQUAL(r.out.result, NT_STATUS_NOT_IMPLEMENTED)) {
torture_comment(tctx, "not considering NT_STATUS_NOT_IMPLEMENTED as an error\n");
} else {
torture_assert_ntstatus_ok(tctx, r.out.result,
"netr_GetForestTrustInformation failed");
}
torture_assert(tctx,
netlogon_creds_client_check(creds, &return_authenticator.cred),