summaryrefslogtreecommitdiffhomepage
path: root/test/fuse/linux/fuse_base.h
diff options
context:
space:
mode:
authorBoyuan He <heboyuan@google.com>2020-08-18 20:59:28 +0000
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commit947088e10a15b5236f2af3206f67f27245ef2770 (patch)
tree3d9920547a1e8e3295ef68857fd096cb85ae7629 /test/fuse/linux/fuse_base.h
parent32044f94e9dfbb88c17d07b235b8ed5b07d2ff18 (diff)
Implement FUSE_RELEASE/RELEASEDIR
Fixes #3314
Diffstat (limited to 'test/fuse/linux/fuse_base.h')
-rw-r--r--test/fuse/linux/fuse_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fuse/linux/fuse_base.h b/test/fuse/linux/fuse_base.h
index 2474b763f..ff4c4499d 100644
--- a/test/fuse/linux/fuse_base.h
+++ b/test/fuse/linux/fuse_base.h
@@ -166,13 +166,13 @@ class FuseTest : public ::testing::Test {
protected:
TempPath mount_point_;
+ // Unmounts the mountpoint of the FUSE server.
+ void UnmountFuse();
+
private:
// Opens /dev/fuse and inherit the file descriptor for the FUSE server.
void MountFuse();
- // Unmounts the mountpoint of the FUSE server.
- void UnmountFuse();
-
// Creates a socketpair for communication and forks FUSE server.
void SetUpFuseServer();