From 5a482a641e9631e269684d4394864659791b5dec Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 12 Nov 2010 16:23:03 +0100 Subject: [PATCH] torture: Only add in tests for socket_wrapper/nss_wrapper when they have been enabled. --- source4/torture/local/local.c | 4 ++++ source4/torture/local/wscript_build | 32 ++++++++++++++++++++++---------- 2 files changed, 26 insertions(+), 10 deletions(-) rewrite source4/torture/local/wscript_build (88%) diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c index 84cdc95ea4b..2f29c35fb23 100644 --- a/source4/torture/local/local.c +++ b/source4/torture/local/local.c @@ -45,8 +45,12 @@ torture_local_genrand, torture_local_iconv, torture_local_socket, +#ifdef SOCKET_WRAPPER torture_local_socket_wrapper, +#endif +#ifdef NSS_WRAPPER torture_local_nss_wrapper, +#endif torture_pac, torture_local_resolve, torture_local_sddl, diff --git a/source4/torture/local/wscript_build b/source4/torture/local/wscript_build dissimilarity index 88% index 1c4c94bdfdc..dff75bf02f9 100644 --- a/source4/torture/local/wscript_build +++ b/source4/torture/local/wscript_build @@ -1,10 +1,22 @@ -#!/usr/bin/env python - -bld.SAMBA_MODULE('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 ../../../lib/socket_wrapper/testsuite.c ../../../lib/nss_wrapper/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 ../../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', - autoproto='proto.h', - subsystem='smbtorture', - init_function='torture_local_init', - 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 nss_wrapper socket_wrapper replace-test', - internal_module=True - ) +#!/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 ../../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' + +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 + ) -- 2.11.4.GIT