// Copyright (c) 2015 Robert Ramey // // 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) #ifndef BOOST_TEST_LESS_THAN_HPP #define BOOST_TEST_LESS_THAN_HPP #include #include #include // works for both GCC and clang #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-value" template bool test_less_than( T1 v1, T2 v2, const char *av1, const char *av2, char expected_result ){ using namespace boost::safe_numerics; std::cout << "testing"<< std::boolalpha << std::endl; { safe_t t1 = v1; std::cout << "safe<" << av1 << "> < " << av2 << " -> "; static_assert( boost::safe_numerics::is_safe >::value, "safe_t not safe!" ); try{ // use auto to avoid checking assignment. auto result = t1 < v2; std::cout << make_result_display(result); if(expected_result == 'x'){ std::cout << " ! = "<< av1 << " < " << av2 << " failed to detect error in less than" << std::endl; t1 < v2; return false; } if(result != (expected_result == '<')){ std::cout << " ! = "<< av1 << " < " << av2 << " produced the wrong answer" << std::endl; t1 < v2; return false; } std::cout << std::endl; } catch(const std::exception &){ if(expected_result != 'x'){ std::cout << " == "<< av1 << " < " << av2 << " erroneously detected error in less than" << std::endl; try{ t1 < v2; } catch(const std::exception &){} return false; } std::cout << std::endl; } } { safe_t t2 = v2; std::cout << av1 << " < " << "safe<" << av2 << "> -> "; static_assert( boost::safe_numerics::is_safe >::value, "safe_t not safe!" ); try{ // use auto to avoid checking assignment. auto result = v1 < t2; std::cout << make_result_display(result); if(expected_result == 'x'){ std::cout << " ! = "<< av1 << " < " << av2 << " failed to detect error in less than" << std::endl; v1 < t2; return false; } if(result != (expected_result == '<')){ std::cout << " ! = "<< av1 << " < " << av2 << " produced the wrong answer" << std::endl; v1 < t2; return false; } std::cout << std::endl; } catch(const std::exception &){ if(expected_result != 'x'){ std::cout << " == "<< av1 << " < " << av2 << " erroneously detected error in less than" << std::endl; try{ v1 < t2; } catch(const std::exception &){} return false; } std::cout << std::endl; } } { safe_t t1 = v1; safe_t t2 = v2; std::cout << "safe<" << av1 << "> < " << "safe<" << av2 << "> -> "; try{ // use auto to avoid checking assignment. auto result = t1 < t2; std::cout << make_result_display(result); if(expected_result == 'x'){ std::cout << " ! = "<< av1 << " < " << av2 << " failed to detect error in less than" << std::endl; t1 < t2; return false; } if(result != (expected_result == '<')){ std::cout << " ! = "<< av1 << " < " << av2 << " produced the wrong answer" << std::endl; t1 < t2; return false; } std::cout << std::endl; } catch(const std::exception &){ if(expected_result == '.'){ std::cout << " == "<< av1 << " < " << av2 << " erroneously detected error in less than" << std::endl; try{ t1 < t2; } catch(const std::exception &){} return false; } std::cout << std::endl; } } return true; // correct result } #pragma GCC diagnostic pop #endif // BOOST_TEST_SUBTRACT