summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2017-01-17 20:34:23 -0800
committerNikolaus Rath <Nikolaus@rath.org>2018-01-05 11:59:46 +0100
commitdbcbbe6fb8ff5075f2e31b84666a988938d3e716 (patch)
treef5b50e79f568f987df705c30d7c53cc06b486f5f
parentf4847dec9aa9f3a8c434ac8f7bec05d2c6730e78 (diff)
Expect test_verify() to fail during build.
There is a race condition in the test that still needs to be fixed, but this should not cause the build to fail. Closes: #851375.
-rwxr-xr-xtests/t3_verify.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/t3_verify.py b/tests/t3_verify.py
index c2548cc..c3e4076 100755
--- a/tests/t3_verify.py
+++ b/tests/t3_verify.py
@@ -47,6 +47,11 @@ def db():
db.close()
dbfile.close()
+# There is something wrong with this test that still needs to
+# be fixed. Unfortunately, the failure is non-deterministic
+# and occurs only rarely. See e.g. http://bugs.debian.org/851375
+# for an example log.
+@pytest.mark.xfail
def test_retrieve(backend, db):
plain_backend = backend
backend = ComprencBackend(b'schnorz', ('zlib', 6), plain_backend)