mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
- Better implemented 'make check' in normal Makefile
This commit is contained in:
@ -80,5 +80,10 @@ clean:
|
||||
rm -f $(APPS) *.c
|
||||
|
||||
check: $(APPS)
|
||||
echo "Running checks"
|
||||
for i in $(APPS); do echo " - $${i}"; ./$${i} | grep PASSED; done
|
||||
echo "Running checks (Success if all tests PASSED)"
|
||||
for i in $(APPS); \
|
||||
do \
|
||||
echo " - $${i}"; \
|
||||
./$${i} | grep -v 'PASS$$' | grep -v -- '-----' | grep -v '^$$'; \
|
||||
echo ""; \
|
||||
done
|
||||
|
Reference in New Issue
Block a user