From 5607f91796965459ad17fd6fc5e5a6d19601e8bc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 18 Apr 2012 14:45:20 +0200 Subject: s4-torture: Use 2 client connections for raw.notify.tree This makes the test more interesting in a cluster --- source4/torture/raw/notify.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'source4/torture/raw') diff --git a/source4/torture/raw/notify.c b/source4/torture/raw/notify.c index 1394aaaaa6..7916b2ed22 100644 --- a/source4/torture/raw/notify.c +++ b/source4/torture/raw/notify.c @@ -1229,7 +1229,8 @@ done: test multiple change notifies at different depths and with/without recursion */ static bool test_notify_tree(struct torture_context *mem_ctx, - struct smbcli_state *cli) + struct smbcli_state *cli, + struct smbcli_state *cli2) { bool ret = true; union smb_notify notify; @@ -1311,8 +1312,13 @@ static bool test_notify_tree(struct torture_context *mem_ctx, /* trigger 2 events in each dir */ for (i=0;itree, path); - smbcli_rmdir(cli->tree, path); + smbcli_rmdir(cli2->tree, path); talloc_free(path); } @@ -1803,7 +1809,7 @@ struct torture_suite *torture_raw_notify(TALLOC_CTX *mem_ctx) torture_suite_add_1smb_test(suite, "ulogoff", test_notify_ulogoff); torture_suite_add_1smb_test(suite, "tcp_dis", test_notify_tcp_dis); torture_suite_add_1smb_test(suite, "double", test_notify_double); - torture_suite_add_1smb_test(suite, "tree", test_notify_tree); + torture_suite_add_2smb_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); -- cgit