diff options
Diffstat (limited to 'examples/redis-unstable/deps/jemalloc/test/unit/test_hooks.c')
| -rw-r--r-- | examples/redis-unstable/deps/jemalloc/test/unit/test_hooks.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/examples/redis-unstable/deps/jemalloc/test/unit/test_hooks.c b/examples/redis-unstable/deps/jemalloc/test/unit/test_hooks.c deleted file mode 100644 index 8cd2b3b..0000000 --- a/examples/redis-unstable/deps/jemalloc/test/unit/test_hooks.c +++ /dev/null @@ -1,38 +0,0 @@ -#include "test/jemalloc_test.h" - -static bool hook_called = false; - -static void -hook() { - hook_called = true; -} - -static int -func_to_hook(int arg1, int arg2) { - return arg1 + arg2; -} - -#define func_to_hook JEMALLOC_TEST_HOOK(func_to_hook, test_hooks_libc_hook) - -TEST_BEGIN(unhooked_call) { - test_hooks_libc_hook = NULL; - hook_called = false; - expect_d_eq(3, func_to_hook(1, 2), "Hooking changed return value."); - expect_false(hook_called, "Nulling out hook didn't take."); -} -TEST_END - -TEST_BEGIN(hooked_call) { - test_hooks_libc_hook = &hook; - hook_called = false; - expect_d_eq(3, func_to_hook(1, 2), "Hooking changed return value."); - expect_true(hook_called, "Hook should have executed."); -} -TEST_END - -int -main(void) { - return test( - unhooked_call, - hooked_call); -} |
