mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
bba8bf38eb
- Deterministic output commitment masks, based on amount_key - Bulletproof v2 serialization, EcdhInfo serialized as 8 B amount, XOR encrypted by a specific key derived from amount key - Signing - pseudo_out recomputation on inputs, sign step - Dummy encrypted payment ID (if applicable) for better transaction uniformity
28 lines
504 B
Bash
Executable File
28 lines
504 B
Bash
Executable File
#!/bin/bash
|
|
|
|
MICROPYTHON=../build/unix/micropython
|
|
PYOPT=0
|
|
|
|
# run emulator
|
|
cd ../src
|
|
$MICROPYTHON -O$PYOPT main.py >/dev/null &
|
|
upy_pid=$!
|
|
sleep 1
|
|
|
|
export TREZOR_PATH=udp:127.0.0.1:21324
|
|
|
|
# run tests
|
|
cd ..
|
|
|
|
export EC_BACKEND_FORCE=1
|
|
export EC_BACKEND=1
|
|
export TREZOR_TEST_GET_TX=1
|
|
export TREZOR_TEST_LIVE_REFRESH=1
|
|
export TREZOR_TEST_SIGN_CL0_HF9=1
|
|
export TREZOR_TEST_SIGN_CL1_HF9=1
|
|
export TREZOR_TEST_SIGN_CL1_HF10=1
|
|
python3 -m unittest trezor_monero_test.test_trezor
|
|
error=$?
|
|
kill $upy_pid
|
|
exit $error
|