Skip to content

Commit

Permalink
caught pointer stable assoc container leak insert test
Browse files Browse the repository at this point in the history
  • Loading branch information
agl-alexglopez committed Dec 12, 2024
1 parent 854e9f0 commit 9e3aa6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/omap/test_omap_insert.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ CHECK_BEGIN_STATIC_FN(omap_test_insert_weak_srand)
CHECK(validate(&om), true);
}
CHECK(size(&om), (size_t)num_nodes);
CHECK_END_FN();
CHECK_END_FN(om_clear(&om, NULL););
}

int
Expand Down
2 changes: 1 addition & 1 deletion tests/romap/test_romap_insert.c
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ CHECK_BEGIN_STATIC_FN(romap_test_insert_weak_srand)
CHECK(validate(&rom), true);
}
CHECK(size(&rom), (size_t)num_nodes);
CHECK_END_FN();
CHECK_END_FN(rom_clear(&rom, NULL););
}

int
Expand Down

0 comments on commit 9e3aa6a

Please sign in to comment.