diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2015-10-05 15:36:24 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2015-10-05 15:36:24 +0300 |
commit | 6448f5d40d498a8de05b953f8318dba0cf4ff26f (patch) | |
tree | 649befa3db86bf65164df34ca076950255610cde /tests/fuzztest/SConscript | |
parent | be9c9bb55cea9ddac4c47041a5875f824629d03e (diff) |
Add random message generator to help with fuzz testing
Diffstat (limited to 'tests/fuzztest/SConscript')
-rw-r--r-- | tests/fuzztest/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/fuzztest/SConscript b/tests/fuzztest/SConscript index 973148c2..d2fb689c 100644 --- a/tests/fuzztest/SConscript +++ b/tests/fuzztest/SConscript @@ -36,4 +36,8 @@ fuzzstub = malloc_env.Program(["fuzzstub.c", "$COMMON/pb_common_with_malloc.o", "$COMMON/malloc_wrappers.o"]) +generate_message = malloc_env.Program(["generate_message.c", + "alltypes_static.pb.c", + "$COMMON/pb_encode.o", + "$COMMON/pb_common.o"]) |