Skip system_category_test_utf8; comparing against FormatMessageA isn't going to work. Fixes #38.

This commit is contained in:
Peter Dimov
2019-03-16 19:44:43 +02:00
parent df78f08bd2
commit ca882f286c

View File

@ -18,6 +18,16 @@
//
#if defined(BOOST_WINDOWS_API) && defined(BOOST_SYSTEM_USE_UTF8)
#include <boost/config/pragma_message.hpp>
BOOST_PRAGMA_MESSAGE( "Skipping test due to BOOST_WINDOWS_API && BOOST_SYSTEM_USE_UTF8" )
int main() {}
#else
#if defined(BOOST_WINDOWS_API)
#include <windows.h>
@ -114,3 +124,5 @@ int main()
return boost::report_errors();
}
#endif // #if defined(BOOST_WINDOWS_API) && defined(BOOST_SYSTEM_USE_UTF8)