diff options
author | Jason Evans <jasone@canonware.com> | 2016-04-05 23:25:44 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-05-13 16:56:18 (GMT) |
commit | 9a8add1510456464bc496320990ec234798bd381 (patch) | |
tree | f5c9c5d990982e55a84c192687c8ce50234bad1e /test | |
parent | a397045323d743a787c7efff17c0619dcf25f0b4 (diff) | |
download | jemalloc-9a8add1510456464bc496320990ec234798bd381.zip jemalloc-9a8add1510456464bc496320990ec234798bd381.tar.gz jemalloc-9a8add1510456464bc496320990ec234798bd381.tar.bz2 |
Remove Valgrind support.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/arena_reset.c | 3 | ||||
-rw-r--r-- | test/unit/mallctl.c | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/test/unit/arena_reset.c b/test/unit/arena_reset.c index 8ba36c2..c602f0f 100644 --- a/test/unit/arena_reset.c +++ b/test/unit/arena_reset.c @@ -88,8 +88,7 @@ TEST_BEGIN(test_arena_reset) size_t mib[3]; tsdn_t *tsdn; - test_skip_if((config_valgrind && unlikely(in_valgrind)) || (config_fill - && unlikely(opt_quarantine))); + test_skip_if(config_fill && unlikely(opt_quarantine)); sz = sizeof(unsigned); assert_d_eq(mallctl("arenas.extend", &arena_ind, &sz, NULL, 0), 0, diff --git a/test/unit/mallctl.c b/test/unit/mallctl.c index 69f8c20..641138a 100644 --- a/test/unit/mallctl.c +++ b/test/unit/mallctl.c @@ -139,7 +139,6 @@ TEST_BEGIN(test_mallctl_config) TEST_MALLCTL_CONFIG(tcache, bool); TEST_MALLCTL_CONFIG(tls, bool); TEST_MALLCTL_CONFIG(utrace, bool); - TEST_MALLCTL_CONFIG(valgrind, bool); TEST_MALLCTL_CONFIG(xmalloc, bool); #undef TEST_MALLCTL_CONFIG |