diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-02-29 10:56:56 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-02-29 10:56:56 +1100 |
commit | f6b2a57c9517202c554fa5a60bbe7ffd49b431f5 (patch) | |
tree | b3a1e27af97c0871bf8a518b0f2aa5c823c7e8ec /source4/torture/libnet/userinfo.c | |
parent | f5b0f7a5fe6811c49661577540aaed248eda33a4 (diff) | |
parent | d115497478a4c60bc273d8f63756222eb135aa09 (diff) | |
download | samba-f6b2a57c9517202c554fa5a60bbe7ffd49b431f5.tar.gz samba-f6b2a57c9517202c554fa5a60bbe7ffd49b431f5.tar.bz2 samba-f6b2a57c9517202c554fa5a60bbe7ffd49b431f5.zip |
Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-local
(This used to be commit 124d2ee788f1ac4b201a2843b58be21de358deb0)
Diffstat (limited to 'source4/torture/libnet/userinfo.c')
-rw-r--r-- | source4/torture/libnet/userinfo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/torture/libnet/userinfo.c b/source4/torture/libnet/userinfo.c index e862435d20..11e57f852d 100644 --- a/source4/torture/libnet/userinfo.c +++ b/source4/torture/libnet/userinfo.c @@ -152,12 +152,12 @@ bool torture_userinfo(struct torture_context *torture) /* * Testing synchronous version */ - if (!test_opendomain(p, mem_ctx, &h, &name, &sid)) { + if (!test_opendomain(torture, p, mem_ctx, &h, &name, &sid)) { ret = false; goto done; } - if (!test_user_create(p, mem_ctx, &h, TEST_USERNAME, &rid)) { + if (!test_user_create(torture, p, mem_ctx, &h, TEST_USERNAME, &rid)) { ret = false; goto done; } @@ -167,7 +167,7 @@ bool torture_userinfo(struct torture_context *torture) goto done; } - if (!test_user_cleanup(p, mem_ctx, &h, TEST_USERNAME)) { + if (!test_user_cleanup(torture, p, mem_ctx, &h, TEST_USERNAME)) { ret = false; goto done; } @@ -175,12 +175,12 @@ bool torture_userinfo(struct torture_context *torture) /* * Testing asynchronous version and monitor messages */ - if (!test_opendomain(p, mem_ctx, &h, &name, &sid)) { + if (!test_opendomain(torture, p, mem_ctx, &h, &name, &sid)) { ret = false; goto done; } - if (!test_user_create(p, mem_ctx, &h, TEST_USERNAME, &rid)) { + if (!test_user_create(torture, p, mem_ctx, &h, TEST_USERNAME, &rid)) { ret = false; goto done; } @@ -190,7 +190,7 @@ bool torture_userinfo(struct torture_context *torture) goto done; } - if (!test_user_cleanup(p, mem_ctx, &h, TEST_USERNAME)) { + if (!test_user_cleanup(torture, p, mem_ctx, &h, TEST_USERNAME)) { ret = false; goto done; } |