fuse unit tests and fixes

This commit is contained in:
Scott E. Graves 2024-11-10 16:33:44 -06:00
parent 77299455f9
commit d7d9199f8e

View File

@ -61,7 +61,8 @@ TYPED_TEST(fuse_test, create_can_create_file_with_specific_perms) {
}
TYPED_TEST(fuse_test, create_can_create_file) {
auto file_path = this->create_file_path("create_test");
std::string file_name{"create_test"};
auto file_path = this->create_file_path(file_name);
auto handle = open(file_path.c_str(), O_CREAT, ACCESSPERMS);
EXPECT_LE(1, handle);