diff options
author | h1994st <h1994st@gmail.com> | 2020-03-27 02:03:20 -0400 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-30 16:46:11 +0200 |
commit | ff14dfc0fc099cf68a9a9b4168b601be45d03e1c (patch) | |
tree | d5b2dbfb795bf4e0f424c777fdade42d553ee40b /examples/custom_mutators | |
parent | c6248317174ef8fd61360148c8ef95ed7c806a7e (diff) | |
download | afl++-ff14dfc0fc099cf68a9a9b4168b601be45d03e1c.tar.gz |
Add a test case for the custom mutator
- Update the Makefile in examples/custom_mutators - Add a test program for testing the custom mutator - Update test.sh for testing the custom mutator - [TODO] Update the result checking criterias of the custom mutator in test.sh
Diffstat (limited to 'examples/custom_mutators')
-rw-r--r-- | examples/custom_mutators/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/custom_mutators/Makefile b/examples/custom_mutators/Makefile index a83e87fe..463cefb1 100644 --- a/examples/custom_mutators/Makefile +++ b/examples/custom_mutators/Makefile @@ -1,2 +1,7 @@ -all: +all: libexamplemutator.so + +libexamplemutator.so: $(CC) $(CFLAGS) -fPIC -shared -g -I ../../include example.c -o libexamplemutator.so + +clean: + rm -rf libexamplemutator.so |