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
This commit is contained in:
h1994st
2020-03-27 02:03:20 -04:00
committed by Dominik Maier
parent c624831717
commit ff14dfc0fc
3 changed files with 127 additions and 28 deletions

View File

@ -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