From: Volker Lendecke Date: Wed, 18 Apr 2012 10:56:39 +0000 (+0200) Subject: s4-torture: Separate out the notify alignment subtest X-Git-Tag: samba-4.0.0alpha20~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd3ceb879252b5992be5d88c8d2694a7e3d36ff4;p=thirdparty%2Fsamba.git s4-torture: Separate out the notify alignment subtest --- diff --git a/source4/torture/raw/notify.c b/source4/torture/raw/notify.c index 37723ac79de..29fff3bb04d 100644 --- a/source4/torture/raw/notify.c +++ b/source4/torture/raw/notify.c @@ -1688,8 +1688,8 @@ done: /* testing alignment of multiple change notify infos */ -static bool test_notify_alignment(struct smbcli_state *cli, - struct torture_context *tctx) +static bool test_notify_alignment(struct torture_context *tctx, + struct smbcli_state *cli) { NTSTATUS status; union smb_notify notify; @@ -1706,6 +1706,10 @@ static bool test_notify_alignment(struct smbcli_state *cli, torture_comment(tctx, "TESTING CHANGE NOTIFY REPLY ALIGNMENT\n"); + if (!torture_setup_dir(cli, BASEDIR)) { + return false; + } + /* get a handle on the directory */ io.generic.level = RAW_OPEN_NTCREATEX; io.ntcreatex.in.root_fid.fnum = 0; @@ -1771,6 +1775,8 @@ static bool test_notify_alignment(struct smbcli_state *cli, STR_UNICODE); } + smb_raw_exit(cli->session); + smbcli_deltree(cli->tree, BASEDIR); return true; } @@ -1787,8 +1793,6 @@ static bool test_raw_notify_all(struct torture_context *torture, return false; } - ret &= test_notify_alignment(cli, torture); - smb_raw_exit(cli->session); smbcli_deltree(cli->tree, BASEDIR); return ret; @@ -1813,6 +1817,7 @@ struct torture_suite *torture_raw_notify(TALLOC_CTX *mem_ctx) torture_suite_add_1smb_test(suite, "tree", test_notify_tree); torture_suite_add_1smb_test(suite, "overflow", test_notify_overflow); torture_suite_add_1smb_test(suite, "basedir", test_notify_basedir); + torture_suite_add_1smb_test(suite, "alignment", test_notify_alignment); torture_suite_add_2smb_test(suite, "all", test_raw_notify_all); return suite;