From 77c73f1d925781a6afe64bd60c0e2438957c7a31 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 14 Nov 2011 12:21:38 +0100 Subject: selftest: planpythontestsuite() should fill 'name' is it's None Otherwise make test shows tests with name "None". metze --- selftest/selftesthelpers.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'selftest/selftesthelpers.py') diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py index a7924d60f4..a63dc98c64 100644 --- a/selftest/selftesthelpers.py +++ b/selftest/selftesthelpers.py @@ -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(), -- cgit