From: Noel Power Date: Mon, 9 Dec 2019 10:12:17 +0000 (+0000) Subject: s3/selftest: Fix typo in test generator script X-Git-Tag: ldb-2.2.0~1124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f83d9153cd4d84aa293a4e2aae9d212fdfd9b33;p=thirdparty%2Fsamba.git s3/selftest: Fix typo in test generator script Introduced in a64516099936 but only makes a difference when environments limit protocols for testing. Reviewed-by: Ralph Boehme Signed-off-by: Noel Power --- diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 00ba22be1ac..1f61396a242 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -324,7 +324,7 @@ for env in ["maptoguest", "simpleserver"]: env = "maptoguest" plantestsuite("samba3.blackbox.smbclient_auth.plain.bad_username", env, [os.path.join(samba3srcdir, "script/tests/test_smbclient_auth.sh"), '$SERVER', '$SERVER_IP', 'notmy$USERNAME', '$PASSWORD', smbclient3, configuration + " --option=clientntlmv2auth=no --option=clientlanmanauth=yes"]) plantestsuite("samba3.blackbox.smbclient_ntlm.plain.NT1", env, [os.path.join(samba3srcdir, "script/tests/test_smbclient_ntlm.sh"), '$SERVER', '$USERNAME', '$PASSWORD', "baduser", smbclient3, "NT1", configuration]) -plantestsuite("samba3.blackbox.smbclient_ntlm.plain.SMB3", env, [os.path.join(samba3srcdir, "script/tests/test_smbclient_ntlm.sh"), '$SERVER', '$USERNAME', '$PASSWORD', "baduser", smbclient3, "NT1", configuration]) +plantestsuite("samba3.blackbox.smbclient_ntlm.plain.SMB3", env, [os.path.join(samba3srcdir, "script/tests/test_smbclient_ntlm.sh"), '$SERVER', '$USERNAME', '$PASSWORD', "baduser", smbclient3, "SMB3", configuration]) # plain for env in ["nt4_dc"]: