test: Run symlink regression tests on Windows

This commit is contained in:
MarcoFalke
2022-02-18 12:58:31 +01:00
parent 66636ca438
commit fad7ddf9e3
2 changed files with 15 additions and 13 deletions

View File

@@ -152,7 +152,7 @@ BOOST_AUTO_TEST_CASE(rename)
fs::remove(path2);
}
#ifndef WIN32
#ifndef __MINGW64__ // no symlinks on mingw
BOOST_AUTO_TEST_CASE(create_directories)
{
// Test fs::create_directories workaround.
@@ -174,6 +174,6 @@ BOOST_AUTO_TEST_CASE(create_directories)
fs::remove(symlink);
fs::remove(dir);
}
#endif // WIN32
#endif // __MINGW64__
BOOST_AUTO_TEST_SUITE_END()