From: Andrew Bartlett Date: Wed, 25 Apr 2012 22:27:37 +0000 (+1000) Subject: selftest: push --target selection into plansmbtorturetestsuite X-Git-Tag: samba-4.0.0alpha20~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d913a94eebddd815db7babc80fa5048137df65f7;p=thirdparty%2Fsamba.git selftest: push --target selection into plansmbtorturetestsuite --- diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 70c8fe0e62c..1a110819626 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -28,7 +28,7 @@ configuration = "--configfile=$SMB_CONF_PATH" scriptdir=os.path.join(samba3srcdir, "../script/tests") torture_options = [configuration, "--maximum-runtime=$SELFTEST_MAXTIME", - "--target=samba3", "--basedir=$SELFTEST_TMPDIR", + "--basedir=$SELFTEST_TMPDIR", '--option="torture:winbindd_netbios_name=$SERVER"', '--option="torture:winbindd_netbios_domain=$DOMAIN"', '--option=torture:sharedelay=100000', @@ -53,8 +53,9 @@ def smb4torture_testsuites(prefix): return filter(lambda x: x.startswith(prefix), smb4torture_testsuite_list) def plansmbtorturetestsuite(name, env, options, description=''): - modname = "samba3.%s %s" % (name, description) - cmdline = "%s $LISTOPT %s %s" % (valgrindify(smb4torture), options, name) + target = "samba3" + modname = "%s.%s %s" % (target, name, description) + cmdline = "%s $LISTOPT %s --target=%s %s" % (valgrindify(smb4torture), options, target, name) if smb4torture_possible: plantestsuite_loadlist(modname, env, cmdline)