summaryrefslogtreecommitdiffstats
path: root/server/tests/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/common.h')
-rw-r--r--server/tests/common.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/server/tests/common.h b/server/tests/common.h
new file mode 100644
index 000000000..39a2b8e07
--- /dev/null
+++ b/server/tests/common.h
@@ -0,0 +1,19 @@
+#ifndef __TESTS_COMMON_H__
+#define __TESTS_COMMON_H__
+
+#include <talloc.h>
+
+#define check_leaks(ctx, bytes) _check_leaks((ctx), (bytes), __location__)
+void _check_leaks(TALLOC_CTX *ctx,
+ size_t bytes,
+ const char *location);
+
+void check_leaks_push(TALLOC_CTX *ctx);
+
+#define check_leaks_pop(ctx) _check_leaks_pop((ctx), __location__)
+void _check_leaks_pop(TALLOC_CTX *ctx, const char *location);
+
+void leak_check_setup(void);
+void leak_check_teardown(void);
+
+#endif /* !__TESTS_COMMON_H__ */