--build-arg UID=1000 \
--build-arg REGISTRY=docker.io \
--build-arg OSMO_TTCN3_BRANCH=master \
--build-arg UPSTREAM_DISTRO=debian:bookworm \
--build-arg DISTRO=debian-bookworm \
--build-arg OSMOCOM_REPO_MIRROR=https://downloads.osmocom.org \
--build-arg OSMOCOM_REPO_PATH=packages/osmocom: \
--build-arg OSMOCOM_REPO_VERSION=latest \
--build-arg OSMOCOM_REPO_TESTSUITE_MIRROR=https://downloads.osmocom.org \
--build-arg ASTERISK_BRANCH=sysmocom/20.7.0 \
--build-arg LIBOSMOCORE_BRANCH=master \
--build-arg OSMO_BB_BRANCH=master \
--build-arg OSMO_BSC_BRANCH=master \
--build-arg OSMO_BTS_BRANCH=master \
--build-arg OSMO_CBC_BRANCH=master \
--build-arg OSMO_DIA2GSUP_BRANCH=master \
--build-arg OSMO_EPDG_BRANCH=master \
--build-arg OSMO_GBPROXY_BRANCH=master \
--build-arg OSMO_GGSN_BRANCH=master \
--build-arg OSMO_GSM_TESTER_BRANCH=master \
--build-arg OSMO_HLR_BRANCH=master \
--build-arg OSMO_HNBGW_BRANCH=master \
--build-arg OSMO_HNODEB_BRANCH=master \
--build-arg OSMO_IUH_BRANCH=master \
--build-arg OSMO_MGW_BRANCH=master \
--build-arg OSMO_MSC_BRANCH=master \
--build-arg OSMO_NITB_BRANCH=master \
--build-arg OSMO_PCU_BRANCH=master \
--build-arg OSMO_REMSIM_BRANCH=master \
--build-arg OSMO_SGSN_BRANCH=master \
--build-arg OSMO_SIP_BRANCH=master \
--build-arg OSMO_STP_BRANCH=master \
--build-arg OSMO_UECUPS_BRANCH=master \
--build-arg OPEN5GS_BRANCH=main \
--build-arg PJPROJECT_BRANCH=sysmocom/2.14 \
-t docker.io/osmocom-build/osmo-gsm-tester:latest .
#0 building with "default" instance using docker driver
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 4.84kB done
#1 WARN: InvalidDefaultArgInFrom: Default value for ARG $USER/debian-bookworm-build results in empty or invalid base image name (line 2)
#1 DONE 0.1s
#2 [internal] load metadata for docker.io/osmocom-build/debian-bookworm-build:latest
#2 DONE 0.0s
#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.1s
#4 [ 1/28] FROM docker.io/osmocom-build/debian-bookworm-build:latest
#4 DONE 0.0s
#5 [internal] load build context
#5 transferring context: 5.76kB done
#5 DONE 0.1s
#6 [22/28] ADD HTTPS://GERRIT.OSMOCOM.ORG/PLUGINS/GITILES/OSMO-GSM-TESTER/+/MASTER?FORMAT=TEXT /tmp/commit
#6 DONE 0.4s
#7 [ 4/28] RUN usermod -a -G osmo-gsm-tester jenkins
#7 CACHED
#8 [21/28] RUN GIT clone https://gerrit.osmocom.org/osmo-gsm-tester.git
#8 CACHED
#9 [25/28] RUN mkdir -p /etc/sudoers.d/ && cp osmo-gsm-tester/utils/sudoers.d/* /etc/sudoers.d/
#9 CACHED
#10 [ 9/28] COPY SSH /root/.ssh
#10 CACHED
#11 [ 2/28] RUN useradd -ms /bin/bash jenkins
#11 CACHED
#12 [13/28] RUN CHOWN -R jenkins:jenkins /osmo-gsm-tester-*
#12 CACHED
#13 [14/28] RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
#13 CACHED
#14 [17/28] RUN APT-GET update && apt-get install -y --no-install-recommends gnuradio && apt-get clean
#14 CACHED
#15 [24/28] RUN mkdir -p /usr/local/bin/ && cp osmo-gsm-tester/utils/bin/* /usr/local/bin/
#15 CACHED
#16 [ 6/28] RUN PIP3 install --break-system-packages "git+https://github.com/podshumok/python-smpplib.git@master#egg=smpplib" pydbus pyusb pysispm pymongo
#16 CACHED
#17 [15/28] RUN APT-GET update && apt-get install -y --no-install-recommends telnet libosmocore-dev libosmo-abis-dev libosmo-gsup-client-dev libosmo-netif-dev libosmo-ranap-dev libosmo-sigtran-dev libsmpp34-dev libgtp-dev libasn1c-dev && apt-get clean
#17 CACHED
#18 [ 8/28] RUN MKDIR /var/run/sshd
#18 CACHED
#19 [ 3/28] RUN groupadd osmo-gsm-tester
#19 CACHED
#20 [12/28] RUN MKDIR -p /osmo-gsm-tester-srsue /osmo-gsm-tester-srsenb /osmo-gsm-tester-srsepc /osmo-gsm-tester-trx /osmo-gsm-tester-grbroker /osmo-gsm-tester-open5gs
#20 CACHED
#21 [27/28] COPY RESOURCES.CONF /tmp/osmo-gsm-tester/sysmocom/resources.conf
#21 CACHED
#22 [ 7/28] RUN APT-GET update && apt-get install -y openssh-server
#22 CACHED
#23 [18/28] RUN SET -x && mkdir -p /tmp/mongodb && cd /tmp/mongodb && wget "https://pgp.mongodb.com/server-5.0.asc" -O "/mongodb.key" && wget "http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && dpkg -i "libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && echo "deb [signed-by=/mongodb.key] http://repo.mongodb.org/apt/debian bullseye/mongodb-org/5.0 main" > /etc/apt/sources.list.d/mongodb-org.list && apt-get update && apt-get install -y mongodb-org && apt-get clean && cd / && rm -rf /tmp/mongodb && rm /etc/apt/sources.list.d/mongodb-org.list && sed -i "s/127.0.0.1/172.18.50.2/g" /etc/mongod.conf
#23 CACHED
#24 [19/28] RUN IF [ "$(arch)" = "x86_64" ]; then apt-get update && apt-get install -y --no-install-recommends python3-pip python3-setuptools python3-wheel ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev libnghttp2-dev libmicrohttpd-dev libcurl4-gnutls-dev libnghttp2-dev meson && apt-get clean; fi
#24 CACHED
#25 [26/28] RUN mkdir -p /etc/security/limits.d/ && cp osmo-gsm-tester/utils/limits.d/* /etc/security/limits.d/
#25 CACHED
#26 [20/28] WORKDIR /TMP
#26 CACHED
#27 [16/28] RUN APT-GET update && apt-get install -y --no-install-recommends cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev libpcsclite-dev libuhd-dev libczmq-dev libsoapysdr-dev soapysdr-module-lms7 && apt-get clean
#27 CACHED
#28 [10/28] COPY --CHOWN=JENKINS:JENKINS ssh /home/jenkins/.ssh
#28 CACHED
#29 [ 5/28] RUN APT-GET update && apt-get install -y --no-install-recommends cpio dbus tcpdump sqlite3 python3 python3-setuptools python3-yaml python3-mako python3-gi python3-numpy python3-wheel python3-watchdog ofono patchelf rpm2cpio sudo libcap2-bin python3-pip udhcpc iperf3 locales
#29 CACHED
#30 [22/28] ADD HTTPS://GERRIT.OSMOCOM.ORG/PLUGINS/GITILES/OSMO-GSM-TESTER/+/MASTER?FORMAT=TEXT /tmp/commit
#30 CACHED
#31 [11/28] RUN chmod -R 0700 /home/jenkins/.ssh /root/.ssh
#31 CACHED
#32 [23/28] RUN CD osmo-gsm-tester && git fetch && git checkout master && (git symbolic-ref -q HEAD && git reset --hard origin/master || exit 1); git rev-parse --abbrev-ref HEAD && git rev-parse HEAD
#32 CACHED
#33 [28/28] WORKDIR /DATA
#33 CACHED
#34 exporting to image
#34 exporting layers done
#34 writing image sha256:d77e65ee2acb55e2b0ad1d364f4e69b3019c3c684bc04d7565e5f5c6e5b5b2c4 0.0s done
#34 naming to docker.io/osmocom-build/osmo-gsm-tester:latest 0.0s done
#34 DONE 0.1s
rm -rf .common
make: Leaving directory '/home/osmocom-build/jenkins/workspace/osmo-gsm-tester_virtual/docker-playground/osmo-gsm-tester'
+ unlink osmo-gsm-tester/sysmocom/resources.conf
+ ln -s resources.conf.virtual osmo-gsm-tester/sysmocom/resources.conf
+ docker run --rm=true -e HOME=/build -e JOB_NAME=osmo-gsm-tester_virtual -e OSMO_GSM_TESTER_CONF=/build/osmo-gsm-tester/sysmocom/main.conf -e OSMO_GSM_TESTER_OPTS=-s netreg_mass -e BUILD_NUMBER=8029 -w /build -i -v /home/osmocom-build/jenkins/workspace/osmo-gsm-tester_virtual:/build -v /home/osmocom-build/.ssh:/home/build/.ssh:ro --name=osmo-gsm-tester-virtual --cap-add=sys_nice osmocom-build/osmo-gsm-tester /bin/bash -c LANG="en_US.utf8" LC_ALL="en_US.UTF-8" LC_LANG="en_US.UTF-8" PATH="$PWD/osmo-gsm-tester/src:${PATH}" ./osmo-gsm-tester/contrib/jenkins-run.sh
+ base=/build
+ dirname -- ./osmo-gsm-tester/contrib/jenkins-run.sh
+ CDPATH= cd -- ./osmo-gsm-tester/contrib
+ pwd -P
+ SCRIPT_DIR=/build/osmo-gsm-tester/contrib
+ OSMO_GSM_TESTER_CONF=/build/osmo-gsm-tester/sysmocom/main.conf
+ date +%F %T
+ time_start=2025-07-16 22:48:18
+ trial_dir_prefix=trial-
+ rm -rf trial-*
+ trial_dir=trial-8029
+ mkdir -p trial-8029
+ mv open5gs.build-8.tgz osmo-bsc.build-2025-07-16_13_26_27.tgz osmo-bts-oc2g.build-2025-07-16_00_51_29.tgz osmo-bts-sysmo.build-2025-07-16_00_51_32.tgz osmo-bts.build-2025-07-16_00_51_37.tgz osmo-ggsn.build-2025-07-16_20_42_44.tgz osmo-hlr.build-2025-07-16_16_36_33.tgz osmo-hnbgw.build-2025-07-16_13_28_36.tgz osmo-mgw.build-2025-07-16_08_33_10.tgz osmo-msc.build-2025-07-16_13_32_26.tgz osmo-nitb.build-17155.tgz osmo-pcu-oc2g.build-2025-07-16_07_33_58.tgz osmo-pcu-sysmo.build-2025-07-16_07_35_57.tgz osmo-pcu.build-2025-07-16_07_36_04.tgz osmo-sgsn.build-2025-07-16_20_48_31.tgz osmo-stp.build-2025-07-16_13_25_15.tgz osmo-trx.build-2025-07-16_14_27_54.tgz osmocom-bb.build-2025-07-16_21_17_06.tgz srslte.build-19.tgz trial-8029
+ cat open5gs.build-8.md5 osmo-bsc.build-2025-07-16_13_26_27.md5 osmo-bts-oc2g.build-2025-07-16_00_51_29.md5 osmo-bts-sysmo.build-2025-07-16_00_51_32.md5 osmo-bts.build-2025-07-16_00_51_37.md5 osmo-ggsn.build-2025-07-16_20_42_44.md5 osmo-hlr.build-2025-07-16_16_36_33.md5 osmo-hnbgw.build-2025-07-16_13_28_36.md5 osmo-mgw.build-2025-07-16_08_33_10.md5 osmo-msc.build-2025-07-16_13_32_26.md5 osmo-nitb.build-17155.md5 osmo-pcu-oc2g.build-2025-07-16_07_33_58.md5 osmo-pcu-sysmo.build-2025-07-16_07_35_57.md5 osmo-pcu.build-2025-07-16_07_36_04.md5 osmo-sgsn.build-2025-07-16_20_48_31.md5 osmo-stp.build-2025-07-16_13_25_15.md5 osmo-trx.build-2025-07-16_14_27_54.md5 osmocom-bb.build-2025-07-16_21_17_06.md5 srslte.build-19.md5
+ rm open5gs.build-8.md5 osmo-bsc.build-2025-07-16_13_26_27.md5 osmo-bts-oc2g.build-2025-07-16_00_51_29.md5 osmo-bts-sysmo.build-2025-07-16_00_51_32.md5 osmo-bts.build-2025-07-16_00_51_37.md5 osmo-ggsn.build-2025-07-16_20_42_44.md5 osmo-hlr.build-2025-07-16_16_36_33.md5 osmo-hnbgw.build-2025-07-16_13_28_36.md5 osmo-mgw.build-2025-07-16_08_33_10.md5 osmo-msc.build-2025-07-16_13_32_26.md5 osmo-nitb.build-17155.md5 osmo-pcu-oc2g.build-2025-07-16_07_33_58.md5 osmo-pcu-sysmo.build-2025-07-16_07_35_57.md5 osmo-pcu.build-2025-07-16_07_36_04.md5 osmo-sgsn.build-2025-07-16_20_48_31.md5 osmo-stp.build-2025-07-16_13_25_15.md5 osmo-trx.build-2025-07-16_14_27_54.md5 osmocom-bb.build-2025-07-16_21_17_06.md5 srslte.build-19.md5
+ exit_code=1
+ which osmo-gsm-tester.py
+ python3 -u /build/osmo-gsm-tester/src/osmo-gsm-tester.py -c /build/osmo-gsm-tester/sysmocom/main.conf trial-8029 -s netreg_mass
combinations: ['netreg_mass']
trial: 'trial-8029'
tests: None
/build/osmo-gsm-tester/src/osmo_gsm_tester/obj/ms_android.py:201: SyntaxWarning: "is not" with a literal. Did you mean "!="?
if not(self.get_assigned_addr() is ''):
--------------------------------------------------------------------------------------------
trial-8029
--------------------------------------------------------------------------------------------
22:48:18.845618 tst trial-8029: Detailed log at /build/trial-8029/run.2025-07-16_22-48-18/log
---------------------------------------------------------------------
trial-8029 netreg_mass
---------------------------------------------------------------------
22:48:19.078468 tst netreg_mass: reserving resources in /var/tmp/osmo-gsm-tester/state ...
22:48:19.078929 tst netreg_mass: Verifying 1 x bts (candidates: 1)
22:48:19.079929 tst netreg_mass: Verifying 6 x ip_address (candidates: 9)
22:48:19.081390 tst netreg_mass: Verifying 100 x modem (candidates: 100)
22:48:19.130720 tst netreg_mass: Reserving 1 x bts (candidates: 1)
22:48:19.131706 tst netreg_mass: Reserving 6 x ip_address (candidates: 9)
22:48:19.133056 tst netreg_mass: Reserving 100 x modem (candidates: 100)
22:48:19.235059 tst netreg_mass: RESERVED RESOURCES for netreg_mass:
bts
OsmoBTS Virtual
ip_address
127.0.42.2
127.0.42.3
127.0.42.4
127.0.42.5
127.0.42.6
127.0.42.7
modem
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
osmo-mobile
----------------------------------------------
trial-8029 netreg_mass register_default_mass.py
----------------------------------------------
22:48:19.238775 tst register_default_mass.py:9: Claiming resources for the test
22:48:19.257738 tst netreg_mass: Using 1 x ip_address (candidates: 6)
22:48:19.258454 tst netreg_mass: Using 1 x ip_address (candidates: 6)
22:48:19.259024 tst netreg_mass: Using 1 x ip_address (candidates: 6)
22:48:19.259570 tst netreg_mass: Using 1 x ip_address (candidates: 6)
22:48:19.260111 tst netreg_mass: Using 1 x ip_address (candidates: 6)
22:48:19.260726 tst netreg_mass: Using 1 x ip_address (candidates: 6)
22:48:19.261283 tst netreg_mass: Using 1 x bts (candidates: 1)
22:48:19.326290 tst register_default_mass.py: using LAC 2
22:48:19.363015 tst register_default_mass.py: using RAC 2
22:48:19.407516 tst register_default_mass.py: using CellId 2
22:48:19.446925 tst register_default_mass.py: using BVCI 3
22:48:19.453642 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.454380 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.455007 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.455602 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.456191 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.456791 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.457364 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.457934 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.458530 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.459100 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.459659 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.460234 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.460886 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.461601 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.462206 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.462787 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.463361 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.463953 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.464540 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.465132 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.465712 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.466323 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.466938 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.467550 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.468161 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.468765 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.469369 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.469978 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.470578 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.471197 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.471807 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.472427 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.473057 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.473661 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.474249 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.474860 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.475464 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.476077 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.476676 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.477263 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.477860 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.478463 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.479072 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.479695 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.480302 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.480904 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.481500 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.482128 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.482735 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.483336 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.483959 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.484561 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.485167 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.485799 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.486400 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.486995 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.487596 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.488191 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.488780 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.489374 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.489951 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.490561 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.491172 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.491771 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.492372 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.492978 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.493575 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.494165 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.494777 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.495363 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.495950 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.496561 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.497250 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.497866 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.498468 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.499054 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.499629 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.500237 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.500835 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.501426 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.502034 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.502630 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.503235 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.503831 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.504416 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.505002 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.505605 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.506197 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.506940 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.507537 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.508140 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.508738 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.509367 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.509980 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.510582 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.511197 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.511814 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.512419 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.513039 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.513638 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.514227 tst netreg_mass: Using 1 x modem (candidates: 100)
22:48:19.514912 tst register_default_mass.py:21: Launching a simple network
22:48:19.527177 run osmo-hlr_127.0.42.2: Starting osmo-hlr
22:48:19.671844 run create_hlr_db(pid=20): Launched
22:48:20.683534 run create_hlr_db(pid=20): Terminated: ok {rc=0}
22:48:20.701463 run pcap-recorder_any(filters='host 127.0.42.2')(pid=22): Launched
22:48:20.717811 run osmo-hlr_127.0.42.2(pid=23): Launched
22:48:20.724140 run osmo-stp_127.0.42.5: Starting osmo-stp
22:48:20.916521 run pcap-recorder_any(filters='host 127.0.42.5 and port not 22')(pid=24): Launched
22:48:20.935596 run osmo-stp_127.0.42.5(pid=25): Launched
22:48:20.941831 run osmo-msc_127.0.42.6: Starting osmo-msc
22:48:21.406936 run pcap-recorder_any(filters='host 127.0.42.6 and port not 22')(pid=26): Launched
22:48:21.423770 run osmo-msc_127.0.42.6(pid=27): Launched
22:48:24.437454 run osmo-mgw_127.0.42.3: Starting osmo-mgw
22:48:24.613067 run pcap-recorder_any(filters='host 127.0.42.3 and port not 22')(pid=28): Launched
22:48:24.630401 run osmo-mgw_127.0.42.3(pid=29): Launched
22:48:24.637205 run osmo-mgw_127.0.42.4: Starting osmo-mgw
22:48:24.668201 run pcap-recorder_any(filters='host 127.0.42.4 and port not 22')(pid=30): Launched
22:48:24.689054 run osmo-mgw_127.0.42.4(pid=31): Launched
22:48:24.696381 run osmo-bsc_127.0.42.7: Starting osmo-bsc
22:48:25.070315 run pcap-recorder_any(filters='host 127.0.42.7 and port not 22')(pid=32): Launched
22:48:25.087315 run osmo-bsc_127.0.42.7(pid=33): Launched
22:48:31.107259 run osmo-bts-virtual: Starting to connect to osmo-bsc_127.0.42.7
22:48:31.288981 run osmo-bts-virtual(pid=34): Launched
22:48:32.338276 tst register_default_mass.py: using MSISDN 1001
22:48:32.344741 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000000', msisdn='1001', subscriber_id=1}
22:48:32.443781 tst register_default_mass.py: using MSISDN 1002
22:48:32.450546 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000001', msisdn='1002', subscriber_id=2}
22:48:32.529025 tst register_default_mass.py: using MSISDN 1003
22:48:32.535381 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000002', msisdn='1003', subscriber_id=3}
22:48:32.608719 tst register_default_mass.py: using MSISDN 1004
22:48:32.615104 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000003', msisdn='1004', subscriber_id=4}
22:48:32.688603 tst register_default_mass.py: using MSISDN 1005
22:48:32.698837 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000004', msisdn='1005', subscriber_id=5}
22:48:32.781027 tst register_default_mass.py: using MSISDN 1006
22:48:32.789284 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000005', msisdn='1006', subscriber_id=6}
22:48:32.859013 tst register_default_mass.py: using MSISDN 1007
22:48:32.872756 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000006', msisdn='1007', subscriber_id=7}
22:48:32.946321 tst register_default_mass.py: using MSISDN 1008
22:48:32.955391 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000007', msisdn='1008', subscriber_id=8}
22:48:33.020419 tst register_default_mass.py: using MSISDN 1009
22:48:33.026715 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000008', msisdn='1009', subscriber_id=9}
22:48:33.099896 tst register_default_mass.py: using MSISDN 1010
22:48:33.106819 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001010000000009', msisdn='1010', subscriber_id=10}
22:48:33.168961 tst register_default_mass.py: using MSISDN 1011
22:48:33.175093 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000000', msisdn='1011', subscriber_id=11}
22:48:33.255962 tst register_default_mass.py: using MSISDN 1012
22:48:33.262020 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000001', msisdn='1012', subscriber_id=12}
22:48:33.332218 tst register_default_mass.py: using MSISDN 1013
22:48:33.338653 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000002', msisdn='1013', subscriber_id=13}
22:48:33.402176 tst register_default_mass.py: using MSISDN 1014
22:48:33.411220 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000003', msisdn='1014', subscriber_id=14}
22:48:33.478325 tst register_default_mass.py: using MSISDN 1015
22:48:33.484260 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000004', msisdn='1015', subscriber_id=15}
22:48:33.547160 tst register_default_mass.py: using MSISDN 1016
22:48:33.553063 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000005', msisdn='1016', subscriber_id=16}
22:48:33.617379 tst register_default_mass.py: using MSISDN 1017
22:48:33.623497 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000006', msisdn='1017', subscriber_id=17}
22:48:33.695994 tst register_default_mass.py: using MSISDN 1018
22:48:33.701892 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000007', msisdn='1018', subscriber_id=18}
22:48:33.764975 tst register_default_mass.py: using MSISDN 1019
22:48:33.772714 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000008', msisdn='1019', subscriber_id=19}
22:48:33.836396 tst register_default_mass.py: using MSISDN 1020
22:48:33.844764 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001020000000009', msisdn='1020', subscriber_id=20}
22:48:33.912862 tst register_default_mass.py: using MSISDN 1021
22:48:33.920759 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000000', msisdn='1021', subscriber_id=21}
22:48:33.979497 tst register_default_mass.py: using MSISDN 1022
22:48:33.985813 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000001', msisdn='1022', subscriber_id=22}
22:48:34.057023 tst register_default_mass.py: using MSISDN 1023
22:48:34.064485 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000002', msisdn='1023', subscriber_id=23}
22:48:34.133582 tst register_default_mass.py: using MSISDN 1024
22:48:34.139457 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000003', msisdn='1024', subscriber_id=24}
22:48:34.200347 tst register_default_mass.py: using MSISDN 1025
22:48:34.206445 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000004', msisdn='1025', subscriber_id=25}
22:48:34.287974 tst register_default_mass.py: using MSISDN 1026
22:48:34.298875 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000005', msisdn='1026', subscriber_id=26}
22:48:34.369669 tst register_default_mass.py: using MSISDN 1027
22:48:34.375922 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000006', msisdn='1027', subscriber_id=27}
22:48:34.472867 tst register_default_mass.py: using MSISDN 1028
22:48:34.485570 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000007', msisdn='1028', subscriber_id=28}
22:48:34.610931 tst register_default_mass.py: using MSISDN 1029
22:48:34.618932 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000008', msisdn='1029', subscriber_id=29}
22:48:34.724470 tst register_default_mass.py: using MSISDN 1030
22:48:34.731747 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001030000000009', msisdn='1030', subscriber_id=30}
22:48:34.852166 tst register_default_mass.py: using MSISDN 1031
22:48:34.859407 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000000', msisdn='1031', subscriber_id=31}
22:48:34.939073 tst register_default_mass.py: using MSISDN 1032
22:48:34.945840 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000001', msisdn='1032', subscriber_id=32}
22:48:35.020002 tst register_default_mass.py: using MSISDN 1033
22:48:35.027160 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000002', msisdn='1033', subscriber_id=33}
22:48:35.106855 tst register_default_mass.py: using MSISDN 1034
22:48:35.114550 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000003', msisdn='1034', subscriber_id=34}
22:48:35.181228 tst register_default_mass.py: using MSISDN 1035
22:48:35.187747 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000004', msisdn='1035', subscriber_id=35}
22:48:35.263751 tst register_default_mass.py: using MSISDN 1036
22:48:35.272616 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000005', msisdn='1036', subscriber_id=36}
22:48:35.383718 tst register_default_mass.py: using MSISDN 1037
22:48:35.390716 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000006', msisdn='1037', subscriber_id=37}
22:48:35.476270 tst register_default_mass.py: using MSISDN 1038
22:48:35.483297 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000007', msisdn='1038', subscriber_id=38}
22:48:35.568191 tst register_default_mass.py: using MSISDN 1039
22:48:35.574893 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000008', msisdn='1039', subscriber_id=39}
22:48:35.664629 tst register_default_mass.py: using MSISDN 1040
22:48:35.671206 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001040000000009', msisdn='1040', subscriber_id=40}
22:48:35.747149 tst register_default_mass.py: using MSISDN 1041
22:48:35.753308 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000000', msisdn='1041', subscriber_id=41}
22:48:35.833816 tst register_default_mass.py: using MSISDN 1042
22:48:35.839845 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000001', msisdn='1042', subscriber_id=42}
22:48:35.914259 tst register_default_mass.py: using MSISDN 1043
22:48:35.920590 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000002', msisdn='1043', subscriber_id=43}
22:48:35.994296 tst register_default_mass.py: using MSISDN 1044
22:48:36.001389 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000003', msisdn='1044', subscriber_id=44}
22:48:36.064365 tst register_default_mass.py: using MSISDN 1045
22:48:36.071702 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000004', msisdn='1045', subscriber_id=45}
22:48:36.153321 tst register_default_mass.py: using MSISDN 1046
22:48:36.160134 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000005', msisdn='1046', subscriber_id=46}
22:48:36.234803 tst register_default_mass.py: using MSISDN 1047
22:48:36.241712 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000006', msisdn='1047', subscriber_id=47}
22:48:36.309842 tst register_default_mass.py: using MSISDN 1048
22:48:36.316848 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000007', msisdn='1048', subscriber_id=48}
22:48:36.395586 tst register_default_mass.py: using MSISDN 1049
22:48:36.402192 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000008', msisdn='1049', subscriber_id=49}
22:48:36.470250 tst register_default_mass.py: using MSISDN 1050
22:48:36.479927 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001050000000009', msisdn='1050', subscriber_id=50}
22:48:36.539732 tst register_default_mass.py: using MSISDN 1051
22:48:36.546783 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000000', msisdn='1051', subscriber_id=51}
22:48:36.614000 tst register_default_mass.py: using MSISDN 1052
22:48:36.622685 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000001', msisdn='1052', subscriber_id=52}
22:48:36.689587 tst register_default_mass.py: using MSISDN 1053
22:48:36.697554 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000002', msisdn='1053', subscriber_id=53}
22:48:36.774104 tst register_default_mass.py: using MSISDN 1054
22:48:36.780967 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000003', msisdn='1054', subscriber_id=54}
22:48:36.847019 tst register_default_mass.py: using MSISDN 1055
22:48:36.854014 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000004', msisdn='1055', subscriber_id=55}
22:48:36.929173 tst register_default_mass.py: using MSISDN 1056
22:48:36.941283 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000005', msisdn='1056', subscriber_id=56}
22:48:37.022771 tst register_default_mass.py: using MSISDN 1057
22:48:37.031047 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000006', msisdn='1057', subscriber_id=57}
22:48:37.105004 tst register_default_mass.py: using MSISDN 1058
22:48:37.117113 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000007', msisdn='1058', subscriber_id=58}
22:48:37.192921 tst register_default_mass.py: using MSISDN 1059
22:48:37.202843 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000008', msisdn='1059', subscriber_id=59}
22:48:37.272935 tst register_default_mass.py: using MSISDN 1060
22:48:37.284763 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001060000000009', msisdn='1060', subscriber_id=60}
22:48:37.361529 tst register_default_mass.py: using MSISDN 1061
22:48:37.369490 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000000', msisdn='1061', subscriber_id=61}
22:48:37.435018 tst register_default_mass.py: using MSISDN 1062
22:48:37.447085 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000001', msisdn='1062', subscriber_id=62}
22:48:37.540455 tst register_default_mass.py: using MSISDN 1063
22:48:37.555061 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000002', msisdn='1063', subscriber_id=63}
22:48:37.624344 tst register_default_mass.py: using MSISDN 1064
22:48:37.639815 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000003', msisdn='1064', subscriber_id=64}
22:48:37.734764 tst register_default_mass.py: using MSISDN 1065
22:48:37.751327 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000004', msisdn='1065', subscriber_id=65}
22:48:37.856464 tst register_default_mass.py: using MSISDN 1066
22:48:37.870666 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000005', msisdn='1066', subscriber_id=66}
22:48:37.957312 tst register_default_mass.py: using MSISDN 1067
22:48:37.972603 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000006', msisdn='1067', subscriber_id=67}
22:48:38.066480 tst register_default_mass.py: using MSISDN 1068
22:48:38.077234 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000007', msisdn='1068', subscriber_id=68}
22:48:38.172851 tst register_default_mass.py: using MSISDN 1069
22:48:38.189829 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000008', msisdn='1069', subscriber_id=69}
22:48:38.277856 tst register_default_mass.py: using MSISDN 1070
22:48:38.293596 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001070000000009', msisdn='1070', subscriber_id=70}
22:48:38.382883 tst register_default_mass.py: using MSISDN 1071
22:48:38.398850 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000000', msisdn='1071', subscriber_id=71}
22:48:38.477413 tst register_default_mass.py: using MSISDN 1072
22:48:38.495406 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000001', msisdn='1072', subscriber_id=72}
22:48:38.565556 tst register_default_mass.py: using MSISDN 1073
22:48:38.580444 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000002', msisdn='1073', subscriber_id=73}
22:48:38.785329 tst register_default_mass.py: using MSISDN 1074
22:48:38.795376 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000003', msisdn='1074', subscriber_id=74}
22:48:38.871403 tst register_default_mass.py: using MSISDN 1075
22:48:38.878151 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000004', msisdn='1075', subscriber_id=75}
22:48:38.951144 tst register_default_mass.py: using MSISDN 1076
22:48:38.958948 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000005', msisdn='1076', subscriber_id=76}
22:48:39.042011 tst register_default_mass.py: using MSISDN 1077
22:48:39.048741 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000006', msisdn='1077', subscriber_id=77}
22:48:39.469257 tst register_default_mass.py: using MSISDN 1078
22:48:39.475752 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000007', msisdn='1078', subscriber_id=78}
22:48:39.547244 tst register_default_mass.py: using MSISDN 1079
22:48:39.559531 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000008', msisdn='1079', subscriber_id=79}
22:48:39.625685 tst register_default_mass.py: using MSISDN 1080
22:48:39.636355 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001080000000009', msisdn='1080', subscriber_id=80}
22:48:39.698609 tst register_default_mass.py: using MSISDN 1081
22:48:39.705986 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000000', msisdn='1081', subscriber_id=81}
22:48:39.785051 tst register_default_mass.py: using MSISDN 1082
22:48:39.791099 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000001', msisdn='1082', subscriber_id=82}
22:48:39.861408 tst register_default_mass.py: using MSISDN 1083
22:48:39.867364 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000002', msisdn='1083', subscriber_id=83}
22:48:39.936293 tst register_default_mass.py: using MSISDN 1084
22:48:39.942730 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000003', msisdn='1084', subscriber_id=84}
22:48:40.029061 tst register_default_mass.py: using MSISDN 1085
22:48:40.035617 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000004', msisdn='1085', subscriber_id=85}
22:48:40.122686 tst register_default_mass.py: using MSISDN 1086
22:48:40.129257 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000005', msisdn='1086', subscriber_id=86}
22:48:40.202519 tst register_default_mass.py: using MSISDN 1087
22:48:40.209388 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000006', msisdn='1087', subscriber_id=87}
22:48:40.280324 tst register_default_mass.py: using MSISDN 1088
22:48:40.286736 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000007', msisdn='1088', subscriber_id=88}
22:48:40.360085 tst register_default_mass.py: using MSISDN 1089
22:48:40.371262 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000008', msisdn='1089', subscriber_id=89}
22:48:40.452939 tst register_default_mass.py: using MSISDN 1090
22:48:40.459295 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001090000000009', msisdn='1090', subscriber_id=90}
22:48:40.528557 tst register_default_mass.py: using MSISDN 1091
22:48:40.535892 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000000', msisdn='1091', subscriber_id=91}
22:48:40.626651 tst register_default_mass.py: using MSISDN 1092
22:48:40.634171 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000001', msisdn='1092', subscriber_id=92}
22:48:40.707401 tst register_default_mass.py: using MSISDN 1093
22:48:40.714861 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000002', msisdn='1093', subscriber_id=93}
22:48:40.778861 tst register_default_mass.py: using MSISDN 1094
22:48:40.788877 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000003', msisdn='1094', subscriber_id=94}
22:48:40.861788 tst register_default_mass.py: using MSISDN 1095
22:48:40.870731 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000004', msisdn='1095', subscriber_id=95}
22:48:40.939846 tst register_default_mass.py: using MSISDN 1096
22:48:40.947486 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000005', msisdn='1096', subscriber_id=96}
22:48:41.031561 tst register_default_mass.py: using MSISDN 1097
22:48:41.041958 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000006', msisdn='1097', subscriber_id=97}
22:48:41.129498 tst register_default_mass.py: using MSISDN 1098
22:48:41.144468 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000007', msisdn='1098', subscriber_id=98}
22:48:41.220252 tst register_default_mass.py: using MSISDN 1099
22:48:41.234610 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000008', msisdn='1099', subscriber_id=99}
22:48:41.319103 tst register_default_mass.py: using MSISDN 1100
22:48:41.328862 run osmo-hlr_127.0.42.2: Add subscriber {algo=0, algo_str='none', imsi='001100000000009', msisdn='1100', subscriber_id=100}
22:48:41.500916 run mass: Starting testcase
22:48:41.508951 run mass: Pre-launching all virtphy's
22:48:41.516493 run osmo-ms-virt-phy/00000: Starting virtphy
22:48:41.534534 run osmo-ms-virt-phy/00000(pid=35): Launched
22:48:41.543033 run osmo-ms-virt-phy/00001: Starting virtphy
22:48:41.560294 run osmo-ms-virt-phy/00001(pid=36): Launched
22:48:41.567984 run osmo-ms-virt-phy/00002: Starting virtphy
22:48:41.584733 run osmo-ms-virt-phy/00002(pid=37): Launched
22:48:41.592591 run osmo-ms-virt-phy/00003: Starting virtphy
22:48:41.609645 run osmo-ms-virt-phy/00003(pid=38): Launched
22:48:41.617426 run osmo-ms-virt-phy/00004: Starting virtphy
22:48:41.634412 run osmo-ms-virt-phy/00004(pid=39): Launched
22:48:41.642281 run osmo-ms-virt-phy/00005: Starting virtphy
22:48:41.659239 run osmo-ms-virt-phy/00005(pid=40): Launched
22:48:41.666978 run osmo-ms-virt-phy/00006: Starting virtphy
22:48:41.683656 run osmo-ms-virt-phy/00006(pid=41): Launched
22:48:41.691298 run osmo-ms-virt-phy/00007: Starting virtphy
22:48:41.708134 run osmo-ms-virt-phy/00007(pid=42): Launched
22:48:41.716019 run osmo-ms-virt-phy/00008: Starting virtphy
22:48:41.733364 run osmo-ms-virt-phy/00008(pid=43): Launched
22:48:41.742130 run osmo-ms-virt-phy/00009: Starting virtphy
22:48:41.760021 run osmo-ms-virt-phy/00009(pid=44): Launched
22:48:41.768218 run osmo-ms-virt-phy/00010: Starting virtphy
22:48:41.785902 run osmo-ms-virt-phy/00010(pid=45): Launched
22:48:41.794478 run osmo-ms-virt-phy/00011: Starting virtphy
22:48:41.812142 run osmo-ms-virt-phy/00011(pid=46): Launched
22:48:41.820723 run osmo-ms-virt-phy/00012: Starting virtphy
22:48:41.838755 run osmo-ms-virt-phy/00012(pid=47): Launched
22:48:41.846943 run osmo-ms-virt-phy/00013: Starting virtphy
22:48:41.864367 run osmo-ms-virt-phy/00013(pid=48): Launched
22:48:41.872292 run osmo-ms-virt-phy/00014: Starting virtphy
22:48:41.889598 run osmo-ms-virt-phy/00014(pid=49): Launched
22:48:41.898046 run osmo-ms-virt-phy/00015: Starting virtphy
22:48:41.915505 run osmo-ms-virt-phy/00015(pid=50): Launched
22:48:41.923527 run osmo-ms-virt-phy/00016: Starting virtphy
22:48:41.941132 run osmo-ms-virt-phy/00016(pid=51): Launched
22:48:41.949501 run osmo-ms-virt-phy/00017: Starting virtphy
22:48:41.967406 run osmo-ms-virt-phy/00017(pid=52): Launched
22:48:41.975709 run osmo-ms-virt-phy/00018: Starting virtphy
22:48:41.993583 run osmo-ms-virt-phy/00018(pid=53): Launched
22:48:42.001790 run osmo-ms-virt-phy/00019: Starting virtphy
22:48:42.019123 run osmo-ms-virt-phy/00019(pid=54): Launched
22:48:42.026816 run osmo-ms-virt-phy/00020: Starting virtphy
22:48:42.043555 run osmo-ms-virt-phy/00020(pid=55): Launched
22:48:42.051373 run osmo-ms-virt-phy/00021: Starting virtphy
22:48:42.068557 run osmo-ms-virt-phy/00021(pid=56): Launched
22:48:42.076493 run osmo-ms-virt-phy/00022: Starting virtphy
22:48:42.094102 run osmo-ms-virt-phy/00022(pid=57): Launched
22:48:42.103593 run osmo-ms-virt-phy/00023: Starting virtphy
22:48:42.121493 run osmo-ms-virt-phy/00023(pid=58): Launched
22:48:42.129561 run osmo-ms-virt-phy/00024: Starting virtphy
22:48:42.147307 run osmo-ms-virt-phy/00024(pid=59): Launched
22:48:42.156011 run osmo-ms-virt-phy/00025: Starting virtphy
22:48:42.174496 run osmo-ms-virt-phy/00025(pid=60): Launched
22:48:42.183922 run osmo-ms-virt-phy/00026: Starting virtphy
22:48:42.201941 run osmo-ms-virt-phy/00026(pid=61): Launched
22:48:42.210632 run osmo-ms-virt-phy/00027: Starting virtphy
22:48:42.228654 run osmo-ms-virt-phy/00027(pid=62): Launched
22:48:42.236948 run osmo-ms-virt-phy/00028: Starting virtphy
22:48:42.254769 run osmo-ms-virt-phy/00028(pid=63): Launched
22:48:42.263320 run osmo-ms-virt-phy/00029: Starting virtphy
22:48:42.281779 run osmo-ms-virt-phy/00029(pid=64): Launched
22:48:42.290560 run osmo-ms-virt-phy/00030: Starting virtphy
22:48:42.308957 run osmo-ms-virt-phy/00030(pid=65): Launched
22:48:42.317770 run osmo-ms-virt-phy/00031: Starting virtphy
22:48:42.335887 run osmo-ms-virt-phy/00031(pid=66): Launched
22:48:42.344600 run osmo-ms-virt-phy/00032: Starting virtphy
22:48:42.362597 run osmo-ms-virt-phy/00032(pid=67): Launched
22:48:42.371888 run osmo-ms-virt-phy/00033: Starting virtphy
22:48:42.390076 run osmo-ms-virt-phy/00033(pid=68): Launched
22:48:42.399814 run osmo-ms-virt-phy/00034: Starting virtphy
22:48:42.418048 run osmo-ms-virt-phy/00034(pid=69): Launched
22:48:42.426850 run osmo-ms-virt-phy/00035: Starting virtphy
22:48:42.445056 run osmo-ms-virt-phy/00035(pid=70): Launched
22:48:42.455230 run osmo-ms-virt-phy/00036: Starting virtphy
22:48:42.473591 run osmo-ms-virt-phy/00036(pid=71): Launched
22:48:42.483582 run osmo-ms-virt-phy/00037: Starting virtphy
22:48:42.502505 run osmo-ms-virt-phy/00037(pid=72): Launched
22:48:42.511672 run osmo-ms-virt-phy/00038: Starting virtphy
22:48:42.530235 run osmo-ms-virt-phy/00038(pid=73): Launched
22:48:42.538428 run osmo-ms-virt-phy/00039: Starting virtphy
22:48:42.555550 run osmo-ms-virt-phy/00039(pid=74): Launched
22:48:42.563230 run osmo-ms-virt-phy/00040: Starting virtphy
22:48:42.579895 run osmo-ms-virt-phy/00040(pid=75): Launched
22:48:42.587895 run osmo-ms-virt-phy/00041: Starting virtphy
22:48:42.604991 run osmo-ms-virt-phy/00041(pid=76): Launched
22:48:42.613021 run osmo-ms-virt-phy/00042: Starting virtphy
22:48:42.630942 run osmo-ms-virt-phy/00042(pid=77): Launched
22:48:42.639441 run osmo-ms-virt-phy/00043: Starting virtphy
22:48:42.656991 run osmo-ms-virt-phy/00043(pid=78): Launched
22:48:42.665081 run osmo-ms-virt-phy/00044: Starting virtphy
22:48:42.682237 run osmo-ms-virt-phy/00044(pid=79): Launched
22:48:42.690297 run osmo-ms-virt-phy/00045: Starting virtphy
22:48:42.707964 run osmo-ms-virt-phy/00045(pid=80): Launched
22:48:42.716442 run osmo-ms-virt-phy/00046: Starting virtphy
22:48:42.734039 run osmo-ms-virt-phy/00046(pid=81): Launched
22:48:42.742030 run osmo-ms-virt-phy/00047: Starting virtphy
22:48:42.759364 run osmo-ms-virt-phy/00047(pid=82): Launched
22:48:42.767410 run osmo-ms-virt-phy/00048: Starting virtphy
22:48:42.784474 run osmo-ms-virt-phy/00048(pid=83): Launched
22:48:42.792837 run osmo-ms-virt-phy/00049: Starting virtphy
22:48:42.809811 run osmo-ms-virt-phy/00049(pid=84): Launched
22:48:42.817851 run osmo-ms-virt-phy/00050: Starting virtphy
22:48:42.834872 run osmo-ms-virt-phy/00050(pid=85): Launched
22:48:42.842578 run osmo-ms-virt-phy/00051: Starting virtphy
22:48:42.859960 run osmo-ms-virt-phy/00051(pid=86): Launched
22:48:42.867833 run osmo-ms-virt-phy/00052: Starting virtphy
22:48:42.885009 run osmo-ms-virt-phy/00052(pid=87): Launched
22:48:42.892837 run osmo-ms-virt-phy/00053: Starting virtphy
22:48:42.910296 run osmo-ms-virt-phy/00053(pid=88): Launched
22:48:42.918289 run osmo-ms-virt-phy/00054: Starting virtphy
22:48:42.935650 run osmo-ms-virt-phy/00054(pid=89): Launched
22:48:42.943521 run osmo-ms-virt-phy/00055: Starting virtphy
22:48:42.960724 run osmo-ms-virt-phy/00055(pid=90): Launched
22:48:42.974792 run osmo-ms-virt-phy/00056: Starting virtphy
22:48:42.994543 run osmo-ms-virt-phy/00056(pid=91): Launched
22:48:43.002503 run osmo-ms-virt-phy/00057: Starting virtphy
22:48:43.019319 run osmo-ms-virt-phy/00057(pid=92): Launched
22:48:43.027111 run osmo-ms-virt-phy/00058: Starting virtphy
22:48:43.044187 run osmo-ms-virt-phy/00058(pid=93): Launched
22:48:43.051962 run osmo-ms-virt-phy/00059: Starting virtphy
22:48:43.079131 run osmo-ms-virt-phy/00059(pid=94): Launched
22:48:43.087084 run osmo-ms-virt-phy/00060: Starting virtphy
22:48:43.104344 run osmo-ms-virt-phy/00060(pid=95): Launched
22:48:43.112426 run osmo-ms-virt-phy/00061: Starting virtphy
22:48:43.129881 run osmo-ms-virt-phy/00061(pid=96): Launched
22:48:43.138315 run osmo-ms-virt-phy/00062: Starting virtphy
22:48:43.156179 run osmo-ms-virt-phy/00062(pid=97): Launched
22:48:43.164349 run osmo-ms-virt-phy/00063: Starting virtphy
22:48:43.181796 run osmo-ms-virt-phy/00063(pid=98): Launched
22:48:43.189890 run osmo-ms-virt-phy/00064: Starting virtphy
22:48:43.207473 run osmo-ms-virt-phy/00064(pid=99): Launched
22:48:43.215518 run osmo-ms-virt-phy/00065: Starting virtphy
22:48:43.232935 run osmo-ms-virt-phy/00065(pid=100): Launched
22:48:43.241034 run osmo-ms-virt-phy/00066: Starting virtphy
22:48:43.258787 run osmo-ms-virt-phy/00066(pid=101): Launched
22:48:43.268029 run osmo-ms-virt-phy/00067: Starting virtphy
22:48:43.285714 run osmo-ms-virt-phy/00067(pid=102): Launched
22:48:43.293839 run osmo-ms-virt-phy/00068: Starting virtphy
22:48:43.311293 run osmo-ms-virt-phy/00068(pid=103): Launched
22:48:43.319217 run osmo-ms-virt-phy/00069: Starting virtphy
22:48:43.336224 run osmo-ms-virt-phy/00069(pid=104): Launched
22:48:43.344616 run osmo-ms-virt-phy/00070: Starting virtphy
22:48:43.362500 run osmo-ms-virt-phy/00070(pid=105): Launched
22:48:43.370709 run osmo-ms-virt-phy/00071: Starting virtphy
22:48:43.387825 run osmo-ms-virt-phy/00071(pid=106): Launched
22:48:43.395698 run osmo-ms-virt-phy/00072: Starting virtphy
22:48:43.412491 run osmo-ms-virt-phy/00072(pid=107): Launched
22:48:43.419882 run osmo-ms-virt-phy/00073: Starting virtphy
22:48:43.435961 run osmo-ms-virt-phy/00073(pid=108): Launched
22:48:43.443414 run osmo-ms-virt-phy/00074: Starting virtphy
22:48:43.459828 run osmo-ms-virt-phy/00074(pid=109): Launched
22:48:43.467432 run osmo-ms-virt-phy/00075: Starting virtphy
22:48:43.483629 run osmo-ms-virt-phy/00075(pid=110): Launched
22:48:43.491354 run osmo-ms-virt-phy/00076: Starting virtphy
22:48:43.508070 run osmo-ms-virt-phy/00076(pid=111): Launched
22:48:43.515848 run osmo-ms-virt-phy/00077: Starting virtphy
22:48:43.532634 run osmo-ms-virt-phy/00077(pid=112): Launched
22:48:43.540308 run osmo-ms-virt-phy/00078: Starting virtphy
22:48:43.557549 run osmo-ms-virt-phy/00078(pid=113): Launched
22:48:43.566224 run osmo-ms-virt-phy/00079: Starting virtphy
22:48:43.583893 run osmo-ms-virt-phy/00079(pid=114): Launched
22:48:43.591731 run osmo-ms-virt-phy/00080: Starting virtphy
22:48:43.609266 run osmo-ms-virt-phy/00080(pid=115): Launched
22:48:43.617567 run osmo-ms-virt-phy/00081: Starting virtphy
22:48:43.635053 run osmo-ms-virt-phy/00081(pid=116): Launched
22:48:43.643264 run osmo-ms-virt-phy/00082: Starting virtphy
22:48:43.660076 run osmo-ms-virt-phy/00082(pid=117): Launched
22:48:43.667806 run osmo-ms-virt-phy/00083: Starting virtphy
22:48:43.684760 run osmo-ms-virt-phy/00083(pid=118): Launched
22:48:43.692834 run osmo-ms-virt-phy/00084: Starting virtphy
22:48:43.710419 run osmo-ms-virt-phy/00084(pid=119): Launched
22:48:43.724816 run osmo-ms-virt-phy/00085: Starting virtphy
22:48:43.741928 run osmo-ms-virt-phy/00085(pid=120): Launched
22:48:43.749967 run osmo-ms-virt-phy/00086: Starting virtphy
22:48:43.767316 run osmo-ms-virt-phy/00086(pid=121): Launched
22:48:43.775789 run osmo-ms-virt-phy/00087: Starting virtphy
22:48:43.793253 run osmo-ms-virt-phy/00087(pid=122): Launched
22:48:43.801890 run osmo-ms-virt-phy/00088: Starting virtphy
22:48:43.819241 run osmo-ms-virt-phy/00088(pid=123): Launched
22:48:43.827306 run osmo-ms-virt-phy/00089: Starting virtphy
22:48:43.845256 run osmo-ms-virt-phy/00089(pid=124): Launched
22:48:43.853420 run osmo-ms-virt-phy/00090: Starting virtphy
22:48:43.870616 run osmo-ms-virt-phy/00090(pid=125): Launched
22:48:43.878264 run osmo-ms-virt-phy/00091: Starting virtphy
22:48:43.894754 run osmo-ms-virt-phy/00091(pid=126): Launched
22:48:43.902438 run osmo-ms-virt-phy/00092: Starting virtphy
22:48:43.919178 run osmo-ms-virt-phy/00092(pid=127): Launched
22:48:43.926702 run osmo-ms-virt-phy/00093: Starting virtphy
22:48:43.942775 run osmo-ms-virt-phy/00093(pid=128): Launched
22:48:43.950045 run osmo-ms-virt-phy/00094: Starting virtphy
22:48:43.965640 run osmo-ms-virt-phy/00094(pid=129): Launched
22:48:43.972851 run osmo-ms-virt-phy/00095: Starting virtphy
22:48:43.988519 run osmo-ms-virt-phy/00095(pid=130): Launched
22:48:43.995776 run osmo-ms-virt-phy/00096: Starting virtphy
22:48:44.011664 run osmo-ms-virt-phy/00096(pid=131): Launched
22:48:44.019051 run osmo-ms-virt-phy/00097: Starting virtphy
22:48:44.035105 run osmo-ms-virt-phy/00097(pid=132): Launched
22:48:44.042504 run osmo-ms-virt-phy/00098: Starting virtphy
22:48:44.058706 run osmo-ms-virt-phy/00098(pid=133): Launched
22:48:44.066131 run osmo-ms-virt-phy/00099: Starting virtphy
22:48:44.082509 run osmo-ms-virt-phy/00099(pid=134): Launched
22:48:44.089918 run mass: Checking if sockets are in the filesystem
22:48:44.104950 run osmo-ms-mob/00000: Starting mobile
22:48:44.120921 run osmo-ms-mob/00000(pid=135): Launched
22:48:44.137551 run mass: MS start registered {at=15937029.84089121, delay=0.009268313646316528, ms=00000}
22:48:48.311077 run osmo-ms-mob/00001: Starting mobile
22:48:48.332214 run osmo-ms-mob/00001(pid=136): Launched
22:48:48.356015 run mass: MS start registered {at=15937034.059323711, delay=0.014570266008377075, ms=00001}
22:48:49.769230 run mass: MS performed LU {at=15937035.472515997, lu_delay=5.631624786183238, ms=00000}
22:48:50.108734 run osmo-ms-mob/00002: Starting mobile
22:48:50.137900 run osmo-ms-mob/00002(pid=137): Launched
22:48:50.152707 run mass: MS start registered {at=15937035.85603396, delay=5.4838135838508606e-05, ms=00002}
22:48:51.406560 run osmo-ms-mob/00003: Starting mobile
22:48:51.424655 run osmo-ms-mob/00003(pid=138): Launched
22:48:51.439439 run mass: MS start registered {at=15937037.14274509, delay=0.006063200533390045, ms=00003}
22:48:52.504456 run osmo-ms-mob/00004: Starting mobile
22:48:52.521453 run osmo-ms-mob/00004(pid=139): Launched
22:48:52.535181 run mass: MS start registered {at=15937038.23850396, delay=0.005691345781087875, ms=00004}
22:48:53.506178 run osmo-ms-mob/00005: Starting mobile
22:48:53.526881 run osmo-ms-mob/00005(pid=140): Launched
22:48:53.536202 run mass: MS performed LU {at=15937039.239547612, lu_delay=5.180223900824785, ms=00001}
22:48:53.544231 run mass: MS start registered {at=15937039.247584645, delay=0.008061718195676804, ms=00005}
22:48:54.404187 run osmo-ms-mob/00006: Starting mobile
22:48:54.420829 run osmo-ms-mob/00006(pid=141): Launched
22:48:54.438860 run mass: MS start registered {at=15937040.142192263, delay=0.009388986974954605, ms=00006}
22:48:55.306297 run osmo-ms-mob/00007: Starting mobile
22:48:55.322961 run osmo-ms-mob/00007(pid=142): Launched
22:48:55.337049 run mass: MS start registered {at=15937041.040373174, delay=0.005680767819285393, ms=00007}
22:48:55.435934 run mass: MS performed LU {at=15937041.139253344, lu_delay=5.283219384029508, ms=00002}
22:48:56.103923 run osmo-ms-mob/00008: Starting mobile
22:48:56.119747 run osmo-ms-mob/00008(pid=143): Launched
22:48:56.133408 run mass: MS start registered {at=15937041.836753886, delay=0.002912798896431923, ms=00008}
22:48:56.804086 run osmo-ms-mob/00009: Starting mobile
22:48:56.819915 run osmo-ms-mob/00009(pid=144): Launched
22:48:56.834282 run mass: MS start registered {at=15937042.537609873, delay=0.006811683997511864, ms=00009}
22:48:57.300764 run mass: MS performed LU {at=15937043.00408966, lu_delay=5.861344568431377, ms=00003}
22:48:57.346751 run mass: MS performed LU {at=15937043.050076732, lu_delay=4.8115727715194225, ms=00004}
22:48:57.360305 run osmo-ms-mob/00010: Starting mobile
22:48:57.376541 run osmo-ms-mob/00010(pid=145): Launched
22:48:57.390249 run mass: MS start registered {at=15937043.093588555, delay=0.006147762760519981, ms=00010}
22:48:58.109911 run osmo-ms-mob/00011: Starting mobile
22:48:58.140805 run osmo-ms-mob/00011(pid=146): Launched
22:48:58.154955 run mass: MS start registered {at=15937043.858294586, delay=0.0038282815366983414, ms=00011}
22:48:58.705151 run osmo-ms-mob/00012: Starting mobile
22:48:58.721885 run osmo-ms-mob/00012(pid=147): Launched
22:48:58.737042 run mass: MS start registered {at=15937044.440352159, delay=0.0074597373604774475, ms=00012}
22:48:59.201575 run mass: MS performed LU {at=15937044.90488729, lu_delay=4.762695027515292, ms=00006}
22:48:59.216144 run osmo-ms-mob/00013: Starting mobile
22:48:59.232204 run osmo-ms-mob/00013(pid=148): Launched
22:48:59.245235 run mass: MS start registered {at=15937044.948558008, delay=0.005690857768058777, ms=00013}
22:48:59.253856 run mass: MS performed LU {at=15937044.957207948, lu_delay=5.7096233032643795, ms=00005}
22:48:59.956241 run osmo-ms-mob/00014: Starting mobile
22:48:59.970523 run osmo-ms-mob/00014(pid=149): Launched
22:48:59.982632 run mass: MS start registered {at=15937045.685974091, delay=0.005594320595264435, ms=00014}
22:49:00.755761 run osmo-ms-mob/00015: Starting mobile
22:49:00.796783 run osmo-ms-mob/00015(pid=150): Launched
22:49:00.804275 run mass: Starting too slowly. Moving on {now=15937046.507637903, sleep=-0.2071772087365389, target=15937046.300460694}
22:49:00.810906 run mass: MS start registered {at=15937046.514260529, delay=0.006625223904848099, ms=00015}
22:49:00.817368 run mass: Starting too slowly. Moving on {now=15937046.52073473, sleep=-0.12027403526008129, target=15937046.400460694}
22:49:00.823539 run mass: Starting too slowly. Moving on {now=15937046.526906822, sleep=-0.026446128264069557, target=15937046.500460694}
22:49:01.003706 run osmo-ms-mob/00016: Starting mobile
22:49:01.017501 run osmo-ms-mob/00016(pid=151): Launched
22:49:01.029998 run mass: MS start registered {at=15937046.733335922, delay=0.005654584616422653, ms=00016}
22:49:01.503986 run osmo-ms-mob/00017: Starting mobile
22:49:01.519273 run osmo-ms-mob/00017(pid=152): Launched
22:49:01.531805 run mass: MS start registered {at=15937047.23514754, delay=0.005511416122317314, ms=00017}
22:49:01.772306 run mass: MS performed LU {at=15937047.475625973, lu_delay=6.435252798721194, ms=00007}
22:49:01.817980 run mass: MS performed LU {at=15937047.52131528, lu_delay=5.6845613941550255, ms=00008}
22:49:02.103663 run osmo-ms-mob/00018: Starting mobile
22:49:02.117327 run osmo-ms-mob/00018(pid=153): Launched
22:49:02.128905 run mass: MS start registered {at=15937047.832256166, delay=0.005106739699840546, ms=00018}
22:49:02.503207 run osmo-ms-mob/00019: Starting mobile
22:49:02.516876 run osmo-ms-mob/00019(pid=154): Launched
22:49:02.528991 run mass: MS start registered {at=15937048.23233574, delay=0.005733266472816467, ms=00019}
22:49:02.967218 run mass: MS performed LU {at=15937048.670543255, lu_delay=6.132933381944895, ms=00009}
22:49:02.979785 run osmo-ms-mob/00020: Starting mobile
22:49:02.994201 run osmo-ms-mob/00020(pid=155): Launched
22:49:03.006345 run mass: MS start registered {at=15937048.709674306, delay=0.005217401310801506, ms=00020}
22:49:03.016107 run mass: MS performed LU {at=15937048.719466694, lu_delay=4.861172107979655, ms=00011}
22:49:03.082811 run mass: MS performed LU {at=15937048.786126232, lu_delay=5.692537676542997, ms=00010}
22:49:03.504286 run osmo-ms-mob/00021: Starting mobile
22:49:03.520169 run osmo-ms-mob/00021(pid=156): Launched
22:49:03.533918 run mass: MS start registered {at=15937049.237253226, delay=0.006178408861160278, ms=00021}
22:49:03.903965 run osmo-ms-mob/00022: Starting mobile
22:49:03.918412 run osmo-ms-mob/00022(pid=157): Launched
22:49:03.931102 run mass: MS start registered {at=15937049.634436058, delay=0.005819512531161308, ms=00022}
22:49:04.403082 run osmo-ms-mob/00023: Starting mobile
22:49:04.419417 run osmo-ms-mob/00023(pid=158): Launched
22:49:04.432724 run mass: MS start registered {at=15937050.136064474, delay=0.006603790447115898, ms=00023}
22:49:04.748635 run mass: MS performed LU {at=15937050.451956168, lu_delay=5.503398159518838, ms=00013}
22:49:04.764035 run osmo-ms-mob/00024: Starting mobile
22:49:04.780602 run osmo-ms-mob/00024(pid=159): Launched
22:49:04.795454 run mass: MS start registered {at=15937050.498778664, delay=0.006640233099460602, ms=00024}
22:49:04.831782 run mass: MS performed LU {at=15937050.535108738, lu_delay=4.849134646356106, ms=00014}
22:49:04.878247 run mass: MS performed LU {at=15937050.581566932, lu_delay=6.141214773058891, ms=00012}
22:49:05.305367 run osmo-ms-mob/00025: Starting mobile
22:49:05.322374 run osmo-ms-mob/00025(pid=160): Launched
22:49:05.335382 run mass: MS start registered {at=15937051.03868686, delay=0.005060790106654167, ms=00025}
22:49:05.709240 run osmo-ms-mob/00026: Starting mobile
22:49:05.729197 run osmo-ms-mob/00026(pid=161): Launched
22:49:05.744278 run mass: MS start registered {at=15937051.447600704, delay=0.0061031524091959, ms=00026}
22:49:06.127717 run osmo-ms-mob/00027: Starting mobile
22:49:06.151214 run osmo-ms-mob/00027(pid=162): Launched
22:49:06.167200 run mass: MS start registered {at=15937051.87053966, delay=3.869272768497467e-05, ms=00027}
22:49:06.506583 run osmo-ms-mob/00028: Starting mobile
22:49:06.525910 run osmo-ms-mob/00028(pid=163): Launched
22:49:06.546340 run mass: MS start registered {at=15937052.249635432, delay=0.009747263044118881, ms=00028}
22:49:06.779693 run mass: MS performed LU {at=15937052.482997904, lu_delay=5.749661982059479, ms=00016}
22:49:06.848457 run mass: MS performed LU {at=15937052.551782783, lu_delay=6.037522254511714, ms=00015}
22:49:06.862738 run osmo-ms-mob/00029: Starting mobile
22:49:06.879328 run osmo-ms-mob/00029(pid=164): Launched
22:49:06.887503 run mass: MS performed LU {at=15937052.590852326, lu_delay=4.758596159517765, ms=00018}
22:49:06.895655 run mass: MS start registered {at=15937052.599015698, delay=0.008190561085939407, ms=00029}
22:49:06.968849 run mass: MS performed LU {at=15937052.672160488, lu_delay=5.4370129480957985, ms=00017}
22:49:07.303763 run osmo-ms-mob/00030: Starting mobile
22:49:07.319850 run osmo-ms-mob/00030(pid=165): Launched
22:49:07.332371 run mass: MS start registered {at=15937053.035707062, delay=0.005418146029114723, ms=00030}
22:49:07.703943 run osmo-ms-mob/00031: Starting mobile
22:49:07.718277 run osmo-ms-mob/00031(pid=166): Launched
22:49:07.731781 run mass: MS start registered {at=15937053.435125036, delay=0.004377780482172966, ms=00031}
22:49:08.005915 run osmo-ms-mob/00032: Starting mobile
22:49:08.022957 run osmo-ms-mob/00032(pid=167): Launched
22:49:08.037294 run mass: MS start registered {at=15937053.7406199, delay=0.003906384110450745, ms=00032}
22:49:08.404914 run osmo-ms-mob/00033: Starting mobile
22:49:08.422467 run osmo-ms-mob/00033(pid=168): Launched
22:49:08.437591 run mass: MS start registered {at=15937054.140912602, delay=0.00721745565533638, ms=00033}
22:49:08.514865 run mass: MS performed LU {at=15937054.218164055, lu_delay=5.985828313976526, ms=00019}
22:49:08.597915 run mass: MS performed LU {at=15937054.30124546, lu_delay=4.666809402406216, ms=00022}
22:49:08.787722 run mass: MS performed LU {at=15937054.49105058, lu_delay=5.781376274302602, ms=00020}
22:49:08.801614 run osmo-ms-mob/00034: Starting mobile
22:49:08.818921 run osmo-ms-mob/00034(pid=169): Launched
22:49:08.832739 run mass: MS start registered {at=15937054.536083827, delay=0.00614514946937561, ms=00034}
22:49:09.104010 run osmo-ms-mob/00035: Starting mobile
22:49:09.119487 run osmo-ms-mob/00035(pid=170): Launched
22:49:09.133299 run mass: MS start registered {at=15937054.836633619, delay=0.006563393399119377, ms=00035}
22:49:09.504353 run osmo-ms-mob/00036: Starting mobile
22:49:09.520973 run osmo-ms-mob/00036(pid=171): Launched
22:49:09.534187 run mass: MS start registered {at=15937055.237528235, delay=0.005857763811945915, ms=00036}
22:49:09.909761 run osmo-ms-mob/00037: Starting mobile
22:49:09.927453 run osmo-ms-mob/00037(pid=172): Launched
22:49:09.943530 run mass: MS start registered {at=15937055.64685666, delay=0.008040368556976318, ms=00037}
22:49:10.205337 run osmo-ms-mob/00038: Starting mobile
22:49:10.222581 run osmo-ms-mob/00038(pid=173): Launched
22:49:10.236634 run mass: MS start registered {at=15937055.939972509, delay=0.005932435393333435, ms=00038}
22:49:10.504424 run osmo-ms-mob/00039: Starting mobile
22:49:10.519874 run osmo-ms-mob/00039(pid=174): Launched
22:49:10.527388 run mass: MS performed LU {at=15937056.23073996, lu_delay=4.360200300812721, ms=00027}
22:49:10.534831 run mass: MS start registered {at=15937056.238192165, delay=0.007480032742023468, ms=00039}
22:49:10.545884 run mass: MS performed LU {at=15937056.249225251, lu_delay=5.75044658780098, ms=00024}
22:49:10.614947 run mass: MS performed LU {at=15937056.318254467, lu_delay=6.182189993560314, ms=00023}
22:49:10.634348 run osmo-ms-mob/00040: Starting mobile
22:49:10.654667 run osmo-ms-mob/00040(pid=175): Launched
22:49:10.663824 run mass: MS performed LU {at=15937056.367158702, lu_delay=5.328471841290593, ms=00025}
22:49:10.675678 run mass: MS start registered {at=15937056.379014121, delay=0.011893132701516151, ms=00040}
22:49:10.689218 run mass: MS performed LU {at=15937056.392523112, lu_delay=4.944922408089042, ms=00026}
22:49:10.705735 run osmo-ms-mob/00041: Starting mobile
22:49:10.722485 run osmo-ms-mob/00041(pid=176): Launched
22:49:10.736715 run mass: MS start registered {at=15937056.440040853, delay=0.006598997861146927, ms=00041}
22:49:11.506012 run osmo-ms-mob/00042: Starting mobile
22:49:11.523659 run osmo-ms-mob/00042(pid=177): Launched
22:49:11.537921 run mass: MS start registered {at=15937057.241232494, delay=0.006381424143910408, ms=00042}
22:49:11.904367 run osmo-ms-mob/00043: Starting mobile
22:49:11.920461 run osmo-ms-mob/00043(pid=178): Launched
22:49:11.934279 run mass: MS start registered {at=15937057.63758376, delay=0.0062967631965875626, ms=00043}
22:49:12.206627 run osmo-ms-mob/00044: Starting mobile
22:49:12.223469 run osmo-ms-mob/00044(pid=179): Launched
22:49:12.240896 run mass: MS start registered {at=15937057.944217127, delay=0.008943639695644379, ms=00044}
22:49:12.317966 run mass: MS performed LU {at=15937058.021288825, lu_delay=4.985581763088703, ms=00030}
22:49:12.363882 run mass: MS performed LU {at=15937058.067184553, lu_delay=5.817549120634794, ms=00028}
22:49:12.380409 run osmo-ms-mob/00045: Starting mobile
22:49:12.398608 run osmo-ms-mob/00045(pid=180): Launched
22:49:12.416464 run mass: MS start registered {at=15937058.119792672, delay=0.009104138240218163, ms=00045}
22:49:12.589917 run mass: MS performed LU {at=15937058.293246018, lu_delay=4.858120981603861, ms=00031}
22:49:12.810270 run osmo-ms-mob/00046: Starting mobile
22:49:12.835587 run osmo-ms-mob/00046(pid=181): Launched
22:49:12.852899 run mass: MS start registered {at=15937058.55620667, delay=0.007921099662780762, ms=00046}
22:49:13.104379 run osmo-ms-mob/00047: Starting mobile
22:49:13.121681 run osmo-ms-mob/00047(pid=182): Launched
22:49:13.135458 run mass: MS start registered {at=15937058.8387955, delay=0.005836766213178635, ms=00047}
22:49:13.404617 run osmo-ms-mob/00048: Starting mobile
22:49:13.422017 run osmo-ms-mob/00048(pid=183): Launched
22:49:13.436123 run mass: MS start registered {at=15937059.13945582, delay=0.005985841155052185, ms=00048}
22:49:13.705192 run osmo-ms-mob/00049: Starting mobile
22:49:13.722415 run osmo-ms-mob/00049(pid=184): Launched
22:49:13.738840 run mass: MS start registered {at=15937059.442148944, delay=0.008120475336909294, ms=00049}
22:49:14.005746 run osmo-ms-mob/00050: Starting mobile
22:49:14.022813 run osmo-ms-mob/00050(pid=185): Launched
22:49:14.041121 run mass: MS start registered {at=15937059.74443155, delay=0.009603418409824371, ms=00050}
22:49:14.265170 run mass: MS performed LU {at=15937059.968493937, lu_delay=6.227874036878347, ms=00032}
22:49:14.311686 run mass: MS performed LU {at=15937060.01501003, lu_delay=5.4789262022823095, ms=00034}
22:49:14.325318 run osmo-ms-mob/00051: Starting mobile
22:49:14.340534 run osmo-ms-mob/00051(pid=186): Launched
22:49:14.353625 run mass: MS start registered {at=15937060.056966368, delay=0.0056643616408109665, ms=00051}
22:49:14.380685 run mass: MS performed LU {at=15937060.08401596, lu_delay=5.9431033581495285, ms=00033}
22:49:14.416911 run mass: MS performed LU {at=15937060.120239066, lu_delay=5.283605447039008, ms=00035}
22:49:14.431130 run osmo-ms-mob/00052: Starting mobile
22:49:14.449112 run osmo-ms-mob/00052(pid=187): Launched
22:49:14.457613 run mass: MS performed LU {at=15937060.16096202, lu_delay=4.923433784395456, ms=00036}
22:49:14.465659 run mass: MS start registered {at=15937060.16901683, delay=0.00808417983353138, ms=00052}
22:49:14.491145 run mass: MS performed LU {at=15937060.194476292, lu_delay=4.547619631513953, ms=00037}
22:49:14.504861 run osmo-ms-mob/00053: Starting mobile
22:49:14.521495 run osmo-ms-mob/00053(pid=188): Launched
22:49:14.535456 run mass: MS start registered {at=15937060.23880165, delay=0.006120571866631508, ms=00053}
22:49:15.303900 run osmo-ms-mob/00054: Starting mobile
22:49:15.318070 run osmo-ms-mob/00054(pid=189): Launched
22:49:15.330414 run mass: MS start registered {at=15937061.033756843, delay=0.005614267662167549, ms=00054}
22:49:15.604141 run osmo-ms-mob/00055: Starting mobile
22:49:15.620269 run osmo-ms-mob/00055(pid=190): Launched
22:49:15.634163 run mass: MS start registered {at=15937061.3374978, delay=0.006286118179559708, ms=00055}
22:49:15.904099 run osmo-ms-mob/00056: Starting mobile
22:49:15.920980 run osmo-ms-mob/00056(pid=191): Launched
22:49:15.935006 run mass: MS start registered {at=15937061.63833941, delay=0.005909565836191177, ms=00056}
22:49:16.083603 run mass: MS performed LU {at=15937061.786929317, lu_delay=5.548737151548266, ms=00039}
22:49:16.130055 run mass: MS performed LU {at=15937061.833381109, lu_delay=5.45436698757112, ms=00040}
22:49:16.144883 run osmo-ms-mob/00057: Starting mobile
22:49:16.162067 run osmo-ms-mob/00057(pid=192): Launched
22:49:16.176163 run mass: MS performed LU {at=15937061.879474098, lu_delay=5.439433244988322, ms=00041}
22:49:16.184387 run mass: MS start registered {at=15937061.887747899, delay=0.014556633308529854, ms=00057}
22:49:16.355790 run mass: MS performed LU {at=15937062.059117636, lu_delay=6.119145127013326, ms=00038}
22:49:16.392840 run mass: MS performed LU {at=15937062.096165428, lu_delay=4.854932934045792, ms=00042}
22:49:16.407292 run osmo-ms-mob/00058: Starting mobile
22:49:16.427728 run osmo-ms-mob/00058(pid=193): Launched
22:49:16.441429 run mass: MS start registered {at=15937062.144771976, delay=0.005778796970844269, ms=00058}
22:49:16.903788 run osmo-ms-mob/00059: Starting mobile
22:49:16.918025 run osmo-ms-mob/00059(pid=194): Launched
22:49:16.930719 run mass: MS start registered {at=15937062.634066284, delay=0.005904100835323334, ms=00059}
22:49:17.204078 run osmo-ms-mob/00060: Starting mobile
22:49:17.219296 run osmo-ms-mob/00060(pid=195): Launched
22:49:17.231276 run mass: MS start registered {at=15937062.934618318, delay=0.005379047244787216, ms=00060}
22:49:17.603430 run osmo-ms-mob/00061: Starting mobile
22:49:17.617398 run osmo-ms-mob/00061(pid=196): Launched
22:49:17.629192 run mass: MS start registered {at=15937063.33254012, delay=0.005366392433643341, ms=00061}
22:49:17.905818 run osmo-ms-mob/00062: Starting mobile
22:49:17.924520 run osmo-ms-mob/00062(pid=197): Launched
22:49:17.946577 run mass: MS start registered {at=15937063.649878757, delay=0.013610443100333214, ms=00062}
22:49:18.146146 run mass: MS performed LU {at=15937063.84946626, lu_delay=4.710010441020131, ms=00048}
22:49:18.162564 run osmo-ms-mob/00063: Starting mobile
22:49:18.181872 run osmo-ms-mob/00063(pid=198): Launched
22:49:18.191283 run mass: MS performed LU {at=15937063.894633994, lu_delay=5.774841321632266, ms=00045}
22:49:18.204281 run mass: MS start registered {at=15937063.907599904, delay=0.012993130832910538, ms=00063}
22:49:18.312540 run mass: MS performed LU {at=15937064.015862554, lu_delay=5.45965588465333, ms=00046}
22:49:18.455474 run mass: MS performed LU {at=15937064.158777671, lu_delay=6.214560544118285, ms=00044}
22:49:18.472758 run osmo-ms-mob/00064: Starting mobile
22:49:18.491498 run osmo-ms-mob/00064(pid=199): Launched
22:49:18.500511 run mass: MS performed LU {at=15937064.203860728, lu_delay=6.566276967525482, ms=00043}
22:49:18.514074 run mass: MS start registered {at=15937064.217399897, delay=0.0135702695697546, ms=00064}
22:49:19.005049 run osmo-ms-mob/00065: Starting mobile
22:49:19.019786 run osmo-ms-mob/00065(pid=200): Launched
22:49:19.032590 run mass: MS start registered {at=15937064.735932795, delay=0.005992315709590912, ms=00065}
22:49:19.143485 run mass: MS performed LU {at=15937064.846809749, lu_delay=3.8130529057234526, ms=00054}
22:49:19.189855 run mass: MS performed LU {at=15937064.893182797, lu_delay=6.0543872974812984, ms=00047}
22:49:19.202221 run osmo-ms-mob/00066: Starting mobile
22:49:19.217782 run osmo-ms-mob/00066(pid=201): Launched
22:49:19.231075 run mass: MS start registered {at=15937064.934418313, delay=0.005973359569907188, ms=00066}
22:49:19.826008 run osmo-ms-mob/00067: Starting mobile
22:49:19.842147 run osmo-ms-mob/00067(pid=202): Launched
22:49:19.849111 run mass: Starting too slowly. Moving on {now=15937065.552468246, sleep=-0.05200762301683426, target=15937065.500460623}
22:49:19.855492 run mass: MS performed LU {at=15937065.55884764, lu_delay=5.501881271600723, ms=00051}
22:49:19.861746 run mass: MS start registered {at=15937065.565111918, delay=0.012650184333324432, ms=00067}
22:49:19.941513 run mass: MS performed LU {at=15937065.644819232, lu_delay=6.202670287340879, ms=00049}
22:49:19.955267 run osmo-ms-mob/00068: Starting mobile
22:49:19.970428 run osmo-ms-mob/00068(pid=203): Launched
22:49:19.983097 run mass: MS start registered {at=15937065.686430754, delay=0.0058864932507276535, ms=00068}
22:49:20.084997 run mass: MS performed LU {at=15937065.78832572, lu_delay=6.043894169852138, ms=00050}
22:49:20.121003 run mass: MS performed LU {at=15937065.824334605, lu_delay=5.585532953962684, ms=00053}
22:49:20.158180 run mass: MS performed LU {at=15937065.861508435, lu_delay=5.692491604015231, ms=00052}
22:49:20.172686 run osmo-ms-mob/00069: Starting mobile
22:49:20.189689 run osmo-ms-mob/00069(pid=204): Launched
22:49:20.203650 run mass: MS start registered {at=15937065.906994382, delay=0.006272876635193825, ms=00069}
22:49:20.803419 run osmo-ms-mob/00070: Starting mobile
22:49:20.818165 run osmo-ms-mob/00070(pid=205): Launched
22:49:20.830572 run mass: MS start registered {at=15937066.533910053, delay=0.005672641098499298, ms=00070}
22:49:21.021817 run mass: MS performed LU {at=15937066.725140166, lu_delay=5.086800755932927, ms=00056}
22:49:21.204498 run osmo-ms-mob/00071: Starting mobile
22:49:21.220545 run osmo-ms-mob/00071(pid=206): Launched
22:49:21.235974 run mass: MS start registered {at=15937066.939302173, delay=0.0076385848224163055, ms=00071}
22:49:21.605393 run osmo-ms-mob/00072: Starting mobile
22:49:21.621454 run osmo-ms-mob/00072(pid=207): Launched
22:49:21.634705 run mass: MS start registered {at=15937067.338039843, delay=0.005820056423544884, ms=00072}
22:49:21.677380 run mass: MS performed LU {at=15937067.380677657, lu_delay=4.446059338748455, ms=00060}
22:49:21.713878 run mass: MS performed LU {at=15937067.41720647, lu_delay=5.529458571225405, ms=00057}
22:49:21.842515 run mass: MS performed LU {at=15937067.54584471, lu_delay=4.91177842579782, ms=00059}
22:49:21.855540 run osmo-ms-mob/00073: Starting mobile
22:49:21.876046 run osmo-ms-mob/00073(pid=208): Launched
22:49:21.888850 run mass: MS start registered {at=15937067.592187742, delay=0.006200356408953667, ms=00073}
22:49:22.022504 run mass: MS performed LU {at=15937067.72583242, lu_delay=6.388334618881345, ms=00055}
22:49:22.705447 run osmo-ms-mob/00074: Starting mobile
22:49:22.719675 run osmo-ms-mob/00074(pid=209): Launched
22:49:22.726347 run mass: Starting too slowly. Moving on {now=15937068.429715015, sleep=-0.22925440222024918, target=15937068.200460613}
22:49:22.732592 run mass: MS start registered {at=15937068.43594855, delay=0.006236087530851364, ms=00074}
22:49:22.738612 run mass: Starting too slowly. Moving on {now=15937068.441981891, sleep=-0.14152127876877785, target=15937068.300460612}
22:49:22.744574 run mass: Starting too slowly. Moving on {now=15937068.447943615, sleep=-0.04748300276696682, target=15937068.400460612}
22:49:22.975674 run osmo-ms-mob/00075: Starting mobile
22:49:23.322245 run osmo-ms-mob/00075(pid=210): Launched
22:49:23.328633 run mass: Starting too slowly. Moving on {now=15937069.031998793, sleep=-0.43153818137943745, target=15937068.600460611}
22:49:23.335109 run mass: Starting too slowly. Moving on {now=15937069.038477505, sleep=-0.33801689371466637, target=15937068.70046061}
22:49:23.341086 run mass: MS start registered {at=15937069.044441648, delay=0.012445321306586266, ms=00075}
22:49:23.347288 run mass: Starting too slowly. Moving on {now=15937069.050656913, sleep=-0.2501963023096323, target=15937068.80046061}
22:49:23.353518 run mass: Starting too slowly. Moving on {now=15937069.05688554, sleep=-0.15642493031919003, target=15937068.90046061}
22:49:23.359342 run mass: Starting too slowly. Moving on {now=15937069.062712273, sleep=-0.06225166283547878, target=15937069.00046061}
22:49:23.370490 run osmo-ms-mob/00076: Starting mobile
22:49:23.384483 run osmo-ms-mob/00076(pid=211): Launched
22:49:23.395909 run mass: MS start registered {at=15937069.099258745, delay=0.005106829106807709, ms=00076}
22:49:23.714898 run osmo-ms-mob/00077: Starting mobile
22:49:23.729251 run osmo-ms-mob/00077(pid=212): Launched
22:49:23.741436 run mass: MS start registered {at=15937069.444783635, delay=0.005804305896162987, ms=00077}
22:49:24.205372 run osmo-ms-mob/00078: Starting mobile
22:49:24.219337 run osmo-ms-mob/00078(pid=213): Launched
22:49:24.231175 run mass: MS start registered {at=15937069.934521347, delay=0.005300525575876236, ms=00078}
22:49:24.519895 run mass: MS performed LU {at=15937070.223225918, lu_delay=6.315626014024019, ms=00063}
22:49:24.534448 run osmo-ms-mob/00079: Starting mobile
22:49:24.548798 run osmo-ms-mob/00079(pid=214): Launched
22:49:24.557156 run mass: MS performed LU {at=15937070.260495612, lu_delay=6.043095715343952, ms=00064}
22:49:24.563833 run mass: MS start registered {at=15937070.267196838, delay=0.00851605273783207, ms=00079}
22:49:24.593360 run mass: MS performed LU {at=15937070.296693098, lu_delay=5.560760302469134, ms=00065}
22:49:24.602769 run mass: MS performed LU {at=15937070.30607919, lu_delay=6.9735390692949295, ms=00061}
22:49:24.630064 run mass: MS performed LU {at=15937070.333402904, lu_delay=5.398984590545297, ms=00066}
22:49:24.641968 run osmo-ms-mob/00080: Starting mobile
22:49:24.656727 run osmo-ms-mob/00080(pid=215): Launched
22:49:24.663730 run mass: MS performed LU {at=15937070.367084846, lu_delay=6.71720608882606, ms=00062}
22:49:24.670976 run mass: MS start registered {at=15937070.374337593, delay=0.007277689874172211, ms=00080}
22:49:24.800663 run mass: MS performed LU {at=15937070.503986524, lu_delay=21.26673329807818, ms=00021}
22:49:25.562224 run mass: MS performed LU {at=15937071.26554003, lu_delay=4.326237857341766, ms=00071}
22:49:25.574789 run osmo-ms-mob/00081: Starting mobile
22:49:25.589417 run osmo-ms-mob/00081(pid=216): Launched
22:49:25.601459 run mass: MS start registered {at=15937071.304807061, delay=0.0052358731627464294, ms=00081}
22:49:25.609211 run mass: MS performed LU {at=15937071.312556906, lu_delay=5.405562523752451, ms=00069}
22:49:25.677880 run mass: MS performed LU {at=15937071.381122662, lu_delay=4.8472126089036465, ms=00070}
22:49:25.715692 run mass: MS performed LU {at=15937071.41896651, lu_delay=5.853854591026902, ms=00067}
22:49:25.738317 run osmo-ms-mob/00082: Starting mobile
22:49:25.761583 run osmo-ms-mob/00082(pid=217): Launched
22:49:25.777107 run mass: MS start registered {at=15937071.480446368, delay=0.0032322853803634644, ms=00082}
22:49:25.789110 run mass: MS performed LU {at=15937071.492455143, lu_delay=5.806024389341474, ms=00068}
22:49:26.607687 run osmo-ms-mob/00083: Starting mobile
22:49:26.622407 run osmo-ms-mob/00083(pid=218): Launched
22:49:26.634985 run mass: MS start registered {at=15937072.338323629, delay=0.005537424236536026, ms=00083}
22:49:27.105382 run osmo-ms-mob/00084: Starting mobile
22:49:27.120589 run osmo-ms-mob/00084(pid=219): Launched
22:49:27.132949 run mass: MS start registered {at=15937072.836285667, delay=0.00577257014811039, ms=00084}
22:49:27.344239 run mass: MS performed LU {at=15937073.047491228, lu_delay=5.4553034864366055, ms=00073}
22:49:27.381539 run mass: MS performed LU {at=15937073.084767034, lu_delay=5.74672719091177, ms=00072}
22:49:27.426868 run mass: MS performed LU {at=15937073.130122522, lu_delay=4.694173971191049, ms=00074}
22:49:27.439656 run osmo-ms-mob/00085: Starting mobile
22:49:27.454319 run osmo-ms-mob/00085(pid=220): Launched
22:49:27.466409 run mass: MS start registered {at=15937073.169750571, delay=0.005473621189594269, ms=00085}
22:49:28.209636 run osmo-ms-mob/00086: Starting mobile
22:49:28.238847 run osmo-ms-mob/00086(pid=221): Launched
22:49:28.252829 run mass: MS start registered {at=15937073.956157014, delay=0.0012035202234983444, ms=00086}
22:49:28.813428 run osmo-ms-mob/00087: Starting mobile
22:49:28.835682 run osmo-ms-mob/00087(pid=222): Launched
22:49:28.856821 run mass: MS start registered {at=15937074.560096884, delay=0.008991437032818794, ms=00087}
22:49:29.328333 run mass: MS performed LU {at=15937075.031612283, lu_delay=5.987170634791255, ms=00075}
22:49:29.357680 run osmo-ms-mob/00088: Starting mobile
22:49:29.392351 run osmo-ms-mob/00088(pid=223): Launched
22:49:29.408891 run mass: MS performed LU {at=15937075.112231323, lu_delay=5.667447688058019, ms=00077}
22:49:29.418388 run mass: MS start registered {at=15937075.121742403, delay=0.009547840803861618, ms=00088}
22:49:29.443946 run mass: MS performed LU {at=15937075.147232683, lu_delay=5.212711336091161, ms=00078}
22:49:29.480705 run mass: MS performed LU {at=15937075.183975954, lu_delay=4.809638360515237, ms=00080}
22:49:29.519219 run mass: MS performed LU {at=15937075.22250751, lu_delay=4.955310672521591, ms=00079}
22:49:29.536256 run mass: MS performed LU {at=15937075.239578249, lu_delay=22.64056255109608, ms=00029}
22:49:29.558989 run osmo-ms-mob/00089: Starting mobile
22:49:29.593970 run osmo-ms-mob/00089(pid=224): Launched
22:49:29.616914 run mass: MS start registered {at=15937075.320232315, delay=0.005452917888760567, ms=00089}
22:49:30.251826 run mass: MS performed LU {at=15937075.95508785, lu_delay=6.855829104781151, ms=00076}
22:49:30.609885 run osmo-ms-mob/00090: Starting mobile
22:49:30.628761 run osmo-ms-mob/00090(pid=225): Launched
22:49:30.645032 run mass: MS start registered {at=15937076.348364726, delay=4.262849688529968e-05, ms=00090}
22:49:31.110336 run mass: MS performed LU {at=15937076.813551946, lu_delay=5.5087448842823505, ms=00081}
22:49:31.147970 run mass: MS performed LU {at=15937076.851274611, lu_delay=5.370828242972493, ms=00082}
22:49:31.162458 run osmo-ms-mob/00091: Starting mobile
22:49:31.178473 run osmo-ms-mob/00091(pid=226): Launched
22:49:31.195969 run mass: MS start registered {at=15937076.899295568, delay=0.010146018117666245, ms=00091}
22:49:31.438700 run mass: MS performed LU {at=15937077.141940456, lu_delay=4.803616827353835, ms=00083}
22:49:32.009143 run osmo-ms-mob/00092: Starting mobile
22:49:32.036917 run osmo-ms-mob/00092(pid=227): Launched
22:49:32.049854 run mass: MS start registered {at=15937077.753196897, delay=3.603845834732056e-05, ms=00092}
22:49:32.809306 run osmo-ms-mob/00093: Starting mobile
22:49:32.827646 run osmo-ms-mob/00093(pid=228): Launched
22:49:32.843045 run mass: MS start registered {at=15937078.54636233, delay=0.007456645369529724, ms=00093}
22:49:33.076610 run mass: MS performed LU {at=15937078.779911472, lu_delay=5.943625804036856, ms=00084}
22:49:33.094696 run mass: MS performed LU {at=15937078.798033766, lu_delay=4.84187675267458, ms=00086}
22:49:33.140482 run mass: MS performed LU {at=15937078.8438109, lu_delay=5.674060327932239, ms=00085}
22:49:33.704047 run osmo-ms-mob/00094: Starting mobile
22:49:33.721253 run osmo-ms-mob/00094(pid=229): Launched
22:49:33.735416 run mass: MS start registered {at=15937079.438756252, delay=0.006279956549406052, ms=00094}
22:49:34.606122 run osmo-ms-mob/00095: Starting mobile
22:49:34.624599 run osmo-ms-mob/00095(pid=230): Launched
22:49:34.643829 run mass: MS start registered {at=15937080.347128466, delay=0.01007535494863987, ms=00095}
22:49:34.857490 run mass: MS performed LU {at=15937080.560796317, lu_delay=6.000699432566762, ms=00087}
22:49:34.894243 run mass: MS performed LU {at=15937080.597570615, lu_delay=5.4758282117545605, ms=00088}
22:49:35.110882 run mass: MS performed LU {at=15937080.814201072, lu_delay=5.493968756869435, ms=00089}
22:49:35.604559 run osmo-ms-mob/00096: Starting mobile
22:49:35.619682 run osmo-ms-mob/00096(pid=231): Launched
22:49:35.632310 run mass: MS start registered {at=15937081.335647771, delay=0.006062913686037064, ms=00096}
22:49:36.714534 run osmo-ms-mob/00097: Starting mobile
22:49:36.757108 run osmo-ms-mob/00097(pid=232): Launched
22:49:36.776571 run mass: MS start registered {at=15937082.479863655, delay=0.0077109429985284805, ms=00097}
22:49:36.841618 run mass: MS performed LU {at=15937082.544873137, lu_delay=5.645577568560839, ms=00091}
22:49:36.860419 run mass: MS performed LU {at=15937082.563669622, lu_delay=4.810472724959254, ms=00092}
22:49:36.888666 run mass: MS performed LU {at=15937082.591908328, lu_delay=6.243543602526188, ms=00090}
22:49:38.005566 run osmo-ms-mob/00098: Starting mobile
22:49:38.019710 run osmo-ms-mob/00098(pid=233): Launched
22:49:38.031662 run mass: MS start registered {at=15937083.735011773, delay=0.005206333473324776, ms=00098}
22:49:38.622762 run mass: MS performed LU {at=15937084.326080436, lu_delay=4.887324184179306, ms=00094}
22:49:38.789647 run mass: MS performed LU {at=15937084.49295838, lu_delay=5.94659605063498, ms=00093}
22:49:39.111939 run mass: MS performed LU {at=15937084.815246781, lu_delay=22.67047480493784, ms=00058}
22:49:39.803662 run osmo-ms-mob/00099: Starting mobile
22:49:39.821471 run osmo-ms-mob/00099(pid=234): Launched
22:49:39.829659 run mass: All started... {duration=55.73256344161928, too_slow=12}
22:49:39.836066 run mass: MS start registered {at=15937085.539419848, delay=0.006399402394890785, ms=00099}
22:49:40.608191 run mass: MS performed LU {at=15937086.311466292, lu_delay=4.975818520411849, ms=00096}
22:49:40.627296 run mass: MS performed LU {at=15937086.330635803, lu_delay=5.98350733704865, ms=00095}
22:49:42.536361 run mass: MS performed LU {at=15937088.239673737, lu_delay=5.759810082614422, ms=00097}
22:49:43.025393 run mass: MS performed LU {at=15937088.728702806, lu_delay=4.993691032752395, ms=00098}
22:49:44.609407 run mass: MS performed LU {at=15937090.312729618, lu_delay=4.7733097691088915, ms=00099}
22:49:44.617798 run mass: Tests done {all_completed=True, max=22.67047480493784, min=3.8130529057234526}
22:49:44.625280 tst register_default_mass.py: Test passed (85.4 sec)
22:49:44.632360 run pcap-recorder_any(filters='host 127.0.42.2')(pid=22): Terminating (SIGTERM)
22:49:44.636833 run osmo-hlr_127.0.42.2(pid=23): Terminating (SIGTERM)
22:49:44.641179 run pcap-recorder_any(filters='host 127.0.42.5 and port not 22')(pid=24): Terminating (SIGTERM)
22:49:44.645500 run osmo-stp_127.0.42.5(pid=25): Terminating (SIGTERM)
22:49:44.649915 run pcap-recorder_any(filters='host 127.0.42.6 and port not 22')(pid=26): Terminating (SIGTERM)
22:49:44.654459 run osmo-msc_127.0.42.6(pid=27): Terminating (SIGTERM)
22:49:44.658935 run pcap-recorder_any(filters='host 127.0.42.3 and port not 22')(pid=28): Terminating (SIGTERM)
22:49:44.663428 run osmo-mgw_127.0.42.3(pid=29): Terminating (SIGTERM)
22:49:44.667985 run pcap-recorder_any(filters='host 127.0.42.4 and port not 22')(pid=30): Terminating (SIGTERM)
22:49:44.672764 run osmo-mgw_127.0.42.4(pid=31): Terminating (SIGTERM)
22:49:44.677446 run pcap-recorder_any(filters='host 127.0.42.7 and port not 22')(pid=32): Terminating (SIGTERM)
22:49:44.682089 run osmo-bsc_127.0.42.7(pid=33): Terminating (SIGTERM)
22:49:44.686741 run osmo-bts-virtual(pid=34): Terminating (SIGTERM)
22:49:44.691763 run osmo-ms-virt-phy/00000(pid=35): Terminating (SIGTERM)
22:49:44.696490 run osmo-ms-virt-phy/00001(pid=36): Terminating (SIGTERM)
22:49:44.701129 run osmo-ms-virt-phy/00002(pid=37): Terminating (SIGTERM)
22:49:44.705816 run osmo-ms-virt-phy/00003(pid=38): Terminating (SIGTERM)
22:49:44.710616 run osmo-ms-virt-phy/00004(pid=39): Terminating (SIGTERM)
22:49:44.715411 run osmo-ms-virt-phy/00005(pid=40): Terminating (SIGTERM)
22:49:44.720693 run osmo-ms-virt-phy/00006(pid=41): Terminating (SIGTERM)
22:49:44.725597 run osmo-ms-virt-phy/00007(pid=42): Terminating (SIGTERM)
22:49:44.730534 run osmo-ms-virt-phy/00008(pid=43): Terminating (SIGTERM)
22:49:44.735635 run osmo-ms-virt-phy/00009(pid=44): Terminating (SIGTERM)
22:49:44.740650 run osmo-ms-virt-phy/00010(pid=45): Terminating (SIGTERM)
22:49:44.745947 run osmo-ms-virt-phy/00011(pid=46): Terminating (SIGTERM)
22:49:44.751054 run osmo-ms-virt-phy/00012(pid=47): Terminating (SIGTERM)
22:49:44.757371 run osmo-ms-virt-phy/00013(pid=48): Terminating (SIGTERM)
22:49:44.762221 run osmo-ms-virt-phy/00014(pid=49): Terminating (SIGTERM)
22:49:44.766997 run osmo-ms-virt-phy/00015(pid=50): Terminating (SIGTERM)
22:49:44.771916 run osmo-ms-virt-phy/00016(pid=51): Terminating (SIGTERM)
22:49:44.776780 run osmo-ms-virt-phy/00017(pid=52): Terminating (SIGTERM)
22:49:44.781476 run osmo-ms-virt-phy/00018(pid=53): Terminating (SIGTERM)
22:49:44.786110 run osmo-ms-virt-phy/00019(pid=54): Terminating (SIGTERM)
22:49:44.790811 run osmo-ms-virt-phy/00020(pid=55): Terminating (SIGTERM)
22:49:44.795642 run osmo-ms-virt-phy/00021(pid=56): Terminating (SIGTERM)
22:49:44.800993 run osmo-ms-virt-phy/00022(pid=57): Terminating (SIGTERM)
22:49:44.805962 run osmo-ms-virt-phy/00023(pid=58): Terminating (SIGTERM)
22:49:44.810776 run osmo-ms-virt-phy/00024(pid=59): Terminating (SIGTERM)
22:49:44.815594 run osmo-ms-virt-phy/00025(pid=60): Terminating (SIGTERM)
22:49:44.820670 run osmo-ms-virt-phy/00026(pid=61): Terminating (SIGTERM)
22:49:44.825870 run osmo-ms-virt-phy/00027(pid=62): Terminating (SIGTERM)
22:49:44.830657 run osmo-ms-virt-phy/00028(pid=63): Terminating (SIGTERM)
22:49:44.835367 run osmo-ms-virt-phy/00029(pid=64): Terminating (SIGTERM)
22:49:44.839979 run osmo-ms-virt-phy/00030(pid=65): Terminating (SIGTERM)
22:49:44.844822 run osmo-ms-virt-phy/00031(pid=66): Terminating (SIGTERM)
22:49:44.849600 run osmo-ms-virt-phy/00032(pid=67): Terminating (SIGTERM)
22:49:44.854259 run osmo-ms-virt-phy/00033(pid=68): Terminating (SIGTERM)
22:49:44.858971 run osmo-ms-virt-phy/00034(pid=69): Terminating (SIGTERM)
22:49:44.863713 run osmo-ms-virt-phy/00035(pid=70): Terminating (SIGTERM)
22:49:44.868413 run osmo-ms-virt-phy/00036(pid=71): Terminating (SIGTERM)
22:49:44.873065 run osmo-ms-virt-phy/00037(pid=72): Terminating (SIGTERM)
22:49:44.878114 run osmo-ms-virt-phy/00038(pid=73): Terminating (SIGTERM)
22:49:44.882860 run osmo-ms-virt-phy/00039(pid=74): Terminating (SIGTERM)
22:49:44.887825 run osmo-ms-virt-phy/00040(pid=75): Terminating (SIGTERM)
22:49:44.892594 run osmo-ms-virt-phy/00041(pid=76): Terminating (SIGTERM)
22:49:44.897340 run osmo-ms-virt-phy/00042(pid=77): Terminating (SIGTERM)
22:49:44.902151 run osmo-ms-virt-phy/00043(pid=78): Terminating (SIGTERM)
22:49:44.906952 run osmo-ms-virt-phy/00044(pid=79): Terminating (SIGTERM)
22:49:44.911733 run osmo-ms-virt-phy/00045(pid=80): Terminating (SIGTERM)
22:49:44.916456 run osmo-ms-virt-phy/00046(pid=81): Terminating (SIGTERM)
22:49:44.921123 run osmo-ms-virt-phy/00047(pid=82): Terminating (SIGTERM)
22:49:44.925736 run osmo-ms-virt-phy/00048(pid=83): Terminating (SIGTERM)
22:49:44.930372 run osmo-ms-virt-phy/00049(pid=84): Terminating (SIGTERM)
22:49:44.935000 run osmo-ms-virt-phy/00050(pid=85): Terminating (SIGTERM)
22:49:44.939652 run osmo-ms-virt-phy/00051(pid=86): Terminating (SIGTERM)
22:49:44.944415 run osmo-ms-virt-phy/00052(pid=87): Terminating (SIGTERM)
22:49:44.949246 run osmo-ms-virt-phy/00053(pid=88): Terminating (SIGTERM)
22:49:44.954036 run osmo-ms-virt-phy/00054(pid=89): Terminating (SIGTERM)
22:49:44.958835 run osmo-ms-virt-phy/00055(pid=90): Terminating (SIGTERM)
22:49:44.963649 run osmo-ms-virt-phy/00056(pid=91): Terminating (SIGTERM)
22:49:44.968456 run osmo-ms-virt-phy/00057(pid=92): Terminating (SIGTERM)
22:49:44.973263 run osmo-ms-virt-phy/00058(pid=93): Terminating (SIGTERM)
22:49:44.978004 run osmo-ms-virt-phy/00059(pid=94): Terminating (SIGTERM)
22:49:44.982676 run osmo-ms-virt-phy/00060(pid=95): Terminating (SIGTERM)
22:49:44.988476 run osmo-ms-virt-phy/00061(pid=96): Terminating (SIGTERM)
22:49:44.993166 run osmo-ms-virt-phy/00062(pid=97): Terminating (SIGTERM)
22:49:44.998001 run osmo-ms-virt-phy/00063(pid=98): Terminating (SIGTERM)
22:49:45.002674 run osmo-ms-virt-phy/00064(pid=99): Terminating (SIGTERM)
22:49:45.007558 run osmo-ms-virt-phy/00065(pid=100): Terminating (SIGTERM)
22:49:45.012430 run osmo-ms-virt-phy/00066(pid=101): Terminating (SIGTERM)
22:49:45.017223 run osmo-ms-virt-phy/00067(pid=102): Terminating (SIGTERM)
22:49:45.022308 run osmo-ms-virt-phy/00068(pid=103): Terminating (SIGTERM)
22:49:45.026984 run osmo-ms-virt-phy/00069(pid=104): Terminating (SIGTERM)
22:49:45.031634 run osmo-ms-virt-phy/00070(pid=105): Terminating (SIGTERM)
22:49:45.036453 run osmo-ms-virt-phy/00071(pid=106): Terminating (SIGTERM)
22:49:45.041145 run osmo-ms-virt-phy/00072(pid=107): Terminating (SIGTERM)
22:49:45.045779 run osmo-ms-virt-phy/00073(pid=108): Terminating (SIGTERM)
22:49:45.050926 run osmo-ms-virt-phy/00074(pid=109): Terminating (SIGTERM)
22:49:45.055721 run osmo-ms-virt-phy/00075(pid=110): Terminating (SIGTERM)
22:49:45.061209 run osmo-ms-virt-phy/00076(pid=111): Terminating (SIGTERM)
22:49:45.065924 run osmo-ms-virt-phy/00077(pid=112): Terminating (SIGTERM)
22:49:45.070592 run osmo-ms-virt-phy/00078(pid=113): Terminating (SIGTERM)
22:49:45.075286 run osmo-ms-virt-phy/00079(pid=114): Terminating (SIGTERM)
22:49:45.080028 run osmo-ms-virt-phy/00080(pid=115): Terminating (SIGTERM)
22:49:45.084706 run osmo-ms-virt-phy/00081(pid=116): Terminating (SIGTERM)
22:49:45.089268 run osmo-ms-virt-phy/00082(pid=117): Terminating (SIGTERM)
22:49:45.093819 run osmo-ms-virt-phy/00083(pid=118): Terminating (SIGTERM)
22:49:45.098361 run osmo-ms-virt-phy/00084(pid=119): Terminating (SIGTERM)
22:49:45.102880 run osmo-ms-virt-phy/00085(pid=120): Terminating (SIGTERM)
22:49:45.107510 run osmo-ms-virt-phy/00086(pid=121): Terminating (SIGTERM)
22:49:45.112182 run osmo-ms-virt-phy/00087(pid=122): Terminating (SIGTERM)
22:49:45.116871 run osmo-ms-virt-phy/00088(pid=123): Terminating (SIGTERM)
22:49:45.121537 run osmo-ms-virt-phy/00089(pid=124): Terminating (SIGTERM)
22:49:45.126263 run osmo-ms-virt-phy/00090(pid=125): Terminating (SIGTERM)
22:49:45.130947 run osmo-ms-virt-phy/00091(pid=126): Terminating (SIGTERM)
22:49:45.135649 run osmo-ms-virt-phy/00092(pid=127): Terminating (SIGTERM)
22:49:45.140708 run osmo-ms-virt-phy/00093(pid=128): Terminating (SIGTERM)
22:49:45.145940 run osmo-ms-virt-phy/00094(pid=129): Terminating (SIGTERM)
22:49:45.150592 run osmo-ms-virt-phy/00095(pid=130): Terminating (SIGTERM)
22:49:45.155251 run osmo-ms-virt-phy/00096(pid=131): Terminating (SIGTERM)
22:49:45.159947 run osmo-ms-virt-phy/00097(pid=132): Terminating (SIGTERM)
22:49:45.164611 run osmo-ms-virt-phy/00098(pid=133): Terminating (SIGTERM)
22:49:45.169276 run osmo-ms-virt-phy/00099(pid=134): Terminating (SIGTERM)
22:49:45.173948 run osmo-ms-mob/00000(pid=135): Terminating (SIGTERM)
22:49:45.178609 run osmo-ms-mob/00001(pid=136): Terminating (SIGTERM)
22:49:45.183254 run osmo-ms-mob/00002(pid=137): Terminating (SIGTERM)
22:49:45.187884 run osmo-ms-mob/00003(pid=138): Terminating (SIGTERM)
22:49:45.192454 run osmo-ms-mob/00004(pid=139): Terminating (SIGTERM)
22:49:45.196945 run osmo-ms-mob/00005(pid=140): Terminating (SIGTERM)
22:49:45.201469 run osmo-ms-mob/00006(pid=141): Terminating (SIGTERM)
22:49:45.205845 run osmo-ms-mob/00007(pid=142): Terminating (SIGTERM)
22:49:45.210282 run osmo-ms-mob/00008(pid=143): Terminating (SIGTERM)
22:49:45.214689 run osmo-ms-mob/00009(pid=144): Terminating (SIGTERM)
22:49:45.219043 run osmo-ms-mob/00010(pid=145): Terminating (SIGTERM)
22:49:45.223412 run osmo-ms-mob/00011(pid=146): Terminating (SIGTERM)
22:49:45.227771 run osmo-ms-mob/00012(pid=147): Terminating (SIGTERM)
22:49:45.232124 run osmo-ms-mob/00013(pid=148): Terminating (SIGTERM)
22:49:45.236477 run osmo-ms-mob/00014(pid=149): Terminating (SIGTERM)
22:49:45.240834 run osmo-ms-mob/00015(pid=150): Terminating (SIGTERM)
22:49:45.245302 run osmo-ms-mob/00016(pid=151): Terminating (SIGTERM)
22:49:45.249797 run osmo-ms-mob/00017(pid=152): Terminating (SIGTERM)
22:49:45.254243 run osmo-ms-mob/00018(pid=153): Terminating (SIGTERM)
22:49:45.258698 run osmo-ms-mob/00019(pid=154): Terminating (SIGTERM)
22:49:45.263177 run osmo-ms-mob/00020(pid=155): Terminating (SIGTERM)
22:49:45.267650 run osmo-ms-mob/00021(pid=156): Terminating (SIGTERM)
22:49:45.272104 run osmo-ms-mob/00022(pid=157): Terminating (SIGTERM)
22:49:45.276584 run osmo-ms-mob/00023(pid=158): Terminating (SIGTERM)
22:49:45.281012 run osmo-ms-mob/00024(pid=159): Terminating (SIGTERM)
22:49:45.285488 run osmo-ms-mob/00025(pid=160): Terminating (SIGTERM)
22:49:45.289938 run osmo-ms-mob/00026(pid=161): Terminating (SIGTERM)
22:49:45.294281 run osmo-ms-mob/00027(pid=162): Terminating (SIGTERM)
22:49:45.298628 run osmo-ms-mob/00028(pid=163): Terminating (SIGTERM)
22:49:45.303132 run osmo-ms-mob/00029(pid=164): Terminating (SIGTERM)
22:49:45.307643 run osmo-ms-mob/00030(pid=165): Terminating (SIGTERM)
22:49:45.312146 run osmo-ms-mob/00031(pid=166): Terminating (SIGTERM)
22:49:45.316612 run osmo-ms-mob/00032(pid=167): Terminating (SIGTERM)
22:49:45.320977 run osmo-ms-mob/00033(pid=168): Terminating (SIGTERM)
22:49:45.325436 run osmo-ms-mob/00034(pid=169): Terminating (SIGTERM)
22:49:45.329873 run osmo-ms-mob/00035(pid=170): Terminating (SIGTERM)
22:49:45.334276 run osmo-ms-mob/00036(pid=171): Terminating (SIGTERM)
22:49:45.338726 run osmo-ms-mob/00037(pid=172): Terminating (SIGTERM)
22:49:45.343115 run osmo-ms-mob/00038(pid=173): Terminating (SIGTERM)
22:49:45.347607 run osmo-ms-mob/00039(pid=174): Terminating (SIGTERM)
22:49:45.352096 run osmo-ms-mob/00040(pid=175): Terminating (SIGTERM)
22:49:45.356596 run osmo-ms-mob/00041(pid=176): Terminating (SIGTERM)
22:49:45.361095 run osmo-ms-mob/00042(pid=177): Terminating (SIGTERM)
22:49:45.365590 run osmo-ms-mob/00043(pid=178): Terminating (SIGTERM)
22:49:45.370074 run osmo-ms-mob/00044(pid=179): Terminating (SIGTERM)
22:49:45.374455 run osmo-ms-mob/00045(pid=180): Terminating (SIGTERM)
22:49:45.378950 run osmo-ms-mob/00046(pid=181): Terminating (SIGTERM)
22:49:45.383382 run osmo-ms-mob/00047(pid=182): Terminating (SIGTERM)
22:49:45.387737 run osmo-ms-mob/00048(pid=183): Terminating (SIGTERM)
22:49:45.392088 run osmo-ms-mob/00049(pid=184): Terminating (SIGTERM)
22:49:45.396441 run osmo-ms-mob/00050(pid=185): Terminating (SIGTERM)
22:49:45.400927 run osmo-ms-mob/00051(pid=186): Terminating (SIGTERM)
22:49:45.405464 run osmo-ms-mob/00052(pid=187): Terminating (SIGTERM)
22:49:45.409968 run osmo-ms-mob/00053(pid=188): Terminating (SIGTERM)
22:49:45.414456 run osmo-ms-mob/00054(pid=189): Terminating (SIGTERM)
22:49:45.418941 run osmo-ms-mob/00055(pid=190): Terminating (SIGTERM)
22:49:45.423428 run osmo-ms-mob/00056(pid=191): Terminating (SIGTERM)
22:49:45.427772 run osmo-ms-mob/00057(pid=192): Terminating (SIGTERM)
22:49:45.432109 run osmo-ms-mob/00058(pid=193): Terminating (SIGTERM)
22:49:45.436445 run osmo-ms-mob/00059(pid=194): Terminating (SIGTERM)
22:49:45.440799 run osmo-ms-mob/00060(pid=195): Terminating (SIGTERM)
22:49:45.445149 run osmo-ms-mob/00061(pid=196): Terminating (SIGTERM)
22:49:45.449508 run osmo-ms-mob/00062(pid=197): Terminating (SIGTERM)
22:49:45.453891 run osmo-ms-mob/00063(pid=198): Terminating (SIGTERM)
22:49:45.458265 run osmo-ms-mob/00064(pid=199): Terminating (SIGTERM)
22:49:45.462617 run osmo-ms-mob/00065(pid=200): Terminating (SIGTERM)
22:49:45.466984 run osmo-ms-mob/00066(pid=201): Terminating (SIGTERM)
22:49:45.471386 run osmo-ms-mob/00067(pid=202): Terminating (SIGTERM)
22:49:45.475839 run osmo-ms-mob/00068(pid=203): Terminating (SIGTERM)
22:49:45.480320 run osmo-ms-mob/00069(pid=204): Terminating (SIGTERM)
22:49:45.484800 run osmo-ms-mob/00070(pid=205): Terminating (SIGTERM)
22:49:45.489285 run osmo-ms-mob/00071(pid=206): Terminating (SIGTERM)
22:49:45.493763 run osmo-ms-mob/00072(pid=207): Terminating (SIGTERM)
22:49:45.498241 run osmo-ms-mob/00073(pid=208): Terminating (SIGTERM)
22:49:45.502723 run osmo-ms-mob/00074(pid=209): Terminating (SIGTERM)
22:49:45.507226 run osmo-ms-mob/00075(pid=210): Terminating (SIGTERM)
22:49:45.511680 run osmo-ms-mob/00076(pid=211): Terminating (SIGTERM)
22:49:45.516203 run osmo-ms-mob/00077(pid=212): Terminating (SIGTERM)
22:49:45.520807 run osmo-ms-mob/00078(pid=213): Terminating (SIGTERM)
22:49:45.525290 run osmo-ms-mob/00079(pid=214): Terminating (SIGTERM)
22:49:45.529838 run osmo-ms-mob/00080(pid=215): Terminating (SIGTERM)
22:49:45.534312 run osmo-ms-mob/00081(pid=216): Terminating (SIGTERM)
22:49:45.538834 run osmo-ms-mob/00082(pid=217): Terminating (SIGTERM)
22:49:45.543375 run osmo-ms-mob/00083(pid=218): Terminating (SIGTERM)
22:49:45.547849 run osmo-ms-mob/00084(pid=219): Terminating (SIGTERM)
22:49:45.552320 run osmo-ms-mob/00085(pid=220): Terminating (SIGTERM)
22:49:45.556878 run osmo-ms-mob/00086(pid=221): Terminating (SIGTERM)
22:49:45.561506 run osmo-ms-mob/00087(pid=222): Terminating (SIGTERM)
22:49:45.566130 run osmo-ms-mob/00088(pid=223): Terminating (SIGTERM)
22:49:45.570594 run osmo-ms-mob/00089(pid=224): Terminating (SIGTERM)
22:49:45.575049 run osmo-ms-mob/00090(pid=225): Terminating (SIGTERM)
22:49:45.579515 run osmo-ms-mob/00091(pid=226): Terminating (SIGTERM)
22:49:45.583976 run osmo-ms-mob/00092(pid=227): Terminating (SIGTERM)
22:49:45.588415 run osmo-ms-mob/00093(pid=228): Terminating (SIGTERM)
22:49:45.592890 run osmo-ms-mob/00094(pid=229): Terminating (SIGTERM)
22:49:45.597345 run osmo-ms-mob/00095(pid=230): Terminating (SIGTERM)
22:49:45.601807 run osmo-ms-mob/00096(pid=231): Terminating (SIGTERM)
22:49:45.606320 run osmo-ms-mob/00097(pid=232): Terminating (SIGTERM)
22:49:45.610837 run osmo-ms-mob/00098(pid=233): Terminating (SIGTERM)
22:49:45.615283 run osmo-ms-mob/00099(pid=234): Terminating (SIGTERM)
22:49:45.619746 --- ParallelTerminationStrategy: PID 22 died...
22:49:45.621772 run pcap-recorder_any(filters='host 127.0.42.2')(pid=22): Terminated: ok {rc=0}
22:49:45.626674 --- ParallelTerminationStrategy: PID 23 died...
22:49:45.628667 run osmo-hlr_127.0.42.2(pid=23): Terminated: ok {rc=0}
22:49:45.633555 --- ParallelTerminationStrategy: PID 24 died...
22:49:45.635555 run pcap-recorder_any(filters='host 127.0.42.5 and port not 22')(pid=24): Terminated: ok {rc=0}
22:49:45.640476 --- ParallelTerminationStrategy: PID 25 died...
22:49:45.642485 run osmo-stp_127.0.42.5(pid=25): Terminated: ok {rc=0}
22:49:45.647564 --- ParallelTerminationStrategy: PID 26 died...
22:49:45.649608 run pcap-recorder_any(filters='host 127.0.42.6 and port not 22')(pid=26): Terminated: ok {rc=0}
22:49:45.654713 --- ParallelTerminationStrategy: PID 27 died...
22:49:45.656761 run osmo-msc_127.0.42.6(pid=27): Terminated: ok {rc=0}
22:49:45.661685 --- ParallelTerminationStrategy: PID 28 died...
22:49:45.663699 run pcap-recorder_any(filters='host 127.0.42.3 and port not 22')(pid=28): Terminated: ok {rc=0}
22:49:45.668697 --- ParallelTerminationStrategy: PID 29 died...
22:49:45.670702 run osmo-mgw_127.0.42.3(pid=29): Terminated {rc=15}
22:49:45.675706 --- ParallelTerminationStrategy: PID 30 died...
22:49:45.677718 run pcap-recorder_any(filters='host 127.0.42.4 and port not 22')(pid=30): Terminated: ok {rc=0}
22:49:45.682672 --- ParallelTerminationStrategy: PID 31 died...
22:49:45.684681 run osmo-mgw_127.0.42.4(pid=31): Terminated {rc=15}
22:49:45.689648 --- ParallelTerminationStrategy: PID 32 died...
22:49:45.691787 run pcap-recorder_any(filters='host 127.0.42.7 and port not 22')(pid=32): Terminated: ok {rc=0}
22:49:45.696758 --- ParallelTerminationStrategy: PID 33 died...
22:49:45.698774 run osmo-bsc_127.0.42.7(pid=33): Terminated: ok {rc=0}
22:49:45.703740 --- ParallelTerminationStrategy: PID 35 died...
22:49:45.705757 run osmo-ms-virt-phy/00000(pid=35): Terminated: ok {rc=0}
22:49:45.710766 --- ParallelTerminationStrategy: PID 36 died...
22:49:45.712780 run osmo-ms-virt-phy/00001(pid=36): Terminated: ok {rc=0}
22:49:45.717751 --- ParallelTerminationStrategy: PID 37 died...
22:49:45.719758 run osmo-ms-virt-phy/00002(pid=37): Terminated: ok {rc=0}
22:49:45.724803 --- ParallelTerminationStrategy: PID 38 died...
22:49:45.726794 run osmo-ms-virt-phy/00003(pid=38): Terminated: ok {rc=0}
22:49:45.731764 --- ParallelTerminationStrategy: PID 39 died...
22:49:45.733776 run osmo-ms-virt-phy/00004(pid=39): Terminated: ok {rc=0}
22:49:45.738713 --- ParallelTerminationStrategy: PID 40 died...
22:49:45.740734 run osmo-ms-virt-phy/00005(pid=40): Terminated: ok {rc=0}
22:49:45.745719 --- ParallelTerminationStrategy: PID 41 died...
22:49:45.747737 run osmo-ms-virt-phy/00006(pid=41): Terminated: ok {rc=0}
22:49:45.752744 --- ParallelTerminationStrategy: PID 42 died...
22:49:45.754762 run osmo-ms-virt-phy/00007(pid=42): Terminated: ok {rc=0}
22:49:45.759782 --- ParallelTerminationStrategy: PID 43 died...
22:49:45.761818 run osmo-ms-virt-phy/00008(pid=43): Terminated: ok {rc=0}
22:49:45.766744 --- ParallelTerminationStrategy: PID 44 died...
22:49:45.768808 run osmo-ms-virt-phy/00009(pid=44): Terminated: ok {rc=0}
22:49:45.773757 --- ParallelTerminationStrategy: PID 45 died...
22:49:45.775764 run osmo-ms-virt-phy/00010(pid=45): Terminated: ok {rc=0}
22:49:45.780715 --- ParallelTerminationStrategy: PID 46 died...
22:49:45.782719 run osmo-ms-virt-phy/00011(pid=46): Terminated: ok {rc=0}
22:49:45.787667 --- ParallelTerminationStrategy: PID 47 died...
22:49:45.789711 run osmo-ms-virt-phy/00012(pid=47): Terminated: ok {rc=0}
22:49:45.794673 --- ParallelTerminationStrategy: PID 48 died...
22:49:45.796697 run osmo-ms-virt-phy/00013(pid=48): Terminated: ok {rc=0}
22:49:45.801779 --- ParallelTerminationStrategy: PID 49 died...
22:49:45.803773 run osmo-ms-virt-phy/00014(pid=49): Terminated: ok {rc=0}
22:49:45.808766 --- ParallelTerminationStrategy: PID 50 died...
22:49:45.810757 run osmo-ms-virt-phy/00015(pid=50): Terminated: ok {rc=0}
22:49:45.815701 --- ParallelTerminationStrategy: PID 51 died...
22:49:45.817718 run osmo-ms-virt-phy/00016(pid=51): Terminated: ok {rc=0}
22:49:45.822691 --- ParallelTerminationStrategy: PID 52 died...
22:49:45.824690 run osmo-ms-virt-phy/00017(pid=52): Terminated: ok {rc=0}
22:49:45.829670 --- ParallelTerminationStrategy: PID 53 died...
22:49:45.831669 run osmo-ms-virt-phy/00018(pid=53): Terminated: ok {rc=0}
22:49:45.836769 --- ParallelTerminationStrategy: PID 54 died...
22:49:45.838813 run osmo-ms-virt-phy/00019(pid=54): Terminated: ok {rc=0}
22:49:45.843798 --- ParallelTerminationStrategy: PID 55 died...
22:49:45.845823 run osmo-ms-virt-phy/00020(pid=55): Terminated: ok {rc=0}
22:49:45.850833 --- ParallelTerminationStrategy: PID 56 died...
22:49:45.852834 run osmo-ms-virt-phy/00021(pid=56): Terminated: ok {rc=0}
22:49:45.857843 --- ParallelTerminationStrategy: PID 57 died...
22:49:45.859910 run osmo-ms-virt-phy/00022(pid=57): Terminated: ok {rc=0}
22:49:45.865067 --- ParallelTerminationStrategy: PID 58 died...
22:49:45.867108 run osmo-ms-virt-phy/00023(pid=58): Terminated: ok {rc=0}
22:49:45.872062 --- ParallelTerminationStrategy: PID 59 died...
22:49:45.874075 run osmo-ms-virt-phy/00024(pid=59): Terminated: ok {rc=0}
22:49:45.879025 --- ParallelTerminationStrategy: PID 60 died...
22:49:45.881048 run osmo-ms-virt-phy/00025(pid=60): Terminated: ok {rc=0}
22:49:45.886055 --- ParallelTerminationStrategy: PID 61 died...
22:49:45.888125 run osmo-ms-virt-phy/00026(pid=61): Terminated: ok {rc=0}
22:49:45.893243 --- ParallelTerminationStrategy: PID 62 died...
22:49:45.895245 run osmo-ms-virt-phy/00027(pid=62): Terminated: ok {rc=0}
22:49:45.900198 --- ParallelTerminationStrategy: PID 63 died...
22:49:45.902220 run osmo-ms-virt-phy/00028(pid=63): Terminated: ok {rc=0}
22:49:45.907188 --- ParallelTerminationStrategy: PID 64 died...
22:49:45.909176 run osmo-ms-virt-phy/00029(pid=64): Terminated: ok {rc=0}
22:49:45.914187 --- ParallelTerminationStrategy: PID 65 died...
22:49:45.916211 run osmo-ms-virt-phy/00030(pid=65): Terminated: ok {rc=0}
22:49:45.921468 --- ParallelTerminationStrategy: PID 66 died...
22:49:45.923631 run osmo-ms-virt-phy/00031(pid=66): Terminated: ok {rc=0}
22:49:45.928775 --- ParallelTerminationStrategy: PID 67 died...
22:49:45.930791 run osmo-ms-virt-phy/00032(pid=67): Terminated: ok {rc=0}
22:49:45.935759 --- ParallelTerminationStrategy: PID 68 died...
22:49:45.937762 run osmo-ms-virt-phy/00033(pid=68): Terminated: ok {rc=0}
22:49:45.942729 --- ParallelTerminationStrategy: PID 69 died...
22:49:45.944778 run osmo-ms-virt-phy/00034(pid=69): Terminated: ok {rc=0}
22:49:45.949742 --- ParallelTerminationStrategy: PID 70 died...
22:49:45.951807 run osmo-ms-virt-phy/00035(pid=70): Terminated: ok {rc=0}
22:49:45.956957 --- ParallelTerminationStrategy: PID 71 died...
22:49:45.959026 run osmo-ms-virt-phy/00036(pid=71): Terminated: ok {rc=0}
22:49:45.964104 --- ParallelTerminationStrategy: PID 72 died...
22:49:45.966185 run osmo-ms-virt-phy/00037(pid=72): Terminated: ok {rc=0}
22:49:45.971191 --- ParallelTerminationStrategy: PID 73 died...
22:49:45.973215 run osmo-ms-virt-phy/00038(pid=73): Terminated: ok {rc=0}
22:49:45.978211 --- ParallelTerminationStrategy: PID 74 died...
22:49:45.980224 run osmo-ms-virt-phy/00039(pid=74): Terminated: ok {rc=0}
22:49:45.985212 --- ParallelTerminationStrategy: PID 75 died...
22:49:45.987220 run osmo-ms-virt-phy/00040(pid=75): Terminated: ok {rc=0}
22:49:45.992179 --- ParallelTerminationStrategy: PID 76 died...
22:49:45.994200 run osmo-ms-virt-phy/00041(pid=76): Terminated: ok {rc=0}
22:49:45.999156 --- ParallelTerminationStrategy: PID 77 died...
22:49:46.001192 run osmo-ms-virt-phy/00042(pid=77): Terminated: ok {rc=0}
22:49:46.006151 --- ParallelTerminationStrategy: PID 78 died...
22:49:46.008113 run osmo-ms-virt-phy/00043(pid=78): Terminated: ok {rc=0}
22:49:46.013060 --- ParallelTerminationStrategy: PID 79 died...
22:49:46.015056 run osmo-ms-virt-phy/00044(pid=79): Terminated: ok {rc=0}
22:49:46.019973 --- ParallelTerminationStrategy: PID 80 died...
22:49:46.021965 run osmo-ms-virt-phy/00045(pid=80): Terminated: ok {rc=0}
22:49:46.026918 --- ParallelTerminationStrategy: PID 81 died...
22:49:46.028869 run osmo-ms-virt-phy/00046(pid=81): Terminated: ok {rc=0}
22:49:46.033784 --- ParallelTerminationStrategy: PID 82 died...
22:49:46.035795 run osmo-ms-virt-phy/00047(pid=82): Terminated: ok {rc=0}
22:49:46.040857 --- ParallelTerminationStrategy: PID 83 died...
22:49:46.042867 run osmo-ms-virt-phy/00048(pid=83): Terminated: ok {rc=0}
22:49:46.048361 --- ParallelTerminationStrategy: PID 84 died...
22:49:46.050482 run osmo-ms-virt-phy/00049(pid=84): Terminated: ok {rc=0}
22:49:46.055505 --- ParallelTerminationStrategy: PID 85 died...
22:49:46.057588 run osmo-ms-virt-phy/00050(pid=85): Terminated: ok {rc=0}
22:49:46.062621 --- ParallelTerminationStrategy: PID 86 died...
22:49:46.064731 run osmo-ms-virt-phy/00051(pid=86): Terminated: ok {rc=0}
22:49:46.069797 --- ParallelTerminationStrategy: PID 87 died...
22:49:46.071853 run osmo-ms-virt-phy/00052(pid=87): Terminated: ok {rc=0}
22:49:46.076945 --- ParallelTerminationStrategy: PID 88 died...
22:49:46.078932 run osmo-ms-virt-phy/00053(pid=88): Terminated: ok {rc=0}
22:49:46.083951 --- ParallelTerminationStrategy: PID 89 died...
22:49:46.086043 run osmo-ms-virt-phy/00054(pid=89): Terminated: ok {rc=0}
22:49:46.091182 --- ParallelTerminationStrategy: PID 90 died...
22:49:46.093244 run osmo-ms-virt-phy/00055(pid=90): Terminated: ok {rc=0}
22:49:46.098238 --- ParallelTerminationStrategy: PID 91 died...
22:49:46.100282 run osmo-ms-virt-phy/00056(pid=91): Terminated: ok {rc=0}
22:49:46.105316 --- ParallelTerminationStrategy: PID 92 died...
22:49:46.107318 run osmo-ms-virt-phy/00057(pid=92): Terminated: ok {rc=0}
22:49:46.112350 --- ParallelTerminationStrategy: PID 93 died...
22:49:46.114378 run osmo-ms-virt-phy/00058(pid=93): Terminated: ok {rc=0}
22:49:46.119378 --- ParallelTerminationStrategy: PID 94 died...
22:49:46.121417 run osmo-ms-virt-phy/00059(pid=94): Terminated: ok {rc=0}
22:49:46.126463 --- ParallelTerminationStrategy: PID 95 died...
22:49:46.128467 run osmo-ms-virt-phy/00060(pid=95): Terminated: ok {rc=0}
22:49:46.133454 --- ParallelTerminationStrategy: PID 96 died...
22:49:46.135461 run osmo-ms-virt-phy/00061(pid=96): Terminated: ok {rc=0}
22:49:46.140489 --- ParallelTerminationStrategy: PID 97 died...
22:49:46.142549 run osmo-ms-virt-phy/00062(pid=97): Terminated: ok {rc=0}
22:49:46.147567 --- ParallelTerminationStrategy: PID 98 died...
22:49:46.149624 run osmo-ms-virt-phy/00063(pid=98): Terminated: ok {rc=0}
22:49:46.154636 --- ParallelTerminationStrategy: PID 99 died...
22:49:46.156686 run osmo-ms-virt-phy/00064(pid=99): Terminated: ok {rc=0}
22:49:46.161718 --- ParallelTerminationStrategy: PID 100 died...
22:49:46.163825 run osmo-ms-virt-phy/00065(pid=100): Terminated: ok {rc=0}
22:49:46.168843 --- ParallelTerminationStrategy: PID 101 died...
22:49:46.170856 run osmo-ms-virt-phy/00066(pid=101): Terminated: ok {rc=0}
22:49:46.175880 --- ParallelTerminationStrategy: PID 102 died...
22:49:46.177952 run osmo-ms-virt-phy/00067(pid=102): Terminated: ok {rc=0}
22:49:46.183176 --- ParallelTerminationStrategy: PID 103 died...
22:49:46.185269 run osmo-ms-virt-phy/00068(pid=103): Terminated: ok {rc=0}
22:49:46.190311 --- ParallelTerminationStrategy: PID 104 died...
22:49:46.192335 run osmo-ms-virt-phy/00069(pid=104): Terminated: ok {rc=0}
22:49:46.197406 --- ParallelTerminationStrategy: PID 105 died...
22:49:46.199404 run osmo-ms-virt-phy/00070(pid=105): Terminated: ok {rc=0}
22:49:46.204567 --- ParallelTerminationStrategy: PID 106 died...
22:49:46.206674 run osmo-ms-virt-phy/00071(pid=106): Terminated: ok {rc=0}
22:49:46.211752 --- ParallelTerminationStrategy: PID 107 died...
22:49:46.213767 run osmo-ms-virt-phy/00072(pid=107): Terminated: ok {rc=0}
22:49:46.218788 --- ParallelTerminationStrategy: PID 108 died...
22:49:46.220926 run osmo-ms-virt-phy/00073(pid=108): Terminated: ok {rc=0}
22:49:46.226000 --- ParallelTerminationStrategy: PID 109 died...
22:49:46.228076 run osmo-ms-virt-phy/00074(pid=109): Terminated: ok {rc=0}
22:49:46.233153 --- ParallelTerminationStrategy: PID 110 died...
22:49:46.235170 run osmo-ms-virt-phy/00075(pid=110): Terminated: ok {rc=0}
22:49:46.240153 --- ParallelTerminationStrategy: PID 111 died...
22:49:46.242194 run osmo-ms-virt-phy/00076(pid=111): Terminated: ok {rc=0}
22:49:46.247182 --- ParallelTerminationStrategy: PID 112 died...
22:49:46.249230 run osmo-ms-virt-phy/00077(pid=112): Terminated: ok {rc=0}
22:49:46.254284 --- ParallelTerminationStrategy: PID 113 died...
22:49:46.256477 run osmo-ms-virt-phy/00078(pid=113): Terminated: ok {rc=0}
22:49:46.261661 --- ParallelTerminationStrategy: PID 114 died...
22:49:46.263739 run osmo-ms-virt-phy/00079(pid=114): Terminated: ok {rc=0}
22:49:46.268916 --- ParallelTerminationStrategy: PID 115 died...
22:49:46.271001 run osmo-ms-virt-phy/00080(pid=115): Terminated: ok {rc=0}
22:49:46.276100 --- ParallelTerminationStrategy: PID 116 died...
22:49:46.278108 run osmo-ms-virt-phy/00081(pid=116): Terminated: ok {rc=0}
22:49:46.283121 --- ParallelTerminationStrategy: PID 117 died...
22:49:46.285149 run osmo-ms-virt-phy/00082(pid=117): Terminated: ok {rc=0}
22:49:46.290139 --- ParallelTerminationStrategy: PID 118 died...
22:49:46.292148 run osmo-ms-virt-phy/00083(pid=118): Terminated: ok {rc=0}
22:49:46.297112 --- ParallelTerminationStrategy: PID 119 died...
22:49:46.299147 run osmo-ms-virt-phy/00084(pid=119): Terminated: ok {rc=0}
22:49:46.304193 --- ParallelTerminationStrategy: PID 120 died...
22:49:46.306204 run osmo-ms-virt-phy/00085(pid=120): Terminated: ok {rc=0}
22:49:46.311229 --- ParallelTerminationStrategy: PID 121 died...
22:49:46.313237 run osmo-ms-virt-phy/00086(pid=121): Terminated: ok {rc=0}
22:49:46.318231 --- ParallelTerminationStrategy: PID 122 died...
22:49:46.320284 run osmo-ms-virt-phy/00087(pid=122): Terminated: ok {rc=0}
22:49:46.325285 --- ParallelTerminationStrategy: PID 123 died...
22:49:46.327309 run osmo-ms-virt-phy/00088(pid=123): Terminated: ok {rc=0}
22:49:46.332280 --- ParallelTerminationStrategy: PID 124 died...
22:49:46.334356 run osmo-ms-virt-phy/00089(pid=124): Terminated: ok {rc=0}
22:49:46.339355 --- ParallelTerminationStrategy: PID 125 died...
22:49:46.341393 run osmo-ms-virt-phy/00090(pid=125): Terminated: ok {rc=0}
22:49:46.346381 --- ParallelTerminationStrategy: PID 126 died...
22:49:46.348458 run osmo-ms-virt-phy/00091(pid=126): Terminated: ok {rc=0}
22:49:46.353503 --- ParallelTerminationStrategy: PID 127 died...
22:49:46.355506 run osmo-ms-virt-phy/00092(pid=127): Terminated: ok {rc=0}
22:49:46.360610 --- ParallelTerminationStrategy: PID 128 died...
22:49:46.362718 run osmo-ms-virt-phy/00093(pid=128): Terminated: ok {rc=0}
22:49:46.367737 --- ParallelTerminationStrategy: PID 129 died...
22:49:46.369765 run osmo-ms-virt-phy/00094(pid=129): Terminated: ok {rc=0}
22:49:46.374762 --- ParallelTerminationStrategy: PID 130 died...
22:49:46.376810 run osmo-ms-virt-phy/00095(pid=130): Terminated: ok {rc=0}
22:49:46.381730 --- ParallelTerminationStrategy: PID 131 died...
22:49:46.383689 run osmo-ms-virt-phy/00096(pid=131): Terminated: ok {rc=0}
22:49:46.388534 --- ParallelTerminationStrategy: PID 132 died...
22:49:46.390560 run osmo-ms-virt-phy/00097(pid=132): Terminated: ok {rc=0}
22:49:46.395497 --- ParallelTerminationStrategy: PID 133 died...
22:49:46.397525 run osmo-ms-virt-phy/00098(pid=133): Terminated: ok {rc=0}
22:49:46.402608 --- ParallelTerminationStrategy: PID 134 died...
22:49:46.404677 run osmo-ms-virt-phy/00099(pid=134): Terminated: ok {rc=0}
22:49:46.409681 --- ParallelTerminationStrategy: PID 135 died...
22:49:46.411699 run osmo-ms-mob/00000(pid=135): Terminated {rc=26112}
22:49:46.416692 --- ParallelTerminationStrategy: PID 136 died...
22:49:46.418768 run osmo-ms-mob/00001(pid=136): Terminated {rc=26112}
22:49:46.423800 --- ParallelTerminationStrategy: PID 137 died...
22:49:46.425791 run osmo-ms-mob/00002(pid=137): Terminated {rc=26112}
22:49:46.430768 --- ParallelTerminationStrategy: PID 138 died...
22:49:46.432803 run osmo-ms-mob/00003(pid=138): Terminated {rc=26112}
22:49:46.437793 --- ParallelTerminationStrategy: PID 139 died...
22:49:46.439766 run osmo-ms-mob/00004(pid=139): Terminated {rc=26112}
22:49:46.444926 --- ParallelTerminationStrategy: PID 140 died...
22:49:46.446917 run osmo-ms-mob/00005(pid=140): Terminated {rc=26112}
22:49:46.451923 --- ParallelTerminationStrategy: PID 141 died...
22:49:46.453978 run osmo-ms-mob/00006(pid=141): Terminated {rc=26112}
22:49:46.458951 --- ParallelTerminationStrategy: PID 142 died...
22:49:46.461043 run osmo-ms-mob/00007(pid=142): Terminated {rc=26112}
22:49:46.466176 --- ParallelTerminationStrategy: PID 143 died...
22:49:46.468250 run osmo-ms-mob/00008(pid=143): Terminated {rc=26112}
22:49:46.473327 --- ParallelTerminationStrategy: PID 144 died...
22:49:46.475330 run osmo-ms-mob/00009(pid=144): Terminated {rc=26112}
22:49:46.480345 --- ParallelTerminationStrategy: PID 145 died...
22:49:46.482434 run osmo-ms-mob/00010(pid=145): Terminated {rc=26112}
22:49:46.487449 --- ParallelTerminationStrategy: PID 146 died...
22:49:46.489475 run osmo-ms-mob/00011(pid=146): Terminated {rc=26112}
22:49:46.494578 --- ParallelTerminationStrategy: PID 147 died...
22:49:46.496669 run osmo-ms-mob/00012(pid=147): Terminated {rc=26112}
22:49:46.501724 --- ParallelTerminationStrategy: PID 148 died...
22:49:46.503761 run osmo-ms-mob/00013(pid=148): Terminated {rc=26112}
22:49:46.508871 --- ParallelTerminationStrategy: PID 149 died...
22:49:46.510920 run osmo-ms-mob/00014(pid=149): Terminated {rc=26112}
22:49:46.515938 --- ParallelTerminationStrategy: PID 150 died...
22:49:46.517969 run osmo-ms-mob/00015(pid=150): Terminated {rc=26112}
22:49:46.523041 --- ParallelTerminationStrategy: PID 151 died...
22:49:46.525095 run osmo-ms-mob/00016(pid=151): Terminated {rc=26112}
22:49:46.530124 --- ParallelTerminationStrategy: PID 152 died...
22:49:46.532158 run osmo-ms-mob/00017(pid=152): Terminated {rc=26112}
22:49:46.537177 --- ParallelTerminationStrategy: PID 153 died...
22:49:46.539208 run osmo-ms-mob/00018(pid=153): Terminated {rc=26112}
22:49:46.544283 --- ParallelTerminationStrategy: PID 154 died...
22:49:46.546327 run osmo-ms-mob/00019(pid=154): Terminated {rc=26112}
22:49:46.551353 --- ParallelTerminationStrategy: PID 155 died...
22:49:46.553406 run osmo-ms-mob/00020(pid=155): Terminated {rc=26112}
22:49:46.558414 --- ParallelTerminationStrategy: PID 156 died...
22:49:46.560456 run osmo-ms-mob/00021(pid=156): Terminated {rc=26112}
22:49:46.565485 --- ParallelTerminationStrategy: PID 157 died...
22:49:46.567491 run osmo-ms-mob/00022(pid=157): Terminated {rc=26112}
22:49:46.572499 --- ParallelTerminationStrategy: PID 158 died...
22:49:46.574585 run osmo-ms-mob/00023(pid=158): Terminated {rc=26112}
22:49:46.579636 --- ParallelTerminationStrategy: PID 159 died...
22:49:46.581654 run osmo-ms-mob/00024(pid=159): Terminated {rc=26112}
22:49:46.586721 --- ParallelTerminationStrategy: PID 160 died...
22:49:46.588767 run osmo-ms-mob/00025(pid=160): Terminated {rc=26112}
22:49:46.593828 --- ParallelTerminationStrategy: PID 161 died...
22:49:46.595799 run osmo-ms-mob/00026(pid=161): Terminated {rc=26112}
22:49:46.600838 --- ParallelTerminationStrategy: PID 162 died...
22:49:46.602871 run osmo-ms-mob/00027(pid=162): Terminated {rc=26112}
22:49:46.607886 --- ParallelTerminationStrategy: PID 163 died...
22:49:46.609946 run osmo-ms-mob/00028(pid=163): Terminated {rc=26112}
22:49:46.615032 --- ParallelTerminationStrategy: PID 164 died...
22:49:46.617223 run osmo-ms-mob/00029(pid=164): Terminated {rc=26112}
22:49:46.622284 --- ParallelTerminationStrategy: PID 165 died...
22:49:46.624285 run osmo-ms-mob/00030(pid=165): Terminated {rc=26112}
22:49:46.629318 --- ParallelTerminationStrategy: PID 166 died...
22:49:46.631378 run osmo-ms-mob/00031(pid=166): Terminated {rc=26112}
22:49:46.636518 --- ParallelTerminationStrategy: PID 167 died...
22:49:46.638537 run osmo-ms-mob/00032(pid=167): Terminated {rc=26112}
22:49:46.643594 --- ParallelTerminationStrategy: PID 168 died...
22:49:46.645646 run osmo-ms-mob/00033(pid=168): Terminated {rc=26112}
22:49:46.650682 --- ParallelTerminationStrategy: PID 169 died...
22:49:46.652716 run osmo-ms-mob/00034(pid=169): Terminated {rc=26112}
22:49:46.657980 --- ParallelTerminationStrategy: PID 170 died...
22:49:46.660011 run osmo-ms-mob/00035(pid=170): Terminated {rc=26112}
22:49:46.665094 --- ParallelTerminationStrategy: PID 171 died...
22:49:46.667142 run osmo-ms-mob/00036(pid=171): Terminated {rc=26112}
22:49:46.672173 --- ParallelTerminationStrategy: PID 172 died...
22:49:46.674187 run osmo-ms-mob/00037(pid=172): Terminated {rc=26112}
22:49:46.679393 --- ParallelTerminationStrategy: PID 173 died...
22:49:46.681547 run osmo-ms-mob/00038(pid=173): Terminated {rc=26112}
22:49:46.686588 --- ParallelTerminationStrategy: PID 174 died...
22:49:46.688593 run osmo-ms-mob/00039(pid=174): Terminated {rc=26112}
22:49:46.693702 --- ParallelTerminationStrategy: PID 175 died...
22:49:46.695760 run osmo-ms-mob/00040(pid=175): Terminated {rc=26112}
22:49:46.701066 --- ParallelTerminationStrategy: PID 176 died...
22:49:46.703160 run osmo-ms-mob/00041(pid=176): Terminated {rc=26112}
22:49:46.708293 --- ParallelTerminationStrategy: PID 177 died...
22:49:46.710372 run osmo-ms-mob/00042(pid=177): Terminated {rc=26112}
22:49:46.715495 --- ParallelTerminationStrategy: PID 178 died...
22:49:46.717576 run osmo-ms-mob/00043(pid=178): Terminated {rc=26112}
22:49:46.722612 --- ParallelTerminationStrategy: PID 179 died...
22:49:46.724673 run osmo-ms-mob/00044(pid=179): Terminated {rc=26112}
22:49:46.729763 --- ParallelTerminationStrategy: PID 180 died...
22:49:46.731825 run osmo-ms-mob/00045(pid=180): Terminated {rc=26112}
22:49:46.736860 --- ParallelTerminationStrategy: PID 181 died...
22:49:46.738880 run osmo-ms-mob/00046(pid=181): Terminated {rc=26112}
22:49:46.743970 --- ParallelTerminationStrategy: PID 182 died...
22:49:46.746020 run osmo-ms-mob/00047(pid=182): Terminated {rc=26112}
22:49:46.751072 --- ParallelTerminationStrategy: PID 183 died...
22:49:46.753106 run osmo-ms-mob/00048(pid=183): Terminated {rc=26112}
22:49:46.758059 --- ParallelTerminationStrategy: PID 184 died...
22:49:46.760121 run osmo-ms-mob/00049(pid=184): Terminated {rc=26112}
22:49:46.765151 --- ParallelTerminationStrategy: PID 185 died...
22:49:46.767115 run osmo-ms-mob/00050(pid=185): Terminated {rc=26112}
22:49:46.772002 --- ParallelTerminationStrategy: PID 186 died...
22:49:46.774049 run osmo-ms-mob/00051(pid=186): Terminated {rc=26112}
22:49:46.779043 --- ParallelTerminationStrategy: PID 187 died...
22:49:46.781180 run osmo-ms-mob/00052(pid=187): Terminated {rc=26112}
22:49:46.786269 --- ParallelTerminationStrategy: PID 188 died...
22:49:46.788290 run osmo-ms-mob/00053(pid=188): Terminated {rc=26112}
22:49:46.793355 --- ParallelTerminationStrategy: PID 189 died...
22:49:46.795360 run osmo-ms-mob/00054(pid=189): Terminated {rc=26112}
22:49:46.800399 --- ParallelTerminationStrategy: PID 190 died...
22:49:46.802439 run osmo-ms-mob/00055(pid=190): Terminated {rc=26112}
22:49:46.807491 --- ParallelTerminationStrategy: PID 191 died...
22:49:46.809530 run osmo-ms-mob/00056(pid=191): Terminated {rc=26112}
22:49:46.814583 --- ParallelTerminationStrategy: PID 192 died...
22:49:46.816592 run osmo-ms-mob/00057(pid=192): Terminated {rc=26112}
22:49:46.821670 --- ParallelTerminationStrategy: PID 193 died...
22:49:46.823704 run osmo-ms-mob/00058(pid=193): Terminated {rc=26112}
22:49:46.828741 --- ParallelTerminationStrategy: PID 194 died...
22:49:46.830766 run osmo-ms-mob/00059(pid=194): Terminated {rc=26112}
22:49:46.835813 --- ParallelTerminationStrategy: PID 195 died...
22:49:46.837874 run osmo-ms-mob/00060(pid=195): Terminated {rc=26112}
22:49:46.842928 --- ParallelTerminationStrategy: PID 196 died...
22:49:46.844952 run osmo-ms-mob/00061(pid=196): Terminated {rc=26112}
22:49:46.850089 --- ParallelTerminationStrategy: PID 197 died...
22:49:46.852212 run osmo-ms-mob/00062(pid=197): Terminated {rc=26112}
22:49:46.857417 --- ParallelTerminationStrategy: PID 198 died...
22:49:46.859449 run osmo-ms-mob/00063(pid=198): Terminated {rc=26112}
22:49:46.864482 --- ParallelTerminationStrategy: PID 199 died...
22:49:46.866592 run osmo-ms-mob/00064(pid=199): Terminated {rc=26112}
22:49:46.871732 --- ParallelTerminationStrategy: PID 200 died...
22:49:46.873747 run osmo-ms-mob/00065(pid=200): Terminated {rc=26112}
22:49:46.878810 --- ParallelTerminationStrategy: PID 201 died...
22:49:46.880863 run osmo-ms-mob/00066(pid=201): Terminated {rc=26112}
22:49:46.885944 --- ParallelTerminationStrategy: PID 202 died...
22:49:46.888085 run osmo-ms-mob/00067(pid=202): Terminated {rc=26112}
22:49:46.893359 --- ParallelTerminationStrategy: PID 203 died...
22:49:46.895453 run osmo-ms-mob/00068(pid=203): Terminated {rc=26112}
22:49:46.900715 --- ParallelTerminationStrategy: PID 204 died...
22:49:46.902876 run osmo-ms-mob/00069(pid=204): Terminated {rc=26112}
22:49:46.907960 --- ParallelTerminationStrategy: PID 205 died...
22:49:46.909999 run osmo-ms-mob/00070(pid=205): Terminated {rc=26112}
22:49:46.915149 --- ParallelTerminationStrategy: PID 206 died...
22:49:46.917274 run osmo-ms-mob/00071(pid=206): Terminated {rc=26112}
22:49:46.922329 --- ParallelTerminationStrategy: PID 207 died...
22:49:46.924354 run osmo-ms-mob/00072(pid=207): Terminated {rc=26112}
22:49:46.929419 --- ParallelTerminationStrategy: PID 208 died...
22:49:46.931477 run osmo-ms-mob/00073(pid=208): Terminated {rc=26112}
22:49:46.936601 --- ParallelTerminationStrategy: PID 209 died...
22:49:46.938664 run osmo-ms-mob/00074(pid=209): Terminated {rc=26112}
22:49:46.943824 --- ParallelTerminationStrategy: PID 210 died...
22:49:46.945920 run osmo-ms-mob/00075(pid=210): Terminated {rc=26112}
22:49:46.950998 --- ParallelTerminationStrategy: PID 211 died...
22:49:46.953061 run osmo-ms-mob/00076(pid=211): Terminated {rc=26112}
22:49:46.958163 --- ParallelTerminationStrategy: PID 212 died...
22:49:46.960190 run osmo-ms-mob/00077(pid=212): Terminated {rc=26112}
22:49:46.965315 --- ParallelTerminationStrategy: PID 213 died...
22:49:46.967363 run osmo-ms-mob/00078(pid=213): Terminated {rc=26112}
22:49:46.972414 --- ParallelTerminationStrategy: PID 214 died...
22:49:46.974485 run osmo-ms-mob/00079(pid=214): Terminated {rc=26112}
22:49:46.979519 --- ParallelTerminationStrategy: PID 215 died...
22:49:46.981585 run osmo-ms-mob/00080(pid=215): Terminated {rc=26112}
22:49:46.986617 --- ParallelTerminationStrategy: PID 216 died...
22:49:46.988672 run osmo-ms-mob/00081(pid=216): Terminated {rc=26112}
22:49:46.993730 --- ParallelTerminationStrategy: PID 217 died...
22:49:46.995766 run osmo-ms-mob/00082(pid=217): Terminated {rc=26112}
22:49:47.000817 --- ParallelTerminationStrategy: PID 218 died...
22:49:47.002818 run osmo-ms-mob/00083(pid=218): Terminated {rc=26112}
22:49:47.007885 --- ParallelTerminationStrategy: PID 219 died...
22:49:47.009954 run osmo-ms-mob/00084(pid=219): Terminated {rc=26112}
22:49:47.015017 --- ParallelTerminationStrategy: PID 220 died...
22:49:47.017067 run osmo-ms-mob/00085(pid=220): Terminated {rc=26112}
22:49:47.022198 --- ParallelTerminationStrategy: PID 221 died...
22:49:47.024244 run osmo-ms-mob/00086(pid=221): Terminated {rc=26112}
22:49:47.029294 --- ParallelTerminationStrategy: PID 222 died...
22:49:47.031342 run osmo-ms-mob/00087(pid=222): Terminated {rc=26112}
22:49:47.036427 --- ParallelTerminationStrategy: PID 223 died...
22:49:47.038443 run osmo-ms-mob/00088(pid=223): Terminated {rc=26112}
22:49:47.043536 --- ParallelTerminationStrategy: PID 224 died...
22:49:47.045601 run osmo-ms-mob/00089(pid=224): Terminated {rc=26112}
22:49:47.050787 --- ParallelTerminationStrategy: PID 225 died...
22:49:47.052839 run osmo-ms-mob/00090(pid=225): Terminated {rc=26112}
22:49:47.057902 --- ParallelTerminationStrategy: PID 226 died...
22:49:47.059951 run osmo-ms-mob/00091(pid=226): Terminated {rc=26112}
22:49:47.065045 --- ParallelTerminationStrategy: PID 227 died...
22:49:47.067066 run osmo-ms-mob/00092(pid=227): Terminated {rc=26112}
22:49:47.072138 --- ParallelTerminationStrategy: PID 228 died...
22:49:47.074254 run osmo-ms-mob/00093(pid=228): Terminated {rc=26112}
22:49:47.079280 --- ParallelTerminationStrategy: PID 229 died...
22:49:47.081310 run osmo-ms-mob/00094(pid=229): Terminated {rc=26112}
22:49:47.086404 --- ParallelTerminationStrategy: PID 230 died...
22:49:47.088437 run osmo-ms-mob/00095(pid=230): Terminated {rc=26112}
22:49:47.093493 --- ParallelTerminationStrategy: PID 231 died...
22:49:47.095518 run osmo-ms-mob/00096(pid=231): Terminated {rc=26112}
22:49:47.100620 --- ParallelTerminationStrategy: PID 232 died...
22:49:47.102648 run osmo-ms-mob/00097(pid=232): Terminated {rc=26112}
22:49:47.107718 --- ParallelTerminationStrategy: PID 233 died...
22:49:47.109760 run osmo-ms-mob/00098(pid=233): Terminated {rc=26112}
22:49:47.114759 --- ParallelTerminationStrategy: PID 234 died...
22:49:47.116748 run osmo-ms-mob/00099(pid=234): Terminated {rc=26112}
22:49:49.800335 --- ParallelTerminationStrategy: PID 34 died...
22:49:49.803990 run osmo-bts-virtual(pid=34): Terminated: ok {rc=0}
---------------------------------------------------------------------
trial-8029 netreg_mass PASS
---------------------------------------------------------------------
22:49:49.901405 tst trial-8029: Storing JUnit report in /build/trial-8029/run.2025-07-16_22-48-18/trial-8029.xml
--------------------------------------------------------------------------------------------
trial-8029 PASS
--------------------------------------------------------------------------------------------
22:49:49.915146 tst trial-8029: trial-8029: PASS, 1 suites passed
PASS: netreg_mass (pass: 1)
pass: register_default_mass.py (85.4 sec)
+ exit_code=0
+ rm -rf trial-8029/inst
+ cd trial-8029
+ command -v journalctl
+ [ ! -z /usr/bin/journalctl ]
+ readlink last_run
+ journalctl -u ofono -o short-precise --since 2025-07-16 22:48:18
No journal files were found.
+ readlink last_run
+ tar czf /build/trial-8029-run.tgz run.2025-07-16_22-48-18
+ tar czf /build/trial-8029-bin.tgz checksums.md5 open5gs.build-8.tgz osmo-bsc.build-2025-07-16_13_26_27.tgz osmo-bts-oc2g.build-2025-07-16_00_51_29.tgz osmo-bts-sysmo.build-2025-07-16_00_51_32.tgz osmo-bts.build-2025-07-16_00_51_37.tgz osmo-ggsn.build-2025-07-16_20_42_44.tgz osmo-hlr.build-2025-07-16_16_36_33.tgz osmo-hnbgw.build-2025-07-16_13_28_36.tgz osmo-mgw.build-2025-07-16_08_33_10.tgz osmo-msc.build-2025-07-16_13_32_26.tgz osmo-nitb.build-17155.tgz osmo-pcu-oc2g.build-2025-07-16_07_33_58.tgz osmo-pcu-sysmo.build-2025-07-16_07_35_57.tgz osmo-pcu.build-2025-07-16_07_36_04.tgz osmo-sgsn.build-2025-07-16_20_48_31.tgz osmo-stp.build-2025-07-16_13_25_15.tgz osmo-trx.build-2025-07-16_14_27_54.tgz osmocom-bb.build-2025-07-16_21_17_06.tgz srslte.build-19.tgz
+ exit 0
+ clean_up_trap
+ set +x
### Clean up ###
+ trap - EXIT INT TERM 0
+ clean_up
+ docker kill osmo-gsm-tester-virtual
Error response from daemon: cannot kill container: osmo-gsm-tester-virtual: No such container: osmo-gsm-tester-virtual
+ true
+ docker run --rm -v /home/osmocom-build/jenkins/workspace/osmo-gsm-tester_virtual:/workspace debian:bookworm chmod -R a+rwX /workspace/
Archiving artifacts
Recording test results
[Checks API] No suitable checks publisher found.
Finished: SUCCESS