mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
20 lines
307 B
Bash
Executable File
20 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run emulator
|
|
cd ../src
|
|
../build/unix/micropython -O0 main.py >/dev/null &
|
|
upy_pid=$!
|
|
sleep 1
|
|
|
|
# run tests
|
|
cd ../tests
|
|
error=0
|
|
if ! TREZOR_TRANSPORT_V1=0 ./run_tests_device.sh; then
|
|
error=1
|
|
fi
|
|
if ! TREZOR_TRANSPORT_V1=1 ./run_tests_device.sh; then
|
|
error=1
|
|
fi
|
|
kill $upy_pid
|
|
exit $error
|