1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

tests: new monero binary added

This commit is contained in:
Dusan Klinec 2019-05-13 21:03:43 +02:00 committed by matejcik
parent 770e2341f3
commit f767f890cd

View File

@ -2,18 +2,22 @@
: "${RUN_PYTHON_TESTS:=0}" : "${RUN_PYTHON_TESTS:=0}"
: "${FORCE_DOCKER_USE:=0}" : "${FORCE_DOCKER_USE:=0}"
: "${RUN_TEST_EMU:=1}"
SDIR="$(SHELL_SESSION_FILE='' && cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" SDIR="$(SHELL_SESSION_FILE='' && cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
CORE_DIR="$SDIR/.." CORE_DIR="$SDIR/.."
MICROPYTHON="$CORE_DIR/build/unix/micropython" MICROPYTHON="$CORE_DIR/build/unix/micropython"
PYOPT=0 PYOPT=0
upy_pid=""
# run emulator # run emulator if RUN_TEST_EMU
cd "$CORE_DIR/src" if [[ $RUN_TEST_EMU > 0 ]]; then
"$MICROPYTHON" -O$PYOPT main.py >/dev/null & cd "$CORE_DIR/src"
upy_pid=$! "$MICROPYTHON" -O$PYOPT main.py >/dev/null &
cd - upy_pid=$!
sleep 1 cd -
sleep 1
fi
export TREZOR_PATH=udp:127.0.0.1:21324 export TREZOR_PATH=udp:127.0.0.1:21324
DOCKER_ID="" DOCKER_ID=""
@ -21,7 +25,7 @@ DOCKER_ID=""
# Test termination trap # Test termination trap
terminate_test() { terminate_test() {
if [[ $# > 0 ]]; then error=$1; fi if [[ $# > 0 ]]; then error=$1; fi
kill $upy_pid if [ -n "$upy_pid" ]; then kill $upy_pid 2> /dev/null; fi
if [ -n "$DOCKER_ID" ]; then docker kill $DOCKER_ID 2>/dev/null >/dev/null; fi if [ -n "$DOCKER_ID" ]; then docker kill $DOCKER_ID 2>/dev/null >/dev/null; fi
exit $error exit $error
} }
@ -49,8 +53,8 @@ if [[ "$OSTYPE" != "linux-gnu" && "$OSTYPE" != "darwin"* ]]; then
fi fi
error=1 error=1
: "${TREZOR_MONERO_TESTS_URL:=https://github.com/ph4r05/monero/releases/download/v0.14.0.2-tests-u14.04-02/trezor_tests}" : "${TREZOR_MONERO_TESTS_URL:=https://github.com/ph4r05/monero/releases/download/v0.14.1.0-tests-u14.04-01/trezor_tests}"
: "${TREZOR_MONERO_TESTS_SHA256SUM:=ad7d366ad1d673f77523031da383ae12547270b6257962cb250ea75e11648697}" : "${TREZOR_MONERO_TESTS_SHA256SUM:=140a16b3d6105b5e8e88a93b451e9600a36ed23928ea3cf2f975f9c83f36dab7}"
: "${TREZOR_MONERO_TESTS_PATH:=$CORE_DIR/tests/trezor_monero_tests}" : "${TREZOR_MONERO_TESTS_PATH:=$CORE_DIR/tests/trezor_monero_tests}"
: "${TREZOR_MONERO_TESTS_LOG:=$CORE_DIR/tests/trezor_monero_tests.log}" : "${TREZOR_MONERO_TESTS_LOG:=$CORE_DIR/tests/trezor_monero_tests.log}"