From ebe78d1fbd9d4da012825195e11477539c12cbd3 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 8 Aug 2024 20:11:53 -0500 Subject: [PATCH] updated build system --- repertory/repertory_test/src/remote_fuse_test.cpp | 4 ++-- repertory/repertory_test/src/remote_winfsp_test.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/repertory/repertory_test/src/remote_fuse_test.cpp b/repertory/repertory_test/src/remote_fuse_test.cpp index 494e3c9f..ae37141d 100644 --- a/repertory/repertory_test/src/remote_fuse_test.cpp +++ b/repertory/repertory_test/src/remote_fuse_test.cpp @@ -934,11 +934,11 @@ TEST(remote_fuse, all_tests) { event_system::instance().start(); #if defined(_WIN32) - mount_location_ = test::get_test_output_dir().substr(0, 2); + mount_location_ = fuse_remote_dir.substr(0, 2); mock_winfsp_drive drive(mount_location_); remote_server server(config, drive, mount_location_); #else - mount_location_ = utils::path::absolute("."); + mount_location_ = fuse_remote_dir; mock_fuse_drive drive(mount_location_); remote_server server(config, drive, mount_location_); #endif diff --git a/repertory/repertory_test/src/remote_winfsp_test.cpp b/repertory/repertory_test/src/remote_winfsp_test.cpp index 40a334f6..36f846ca 100644 --- a/repertory/repertory_test/src/remote_winfsp_test.cpp +++ b/repertory/repertory_test/src/remote_winfsp_test.cpp @@ -501,11 +501,11 @@ TEST(remote_winfsp, all_tests) { event_system::instance().start(); #if defined(_WIN32) - mount_location_ = test::get_test_output_dir().substr(0, 2); + mount_location_ = win_remote_dir.substr(0, 2); mock_winfsp_drive drive(mount_location_); remote_server server(config, drive, mount_location_); #else - mount_location_ = utils::path::absolute("."); + mount_location_ = win_remote_dir; mock_fuse_drive drive(mount_location_); remote_fuse::remote_server server(config, drive, mount_location_); #endif