From 0ae7689cca292312cb6c0c1317952cfd496db5e9 Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Sat, 22 Feb 2020 15:57:56 -0500 Subject: [PATCH] Remove non-portable tests --- test/static_string.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/static_string.cpp b/test/static_string.cpp index 5726f4b..2b2fc16 100644 --- a/test/static_string.cpp +++ b/test/static_string.cpp @@ -3709,32 +3709,26 @@ testToStaticString() { auto str = to_static_string(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos); - BOOST_TEST(str.find('+') != static_string<0>::npos); } { auto str = to_static_string(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos); - BOOST_TEST(str.find('+') != static_string<0>::npos); } { auto str = to_static_string(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos); - BOOST_TEST(str.find('+') != static_string<0>::npos); } { auto str = to_static_wstring(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos); - BOOST_TEST(str.find('+') != static_string<0>::npos); } { auto str = to_static_wstring(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos); - BOOST_TEST(str.find('+') != static_string<0>::npos); } { auto str = to_static_wstring(std::numeric_limits::max()); BOOST_TEST(str.find('e') != static_string<0>::npos); - BOOST_TEST(str.find('+') != static_string<0>::npos); } }