Skip to content

Commit

Permalink
Add array_eq_test.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Jan 12, 2025
1 parent 7223d3d commit ff5eb67
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ run array_fill_test.cpp ;
run array_assign_test.cpp ;
run array_swap_test.cpp ;
run array_swap_test2.cpp ;
run array_eq_test.cpp ;

#

Expand Down
83 changes: 83 additions & 0 deletions test/array_eq_test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
// Copyright 2025 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt)

#include <boost/array.hpp>
#include <boost/core/lightweight_test.hpp>
#include <cstddef>

template<class T, std::size_t N> void test()
{
{
boost::array<T, N> const a1 = {};
boost::array<T, N> const a2 = {};

BOOST_TEST( a1 == a2 );
BOOST_TEST_NOT( a1 != a2 );
}

for( std::size_t i = 0; i < N; ++i )
{
boost::array<T, N> const a1 = {};

boost::array<T, N> a2 = a1;
a2[ i ] = 1;

BOOST_TEST( a1 != a2 );
BOOST_TEST_NOT( a1 == a2 );

boost::array<T, N> const a3 = a2;

BOOST_TEST( a1 != a3 );
BOOST_TEST_NOT( a1 == a3 );
}

{
boost::array<T, N> a1 = {};
boost::array<T, N> a2 = {};

a1.fill( 1 );
a2.fill( 1 );

BOOST_TEST( a1 == a2 );
BOOST_TEST_NOT( a1 != a2 );
}
}

template<class T> void test2()
{
{
boost::array<T, 4> const a1 = {{ 1, 2, 3, 4 }};
boost::array<T, 4> const a2 = {{ 1, 2, 3, 4 }};

BOOST_TEST( a1 == a2 );
BOOST_TEST_NOT( a1 != a2 );
}

for( std::size_t i = 0; i < 4; ++i )
{
boost::array<T, 4> const a1 = {{ 1, 2, 3, 4 }};

boost::array<T, 4> a2 = a1;
a2[ i ] = 0;

BOOST_TEST( a1 != a2 );
BOOST_TEST_NOT( a1 == a2 );

boost::array<T, 4> const a3 = a2;

BOOST_TEST( a1 != a3 );
BOOST_TEST_NOT( a1 == a3 );
}
}

int main()
{
test<int, 0>();
test<int, 1>();
test<int, 7>();

test2<int>();

return boost::report_errors();
}

0 comments on commit ff5eb67

Please sign in to comment.