Reformat the codebase with the clang-format 18.

This commit is contained in:
guangli-dai 2025-06-13 12:31:12 -07:00 committed by Guangli Dai
parent 0a6215c171
commit f1bba4a87c
346 changed files with 18286 additions and 17770 deletions

View file

@ -13,12 +13,12 @@ TEST_BEGIN(test_malloc_conf_2) {
test_skip_if(windows);
ssize_t dirty_decay_ms;
size_t sz = sizeof(dirty_decay_ms);
size_t sz = sizeof(dirty_decay_ms);
int err = mallctl("opt.dirty_decay_ms", &dirty_decay_ms, &sz, NULL, 0);
assert_d_eq(err, 0, "Unexpected mallctl failure");
expect_zd_eq(dirty_decay_ms, 1234,
"malloc_conf_2 setting didn't take effect");
expect_zd_eq(
dirty_decay_ms, 1234, "malloc_conf_2 setting didn't take effect");
}
TEST_END
@ -32,22 +32,24 @@ TEST_BEGIN(test_mallctl_global_var) {
test_skip_if(windows);
const char *mc;
size_t sz = sizeof(mc);
expect_d_eq(mallctl("opt.malloc_conf.global_var",
(void *)&mc, &sz, NULL, 0), 0, "Unexpected mallctl() failure");
expect_str_eq(mc, malloc_conf, "Unexpected value for the global variable "
size_t sz = sizeof(mc);
expect_d_eq(
mallctl("opt.malloc_conf.global_var", (void *)&mc, &sz, NULL, 0), 0,
"Unexpected mallctl() failure");
expect_str_eq(mc, malloc_conf,
"Unexpected value for the global variable "
"malloc_conf");
expect_d_eq(mallctl("opt.malloc_conf.global_var_2_conf_harder",
(void *)&mc, &sz, NULL, 0), 0, "Unexpected mallctl() failure");
expect_str_eq(mc, malloc_conf_2_conf_harder, "Unexpected value for the "
(void *)&mc, &sz, NULL, 0),
0, "Unexpected mallctl() failure");
expect_str_eq(mc, malloc_conf_2_conf_harder,
"Unexpected value for the "
"global variable malloc_conf_2_conf_harder");
}
TEST_END
int
main(void) {
return test(
test_malloc_conf_2,
test_mallctl_global_var);
return test(test_malloc_conf_2, test_mallctl_global_var);
}