From: Stefan Metzmacher Date: Thu, 29 Dec 2016 14:57:03 +0000 (+0100) Subject: selftest/selftesthelpers.py: let plantestsuite() use the env name in the test name X-Git-Tag: talloc-2.1.9~436 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5db045f98233ff6fda212000e23343a4ed0ab89;p=thirdparty%2Fsamba.git selftest/selftesthelpers.py: let plantestsuite() use the env name in the test name Signed-off-by: Stefan Metzmacher Reviewed-by: Andreas Schneider --- diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py index 1a1e080b12b..b0ece36d0f5 100644 --- a/selftest/selftesthelpers.py +++ b/selftest/selftesthelpers.py @@ -67,7 +67,11 @@ def plantestsuite(name, env, cmdline): :param cmdline: Command line to run """ print "-- TEST --" - print name + if env == "none": + fullname = name + else: + fullname = "%s(%s)" % (name, env) + print fullname print env if isinstance(cmdline, list): cmdline = " ".join(cmdline)