fixes
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
Scott E. Graves 2024-10-24 20:07:04 -05:00
parent b8cd42e235
commit 18d05ca635
2 changed files with 5 additions and 5 deletions

View File

@ -196,9 +196,11 @@ public:
}
static void execute_unmount() {
auto unmount_cmd = "./repertory -dd \"" + config->get_data_directory() +
"\"" + " " + utils::string::join(drive_args, ' ') +
" -unmount";
#if FUSE_USE_VERSION >= 30
auto unmount_cmd = "fusermount3 -u \"" + mount_location + "\"";
#else
auto unmount_cmd = "fusermount -u \"" + mount_location + "\"";
#endif
auto unmounted{false};
for (int i = 0; not unmounted && (i < 50); i++) {

View File

@ -535,7 +535,6 @@ TYPED_TEST(fuse_test, can_chmod_if_owner) {
TYPED_TEST(fuse_test, can_not_chmod_if_not_owner) {
std::string file_name{"chmod_test"};
auto file_path = this->create_root_file(file_name);
std::cout << file_path << std::endl;
EXPECT_EQ(-1, chmod(file_path.c_str(), S_IRUSR | S_IWUSR));
EXPECT_EQ(EPERM, errno);
@ -581,7 +580,6 @@ TYPED_TEST(fuse_test, can_chown_group_if_owner_and_a_member_of_the_group) {
EXPECT_EQ(0, stat64(file_path.c_str(), &unix_st));
EXPECT_EQ(0, chown(file_path.c_str(), static_cast<uid_t>(-1), getgid()));
std::cout << errno << std::endl;
std::this_thread::sleep_for(SLEEP_SECONDS);
struct stat64 unix_st2 {};