unittests (some)

git-svn-id: https://svn.kapsi.fi/jpa/nanopb@949 e3a754e5-d11d-0410-8d38-ebb782a927b9
This commit is contained in:
Petteri Aimonen
2011-07-30 09:59:08 +00:00
parent d7863b7424
commit f8364310d3
5 changed files with 145 additions and 24 deletions

View File

@@ -1,13 +1,17 @@
CFLAGS=-ansi -pedantic -Wall -I .. -g -O0
CFLAGS=-ansi -Wall -Werror -I .. -g -O0
DEPS=../pb_decode.c ../pb_decode.h ../pb.h
TESTS=test_decode1 decode_unittests
all: test_decode1
all: $(TESTS)
clean:
rm -f test_decode1
test_decode1: test_decode1.c $(DEPS)
%: %.c $(DEPS)
$(CC) $(CFLAGS) -o $@ $< ../pb_decode.c
fuzztest: test_decode1
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'