Skip to content

Commit

Permalink
add test at to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
agl-alexglopez committed Dec 19, 2024
1 parent c2d4d2c commit 86f0bd3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/btst/test_btst_test_and_set.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,12 @@ CHECK_BEGIN_STATIC_FN(btst_test_flip_all)
if (i % 2)
{
CHECK(ccc_btst_test(&btst, i), CCC_TRUE);
CHECK(ccc_btst_test_at(&btst, i), CCC_TRUE);
}
else
{
CHECK(ccc_btst_test(&btst, i), CCC_FALSE);
CHECK(ccc_btst_test_at(&btst, i), CCC_FALSE);
}
}
CHECK_END_FN();
Expand Down

0 comments on commit 86f0bd3

Please sign in to comment.