From: Volker Lendecke Date: Tue, 26 Sep 2023 09:57:47 +0000 (+0200) Subject: tests: We always do smb3 unix extensions X-Git-Tag: tevent-0.16.0~249 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52c3edb28203bd29f529b31b57bdbc81fd5d009c;p=thirdparty%2Fsamba.git tests: We always do smb3 unix extensions Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 4b71ba1a1de..2cbed90de27 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -95,8 +95,6 @@ have_inotify = ("HAVE_INOTIFY" in config_hash) have_ldwrap = ("HAVE_LDWRAP" in config_hash) with_pthreadpool = ("WITH_PTHREADPOOL" in config_hash) -have_smb3_unix_extensions = ("HAVE_SMB3_UNIX_EXTENSIONS" in config_hash) - have_cluster_support = "CLUSTER_SUPPORT" in config_hash def is_module_enabled(module): @@ -1867,8 +1865,7 @@ if have_cluster_support: smbtorture3, "-N 1000 -o 2000"]) -if have_smb3_unix_extensions: - planpythontestsuite("fileserver", "samba.tests.smb3unix") +planpythontestsuite("fileserver", "samba.tests.smb3unix") planpythontestsuite("fileserver", "samba.tests.reparsepoints") planpythontestsuite("fileserver_smb1", "samba.tests.smb2symlink") planpythontestsuite("fileserver_smb1", "samba.tests.smb1posix") diff --git a/source3/wscript b/source3/wscript index b7f96f3bf99..af4c7d6328b 100644 --- a/source3/wscript +++ b/source3/wscript @@ -108,11 +108,6 @@ def configure(conf): forced_static_modules = [] forced_shared_modules = [] - if Options.options.developer: - conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD') - conf.env.developer = True - conf.DEFINE('HAVE_SMB3_UNIX_EXTENSIONS', '1') - if sys.platform != 'openbsd5': conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)