1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/tests/run_tests.sh

35 lines
492 B
Bash
Raw Normal View History

#!/bin/bash
2017-08-07 10:41:00 +00:00
MICROPYTHON=../build/unix/micropython
PYOPT=1
results=()
2016-10-03 14:32:58 +00:00
error=0
if [ -z "$*" ]; then
list="test_*.py"
else
list="$*"
fi
for i in $list; do
echo
if $MICROPYTHON -O$PYOPT $i; then
results+=("OK $i")
else
results+=("FAIL $i")
error=1
fi
2016-04-12 16:09:23 +00:00
done
echo
echo 'Summary:'
printf '%s\n' "${results[@]}"
echo '-------------------'
if [ $error == 0 ]; then
echo 'ALL OK'
else
echo 'FAIL at least one error occurred'
fi
2016-10-03 14:32:58 +00:00
exit $error