File: malloc_conf_2.c

package info (click to toggle)
redis 5%3A8.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,304 kB
  • sloc: ansic: 216,903; tcl: 51,562; sh: 4,625; perl: 4,214; cpp: 3,568; python: 2,954; makefile: 2,055; ruby: 639; javascript: 30; csh: 7
file content (29 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "test/jemalloc_test.h"

const char *malloc_conf = "dirty_decay_ms:1000";
const char *malloc_conf_2_conf_harder = "dirty_decay_ms:1234";

TEST_BEGIN(test_malloc_conf_2) {
#ifdef _WIN32
	bool windows = true;
#else
	bool windows = false;
#endif
	/* Windows doesn't support weak symbol linker trickery. */
	test_skip_if(windows);

	ssize_t 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");
}
TEST_END

int
main(void) {
	return test(
	    test_malloc_conf_2);
}