From 66980989e5b28490cd7b04b576cf39d26f183b90 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 27 Oct 2012 05:23:57 -0800 Subject: source3.selftest: Move more variables to be in common. --- selftest/selftesthelpers.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'selftest') diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py index 8d36356293..34d0e07282 100644 --- a/selftest/selftesthelpers.py +++ b/selftest/selftesthelpers.py @@ -29,6 +29,9 @@ def srcdir(): def source4dir(): return os.path.normpath(os.path.join(srcdir(), "source4")) +def source3dir(): + return os.path.normpath(os.path.join(srcdir(), "source3")) + def bindir(): return os.path.normpath(os.getenv("BINDIR", "./bin")) @@ -192,6 +195,7 @@ def get_env_torture_options(): samba4srcdir = source4dir() +samba3srcdir = source3dir() bbdir = os.path.join(srcdir(), "testprogs/blackbox") configuration = "--configfile=$SMB_CONF_PATH" @@ -233,3 +237,9 @@ def plansmbtorture4testsuite(name, env, options, target, modname=None): def smbtorture4_testsuites(prefix): return filter(lambda x: x.startswith(prefix), smbtorture4_testsuite_list) + + +smbclient3 = binpath('smbclient3') +smbtorture3 = binpath('smbtorture3') +ntlm_auth3 = binpath('ntlm_auth3') +net = binpath('net') -- cgit