1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

selftest: planpythontestsuite() should fill 'name' is it's None

Otherwise make test shows tests with name "None".

metze
This commit is contained in:
Stefan Metzmacher 2011-11-14 12:21:38 +01:00
parent 72cabbbe50
commit 77c73f1d92

View File

@ -159,6 +159,8 @@ def planperltestsuite(name, path):
def planpythontestsuite(env, module, name=None, extra_path=[]):
if name is None:
name = module
pypath = list(extra_path)
if not has_system_subunit_run:
pypath.extend(["%s/lib/subunit/python" % srcdir(),