aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-18 21:23:22 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-20 15:32:20 -0700
commit8ee553dac0297cfd75cbdd2d9cfdce37e22ef4ee (patch)
treeadce5564ea418e2c7427ca2e4488bc67177da636 /test
parentcb8fa961dcfddc0fa7ed864161b74de0b66ee5c0 (diff)
fuse_new(): don't accept options that don't make sense for end-users
Several options (use_ino, etc) depend on the file system implementation. Allowing them to be set from the command line makes no sense.
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_examples.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/test_examples.py b/test/test_examples.py
index 8868a98..5c611a1 100755
--- a/test/test_examples.py
+++ b/test/test_examples.py
@@ -67,8 +67,6 @@ def test_passthrough(tmpdir, name):
cmdline = base_cmdline + \
[ pjoin(basename, 'example', name),
'-f', mnt_dir ]
- if not name.endswith('_ll'):
- cmdline += [ '-o', 'use_ino,readdir_ino,kernel_cache' ]
mount_process = subprocess.Popen(cmdline)
try:
wait_for_mount(mount_process, mnt_dir)