diff --git a/tests/filesystem_test.cpp b/tests/filesystem_test.cpp index e22c7c7..16e4059 100644 --- a/tests/filesystem_test.cpp +++ b/tests/filesystem_test.cpp @@ -20,8 +20,10 @@ int main() { g_assert(!paths.empty()); for(auto &path : paths) { g_assert(!path.empty()); +#ifndef _WIN32 g_assert(boost::filesystem::exists(path)); g_assert(boost::filesystem::is_directory(path)); +#endif } }