mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
47 lines
848 B
Bash
Executable File
47 lines
848 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d python-trezor ]; then
|
|
cd python-trezor ; git pull ; cd ..
|
|
else
|
|
git clone https://github.com/trezor/python-trezor.git
|
|
fi
|
|
|
|
# run emulator
|
|
|
|
cd ../src
|
|
../vendor/micropython/unix/micropython -O0 main.py &
|
|
UPY_PID=$!
|
|
|
|
sleep 1
|
|
|
|
cd ../tests/python-trezor/tests/device_tests
|
|
export PYTHONPATH="../.."
|
|
|
|
error=0
|
|
|
|
PYTHON="${PYTHON:-python2}"
|
|
|
|
for i in \
|
|
test_msg_cipherkeyvalue.py \
|
|
test_msg_estimatetxsize.py \
|
|
test_msg_ethereum_getaddress.py \
|
|
test_msg_getaddress.py \
|
|
test_msg_getpublickey.py \
|
|
test_msg_signmessage.py \
|
|
test_msg_signtx.py \
|
|
test_msg_verifymessage.py \
|
|
test_msg_wipedevice.py \
|
|
test_msg_reset_device.py \
|
|
test_msg_changepin.py \
|
|
; do
|
|
if ! $PYTHON $i ; then
|
|
error=1
|
|
break
|
|
fi
|
|
done
|
|
|
|
# kill emulator
|
|
kill $UPY_PID
|
|
|
|
exit $error
|