diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-11-01 21:17:39 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2014-11-22 02:23:10 +0100 |
commit | ee281c61d01b5fb167571b8ace5e739758100db6 (patch) | |
tree | 1fe8b2d09a5432619400205c25505917f8da80fe /source4/scripting/bin | |
parent | 24035a6b3ed5ffdb1e75ebd375c3f7c2129742ff (diff) | |
download | samba-ee281c61d01b5fb167571b8ace5e739758100db6.tar.gz samba-ee281c61d01b5fb167571b8ace5e739758100db6.tar.xz samba-ee281c61d01b5fb167571b8ace5e739758100db6.zip |
Move option handling into samba.tests.subunitrun.
Change-Id: I65a73b74854af636413f4f284147f3bcf28b6f82
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-x | source4/scripting/bin/subunitrun | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/source4/scripting/bin/subunitrun b/source4/scripting/bin/subunitrun index 48b507a7b4..99d53196ee 100755 --- a/source4/scripting/bin/subunitrun +++ b/source4/scripting/bin/subunitrun @@ -10,18 +10,18 @@ # get e.g. credentials passed via command-line options to this # script. -# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2011 -# +# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2014 +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # @@ -78,10 +78,8 @@ parser.add_option_group(subunitopts) opts, args = parser.parse_args() -if getattr(opts, "listtests", False): - args.insert(0, "--list") -else: +if not getattr(opts, "listtests", False): lp = sambaopts.get_loadparm() samba.tests.cmdline_credentials = credopts.get_credentials(lp) -TestProgram(module=None, argv=[sys.argv[0]] + args) +TestProgram(module=None, args=args, opts=subunitopts) |