diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-10 22:14:34 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-21 11:29:39 +1000 |
commit | 79b1a1092dbbb45bb8839c71e48479d1c6037b48 (patch) | |
tree | c55eda8433ad4dd811ac3ae251c837b065d0727c /source3/selftest | |
parent | a6f31f13ec6c7eb65f2d3fc39038453bb14aa17b (diff) | |
download | samba-79b1a1092dbbb45bb8839c71e48479d1c6037b48.tar.gz samba-79b1a1092dbbb45bb8839c71e48479d1c6037b48.tar.bz2 samba-79b1a1092dbbb45bb8839c71e48479d1c6037b48.zip |
selftest: Run tests for libsmbclient and libnetapi
This adds the known failure for the one test (netbios browsing) that
fails.
Andrew Bartlett
Diffstat (limited to 'source3/selftest')
-rw-r--r-- | source3/selftest/knownfail | 2 | ||||
-rwxr-xr-x | source3/selftest/tests.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/source3/selftest/knownfail b/source3/selftest/knownfail index b62ef3e667..4f746c8d70 100644 --- a/source3/selftest/knownfail +++ b/source3/selftest/knownfail @@ -12,3 +12,5 @@ ^samba3.*rap.sam.*.useradd # Not provided by Samba 3 ^samba3.*rap.sam.*.userdelete # Not provided by Samba 3 ^samba3.*rap.basic.*.netsessiongetinfo # Not provided by Samba 3 +^samba3.posix_s3.libsmbclient .opendir # This requires a workgroup called 'WORKGROUP' and for netbios browse lists to have been registered + diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 262c564612..2a3002189c 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -192,7 +192,9 @@ unix = ["unix.info2", "unix.whoami"] nbt = ["nbt.dgram" ] -tests= base + raw + smb2 + rpc + unix + local + winbind + rap + nbt +libsmbclient = ["libsmbclient"] + +tests= base + raw + smb2 + rpc + unix + local + winbind + rap + nbt + libsmbclient sub = subprocess.Popen("%s --version 2> /dev/null" % smb4torture, stdout=subprocess.PIPE, stdin=subprocess.PIPE, shell=True) sub.communicate("") |