summaryrefslogtreecommitdiff
path: root/debian/patches/test_fsync-eatmydata
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/test_fsync-eatmydata')
-rw-r--r--debian/patches/test_fsync-eatmydata24
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/patches/test_fsync-eatmydata b/debian/patches/test_fsync-eatmydata
new file mode 100644
index 0000000..f68c307
--- /dev/null
+++ b/debian/patches/test_fsync-eatmydata
@@ -0,0 +1,24 @@
+From: Stefano Rivera <stefanor@debian.org>
+Date: Sat, 7 Oct 2017 09:38:57 +0200
+Subject: Skip fsync tests when building with eatmydata
+
+Author: Stefano Rivera <stefanor@debian.org>
+Forwarded: not-needed
+Last-Update: 2012-02-06
+---
+ lib-python/2.7/test/test_os.py | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/lib-python/2.7/test/test_os.py b/lib-python/2.7/test/test_os.py
+index 6a06340..c4be901 100644
+--- a/lib-python/2.7/test/test_os.py
++++ b/lib-python/2.7/test/test_os.py
+@@ -654,6 +654,8 @@ class TestInvalidFD(unittest.TestCase):
+ except OSError as e:
+ self.assertEqual(e.errno, errno.EBADF)
+ else:
++ if f.__name__.endswith('sync'):
++ return # eatmydata won't raise an OSError
+ self.fail("%r didn't raise an OSError with a bad file descriptor"
+ % f)
+