summaryrefslogtreecommitdiffstats
path: root/tests/fuzztest/fuzz_syshdr.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/fuzz_syshdr.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/fuzz_syshdr.h')
-rw-r--r--tests/fuzztest/fuzz_syshdr.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/fuzztest/fuzz_syshdr.h b/tests/fuzztest/fuzz_syshdr.h
new file mode 100644
index 00000000..d295d9ed
--- /dev/null
+++ b/tests/fuzztest/fuzz_syshdr.h
@@ -0,0 +1,15 @@
+/* This is just a wrapper in order to get our own malloc wrappers into nanopb core. */
+
+#define pb_realloc(ptr,size) counting_realloc(ptr,size)
+#define pb_free(ptr) counting_free(ptr)
+
+#ifdef PB_OLD_SYSHDR
+#include PB_OLD_SYSHDR
+#else
+#include <stdint.h>
+#include <stddef.h>
+#include <stdbool.h>
+#include <string.h>
+#endif
+
+#include <malloc_wrappers.h>