mirror of
https://github.com/boostorg/endian.git
synced 2025-07-29 20:17:26 +02:00
Add more tests to endian_reverse_test3/4
This commit is contained in:
@ -11,8 +11,15 @@ template<class T> void test_reverse( T x )
|
||||
{
|
||||
using boost::endian::endian_reverse;
|
||||
|
||||
T x2 = endian_reverse( endian_reverse( x ) );
|
||||
T x2( x );
|
||||
|
||||
x2 = endian_reverse( endian_reverse( x2 ) );
|
||||
BOOST_TEST( x == x2 );
|
||||
|
||||
x2 = boost::endian::native_to_little( boost::endian::little_to_native( x2 ) );
|
||||
BOOST_TEST( x == x2 );
|
||||
|
||||
x2 = boost::endian::native_to_big( boost::endian::big_to_native( x2 ) );
|
||||
BOOST_TEST( x == x2 );
|
||||
}
|
||||
|
||||
@ -24,7 +31,14 @@ template<class T> void test_reverse_inplace( T x )
|
||||
|
||||
endian_reverse_inplace( x2 );
|
||||
endian_reverse_inplace( x2 );
|
||||
BOOST_TEST( x == x2 );
|
||||
|
||||
boost::endian::native_to_little_inplace( x2 );
|
||||
boost::endian::little_to_native_inplace( x2 );
|
||||
BOOST_TEST( x == x2 );
|
||||
|
||||
boost::endian::native_to_big_inplace( x2 );
|
||||
boost::endian::big_to_native_inplace( x2 );
|
||||
BOOST_TEST( x == x2 );
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,14 @@ template<class T> void test_reverse_inplace( T x )
|
||||
|
||||
endian_reverse_inplace( x2 );
|
||||
endian_reverse_inplace( x2 );
|
||||
BOOST_TEST( x == x2 );
|
||||
|
||||
boost::endian::native_to_little_inplace( x2 );
|
||||
boost::endian::little_to_native_inplace( x2 );
|
||||
BOOST_TEST( x == x2 );
|
||||
|
||||
boost::endian::native_to_big_inplace( x2 );
|
||||
boost::endian::big_to_native_inplace( x2 );
|
||||
BOOST_TEST( x == x2 );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user