Skip to content

Commit

Permalink
Disable files tests on windows platform
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Oct 16, 2024
1 parent b88129b commit 6b8d082
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_md5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,10 @@ int main()
test_random_values<wchar_t>();
test_random_piecewise_values<wchar_t>();

// The Windows file system returns a different result than on UNIX platforms
#if defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))
files_test();
#endif

return boost::report_errors();
}

0 comments on commit 6b8d082

Please sign in to comment.