1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source4/torture/local/wscript_build
Andrew Bartlett 561d834123 auth: move credentials layer to the top level
This will allow gensec_start.c to move to the top level.  This does not change
what code uses the cli_credentials code, but allows the gensec code to be
more broadly.

Andrew Bartlett
2011-10-11 13:41:36 +11:00

39 lines
1.8 KiB
Python

#!/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
)