temp disable drive and provider unit tests

This commit is contained in:
Scott E. Graves 2024-10-22 11:53:24 -05:00
parent 2b6a88f8cb
commit 7c0d583435
2 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,7 @@
*/
#ifndef REPERTORY_TEST_INCLUDE_FIXTURES_WINFSP_FIXTURE_HPP
#define REPERTORY_TEST_INCLUDE_FIXTURES_WINFSP_FIXTURE_HPP
#if 0
#if defined(_WIN32)
#include "test_common.hpp"
@ -246,4 +247,5 @@ using winfsp_provider_types = ::testing::Types<s3_provider, sia_provider>;
} // namespace repertory
#endif // defined(_WIN32)
#endif // 0
#endif // REPERTORY_TEST_INCLUDE_FIXTURES_WINFSP_FIXTURE_HPP

View File

@ -20,11 +20,11 @@
SOFTWARE.
*/
#if defined(_WIN32)
#if 0
#include "fixtures/winfsp_fixture.hpp"
namespace repertory {
TYPED_TEST_CASE(winfsp_test, winfsp_provider_types);
TYPED_TEST(winfsp_test, root_is_created) {
@ -221,4 +221,5 @@ TYPED_TEST(winfsp_test, can_get_and_set_basic_info_test) {
}
} // namespace repertory
#endif // 0
#endif // defined(_WIN32)