pespin has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/29011 )
Change subject: ttcn3-bsc: Enable OSMUX feature in osmo-bts-omldummy ......................................................................
ttcn3-bsc: Enable OSMUX feature in osmo-bts-omldummy
This feature is used to indicate to the BSC that the BTS supports Osmux.
Requires: libosmocore 18c6a8183f92915e77368ecffb1cbf7f555453a3 Related: SYS#5987 Change-Id: Ia402b7514b636750442d0859d5ebc3fcad67dd9f --- M ttcn3-bsc-test-vamos/jenkins.sh M ttcn3-bsc-test/jenkins-sccplite.sh M ttcn3-bsc-test/jenkins.sh 3 files changed, 13 insertions(+), 0 deletions(-)
Approvals: laforge: Looks good to me, approved fixeria: Looks good to me, approved osmith: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/ttcn3-bsc-test-vamos/jenkins.sh b/ttcn3-bsc-test-vamos/jenkins.sh index 1fb3541..e686710 100755 --- a/ttcn3-bsc-test-vamos/jenkins.sh +++ b/ttcn3-bsc-test-vamos/jenkins.sh @@ -46,6 +46,10 @@ $REPO_USER/osmo-bsc-$IMAGE_SUFFIX
BTS_FEATURES="-fCCN,EGPRS,GPRS,IPv6_NSVC,PAGING_COORDINATION,VAMOS" +# Disable until libosmocore release > 1.7.0 +if image_suffix_is_master; then + BTS_FEATURES="${BTS_FEATURES},OSMUX" +fi
for i in `seq 0 2`; do echo Starting container with OML for BTS$i diff --git a/ttcn3-bsc-test/jenkins-sccplite.sh b/ttcn3-bsc-test/jenkins-sccplite.sh index 3d2b70d..e402b33 100755 --- a/ttcn3-bsc-test/jenkins-sccplite.sh +++ b/ttcn3-bsc-test/jenkins-sccplite.sh @@ -35,6 +35,11 @@ $REPO_USER/osmo-bsc-$IMAGE_SUFFIX
BTS_FEATURES="-fCCN,EGPRS,GPRS,IPv6_NSVC,PAGING_COORDINATION" +# Disable until libosmocore release > 1.7.0 +if image_suffix_is_master; then + BTS_FEATURES="${BTS_FEATURES},OSMUX" +fi +
for i in "0 1" "1 1" "2 4"; do set -- $i # convert the {BTS, TRXN} "tuple" into the param args $1 $2 diff --git a/ttcn3-bsc-test/jenkins.sh b/ttcn3-bsc-test/jenkins.sh index 40b3f62..c018046 100755 --- a/ttcn3-bsc-test/jenkins.sh +++ b/ttcn3-bsc-test/jenkins.sh @@ -45,6 +45,10 @@ $REPO_USER/osmo-bsc-$IMAGE_SUFFIX
BTS_FEATURES="-fCCN,EGPRS,GPRS,IPv6_NSVC,PAGING_COORDINATION" +# Disable until libosmocore release > 1.7.0 +if image_suffix_is_master; then + BTS_FEATURES="${BTS_FEATURES},OSMUX" +fi
for i in "0 1" "1 1" "2 4"; do set -- $i # convert the {BTS, TRXN} "tuple" into the param args $1 $2