Encoder
[apps/agl-service-can-low-level.git] / tests / Makefile
index da4030e..7450e1e 100644 (file)
@@ -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