aboutsummaryrefslogtreecommitdiff
path: root/test/test_sshfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_sshfs.py')
-rwxr-xr-xtest/test_sshfs.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/test/test_sshfs.py b/test/test_sshfs.py
index 0c8917b..caa7fda 100755
--- a/test/test_sshfs.py
+++ b/test/test_sshfs.py
@@ -33,9 +33,7 @@ def name_generator(__ctr=[0]):
@pytest.mark.parametrize("debug", (False, True))
@pytest.mark.parametrize("cache_timeout", (0,1))
@pytest.mark.parametrize("sync_rd", (True, False))
-@pytest.mark.parametrize("writeback", (False, True))
-def test_sshfs(tmpdir, debug, cache_timeout, sync_rd,
- writeback, capfd):
+def test_sshfs(tmpdir, debug, cache_timeout, sync_rd, capfd):
# Avoid false positives from debug messages
#if debug:
@@ -65,12 +63,6 @@ def test_sshfs(tmpdir, debug, cache_timeout, sync_rd,
if sync_rd:
cmdline += [ '-o', 'sync_readdir' ]
- if writeback:
- cmdline += [ '-o', 'writeback_cache=yes',
- '-o', 'unreliable_append' ]
- else:
- cmdline += [ '-o', 'writeback_cache=no' ]
-
# SSHFS Cache
if cache_timeout == 0:
cmdline += [ '-o', 'dir_cache=no' ]