osmo-gsm-tester: Allow changing host's trial directory

It's set to /tmp/trial by default for convenience, since it's a
temporary directory and easy to remember and to access. Still, let's
give the opportunity to change it (if user wants it to be stored in
persistent data or if has low amounts of non-persistent memory).

Change-Id: I2a7ea361c6156c97bd8d2d94cf1b6856344d4d9f
This commit is contained in:
Pau Espin 2020-03-20 18:45:10 +01:00
parent cafa320eba
commit 8e8f671711
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
# osmo-gsm-tester last run can be found as usual under the trial directory
# (/tmp/trial/last_run).
TRIAL_DIR="/tmp/trial"
TRIAL_DIR="${TRIAL_DIR:-/tmp/trial}"
SRS_LTE_BRANCH=${SRS_LTE_BRANCH:-master}
SRS_LTE_REPO_PREFIX=${SRS_LTE_REPO_PREFIX:-git@github.com:srsLTE}