pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36160?usp=email )
Change subject: mme, pgw: Fix GTPv2_Emulation setup after recent changes ......................................................................
mme, pgw: Fix GTPv2_Emulation setup after recent changes
The fields were added to be used in EPDG_Tests, but they need to be explicitly set to omit here.
Fixes: 65a7f762efd8cf7a2eec2ca0c7753d03d907b6ab Change-Id: I3ed3c185310082f36bbce22817b903232825567c --- M mme/MME_Tests.ttcn M pgw/PGW_Tests.ttcn 2 files changed, 17 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/60/36160/1
diff --git a/mme/MME_Tests.ttcn b/mme/MME_Tests.ttcn index d412273..3ea17dd 100644 --- a/mme/MME_Tests.ttcn +++ b/mme/MME_Tests.ttcn @@ -368,6 +368,8 @@ gtpc_bind_port := mp_s11_local_port, gtpc_remote_ip := mp_s11_remote_ip, gtpc_remote_port := mp_s11_remote_port, + gtpu_bind_ip := omit, /* using gtpu daemon */ + gtpu_bind_port := omit, /* using gtpu daemon */ sgw_role := true, use_gtpu_daemon := false }; diff --git a/pgw/PGW_Tests.ttcn b/pgw/PGW_Tests.ttcn index ea9f056..281f816 100644 --- a/pgw/PGW_Tests.ttcn +++ b/pgw/PGW_Tests.ttcn @@ -279,6 +279,8 @@ gtpc_bind_port := GTP2C_PORT, gtpc_remote_ip := mp_pgw_hostname, gtpc_remote_port := GTP2C_PORT, + gtpu_bind_ip := omit, /* using gtpu daemon */ + gtpu_bind_port := omit, /* using gtpu daemon */ sgw_role := true, use_gtpu_daemon := true };