mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 05:25:38 +01:00
- Better implemented 'make check' in normal Makefile
This commit is contained in:
parent
3391b12ce3
commit
d947d765e0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user