id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 12814,BOOST_TEST_EQ has wrong behavior for const char*,Hans Dembinski ,Peter Dimov,"BOOST_TEST_EQ internally compares its arguments using test_eq_impl, which calls operator==. If BOOST_TEST_EQ is called with two c-strings of type const char*, it compares the addresses, not the strings. The following fails, while it should succeed: const char* s1 = ""abc""; std::string s2(""abc""); BOOST_TEST_EQ(s1, s2.c_str()); // fails Solution: Add an overload for boost::detail::test_eq_impl which compares const char* using std::strcmp. Similarly for test_ne_impl.",Bugs,new,To Be Determined,core,Boost 1.61.0,Problem,,,