about summary refs log tree commit diff
path: root/examples/custom_mutators
diff options
context:
space:
mode:
authorh1994st <h1994st@gmail.com>2020-03-27 02:03:20 -0400
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:06 +0200
commit245304f5938a700e93a3403b30509dea55a6549e (patch)
treed5b2dbfb795bf4e0f424c777fdade42d553ee40b /examples/custom_mutators
parentbe441dc17668a5e7726f2af7286a0d18c75cecbe (diff)
downloadafl++-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/Makefile7
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