fuse unit tests and fixes
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2024-11-10 10:24:13 -06:00
parent 58107e6ed8
commit c276cb8979

View File

@ -269,7 +269,7 @@ public:
}
EXPECT_EQ(0, close(fd));
std::this_thread::sleep_for(SLEEP_SECONDS);
// std::this_thread::sleep_for(SLEEP_SECONDS);
return file_path;
}
@ -294,6 +294,7 @@ public:
{META_UID, "0"},
{META_GID, "0"},
});
std::this_thread::sleep_for(SLEEP_SECONDS);
return file_path;
}
@ -343,6 +344,7 @@ public:
{META_UID, std::to_string(getuid())},
{META_GID, std::to_string(getgid())},
});
std::this_thread::sleep_for(SLEEP_SECONDS);
unlink_file_and_test(file_path);
}