From: Andrew Bartlett Date: Fri, 17 Aug 2018 05:27:06 +0000 (+1200) Subject: selftest: Ensure all python3 tests are tagged (named) python3 X-Git-Tag: tdb-1.3.17~2012 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a19563eaacd660f09a49a775bdbc5ba1b25925c;p=thirdparty%2Fsamba.git selftest: Ensure all python3 tests are tagged (named) python3 This will help when splitting them into a distinct build. Signed-off-by: Andrew Bartlett Reviewed-by: Gary Lockyer --- diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 0b418663325..ec2a84a88c8 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -587,7 +587,7 @@ def planoldpythontestsuite(env, module, name=None, extra_path=[], environ={}, ex plantestsuite_loadlist(name, env, args) if py3_compatible and extra_python is not None: args[args.index(subunitrun)] = subunitrun3 - plantestsuite_loadlist(name, env, args) + plantestsuite_loadlist(name + ".python3", env, args) planoldpythontestsuite("ad_dc_ntvfs:local", "samba.tests.gensec", extra_args=['-U"$USERNAME%$PASSWORD"'], py3_compatible=True)