Skip to content

Commit

Permalink
fix test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrit authored Dec 2, 2023
1 parent aab64c5 commit 73b426d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9237,7 +9237,7 @@ result_t test_mm_test_mix_ones_zeros(const SSE2NEONTestImpl &impl,
int32_t result = ((has_ones != 0) & (has_zeros != 0));

int32_t ret = _mm_test_mix_ones_zeros(a, mask);
return result == ret ? 1 : 0;
return result == ret ? TEST_SUCCESS : TEST_FAIL;
}

result_t test_mm_testc_si128(const SSE2NEONTestImpl &impl, uint32_t iter)
Expand Down

0 comments on commit 73b426d

Please sign in to comment.