From 695a7b01950e1561b61a72b9d5fe4653617004f2 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 29 Oct 2024 14:45:19 -0500 Subject: [PATCH] winfsp unit tests and fixes --- repertory/repertory_test/include/fixtures/winfsp_fixture.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/repertory/repertory_test/include/fixtures/winfsp_fixture.hpp b/repertory/repertory_test/include/fixtures/winfsp_fixture.hpp index d91bb193..8429e18c 100644 --- a/repertory/repertory_test/include/fixtures/winfsp_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/winfsp_fixture.hpp @@ -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);