1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

filter-subunit: Drop support for allow_empty_output hack.

Change-Id: If4f336ef770202dcf69484b9bccc6c0c80bd5f9b
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue Oct 14 09:06:05 CEST 2014 on sn-devel-104
This commit is contained in:
Jelmer Vernooij 2014-10-12 21:18:08 -07:00 committed by Andrew Bartlett
parent 77b72d4c8e
commit 0c2c75a2d7

View File

@ -89,7 +89,7 @@ def valgrindify(cmdline):
return valgrind + " " + cmdline
def plantestsuite(name, env, cmdline, allow_empty_output=False):
def plantestsuite(name, env, cmdline):
"""Plan a test suite.
:param name: Testsuite name
@ -101,17 +101,13 @@ def plantestsuite(name, env, cmdline, allow_empty_output=False):
print env
if isinstance(cmdline, list):
cmdline = " ".join(cmdline)
filter_subunit_args = []
if not allow_empty_output:
filter_subunit_args.append("--fail-on-empty")
filter_subunit_args = ["--fail-on-empty"]
if "$LISTOPT" in cmdline:
filter_subunit_args.append("$LISTOPT")
print "%s 2>&1 | %s/selftest/filter-subunit %s --prefix=\"%s.\" --suffix=\"(%s)\"" % (cmdline,
srcdir(),
" ".join(filter_subunit_args),
name, env)
if allow_empty_output:
print >>sys.stderr, "WARNING: allowing empty subunit output from %s" % name
def add_prefix(prefix, env, support_list=False):