more compared code following suggestion from Glen Fernandes and testing expected failures

This commit is contained in:
hans.dembinski@gmail.com
2017-02-07 15:05:08 +00:00
parent cc5472623f
commit 4570cced27
4 changed files with 51 additions and 45 deletions

View File

@@ -0,0 +1,18 @@
//
// Negative test for BOOST_TEST_EQ on const char*
//
// Copyright (c) 2017 Hans Dembinski
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/core/lightweight_test.hpp>
int main()
{
BOOST_TEST_EQ("xab"+1 , "yab"+1); // compares addresses, not cstrings
return boost::report_errors();
}