1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

selftest: use an additional directory of knownfail/flapping files

This makes it easier to add a temporary knownfail to cover a patch
series.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Sat Jun  3 13:55:41 CEST 2017 on sn-devel-144
This commit is contained in:
Douglas Bagnall 2017-06-01 15:26:48 +12:00 committed by Andrew Bartlett
parent b6201407a3
commit 5b60600b32
5 changed files with 62 additions and 22 deletions

View File

@ -27,11 +27,12 @@ sys.path.insert(0, "bin/python")
import subunithelper
parser = optparse.OptionParser("filter-subunit [options] < instream > outstream")
parser.add_option("--expected-failures", type="string",
help="File containing list of regexes matching tests to consider known "
"failures")
parser.add_option("--flapping", type="string",
help="File containing list of flapping tests, of which to ignore results.")
parser.add_option("--expected-failures", type="string", action="append",
help=("File or directory containing lists of regexes matching tests "
"to consider known failures"))
parser.add_option("--flapping", type="string", action="append",
help=("File or directory containing lists of flapping tests, "
"of which to ignore results."))
parser.add_option("--strip-passed-output", action="store_true",
help="Whether to strip output from tests that passed")
parser.add_option("--fail-immediately", action="store_true",
@ -66,13 +67,13 @@ if opts.perf_test_output:
sys.exit(1)
if opts.expected_failures:
expected_failures = subunithelper.read_test_regexes(opts.expected_failures)
expected_failures = subunithelper.read_test_regexes(*opts.expected_failures)
else:
expected_failures = {}
if opts.flapping:
flapping = subunithelper.read_test_regexes(opts.flapping)
flapping = subunithelper.read_test_regexes(*opts.flapping)
else:
flapping = {}

View File

@ -0,0 +1,14 @@
# Files in this directory contain lists of regular expressions
# matching the names of tests that are that are flapping. In other
# words, they sometimes succeed and sometimes fail, depending on
# external factors.
#
# "make test" will not report failures or successes for tests listed here.
#
# DO NOT ADD TESTS HERE UNLESS THEY ARE ACTUALLY FLAPPING
#
# It is much better to add known failing tests to 'knownfail', so the
# test system can warn when they actually start passing.
#
# Empty lines and lines begining with '#' are ignored.
# Please don't add tests to this README!

View File

@ -0,0 +1,8 @@
# Files in this directory contain lists of regular expressions
# matching the names of tests that are temporarily expected to fail.
#
# "make test" will not report failures for tests listed here and will consider
# a successful run for any of these tests an error.
#
# Empty lines and lines begining with '#' are ignored.
# Please don't add tests to this README!

View File

@ -20,6 +20,7 @@ __all__ = ['parse_results']
import datetime
import re
import sys
import os
from samba import subunit
from samba.subunit.run import TestProtocolClient
from samba.subunit import iso8601
@ -228,21 +229,33 @@ class SubunitOps(TestProtocolClient,TestsuiteEnabledTestResult):
self._stream.write(msg)
def read_test_regexes(name):
def read_test_regexes(*names):
ret = {}
f = open(name, 'r')
try:
for l in f:
l = l.strip()
if l == "" or l[0] == "#":
continue
if "#" in l:
(regex, reason) = l.split("#", 1)
ret[regex.strip()] = reason.strip()
else:
ret[l] = None
finally:
f.close()
files = []
for name in names:
# if we are given a directory, we read all the files it contains
# (except the ones that end with "~").
if os.path.isdir(name):
files.extend([os.path.join(name, x)
for x in os.listdir(name)
if x[-1] != '~'])
else:
files.append(name)
for filename in files:
f = open(filename, 'r')
try:
for l in f:
l = l.strip()
if l == "" or l[0] == "#":
continue
if "#" in l:
(regex, reason) = l.split("#", 1)
ret[regex.strip()] = reason.strip()
else:
ret[l] = None
finally:
f.close()
return ret

View File

@ -121,7 +121,11 @@ def cmd_testonly(opt):
env.SUBUNIT_FORMATTER = '${PYTHON} -u ${srcdir}/selftest/format-subunit-json --prefix=${SELFTEST_PREFIX}'
else:
env.SUBUNIT_FORMATTER = '${PYTHON} -u ${srcdir}/selftest/format-subunit --prefix=${SELFTEST_PREFIX} --immediate'
env.FILTER_XFAIL = '${PYTHON} -u ${srcdir}/selftest/filter-subunit --expected-failures=${srcdir}/selftest/knownfail --flapping=${srcdir}/selftest/flapping'
env.FILTER_XFAIL = ('${PYTHON} -u ${srcdir}/selftest/filter-subunit '
'--expected-failures=${srcdir}/selftest/knownfail '
'--expected-failures=${srcdir}/selftest/knownfail.d '
'--flapping=${srcdir}/selftest/flapping '
'--flapping=${srcdir}/selftest/flapping.d')
if Options.options.FAIL_IMMEDIATELY:
env.FILTER_XFAIL += ' --fail-immediately'