aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fuzztest/malloc_wrappers.h
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-09-06 19:01:11 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-09-11 19:22:57 +0300
commit0dce9ef635f8af1b9aa07a43f610295bca8954da (patch)
treebb2227e0af820d692ccb5092115f8b64a6d71fbc /tests/fuzztest/malloc_wrappers.h
parent8189d538dd80a89bc6fa1672336b99c9c5cd076b (diff)
Add a better fuzz test.
Attempts to verify all the properties defined in the security model, while also being portable and able to run on many platforms.
Diffstat (limited to 'tests/fuzztest/malloc_wrappers.h')
-rw-r--r--tests/fuzztest/malloc_wrappers.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/fuzztest/malloc_wrappers.h b/tests/fuzztest/malloc_wrappers.h
new file mode 100644
index 00000000..7eec7952
--- /dev/null
+++ b/tests/fuzztest/malloc_wrappers.h
@@ -0,0 +1,7 @@
+#include <stdlib.h>
+
+void* malloc_with_check(size_t size);
+void free_with_check(void *mem);
+void* counting_realloc(void *ptr, size_t size);
+void counting_free(void *ptr);
+size_t get_alloc_count();