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/tests/run_tests_device_emu.sh

16 lines
213 B

#!/bin/bash
# run emulator
cd ../src
../build/unix/micropython -O0 main.py >/dev/null &
upy_pid=$!
sleep 1
# run tests
cd ../tests
TREZOR_TRANSPORT_V1=0 ./run_tests_device.sh
error=$?
kill $upy_pid
exit $error