From 695e45a4de50a9164766a7d73656b1afc9244a56 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Tue, 25 Oct 2016 21:06:14 -0700 Subject: Renamed fusermount / mount.fuse to fusermount3 / mount.fuse3 --- test/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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) -- cgit v1.2.3