You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/src/tests/run_tests.sh

14 lines
235 B

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