Skip to content

Commit

Permalink
Enable some layout_stride property tests which are already fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed Oct 20, 2023
1 parent 0dd03f4 commit 9ff2207
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ test_layout_mapping_stride(E ext, std::array<typename E::index_type, E::rank()>
assert(c_m.strides() == strides);
assert(m.extents() == ext);
assert(c_m.extents() == ext);
//assert(M::is_unique() == true); //FIXME
assert(M::is_unique() == true);
assert(m.is_exhaustive() == exhaustive);
assert(c_m.is_exhaustive() == exhaustive);
//assert(M::is_strided() == true); //FIXME
assert(M::is_strided() == true);
assert(M::is_always_unique() == true);
assert(M::is_always_exhaustive() == false);
assert(M::is_always_strided() == true);
Expand All @@ -67,10 +67,10 @@ test_layout_mapping_stride(E ext, std::array<typename E::index_type, E::rank()>
ASSERT_NOEXCEPT(c_m.strides());
ASSERT_NOEXCEPT(m.extents());
ASSERT_NOEXCEPT(c_m.extents());
//ASSERT_NOEXCEPT(M::is_unique()); //FIXME
ASSERT_NOEXCEPT(M::is_unique());
ASSERT_NOEXCEPT(m.is_exhaustive());
ASSERT_NOEXCEPT(c_m.is_exhaustive());
//ASSERT_NOEXCEPT(M::is_strided()); //FIXME
ASSERT_NOEXCEPT(M::is_strided());
ASSERT_NOEXCEPT(M::is_always_unique());
ASSERT_NOEXCEPT(M::is_always_exhaustive());
ASSERT_NOEXCEPT(M::is_always_strided());
Expand Down

0 comments on commit 9ff2207

Please sign in to comment.