1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s4-torture: Separate out the notify alignment subtest

This commit is contained in:
Volker Lendecke 2012-04-18 12:56:39 +02:00
parent 6b445cdfc6
commit bd3ceb8792

View File

@ -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;