winfsp unit tests and fixes

This commit is contained in:
Scott E. Graves 2024-10-29 14:45:19 -05:00
parent ff13142093
commit 695a7b0195

View File

@ -195,8 +195,9 @@ public:
}
static void execute_mount() {
auto mount_cmd = "start .\\repertory.exe -dd \"" + config->get_data_directory() +
"\"" + " " + utils::string::join(drive_args, ' ');
auto mount_cmd = "start .\\repertory.exe -dd \"" +
config->get_data_directory() + "\"" + " " +
utils::string::join(drive_args, ' ');
std::cout << "mount command: " << mount_cmd << std::endl;
ASSERT_EQ(0, system(mount_cmd.c_str()));
std::this_thread::sleep_for(5s);