mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:05:40 +01:00
- Adapted Makefile for buildbot
This commit is contained in:
parent
02adedb0b1
commit
d14cd35ece
@ -167,10 +167,19 @@ clean:
|
||||
rm -f $(APPS) *.c
|
||||
|
||||
check: $(APPS)
|
||||
echo "Running checks (Success if all tests PASSED)"
|
||||
echo "Running checks (Success if all tests PASSED)"
|
||||
RETURN=0; \
|
||||
for i in $(APPS); \
|
||||
do \
|
||||
echo " - $${i}"; \
|
||||
./$${i} | grep -v 'PASS$$' | grep -v -- '-----' | grep -v '^$$'; \
|
||||
RESULT=`./$${i} | grep -v 'PASS$$' | grep -v -- '-----' | grep -v '^$$'`; \
|
||||
FAILED=`echo $$RESULT |grep FAILED`; \
|
||||
echo " $$RESULT"; \
|
||||
if [ "$$FAILED" != "" ]; \
|
||||
then \
|
||||
echo "**** Failed ***************"; \
|
||||
RETURN=1; \
|
||||
fi; \
|
||||
echo ""; \
|
||||
done
|
||||
done; \
|
||||
if [ "$$RETURN" -eq 1 ]; then exit 1; fi
|
||||
|
Loading…
Reference in New Issue
Block a user