projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0b9cb9
)
Do not run passthrough test when caching is active.
author
Nikolaus Rath
<Nikolaus@rath.org>
Tue, 9 Jul 2019 12:29:49 +0000
(
05:29
-0700)
committer
Nikolaus 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
patch
|
blob
|
history
diff --git
a/test/test_examples.py
b/test/test_examples.py
index 26f3b92f3f4c7181ec0eccb1b3e0ff5196a36f44..5d6dacc51acbd7320a414a422b1874a709bca301 100755
(executable)
--- a/
test/test_examples.py
+++ b/
test/test_examples.py
@@
-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)