diff --git a/tests/Makefile b/tests/Makefile index 0954defa5..e254aa461 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -79,3 +79,6 @@ test_suite_xtea: test_suite_xtea.c ../library/libpolarssl.a clean: rm -f $(APPS) *.c +check: $(APPS) + echo "Running checks" + for i in $(APPS); do echo " - $${i}"; ./$${i} | grep PASSED; done