From 1870d254956ec56b8116a923adc38f8aae675963 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 15 Apr 2011 16:39:53 +1000 Subject: selftest Add binary mappings for samba3 selftest This will help us have a top level 'make test', working around the fact that the --eanble-s3build has different names for some of these binaries, without fixing the names forever (we can just change the mapping later). Andrew Bartlett --- source3/selftest/wscript | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source3/selftest/wscript') diff --git a/source3/selftest/wscript b/source3/selftest/wscript index db9233049f..1a266880c8 100644 --- a/source3/selftest/wscript +++ b/source3/selftest/wscript @@ -103,7 +103,12 @@ def cmd_testonly(opt): if o[0:1] != '_': os.environ['TESTENV_%s' % o.upper()] = str(getattr(Options.options, o, '')) - env.OPTIONS = '' + binary_mappings = ('smbtorture3:smbtorture,' + + 'nmblookup3:nmblookup,' + + 'smbclient3:smbclient,' + + 'ntlm_auth3:ntlm_auth') + + env.OPTIONS = '--binary-mapping=' + binary_mappings if not Options.options.SLOWTEST: env.OPTIONS += ' --exclude=${srcdir}/source3/selftest/slow' if Options.options.QUICKTEST: -- cgit