summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-12-30 19:34:53 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-12-30 19:34:53 +0000
commit5486efd4276983394d7fed1a54eccdbd37e54ce2 (patch)
treeaa39e5b66bc93e41755a893f9996c964f3c45d59
parentFix recursion in test function (diff)
downloadnetfs-5486efd4276983394d7fed1a54eccdbd37e54ce2.tar.bz2
netfs-5486efd4276983394d7fed1a54eccdbd37e54ce2.tar.xz
netfs-5486efd4276983394d7fed1a54eccdbd37e54ce2.zip
Add missing call to fuse_destroy in test
-rw-r--r--netfs/unittests/testFuse.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/netfs/unittests/testFuse.cpp b/netfs/unittests/testFuse.cpp
index ded7077..0a466d5 100644
--- a/netfs/unittests/testFuse.cpp
+++ b/netfs/unittests/testFuse.cpp
@@ -39,6 +39,7 @@ public:
th->join();
}
std::filesystem::remove(mntpnt);
+ ::fuse_destroy(fs);
}
FuseMountPoint(const FuseMountPoint &) = delete;