X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2FMakefile;h=7450e1edc6b0e5f33d45aa9e97e592ae8e040d02;hb=a8d0172507d59b73b95f766aa7644147fd060f20;hp=da4030e2d95a33d6fe99b5358e8e32f3935d084a;hpb=ead3b734d8f96837ea6564b694df5618134e3cf8;p=apps%2Fagl-service-can-low-level.git diff --git a/tests/Makefile b/tests/Makefile index da4030e2..7450e1ed 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,11 +1,17 @@ -CFLAGS=-ansi -pedantic -Wall -I .. -g -O0 -DEPS=../pb_decode.c ../pb_decode.h ../pb.h +CFLAGS=-ansi -Wall -Werror -I .. -g -O0 +DEPS=../pb_decode.c ../pb_decode.h ../pb_encode.c ../pb_encode.h ../pb.h person.h +TESTS=test_decode1 test_encode1 decode_unittests -all: test_decode1 +all: $(TESTS) clean: - rm -f test_decode1 + rm -f $(TESTS) -test_decode1: test_decode1.c $(DEPS) - $(CC) $(CFLAGS) -o $@ $< ../pb_decode.c +%: %.c $(DEPS) + $(CC) $(CFLAGS) -o $@ $< ../pb_decode.c ../pb_encode.c +run_unittests: decode_unittests + ./decode_unittests + +run_fuzztest: test_decode1 + bash -c 'I=1; while cat /dev/urandom | ./test_decode1 > /dev/null; do I=$$(($$I+1)); echo -en "\r$$I"; done' \ No newline at end of file