build: Check for functions needed by Samba3
[Samba/gebeck_regimport.git] / source4 / torture / drs / drs_init.c
blob081565fc57da5fa133c2f323e4e0954bc9a2a49c
1 /*
2 Unix SMB/CIFS implementation.
4 DRSUAPI utility functions to be used in torture tests
6 Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "torture/smbtorture.h"
24 #include "torture/rpc/drsuapi.h"
25 #include "torture/drs/proto.h"
27 /**
28 * DRSUAPI tests to be executed remotely
30 static struct torture_suite * torture_drs_rpc_suite(TALLOC_CTX *mem_ctx)
32 struct torture_suite *suite = torture_suite_create(
33 talloc_autofree_context(),
34 "RPC");
36 return suite;
39 /**
40 * DRSUAPI tests to be executed remotely
42 static struct torture_suite * torture_drs_unit_suite(TALLOC_CTX *mem_ctx)
44 struct torture_suite *suite = torture_suite_create(
45 talloc_autofree_context(),
46 "UNIT");
48 torture_drs_unit_prefixmap(suite);
50 return suite;
53 /**
54 * DRSUAPI torture module initialization
56 NTSTATUS torture_drs_init(void)
58 struct torture_suite *suite = torture_suite_create(
59 talloc_autofree_context(),
60 "DRS");
62 torture_suite_add_suite(suite, torture_drs_rpc_suite(suite));
63 torture_suite_add_suite(suite, torture_drs_unit_suite(suite));
65 suite->description = talloc_strdup(suite,
66 "DRSUAPI related tests - Remote and Local");
68 torture_register_suite(suite);
70 return NT_STATUS_OK;