diff options
-rw-r--r-- | source4/torture/rpc/dssync.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/torture/rpc/dssync.c b/source4/torture/rpc/dssync.c index 31f9c602c7..3d9accf4fe 100644 --- a/source4/torture/rpc/dssync.c +++ b/source4/torture/rpc/dssync.c @@ -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); |