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

14 lines
235 B
Bash
Raw Normal View History

#!/bin/bash
results=()
2016-04-12 16:09:23 +00:00
for i in *.py; do
echo
if ../../vendor/micropython/unix/micropython $i; then
results+=("OK $i")
else
results+=("FAIL $i")
fi
2016-04-12 16:09:23 +00:00
done
echo
echo 'Summary:'
printf '%s\n' "${results[@]}"