summaryrefslogtreecommitdiff
path: root/source4/selftest
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2015-08-12 11:06:15 +0200
committerStefan Metzmacher <metze@samba.org>2015-08-31 15:50:49 +0200
commit770fb8cd07bd047b5206a2a7fe01eb14d9077eea (patch)
tree28b9d986eab056760bf281cadd521dd1fbdac3b0 /source4/selftest
parentb9c561273b60ea8fe1ff047238013e5cc5411c04 (diff)
downloadsamba-770fb8cd07bd047b5206a2a7fe01eb14d9077eea.tar.gz
selftest: add a check for disabled change notify
Bug: https://bugzilla.samba.org/show_bug.cgi?id=11444 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Mon Aug 31 15:50:49 CEST 2015 on sn-devel-104
Diffstat (limited to 'source4/selftest')
-rwxr-xr-xsource4/selftest/tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py
index 3bc820cca5f..6c72c3404b0 100755
--- a/source4/selftest/tests.py
+++ b/source4/selftest/tests.py
@@ -235,7 +235,9 @@ for t in nbt_tests:
# Tests against the NTVFS POSIX backend
ntvfsargs = ["--option=torture:sharedelay=100000", "--option=torture:oplocktimeout=3", "--option=torture:writetimeupdatedelay=500000"]
-smb2 = smbtorture4_testsuites("smb2.")
+# smb2.change_notify_disabled must only run against env fileserver-notify-disabled
+smb2 = filter(lambda x: "smb2.change_notify_disabled" not in x, smbtorture4_testsuites("smb2."))
+
#The QFILEINFO-IPC test needs to be on ipc$
raw = filter(lambda x: "raw.qfileinfo.ipc" not in x, smbtorture4_testsuites("raw."))
base = smbtorture4_testsuites("base.")