2014-01-18 07:40:52 +08:00
|
|
|
#include "test/jemalloc_test.h"
|
|
|
|
|
|
|
|
#ifdef JEMALLOC_PROF
|
|
|
|
const char *malloc_conf = "prof:true,prof_active:false,prof_gdump:true";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static bool did_prof_dump_open;
|
|
|
|
|
|
|
|
static int
|
|
|
|
prof_dump_open_intercept(bool propagate_err, const char *filename)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
did_prof_dump_open = true;
|
|
|
|
|
|
|
|
fd = open("/dev/null", O_WRONLY);
|
|
|
|
assert_d_ne(fd, -1, "Unexpected open() failure");
|
|
|
|
|
|
|
|
return (fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_BEGIN(test_gdump)
|
|
|
|
{
|
2015-01-26 13:16:57 +08:00
|
|
|
bool active, gdump, gdump_old;
|
|
|
|
void *p, *q, *r, *s;
|
|
|
|
size_t sz;
|
2014-01-18 07:40:52 +08:00
|
|
|
|
|
|
|
test_skip_if(!config_prof);
|
|
|
|
|
|
|
|
active = true;
|
|
|
|
assert_d_eq(mallctl("prof.active", NULL, NULL, &active, sizeof(active)),
|
|
|
|
0, "Unexpected mallctl failure while activating profiling");
|
|
|
|
|
|
|
|
prof_dump_open = prof_dump_open_intercept;
|
|
|
|
|
|
|
|
did_prof_dump_open = false;
|
|
|
|
p = mallocx(chunksize, 0);
|
|
|
|
assert_ptr_not_null(p, "Unexpected mallocx() failure");
|
|
|
|
assert_true(did_prof_dump_open, "Expected a profile dump");
|
|
|
|
|
|
|
|
did_prof_dump_open = false;
|
|
|
|
q = mallocx(chunksize, 0);
|
|
|
|
assert_ptr_not_null(q, "Unexpected mallocx() failure");
|
|
|
|
assert_true(did_prof_dump_open, "Expected a profile dump");
|
|
|
|
|
2015-01-26 13:16:57 +08:00
|
|
|
gdump = false;
|
|
|
|
sz = sizeof(gdump_old);
|
|
|
|
assert_d_eq(mallctl("prof.gdump", &gdump_old, &sz, &gdump,
|
|
|
|
sizeof(gdump)), 0,
|
|
|
|
"Unexpected mallctl failure while disabling prof.gdump");
|
|
|
|
assert(gdump_old);
|
|
|
|
did_prof_dump_open = false;
|
|
|
|
r = mallocx(chunksize, 0);
|
|
|
|
assert_ptr_not_null(q, "Unexpected mallocx() failure");
|
|
|
|
assert_false(did_prof_dump_open, "Unexpected profile dump");
|
|
|
|
|
|
|
|
gdump = true;
|
|
|
|
sz = sizeof(gdump_old);
|
|
|
|
assert_d_eq(mallctl("prof.gdump", &gdump_old, &sz, &gdump,
|
|
|
|
sizeof(gdump)), 0,
|
|
|
|
"Unexpected mallctl failure while enabling prof.gdump");
|
|
|
|
assert(!gdump_old);
|
|
|
|
did_prof_dump_open = false;
|
|
|
|
s = mallocx(chunksize, 0);
|
|
|
|
assert_ptr_not_null(q, "Unexpected mallocx() failure");
|
|
|
|
assert_true(did_prof_dump_open, "Expected a profile dump");
|
|
|
|
|
2014-01-18 07:40:52 +08:00
|
|
|
dallocx(p, 0);
|
|
|
|
dallocx(q, 0);
|
2015-01-26 13:16:57 +08:00
|
|
|
dallocx(r, 0);
|
|
|
|
dallocx(s, 0);
|
2014-01-18 07:40:52 +08:00
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (test(
|
|
|
|
test_gdump));
|
|
|
|
}
|