diff options
author | Harald Welte <laforge@gnumonks.org> | 2017-09-07 18:41:52 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-09-07 18:41:52 +0200 |
commit | ab4ca94c8c57c1e5804e9915884085d99f40fe13 (patch) | |
tree | e936a2277c8b8745fb618aeff5aa43456f776fbb /ggsn_tests | |
parent | 244cd8acf7882b31b5482fe2d3ae25d6f86ac408 (diff) |
ggsn: Extend IPCP PDP IPv4 test with another PCO protocol beyond IPCP
This is to test for a bug that osmo-ggsn fixed in Icc2e6716c33d78d3c3e000f529806228d8aa155e
Diffstat (limited to 'ggsn_tests')
-rw-r--r-- | ggsn_tests/GGSN_Tests.ttcn | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn index eea7058..221b297 100644 --- a/ggsn_tests/GGSN_Tests.ttcn +++ b/ggsn_tests/GGSN_Tests.ttcn @@ -410,6 +410,9 @@ module GGSN_Tests { template ProtConfigOptions ts_PCO_IPv4_DNS_IPCP modifies ts_PCO := { protocols := { + /* dummy PAP entry to check if our parser in the GGSN can properly iterate over + * the list of protocols, see Change-Id Icc2e6716c33d78d3c3e000f529806228d8aa155e */ + { protocolID := 'C023'O, lengthProtoID := 0, protoIDContents := ''O }, { protocolID := '8021'O, lengthProtoID := 16, protoIDContents := '01000010810600000000830600000000'O } } } |