Do not run passthrough test when caching is active.
authorNikolaus Rath <Nikolaus@rath.org>
Tue, 9 Jul 2019 12:29:49 +0000 (05:29 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Tue, 9 Jul 2019 12:29:49 +0000 (05:29 -0700)
Readdir caching means that direct modifications to the source
directory will not be seen immediately, so the test becomes flaky.

Fixes: #416.
test/test_examples.py

index 26f3b92f3f4c7181ec0eccb1b3e0ff5196a36f44..5d6dacc51acbd7320a414a422b1874a709bca301 100755 (executable)
@@ -194,7 +194,8 @@ def test_passthrough_hp(short_tmpdir, cache, output_checker):
         tst_open_read(src_dir, mnt_dir)
         tst_open_write(src_dir, mnt_dir)
         tst_create(mnt_dir)
-        tst_passthrough(src_dir, mnt_dir)
+        if not cache:
+            tst_passthrough(src_dir, mnt_dir)
         tst_append(src_dir, mnt_dir)
         tst_seek(src_dir, mnt_dir)
         tst_mkdir(mnt_dir)