X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2FMakefile;h=7450e1edc6b0e5f33d45aa9e97e592ae8e040d02;hb=a8d0172507d59b73b95f766aa7644147fd060f20;hp=3053fa4a57a80f7d7086d0a740ea0160ab1a595b;hpb=42e5fcc0bee38d183e1d00b4cecb1a5c831ed601;p=apps%2Fagl-service-can-low-level.git diff --git a/tests/Makefile b/tests/Makefile index 3053fa4a..7450e1ed 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,13 +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 -fuzztest: test_decode1 - 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 +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