pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/upf-benchmark/+/38742?usp=email )
Change subject: testsuites: eupf: run with GIN_MODE=release ......................................................................
testsuites: eupf: run with GIN_MODE=release
The output of eupf said it was using debug mode and that release mode should be used in production.
Change-Id: Ic5afa6865c708960210e5251f20e9328947cd5b7 --- M testsuites/gtplab-sysmo2017/tunend/upf/osmo-upf/run.sh M testsuites/gtplab-sysmo2017/tunmap/upf/eupf/run.sh 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/upf-benchmark refs/changes/42/38742/1
diff --git a/testsuites/gtplab-sysmo2017/tunend/upf/osmo-upf/run.sh b/testsuites/gtplab-sysmo2017/tunend/upf/osmo-upf/run.sh index a4951e9..9dda226 100755 --- a/testsuites/gtplab-sysmo2017/tunend/upf/osmo-upf/run.sh +++ b/testsuites/gtplab-sysmo2017/tunend/upf/osmo-upf/run.sh @@ -2,7 +2,7 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
-sudo osmo-upf -c "$SCRIPT_DIR/osmo-upf.cfg" +sudo GIN_MODE=release osmo-upf -c "$SCRIPT_DIR/osmo-upf.cfg"
# TODO: Route needs to be set up manually on the tun iface once it becomes created, since osmo-upf is not yet doing it (OS#6585). # For now, run this manually after starting osmo-upf with the current run.sh script: diff --git a/testsuites/gtplab-sysmo2017/tunmap/upf/eupf/run.sh b/testsuites/gtplab-sysmo2017/tunmap/upf/eupf/run.sh index 1532b76..26a1931 100755 --- a/testsuites/gtplab-sysmo2017/tunmap/upf/eupf/run.sh +++ b/testsuites/gtplab-sysmo2017/tunmap/upf/eupf/run.sh @@ -2,4 +2,4 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
-sudo eupf --config "$SCRIPT_DIR/eupf.yaml" +sudo GIN_MODE=release eupf --config "$SCRIPT_DIR/eupf.yaml"