🐞 fix(utable): fix memleak in test case

This commit is contained in:
yangwei
2024-11-25 19:23:01 +08:00
parent efefab9600
commit ca52d2fbc2
4 changed files with 31 additions and 22 deletions

View File

@@ -601,7 +601,7 @@ TEST(utable_test, replace_8k_cstring)
utable_free(table);
}
TEST(utable_test, replace_cstring_many_times)
TEST(utable_test, replace_cstring_1w_times)
{
struct utable *table = utable_new();
@@ -614,7 +614,7 @@ TEST(utable_test, replace_cstring_many_times)
test_utable_assert_str(table, "key1", str);
for(int i=0; i<100000; i++)
for(int i=0; i<10000; i++)
{
utable_delete(table, "key1", strlen("key1"));
utable_add_cstring(table, "key1", str, strlen(str));