diff options
author | h1994st <h1994st@gmail.com> | 2020-03-27 02:03:20 -0400 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:06 +0200 |
commit | 245304f5938a700e93a3403b30509dea55a6549e (patch) | |
tree | d5b2dbfb795bf4e0f424c777fdade42d553ee40b /examples/custom_mutators | |
parent | be441dc17668a5e7726f2af7286a0d18c75cecbe (diff) | |
download | afl++-245304f5938a700e93a3403b30509dea55a6549e.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 |