#!/usr/bin/env bash
set -e
set -u

# this is to support running renode-test from an external directory and via a symlink
ROOT_PATH="/opt/renode/tests"


. "${ROOT_PATH}/common.sh"

set +e
STTY_CONFIG=`stty -g 2>/dev/null`
$PYTHON_RUNNER -u "`get_path "$ROOT_PATH/run_tests.py"`" --exclude "skip_${DETECTED_OS}" --exclude "skip_host_${DETECTED_ARCH}" --robot-framework-remote-server-full-directory=/opt/renode/bin --css-file=/opt/renode/tests/robot.css -r $(pwd) --runner=mono "$@"
RESULT_CODE=$?

set -e
if [ -n "${STTY_CONFIG:-}" ]
then
    # SIGTTOU might be sent when trying to change the terminal settings when "renode-test" runs in the background so trap the signal.
    trap "" SIGTTOU
    stty "$STTY_CONFIG"
    trap - SIGTTOU
fi
exit $RESULT_CODE
