Tests for callback fields
[apps/agl-service-can-low-level.git] / tests / Makefile
1 CFLAGS=-ansi -Wall -Werror -I .. -g -O0 --coverage
2 LDFLAGS=--coverage
3 DEPS=../pb_decode.h ../pb_encode.h ../pb.h person.pb.h callbacks.pb.h unittests.h unittestproto.pb.h
4 TESTS=test_decode1 test_encode1 decode_unittests encode_unittests
5
6 all: $(TESTS) run_unittests breakpoints
7
8 clean:
9         rm -f $(TESTS) person.pb* *.o *.gcda *.gcno
10
11 %.o: %.c
12 %.o: %.c $(DEPS)
13         $(CC) $(CFLAGS) -c -o $@ $<
14
15 pb_encode.o: ../pb_encode.c $(DEPS)
16         $(CC) $(CFLAGS) -c -o $@ $<
17 pb_decode.o: ../pb_decode.c $(DEPS)
18         $(CC) $(CFLAGS) -c -o $@ $<
19
20 test_decode1: test_decode1.o pb_decode.o person.pb.o
21 test_encode1: test_encode1.o pb_encode.o person.pb.o
22 test_decode_callbacks: test_decode_callbacks.o pb_decode.o callbacks.pb.o
23 test_encode_callbacks: test_encode_callbacks.o pb_encode.o callbacks.pb.o
24 decode_unittests: decode_unittests.o pb_decode.o unittestproto.pb.o
25 encode_unittests: encode_unittests.o pb_encode.o unittestproto.pb.o
26
27 %.pb: %.proto
28         protoc -I. -I../generator -I/usr/include -o$@ $<
29
30 %.pb.c %.pb.h: %.pb
31         python ../generator/nanopb_generator.py $<
32
33 breakpoints: ../*.c *.c
34         grep -n 'return false;' $^ | cut -d: -f-2 | xargs -n 1 echo b > $@
35
36 coverage: run_unittests
37         gcov pb_encode.gcda
38         gcov pb_decode.gcda
39
40 run_unittests: decode_unittests encode_unittests test_encode1 test_decode1 test_encode_callbacks test_decode_callbacks
41         rm -f *.gcda
42         
43         ./decode_unittests > /dev/null
44         ./encode_unittests > /dev/null
45         
46         [ "`./test_encode1 | ./test_decode1`" = \
47         "`./test_encode1 | protoc --decode=Person -I. -I../generator -I/usr/include person.proto`" ]
48         
49         [ "`./test_encode_callbacks | ./test_decode_callbacks`" = \
50         "`./test_encode_callbacks | protoc --decode=TestMessage callbacks.proto`" ]
51
52 run_fuzztest: test_decode1
53         bash -c 'I=1; while cat /dev/urandom | ./test_decode1 > /dev/null; do I=$$(($$I+1)); echo -en "\r$$I"; done'