aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@npb.mail.kapsi.fi>2011-08-10 17:54:15 +0000
committerPetteri Aimonen <jpa@npb.mail.kapsi.fi>2011-08-10 17:54:15 +0000
commit0c5bc4caf9cfb221822fead442b462be2f47b97b (patch)
treef8e86d3c0bde869bf93df4ec439f83936742c79e /tests/Makefile
parenta8d0172507d59b73b95f766aa7644147fd060f20 (diff)
Unittests for encode
git-svn-id: https://svn.kapsi.fi/jpa/nanopb@952 e3a754e5-d11d-0410-8d38-ebb782a927b9
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 7450e1e..84c035e 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,8 +1,8 @@
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
+DEPS=../pb_decode.c ../pb_decode.h ../pb_encode.c ../pb_encode.h ../pb.h person.h unittests.h
+TESTS=test_decode1 test_encode1 decode_unittests encode_unittests
-all: $(TESTS)
+all: $(TESTS) run_unittests
clean:
rm -f $(TESTS)
@@ -10,8 +10,9 @@ clean:
%: %.c $(DEPS)
$(CC) $(CFLAGS) -o $@ $< ../pb_decode.c ../pb_encode.c
-run_unittests: decode_unittests
+run_unittests: decode_unittests encode_unittests
./decode_unittests
+ ./encode_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