diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-09-11 17:58:53 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-09-11 19:22:57 +0300 |
commit | 07e9ffb97b747b22250f66a2210898db57c266c1 (patch) | |
tree | 2f34f38272858b8488822b0135944c3a67c62eef /tests/fuzztest/SConscript | |
parent | d2099cc8f1adb33d427a44a5e32ed27b647c7168 (diff) |
Add a fuzz testing stub for ability to use external generators also
Diffstat (limited to 'tests/fuzztest/SConscript')
-rw-r--r-- | tests/fuzztest/SConscript | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/fuzztest/SConscript b/tests/fuzztest/SConscript index 36b62c56..6499714f 100644 --- a/tests/fuzztest/SConscript +++ b/tests/fuzztest/SConscript @@ -47,4 +47,12 @@ Depends([p1, p2, fuzz], ["fuzz_syshdr.h", "malloc_wrappers.h"]) env.RunTest(fuzz) +fuzzstub = env.Program(["fuzzstub.c", + "alltypes_pointer.pb.c", + "alltypes_static.pb.c", + "pb_encode_with_malloc.o", + "pb_decode_with_malloc.o", + "pb_common_with_malloc.o", + "malloc_wrappers.c"]) + |