diff options
-rw-r--r-- | netfs/unittests/testFuse.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/netfs/unittests/testFuse.cpp b/netfs/unittests/testFuse.cpp index ea58cc7..eebc37b 100644 --- a/netfs/unittests/testFuse.cpp +++ b/netfs/unittests/testFuse.cpp @@ -22,6 +22,7 @@ public: std::filesystem::remove(mntpnt); std::filesystem::create_directory(mntpnt); fuse_args fargs {}; + ::fuse_opt_add_arg(&fargs, selfExe.c_str()); ::fuse_opt_add_arg(&fargs, "-onoauto_cache"); ::fuse_opt_add_arg(&fargs, "-oattr_timeout=0"); ::fuse_opt_add_arg(&fargs, "-oac_attr_timeout=0"); |