Skip to content

Commit 78f9c6a

Browse files
test
1 parent 96a98f8 commit 78f9c6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_api.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ struct xsimd_api_test
158158
bb = (b == b);
159159
xsimd::store_as(b_data, bb, xsimd::aligned_mode());
160160
INFO(name, " batch_bool aligned");
161-
CHECK_UNARY(std::accumulate(b_data, b_data + size, true, std::logical_and<bool>()));
161+
std::vector<bool> b_res(size, true);
162+
CHECK_VECTOR_EQ(b_res, b_data);
162163

163164
delete[] b_data;
164165
}

0 commit comments

Comments
 (0)