summaryrefslogtreecommitdiff
path: root/source4/torture/local/wscript_build
blob: c5d897a1237a151d1eeb448f7115aca250ae01c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python

TORTURE_LOCAL_SOURCE = '''../../../lib/util/charset/tests/iconv.c
	../../../lib/talloc/testsuite.c ../../lib/messaging/tests/messaging.c
	../../lib/messaging/tests/irpc.c ../../librpc/tests/binding_string.c
	../../../lib/util/tests/idtree.c ../../../lib/util/tests/dlinklist.c
	../../lib/socket/testsuite.c ../../libcli/resolve/testsuite.c
	../../../lib/util/tests/strlist.c ../../../lib/util/tests/parmlist.c
	../../../lib/util/tests/str.c ../../../lib/util/tests/time.c
	../../../lib/util/tests/asn1_tests.c ../../../lib/util/tests/data_blob.c
	../../../lib/util/tests/file.c ../../../lib/util/tests/genrand.c
	../../../lib/compression/testsuite.c ../../../lib/util/charset/tests/charset.c
        ../../../lib/util/charset/tests/convert_string.c
	../../libcli/security/tests/sddl.c ../../../lib/tdr/testsuite.c
	../../../lib/tevent/testsuite.c ../../param/tests/share.c
	../../param/tests/loadparm.c ../../../auth/credentials/tests/simple.c local.c
	dbspeed.c torture.c ../ldb/ldb.c ../../dsdb/common/tests/dsdb_dn.c
	../../dsdb/schema/tests/schema_syntax.c
	../../../lib/util/tests/anonymous_shared.c'''

TORTURE_LOCAL_DEPS = 'RPC_NDR_ECHO TDR LIBCLI_SMB MESSAGING iconv POPT_CREDENTIALS TORTURE_AUTH TORTURE_UTIL TORTURE_NDR TORTURE_LIBCRYPTO share torture_registry PROVISION ldb samdb replace-test'

if bld.CONFIG_SET("NSS_WRAPPER"):
	TORTURE_LOCAL_SOURCE += " ../../../lib/nss_wrapper/testsuite.c"
	TORTURE_LOCAL_DEPS  += " nss_wrapper "

if bld.CONFIG_SET("SOCKET_WRAPPER"):
	TORTURE_LOCAL_SOURCE += " ../../../lib/socket_wrapper/testsuite.c"
	TORTURE_LOCAL_DEPS += " socket_wrapper"

bld.SAMBA_MODULE('TORTURE_LOCAL',
	source=TORTURE_LOCAL_SOURCE,
	autoproto='proto.h',
	subsystem='smbtorture',
	init_function='torture_local_init',
	deps=TORTURE_LOCAL_DEPS,
	internal_module=True
	)