Navigation Menu

Skip to content

Commit

Permalink
keep up-to-date with cutter.
Browse files Browse the repository at this point in the history
  • Loading branch information
mir committed Mar 11, 2010
1 parent aa9b909 commit dbeffe5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/test-driver.c
Expand Up @@ -787,11 +787,11 @@ void test_mrn_bitmap_macro()
int i;
for (i=0; i < 128*8; i++)
{
cut_assert_false(MRN_IS_BIT(a,i),"precheck: idx=%d",i);
cut_assert_false(MRN_IS_BIT(a,i));
MRN_SET_BIT(a,i);
cut_assert_true(MRN_IS_BIT(a,i),"after set: idx=%d",i);
cut_assert_true(MRN_IS_BIT(a,i));
MRN_CLEAR_BIT(a,i);
cut_assert_false(MRN_IS_BIT(a,i),"after clear: idx=%d",i);
cut_assert_false(MRN_IS_BIT(a,i));
}
g_free(a);
}
Expand Down

0 comments on commit dbeffe5

Please sign in to comment.