From: Stefan Metzmacher Date: Sun, 22 Jul 2018 22:17:35 +0000 (+0200) Subject: python/tests: use explicit "client ipc max protocol = NT1" for samba.tests.net_join_n... X-Git-Tag: ldb-1.3.6~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9494f9b096f6469a3ce0c5c628577ae7e011b96;p=thirdparty%2Fsamba.git 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 Reviewed-by: Alexander Bokovoy (cherry picked from commit 802e43bf742e756896fa73fcd139feca9ae293dd) --- diff --git a/python/samba/tests/net_join_no_spnego.py b/python/samba/tests/net_join_no_spnego.py index 09a2856c9b5..0f45913f215 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"