From: Stefano Rivera Date: Sat, 7 Oct 2017 09:38:57 +0200 Subject: Skip fsync tests when building with eatmydata Author: Stefano Rivera 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)