diff -Nru s3ql-2.21+dfsg/debian/changelog s3ql-2.21+dfsg/debian/changelog --- s3ql-2.21+dfsg/debian/changelog 2017-01-06 19:29:27.000000000 +0000 +++ s3ql-2.21+dfsg/debian/changelog 2017-01-18 04:35:21.000000000 +0000 @@ -1,3 +1,11 @@ +s3ql (2.21+dfsg-3) unstable; urgency=medium + + * 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. + + -- Nikolaus Rath Tue, 17 Jan 2017 20:35:21 -0800 + s3ql (2.21+dfsg-2) unstable; urgency=medium * Bumped python3-pytest dependency to minimum version required diff -Nru s3ql-2.21+dfsg/debian/.git-dpm s3ql-2.21+dfsg/debian/.git-dpm --- s3ql-2.21+dfsg/debian/.git-dpm 2017-01-06 19:27:07.000000000 +0000 +++ s3ql-2.21+dfsg/debian/.git-dpm 2017-01-18 04:35:00.000000000 +0000 @@ -1,6 +1,6 @@ # see git-dpm(1) from git-dpm package -f2e46743e3b446d31cdda56846e7d2e7c384e2a0 -f2e46743e3b446d31cdda56846e7d2e7c384e2a0 +01f8764bc923a57dfdf45c5729d0be669233c3b2 +01f8764bc923a57dfdf45c5729d0be669233c3b2 7b20150ca23d8ce6e325799dbf735d26dfd0f03e 7b20150ca23d8ce6e325799dbf735d26dfd0f03e s3ql_2.21+dfsg.orig.tar.xz diff -Nru s3ql-2.21+dfsg/debian/patches/0006-Expect-test_verify-to-fail-during-build.patch s3ql-2.21+dfsg/debian/patches/0006-Expect-test_verify-to-fail-during-build.patch --- s3ql-2.21+dfsg/debian/patches/0006-Expect-test_verify-to-fail-during-build.patch 1970-01-01 00:00:00.000000000 +0000 +++ s3ql-2.21+dfsg/debian/patches/0006-Expect-test_verify-to-fail-during-build.patch 2017-01-18 04:35:00.000000000 +0000 @@ -0,0 +1,27 @@ +From 01f8764bc923a57dfdf45c5729d0be669233c3b2 Mon Sep 17 00:00:00 2001 +From: Nikolaus Rath +Date: Tue, 17 Jan 2017 20:34:23 -0800 +Subject: 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. +--- + tests/t3_verify.py | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/tests/t3_verify.py b/tests/t3_verify.py +index c2548..c3e40 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) diff -Nru s3ql-2.21+dfsg/debian/patches/series s3ql-2.21+dfsg/debian/patches/series --- s3ql-2.21+dfsg/debian/patches/series 2017-01-06 19:27:07.000000000 +0000 +++ s3ql-2.21+dfsg/debian/patches/series 2017-01-18 04:35:00.000000000 +0000 @@ -3,3 +3,4 @@ ignore_cython_warnings.diff support_jessie_upgrade.diff show_pdflatex_output.diff +0006-Expect-test_verify-to-fail-during-build.patch