summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2018-07-23 00:17:35 +0200
committerKarolin Seeger <kseeger@samba.org>2018-07-31 12:36:25 +0200
commit25405ee6c1c4f422e91e051c8638aca41b29769d (patch)
tree453dd4ef63649531b8ab31931dbbcde452d4039d /python
parent373406a18ef7bc02953b68a96eda7090713c8029 (diff)
downloadsamba-25405ee6c1c4f422e91e051c8638aca41b29769d.tar.gz
python/tests: use explicit "client ipc max protocol = NT1" for samba.tests.net_join_no_spnego
The tests rely on SMB1. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13308 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org> (cherry picked from commit 802e43bf742e756896fa73fcd139feca9ae293dd)
Diffstat (limited to 'python')
-rw-r--r--python/samba/tests/net_join_no_spnego.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/samba/tests/net_join_no_spnego.py b/python/samba/tests/net_join_no_spnego.py
index 85c6f888d44..e4dd078f2f6 100644
--- a/python/samba/tests/net_join_no_spnego.py
+++ b/python/samba/tests/net_join_no_spnego.py
@@ -42,6 +42,7 @@ class NetJoinNoSpnegoTests(samba.tests.TestCaseInTempDir):
super(NetJoinNoSpnegoTests, self).tearDown()
def test_net_join_no_spnego(self):
+ self.lp.set("client ipc max protocol", "NT1")
self.lp.set("client use spnego", "no")
netbios_name = "NetJoinNoSpnego"
machinepass = "abcdefghij"
@@ -65,6 +66,7 @@ class NetJoinNoSpnegoTests(samba.tests.TestCaseInTempDir):
self.fail("Shoud have rejected NTLMv2 without SPNEGO")
def test_net_join_no_spnego_ntlmv1(self):
+ self.lp.set("client ipc max protocol", "NT1")
self.lp.set("client use spnego", "no")
self.lp.set("client ntlmv2 auth", "no")
netbios_name = "NetJoinNoSpnego"