aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-25 21:06:14 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-28 14:43:44 -0700
commit695e45a4de50a9164766a7d73656b1afc9244a56 (patch)
treea926fe5a69ff606e9afb72bdfce7c30a7839c257 /test
parent3475bc3b5a5ee0fd1fd867e2af8804c9d93c3bd4 (diff)
Renamed fusermount / mount.fuse to fusermount3 / mount.fuse3
Diffstat (limited to 'test')
-rw-r--r--test/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util.py b/test/util.py
index baba20b..4f8e123 100644
--- a/test/util.py
+++ b/test/util.py
@@ -22,7 +22,7 @@ def wait_for_mount(mount_process, mnt_dir,
def cleanup(mnt_dir):
# Don't bother trying Valgrind if things already went wrong
- subprocess.call([pjoin(basename, 'util', 'fusermount'),
+ subprocess.call([pjoin(basename, 'util', 'fusermount3'),
'-z', '-u', mnt_dir],
stdout=subprocess.DEVNULL,
stderr=subprocess.STDOUT)
@@ -35,7 +35,7 @@ def umount(mount_process, mnt_dir):
else:
cmdline = []
- cmdline = cmdline + [ pjoin(basename, 'util', 'fusermount'),
+ cmdline = cmdline + [ pjoin(basename, 'util', 'fusermount3'),
'-z', '-u', mnt_dir ]
subprocess.check_call(cmdline)
assert not os.path.ismount(mnt_dir)