diff options
author | Qi Wang <interwq@gwu.edu> | 2017-08-11 23:06:51 (GMT) |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2017-08-12 05:58:58 (GMT) |
commit | b0825351d9eb49976164cff969a93877ac11f2c0 (patch) | |
tree | 68b1672783358f3dda816d35cf352c7e5ec9e485 /test/unit | |
parent | 82d1a3fb318fb086cd4207ca03dbdd5b0e3bbb26 (diff) | |
download | jemalloc-b0825351d9eb49976164cff969a93877ac11f2c0.zip jemalloc-b0825351d9eb49976164cff969a93877ac11f2c0.tar.gz jemalloc-b0825351d9eb49976164cff969a93877ac11f2c0.tar.bz2 |
Add missing mallctl unit test for abort_conf.
The abort_conf option was missed from test/unit/mallctl.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/mallctl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/mallctl.c b/test/unit/mallctl.c index d9fdd05..0b14e78 100644 --- a/test/unit/mallctl.c +++ b/test/unit/mallctl.c @@ -157,6 +157,7 @@ TEST_BEGIN(test_mallctl_opt) { } while (0) TEST_MALLCTL_OPT(bool, abort, always); + TEST_MALLCTL_OPT(bool, abort_conf, always); TEST_MALLCTL_OPT(bool, metadata_thp, always); TEST_MALLCTL_OPT(bool, retain, always); TEST_MALLCTL_OPT(const char *, dss, always); |