mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
16 lines
213 B
Bash
16 lines
213 B
Bash
|
#!/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
|