1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r22086: Bail out early on some of these failures.

This commit is contained in:
Andrew Bartlett 2007-04-05 06:00:44 +00:00 committed by Gerald (Jerry) Carter
parent 43ee3f8724
commit 8311bdfde9

View File

@ -811,9 +811,18 @@ BOOL torture_rpc_dssync(struct torture_context *torture)
ctx = test_create_context(mem_ctx);
ret &= _test_DsBind(ctx, ctx->admin.credentials, &ctx->admin.drsuapi);
if (!ret) {
return ret;
}
ret &= test_LDAPBind(ctx, ctx->admin.credentials, &ctx->admin.ldap);
if (!ret) {
return ret;
}
ret &= test_GetInfo(ctx);
ret &= _test_DsBind(ctx, ctx->new_dc.credentials, &ctx->new_dc.drsuapi);
if (!ret) {
return ret;
}
ret &= test_FetchData(ctx);
ret &= test_FetchNT4Data(ctx);