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

28 lines
353 B
Bash
Raw Normal View History

#!/bin/bash
2017-08-07 10:41:00 +00:00
MICROPYTHON=../build/unix/micropython
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 $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[@]}"
2016-10-03 14:32:58 +00:00
exit $error