This commit is contained in:
2024-08-07 13:12:56 -05:00
parent b4999323da
commit eaae2fea77
6 changed files with 45 additions and 30 deletions

View File

@ -934,7 +934,7 @@ TEST(remote_fuse, all_tests) {
event_system::instance().start();
#if defined(_WIN32)
mount_location_ = std::string(test::get_test_output_dir(), 2);
mount_location_ = test::get_test_output_dir().substr(0, 2);
mock_winfsp_drive drive(mount_location_);
remote_server server(config, drive, mount_location_);
#else

View File

@ -491,7 +491,6 @@ TEST(remote_winfsp, all_tests) {
EXPECT_TRUE(found_port);
if (found_port) {
console_consumer c;
app_config config(provider_type::remote, win_remote_dir);
config.set_remote_host_name_or_ip("localhost");
config.set_remote_port(port);
@ -501,7 +500,7 @@ TEST(remote_winfsp, all_tests) {
event_system::instance().start();
#if defined(_WIN32)
mount_location_ = std::string(test::get_test_output_dir(), 2);
mount_location_ = test::get_test_output_dir().substr(0, 2);
mock_winfsp_drive drive(mount_location_);
remote_server server(config, drive, mount_location_);
#else