disable tests

This commit is contained in:
Scott E. Graves 2024-10-17 12:40:24 -05:00
parent d2ec6f1f10
commit 172ea8bc00
2 changed files with 8 additions and 2 deletions

View File

@ -19,6 +19,8 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
#if 0
#include "test_common.hpp" #include "test_common.hpp"
#include "comm/curl/curl_comm.hpp" #include "comm/curl/curl_comm.hpp"
@ -42,7 +44,7 @@ using gid_t = std::uint32_t;
using uid_t = std::uint32_t; using uid_t = std::uint32_t;
static constexpr auto getgid() -> gid_t { return 0U; } static constexpr auto getgid() -> gid_t { return 0U; }
static constexpr auto getuid() -> uid_t { return 0U; } static constexpr auto getuid() -> uid_t { return 0U; }
#endif #endif // defined(_WIN32)
const auto check_forced_dirs = [](const repertory::directory_item_list &list) { const auto check_forced_dirs = [](const repertory::directory_item_list &list) {
static auto forced_dirs = std::array<std::string, 2>{".", ".."}; static auto forced_dirs = std::array<std::string, 2>{".", ".."};
@ -747,3 +749,5 @@ TEST(providers, sia_provider) {
event_system::instance().stop(); event_system::instance().stop();
} }
} // namespace repertory } // namespace repertory
#endif // 0

View File

@ -19,6 +19,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
#if 0
#if defined(_WIN32) #if defined(_WIN32)
#include "test_common.hpp" #include "test_common.hpp"
@ -380,4 +381,5 @@ TEST_F(winfsp_test, all_tests) {
} }
} // namespace repertory } // namespace repertory
#endif #endif // defined(_WIN32)
#endif // 0