// Copyright (c) 2012 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) #include #include #include "../include/safe_integer.hpp" #include "../include/automatic.hpp" template using safe_t = boost::numeric::safe< T, boost::numeric::automatic >; #include "test_and.hpp" #include "test.hpp" #include "test_values.hpp" // note: same test matrix as used in test_checked. Here we test all combinations // safe and unsafe integers. in test_checked we test all combinations of // integer primitives const char *test_and_result[VALUE_ARRAY_SIZE] = { // 0 0 0 0 // 01234567012345670123456701234567 // 01234567890123456789012345678901 /* 0*/ "................................", /* 1*/ "................................", /* 2*/ "................................", /* 3*/ "................................", /* 4*/ "................................", /* 5*/ "................................", /* 6*/ "................................", /* 7*/ "................................", /* 8*/ "................................", /* 9*/ "................................", /*10*/ "................................", /*11*/ "................................", /*12*/ "................................", /*13*/ "................................", /*14*/ "................................", /*15*/ "................................", // 0 0 0 0 // 01234567012345670123456701234567 // 01234567890123456789012345678901 /*16*/ "................................", /*17*/ "................................", /*18*/ "................................", /*19*/ "................................", /*20*/ "................................", /*21*/ "................................", /*22*/ "................................", /*23*/ "................................", /*24*/ "................................", /*25*/ "................................", /*26*/ "................................", /*27*/ "................................", /*28*/ "................................", /*29*/ "................................", /*30*/ "................................", /*31*/ "................................" }; #include #define TEST_IMPL(v1, v2, result) \ rval &= test_and( \ v1, \ v2, \ BOOST_PP_STRINGIZE(v1), \ BOOST_PP_STRINGIZE(v2), \ result \ ); /**/ #define TESTX(value_index1, value_index2) \ (std::cout << value_index1 << ',' << value_index2 << ','); \ TEST_IMPL( \ BOOST_PP_ARRAY_ELEM(value_index1, VALUES), \ BOOST_PP_ARRAY_ELEM(value_index2, VALUES), \ test_and_result[value_index1][value_index2] \ ) /**/ int main(int argc, char * argv[]){ // sanity check on test matrix - should be symetrical for(int i = 0; i < VALUE_ARRAY_SIZE; ++i) for(int j = i + 1; j < VALUE_ARRAY_SIZE; ++j) if(test_and_result[i][j] != test_and_result[j][i]){ std::cout << i << ',' << j << std::endl; return 1; } bool rval = true; TEST_EACH_VALUE_PAIR std::cout << (rval ? "success!" : "failure") << std::endl; return ! rval ; }