0s autopkgtest: DBG: testbed init 0s autopkgtest [04:38:19]: starting date and time: 2025-02-19 04:38:19+0000 0s autopkgtest [04:38:19]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:38:19]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.wb102b56/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:php-memcached,src:php-redis --apt-upgrade php-matomo-doctrine-cache --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=php-memcached/3.3.0-3 php-redis/6.1.0-3' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-9.secgroup --name adt-plucky-s390x-php-matomo-doctrine-cache-20250219-043819-juju-7f2275-prod-proposed-migration-environment-15-312d82af-723e-4322-8ba7-e42182744f95 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 125s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.sUYYXQ 125s autopkgtest: DBG: sending command to testbed: print-execute-command 125s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.pwb83m8z/runcmd 125s autopkgtest: DBG: sending command to testbed: capabilities 125s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert revert-full-system suggested-normal-user=ubuntu reboot root-on-testbed 125s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert', 'revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 125s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.sUYYXQ'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.sUYYXQ/wrapper.sh 125s autopkgtest: DBG: got reply from testbed: ok 125s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.sUYYXQ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [04:40:25]: testbed dpkg architecture: s390x 126s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [04:40:25]: testbed apt version: 2.9.29 126s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed has eatmydata 126s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [04:40:25]: @@@@@@@@@@@@@@@@@@@@ test bed setup 126s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [04:40:25]: testbed release detected to be: None 126s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: adding APT source: Types: deb deb-src 127s URIs: http://ftpmaster.internal/ubuntu/ 127s Suites: plucky-proposed 127s Components: main restricted universe multiverse 127s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 127s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 127s Package: * 127s Pin: release plucky-proposed 127s Pin-Priority: 500 127s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest [04:40:26]: updating testbed package index (apt update) 127s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 127s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 128s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 128s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 128s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 128s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 128s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 128s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 128s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 128s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 128s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 128s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 128s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 128s Fetched 1723 kB in 1s (1624 kB/s) 129s Reading package lists... 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 129s Package: * 129s Pin: release plucky-proposed 129s Pin-Priority: 100 129s 129s Package: src:php-memcached:any src:php-redis:any 129s Pin: release plucky-proposed 129s Pin-Priority: 995 129s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:php-memcached:any src:php-redis:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.sUYYXQ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 129s + lsb_release --codename --short 129s + RELEASE=plucky 129s + cat 129s + [ plucky != trusty ] 129s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 129s Reading package lists... 130s Building dependency tree... 130s Reading state information... 130s Calculating upgrade... 130s The following packages were automatically installed and are no longer required: 130s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 130s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 130s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 130s linux-tools-6.11.0-8-generic 130s Use 'sudo apt autoremove' to remove them. 130s The following NEW packages will be installed: 130s libapt-pkg7.0 130s The following packages will be upgraded: 130s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 130s s390-tools-signed 130s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 130s Need to get 8909 kB of archives. 130s After this operation, 3624 kB of additional disk space will be used. 130s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 131s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 131s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 131s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 131s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 131s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 131s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 132s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 133s Fetched 8909 kB in 2s (3737 kB/s) 133s Selecting previously unselected package libapt-pkg7.0:s390x. 133s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80980 files and directories currently installed.) 133s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 133s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 133s Setting up libapt-pkg7.0:s390x (2.9.30) ... 133s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81029 files and directories currently installed.) 133s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 133s Unpacking apt (2.9.30) over (2.9.29) ... 133s Setting up apt (2.9.30) ... 134s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81029 files and directories currently installed.) 134s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 134s Unpacking apt-utils (2.9.30) over (2.9.29) ... 134s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 134s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 134s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 134s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 134s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 134s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 134s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 134s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 134s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 134s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 134s Setting up apt-utils (2.9.30) ... 134s Setting up rsyslog (8.2412.0-2ubuntu1) ... 134s info: The user `syslog' is already a member of `adm'. 135s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 135s Setting up dhcpcd-base (1:10.1.0-7) ... 135s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 135s Setting up s390-tools (2.37.0-0ubuntu2) ... 136s Processing triggers for libc-bin (2.40-4ubuntu1) ... 136s Processing triggers for man-db (2.13.0-1) ... 137s Processing triggers for initramfs-tools (0.145ubuntu2) ... 137s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 137s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 141s Using config file '/etc/zipl.conf' 141s Building bootmap in '/boot' 141s Adding IPL section 'ubuntu' (default) 141s Preparing boot device for LD-IPL: vda (0000). 141s Done. 142s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 142s + /usr/lib/apt/apt-helper analyze-pattern ?true 142s + uname -r 142s + sed s/\./\\./g 142s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 142s + apt list ?obsolete 142s + tail -n+2 142s + cut -d/ -f1 142s + grep -v ^linux-.*6\.12\.0-15-generic.* 143s + true 143s + obsolete_pkgs= 143s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 143s Reading package lists... 143s Building dependency tree... 143s Reading state information... 143s The following packages will be REMOVED: 143s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 143s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 143s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 143s linux-tools-6.11.0-8-generic* 143s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 143s After this operation, 167 MB disk space will be freed. 143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 143s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 143s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 143s Removing libpython3.12t64:s390x (3.12.9-1) ... 143s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 143s Removing libnsl2:s390x (1.3.0-3build3) ... 143s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 143s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 143s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 144s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 145s Processing triggers for libc-bin (2.40-4ubuntu1) ... 145s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 145s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 145s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 145s + grep -q trusty /etc/lsb-release 145s + [ ! -d /usr/share/doc/unattended-upgrades ] 145s + [ ! -d /usr/share/doc/lxd ] 145s + [ ! -d /usr/share/doc/lxd-client ] 145s + [ ! -d /usr/share/doc/snapd ] 145s + type iptables 145s + cat 145s + chmod 755 /etc/rc.local 145s + . /etc/rc.local 145s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 145s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 145s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 145s + uname -m 145s + [ s390x = ppc64le ] 145s + [ -d /run/systemd/system ] 145s + systemd-detect-virt --quiet --vm 145s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 145s + cat 145s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 145s + echo COMPRESS=lz4 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [04:40:44]: upgrading testbed (apt dist-upgrade and autopurge) 145s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 145s Reading package lists... 145s Building dependency tree... 145s Reading state information... 145s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 145s Starting 2 pkgProblemResolver with broken count: 0 145s Done 146s Entering ResolveByKeep 146s 146s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 146s Reading package lists... 146s Building dependency tree... 146s Reading state information... 147s Starting pkgProblemResolver with broken count: 0 147s Starting 2 pkgProblemResolver with broken count: 0 147s Done 147s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.sUYYXQ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 1 147s autopkgtest [04:40:46]: rebooting testbed after setup commands that affected boot 147s autopkgtest: DBG: sending command to testbed: reboot 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 165s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.sUYYXQ'], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.sUYYXQ/autopkgtest-reboot 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.sUYYXQ'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.sUYYXQ/autopkgtest-reboot-prepare 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [04:41:05]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 166s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.sUYYXQ/testbed-packages"], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/testbed-packages /tmp/autopkgtest-work.wb102b56/out/testbed-packages 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 167s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.sUYYXQ'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.sUYYXQ/autopkgtest-reboot 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.sUYYXQ'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.sUYYXQ/autopkgtest-reboot-prepare 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.sUYYXQ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: Binaries: initialising 169s autopkgtest [04:41:08]: @@@@@@@@@@@@@@@@@@@@ apt-source php-matomo-doctrine-cache 169s autopkgtest: DBG: blame += php-matomo-doctrine-cache 169s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 169s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'php-matomo-doctrine-cache'], kind short, sout pipe, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^php-matomo-doctrine-cache$'], kind short, sout pipe, serr raw, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'php-matomo-doctrine-cache=1.10.4-2'], kind short, sout pipe, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: install_deps: deps_new=[] 170s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.sUYYXQ/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source php-matomo-doctrine-cache=1.10.4-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x php-matomo-doctrine-cache_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=php-memcached/3.3.0-3 php-redis/6.1.0-3'] 170s + cd / 170s + mktemp -d /tmp/autopkgtest.sUYYXQ/build.XXX 170s + builddir=/tmp/autopkgtest.sUYYXQ/build.p0S 170s + cd /tmp/autopkgtest.sUYYXQ/build.p0S 170s + apt-get source -d -q --only-source php-matomo-doctrine-cache=1.10.4-2 170s + OUT=Reading package lists... 170s NOTICE: 'php-matomo-doctrine-cache' packaging is maintained in the 'Git' version control system at: 170s https://salsa.debian.org/matomo-team/doctrine-cache.git 170s Please use: 170s git clone https://salsa.debian.org/matomo-team/doctrine-cache.git 170s to retrieve the latest (possibly unreleased) updates to the package. 170s Need to get 53.0 kB of source archives. 170s Get:1 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (dsc) [2417 B] 170s Get:2 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (tar) [35.5 kB] 170s Get:3 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (diff) [15.1 kB] 170s Fetched 53.0 kB in 0s (133 kB/s) 170s Download complete and in download only mode 170s + [ -n ] 170s + + echo Reading package lists... 170s NOTICE: 'php-matomo-doctrine-cache' packaging is maintained in the 'Git' version control system at: 170s https://salsa.debian.org/matomo-team/doctrine-cache.git 170s Please use: 170s git clone https://salsa.debian.org/matomo-team/doctrine-cache.git 170s to retrieve the latest (possibly unreleased) updates to the package. 170s Need to get 53.0 kB of source archives. 170s Get:1 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (dsc) [2417 B] 170s Get:2 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (tar) [35.5 kB] 170s Get:3 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (diff) [15.1 kB] 170s Fetched 53.0 kB in 0s (133 kB/s) 170s Download complete and in download only mode 170s grep ^Get: 170s Get:1 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (dsc) [2417 B] 170s Get:2 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (tar) [35.5 kB] 170s Get:3 http://ftpmaster.internal/ubuntu plucky/universe php-matomo-doctrine-cache 1.10.4-2 (diff) [15.1 kB] 170s + dpkg-source -x php-matomo-doctrine-cache_1.10.4-2.dsc src 170s gpgv: Signature made Thu Jan 30 00:07:48 2025 UTC 170s gpgv: using RSA key 6C9D10484A9AE4CC385F7C71823E967606C34B96 170s gpgv: Can't check signature: No public key 170s dpkg-source: warning: cannot verify inline signature for ./php-matomo-doctrine-cache_1.10.4-2.dsc: no acceptable signature found 170s + chmod -R a+rX . 170s + cd src/. 170s + pwd 170s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest [04:41:09]: testing package php-matomo-doctrine-cache version 1.10.4-2 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/build.p0S/src/debian/ /tmp/autopkgtest-work.wb102b56/out/pkg/debian/ 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: processing dependency memcached 171s autopkgtest: DBG: processing dependency php-memcache 171s autopkgtest: DBG: processing dependency php-memcached 171s autopkgtest: DBG: processing dependency php-predis 171s autopkgtest: DBG: processing dependency php-redis 171s autopkgtest: DBG: processing dependency php-sqlite3 171s autopkgtest: DBG: processing dependency phpab 171s autopkgtest: DBG: processing dependency phpunit 171s autopkgtest: DBG: processing dependency pkg-php-tools 171s autopkgtest: DBG: processing dependency redis 171s autopkgtest: DBG: processing dependency @ 171s autopkgtest: DBG: synthesised dependency php-matomo-doctrine-cache 171s autopkgtest: DBG: Test defined: name phpunit path debian/tests/phpunit command "None" restrictions ['allow-stderr'] features [] depends ['memcached', 'php-memcache', 'php-memcached', 'php-predis', 'php-redis', 'php-sqlite3', 'phpab', 'phpunit', 'pkg-php-tools', 'redis', 'php-matomo-doctrine-cache'] 171s autopkgtest [04:41:10]: build not needed 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/build.p0S/src/ /tmp/autopkgtest-work.wb102b56/out/tests-tree/ 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: processing dependency memcached 171s autopkgtest: DBG: processing dependency php-memcache 171s autopkgtest: DBG: processing dependency php-memcached 171s autopkgtest: DBG: processing dependency php-predis 171s autopkgtest: DBG: processing dependency php-redis 171s autopkgtest: DBG: processing dependency php-sqlite3 171s autopkgtest: DBG: processing dependency phpab 171s autopkgtest: DBG: processing dependency phpunit 171s autopkgtest: DBG: processing dependency pkg-php-tools 171s autopkgtest: DBG: processing dependency redis 171s autopkgtest: DBG: processing dependency @ 171s autopkgtest: DBG: synthesised dependency php-matomo-doctrine-cache 171s autopkgtest: DBG: Test defined: name phpunit path debian/tests/phpunit command "None" restrictions ['allow-stderr'] features [] depends ['memcached', 'php-memcache', 'php-memcached', 'php-predis', 'php-redis', 'php-sqlite3', 'phpab', 'phpunit', 'pkg-php-tools', 'redis', 'php-matomo-doctrine-cache'] 171s autopkgtest [04:41:10]: test phpunit: preparing testbed 171s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['memcached', 'php-memcache', 'php-memcached', 'php-predis', 'php-redis', 'php-sqlite3', 'phpab', 'phpunit', 'pkg-php-tools', 'redis', 'php-matomo-doctrine-cache'] 171s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 171s autopkgtest: DBG: install_deps: deps_new=['memcached', 'php-memcache', 'php-memcached', 'php-predis', 'php-redis', 'php-sqlite3', 'phpab', 'phpunit', 'pkg-php-tools', 'redis', 'php-matomo-doctrine-cache'] 171s autopkgtest: DBG: install-deps: satisfying memcached, php-memcache, php-memcached, php-predis, php-redis, php-sqlite3, phpab, phpunit, pkg-php-tools, redis, php-matomo-doctrine-cache 171s autopkgtest: DBG: can use apt-get on testbed: True 171s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'memcached, php-memcache, php-memcached, php-predis, php-redis, php-sqlite3, phpab, phpunit, pkg-php-tools, redis, php-matomo-doctrine-cache'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 171s Reading package lists... 171s Building dependency tree... 171s Reading state information... 172s Starting pkgProblemResolver with broken count: 0 172s Starting 2 pkgProblemResolver with broken count: 0 172s Done 172s The following NEW packages will be installed: 172s autoconf automake autopoint autotools-dev cpp cpp-14 cpp-14-s390x-linux-gnu 172s cpp-s390x-linux-gnu dctrl-tools debhelper debugedit dh-autoreconf 172s dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 172s gcc-s390x-linux-gnu gettext intltool-debian javascript-common 172s libarchive-zip-perl libargon2-1 libasan8 libcc1-0 libdebhelper-perl 172s libevent-2.1-7t64 libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 172s libhashkit2t64 libisl23 libitm1 libjemalloc2 libjs-bootstrap4 libjs-d3 172s libjs-jquery libjs-popper.js liblzf1 libmemcached11t64 libmpc3 libsodium23 172s libtool libubsan1 libxslt1.1 m4 memcached php-codecoverage php-common 172s php-deepcopy php-directory-scanner php-doctrine-instantiator 172s php-file-iterator php-invoker php-matomo-doctrine-cache php-mbstring 172s php-memcache php-memcached php-parser php-pear php-phar-io-manifest 172s php-phar-io-version php-predis php-redis php-sqlite3 php-text-template 172s php-timer php-tokenizer php-xml php-zeta-base php-zeta-console-tools 172s php8.3-cli php8.3-common php8.3-mbstring php8.3-memcache php8.3-opcache 172s php8.3-phpdbg php8.3-readline php8.3-sqlite3 php8.3-xml php8.4-cli 172s php8.4-common php8.4-igbinary php8.4-memcached php8.4-msgpack php8.4-opcache 172s php8.4-phpdbg php8.4-readline php8.4-redis phpab phpunit phpunit-cli-parser 172s phpunit-code-unit phpunit-code-unit-reverse-lookup phpunit-comparator 172s phpunit-complexity phpunit-diff phpunit-environment phpunit-exporter 172s phpunit-global-state phpunit-lines-of-code phpunit-object-enumerator 172s phpunit-object-reflector phpunit-recursion-context 172s phpunit-resource-operations phpunit-type phpunit-version pkg-php-tools 172s po-debconf redis redis-server redis-tools 172s 0 upgraded, 112 newly installed, 0 to remove and 0 not upgraded. 172s Need to get 55.9 MB of archives. 172s After this operation, 193 MB of additional disk space will be used. 172s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-2.1-7t64 s390x 2.1.12-stable-10 [145 kB] 173s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x memcached s390x 1.6.36-1 [444 kB] 173s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x php-common all 2:93ubuntu2 [13.9 kB] 173s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-common s390x 8.3.11-0ubuntu4 [745 kB] 174s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-opcache s390x 8.3.11-0ubuntu4 [78.0 kB] 174s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-readline s390x 8.3.11-0ubuntu4 [13.9 kB] 174s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libargon2-1 s390x 0~20190702+dfsg-4build1 [54.1 kB] 174s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 174s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-cli s390x 8.3.11-0ubuntu4 [1940 kB] 176s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.3-phpdbg s390x 8.3.11-0ubuntu4 [1967 kB] 178s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.3-memcache s390x 8.2-2ubuntu1 [58.1 kB] 178s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x php-memcache s390x 8.2-2ubuntu1 [14.1 kB] 178s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.4-common s390x 8.4.1-5 [783 kB] 179s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.4-opcache s390x 8.4.1-5 [79.2 kB] 179s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.4-readline s390x 8.4.1-5 [14.2 kB] 179s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.4-cli s390x 8.4.1-5 [2005 kB] 180s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.4-phpdbg s390x 8.4.1-5 [2024 kB] 182s Get:18 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x php8.4-igbinary s390x 3.2.16-4 [36.8 kB] 182s Get:19 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x php8.4-msgpack s390x 1:3.0.0-1 [31.2 kB] 182s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libhashkit2t64 s390x 1.1.4-1.1build3 [16.0 kB] 182s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libmemcached11t64 s390x 1.1.4-1.1build3 [83.7 kB] 182s Get:22 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x php8.4-memcached s390x 3.3.0-3 [48.3 kB] 182s Get:23 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x php-memcached all 3.3.0-3 [3688 B] 182s Get:24 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x php8.4-redis s390x 6.1.0-3 [211 kB] 182s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x php-redis all 6.1.0-3 [3050 B] 182s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x libjemalloc2 s390x 5.3.0-2build1 [204 kB] 182s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x liblzf1 s390x 3.6-4 [7020 B] 182s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x redis-tools s390x 5:7.0.15-3 [1198 kB] 183s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x redis-server s390x 5:7.0.15-3 [51.7 kB] 183s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 183s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 183s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 183s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 184s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 184s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 184s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 184s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 189s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 189s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 189s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 189s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 189s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 189s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 189s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 189s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 189s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 191s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 192s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 193s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 203s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 203s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 203s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 203s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 203s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 203s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 203s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 203s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 203s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 203s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 203s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 204s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 204s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 204s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 204s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 204s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-popper.js all 1.16.1+ds-6 [54.1 kB] 204s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap4 all 4.6.1+dfsg1-4 [537 kB] 204s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-d3 all 3.5.17-4 [132 kB] 204s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 204s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 205s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-xml s390x 8.3.11-0ubuntu4 [129 kB] 205s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x php-xml all 2:8.3+93ubuntu2 [1856 B] 205s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x php-parser all 5.4.0-2ubuntu1 [160 kB] 205s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x php-file-iterator all 3.0.6-2 [5872 B] 205s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x php-text-template all 2.0.4-2 [5324 B] 205s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-code-unit-reverse-lookup all 2.0.3-5 [4788 B] 205s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-complexity all 2.0.3-2 [5684 B] 205s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-environment all 5.1.5-1 [7692 B] 205s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-lines-of-code all 1.0.4-2 [5144 B] 205s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-version all 3.0.2-3 [5426 B] 205s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x php-tokenizer all 1.2.3-2 [6726 B] 205s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x php-codecoverage all 9.2.32+dfsg-1 [91.1 kB] 205s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x php-deepcopy all 1.12.1-2maysync2 [32.7 kB] 205s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x php-directory-scanner all 1.3.3-5 [6718 B] 205s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x php-doctrine-instantiator all 2.0.0-4 [6862 B] 205s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x php-invoker all 3.1.1-3 [4874 B] 205s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x php-matomo-doctrine-cache all 1.10.4-2 [20.4 kB] 205s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-mbstring s390x 8.3.11-0ubuntu4 [523 kB] 205s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x php-mbstring all 2:8.3+93ubuntu2 [1848 B] 205s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x php-pear all 1:1.10.13+submodules+notgz+2022032202-2build1 [292 kB] 205s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phar-io-version all 3.2.1-2 [8924 B] 205s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x php-phar-io-manifest all 2.0.4-4 [14.4 kB] 205s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x php-predis all 2.3.0-2 [143 kB] 205s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-sqlite3 s390x 8.3.11-0ubuntu4 [33.8 kB] 205s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x php-sqlite3 all 2:8.3+93ubuntu2 [1844 B] 205s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x php-timer all 5.0.3-3 [6276 B] 205s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x php-zeta-base all 1.9.4-2 [125 kB] 205s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x php-zeta-console-tools all 1.7.5-2 [475 kB] 205s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x phpab all 1.29.3-2 [28.7 kB] 205s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-cli-parser all 1.0.2-1 [5226 B] 205s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-code-unit all 1.0.8-3 [7198 B] 205s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-diff all 4.0.6-1 [14.6 kB] 206s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-recursion-context all 4.0.5-1 [5266 B] 206s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-exporter all 4.0.6-1 [7854 B] 206s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-comparator all 4.0.8-2 [10.4 kB] 206s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-object-reflector all 2.0.4-3 [4452 B] 206s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-global-state all 5.0.7-1 [7994 B] 206s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-object-enumerator all 4.0.4-3 [4800 B] 206s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-resource-operations all 3.0.4-1 [15.7 kB] 206s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit-type all 3.2.1-1 [8774 B] 206s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x phpunit all 9.6.21-1 [166 kB] 206s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x redis all 5:7.0.15-3 [2914 B] 206s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x pkg-php-tools all 1.48 [32.9 kB] 206s Fetched 55.9 MB in 34s (1647 kB/s) 206s Selecting previously unselected package libevent-2.1-7t64:s390x. 207s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 207s Preparing to unpack .../0-libevent-2.1-7t64_2.1.12-stable-10_s390x.deb ... 207s Unpacking libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 207s Selecting previously unselected package memcached. 207s Preparing to unpack .../1-memcached_1.6.36-1_s390x.deb ... 207s Unpacking memcached (1.6.36-1) ... 207s Selecting previously unselected package php-common. 207s Preparing to unpack .../2-php-common_2%3a93ubuntu2_all.deb ... 207s Unpacking php-common (2:93ubuntu2) ... 207s Selecting previously unselected package php8.3-common. 207s Preparing to unpack .../3-php8.3-common_8.3.11-0ubuntu4_s390x.deb ... 207s Unpacking php8.3-common (8.3.11-0ubuntu4) ... 207s Selecting previously unselected package php8.3-opcache. 207s Preparing to unpack .../4-php8.3-opcache_8.3.11-0ubuntu4_s390x.deb ... 207s Unpacking php8.3-opcache (8.3.11-0ubuntu4) ... 207s Selecting previously unselected package php8.3-readline. 207s Preparing to unpack .../5-php8.3-readline_8.3.11-0ubuntu4_s390x.deb ... 207s Unpacking php8.3-readline (8.3.11-0ubuntu4) ... 207s Selecting previously unselected package libargon2-1:s390x. 207s Preparing to unpack .../6-libargon2-1_0~20190702+dfsg-4build1_s390x.deb ... 207s Unpacking libargon2-1:s390x (0~20190702+dfsg-4build1) ... 207s Selecting previously unselected package libsodium23:s390x. 207s Preparing to unpack .../7-libsodium23_1.0.18-1build3_s390x.deb ... 207s Unpacking libsodium23:s390x (1.0.18-1build3) ... 207s Selecting previously unselected package php8.3-cli. 207s Preparing to unpack .../8-php8.3-cli_8.3.11-0ubuntu4_s390x.deb ... 207s Unpacking php8.3-cli (8.3.11-0ubuntu4) ... 207s Selecting previously unselected package php8.3-phpdbg. 207s Preparing to unpack .../9-php8.3-phpdbg_8.3.11-0ubuntu4_s390x.deb ... 207s Unpacking php8.3-phpdbg (8.3.11-0ubuntu4) ... 207s Setting up php-common (2:93ubuntu2) ... 207s Created symlink '/etc/systemd/system/timers.target.wants/phpsessionclean.timer' → '/usr/lib/systemd/system/phpsessionclean.timer'. 207s Selecting previously unselected package php8.3-memcache. 207s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 56097 files and directories currently installed.) 207s Preparing to unpack .../000-php8.3-memcache_8.2-2ubuntu1_s390x.deb ... 207s Unpacking php8.3-memcache (8.2-2ubuntu1) ... 207s Selecting previously unselected package php-memcache. 207s Preparing to unpack .../001-php-memcache_8.2-2ubuntu1_s390x.deb ... 207s Unpacking php-memcache (8.2-2ubuntu1) ... 207s Selecting previously unselected package php8.4-common. 207s Preparing to unpack .../002-php8.4-common_8.4.1-5_s390x.deb ... 207s Unpacking php8.4-common (8.4.1-5) ... 207s Selecting previously unselected package php8.4-opcache. 207s Preparing to unpack .../003-php8.4-opcache_8.4.1-5_s390x.deb ... 207s Unpacking php8.4-opcache (8.4.1-5) ... 207s Selecting previously unselected package php8.4-readline. 207s Preparing to unpack .../004-php8.4-readline_8.4.1-5_s390x.deb ... 207s Unpacking php8.4-readline (8.4.1-5) ... 208s Selecting previously unselected package php8.4-cli. 208s Preparing to unpack .../005-php8.4-cli_8.4.1-5_s390x.deb ... 208s Unpacking php8.4-cli (8.4.1-5) ... 208s Selecting previously unselected package php8.4-phpdbg. 208s Preparing to unpack .../006-php8.4-phpdbg_8.4.1-5_s390x.deb ... 208s Unpacking php8.4-phpdbg (8.4.1-5) ... 208s Selecting previously unselected package php8.4-igbinary. 208s Preparing to unpack .../007-php8.4-igbinary_3.2.16-4_s390x.deb ... 208s Unpacking php8.4-igbinary (3.2.16-4) ... 208s Selecting previously unselected package php8.4-msgpack. 208s Preparing to unpack .../008-php8.4-msgpack_1%3a3.0.0-1_s390x.deb ... 208s Unpacking php8.4-msgpack (1:3.0.0-1) ... 208s Selecting previously unselected package libhashkit2t64:s390x. 208s Preparing to unpack .../009-libhashkit2t64_1.1.4-1.1build3_s390x.deb ... 208s Unpacking libhashkit2t64:s390x (1.1.4-1.1build3) ... 208s Selecting previously unselected package libmemcached11t64:s390x. 208s Preparing to unpack .../010-libmemcached11t64_1.1.4-1.1build3_s390x.deb ... 208s Unpacking libmemcached11t64:s390x (1.1.4-1.1build3) ... 208s Selecting previously unselected package php8.4-memcached. 208s Preparing to unpack .../011-php8.4-memcached_3.3.0-3_s390x.deb ... 208s Unpacking php8.4-memcached (3.3.0-3) ... 208s Selecting previously unselected package php-memcached. 208s Preparing to unpack .../012-php-memcached_3.3.0-3_all.deb ... 208s Unpacking php-memcached (3.3.0-3) ... 208s Selecting previously unselected package php8.4-redis. 208s Preparing to unpack .../013-php8.4-redis_6.1.0-3_s390x.deb ... 208s Unpacking php8.4-redis (6.1.0-3) ... 208s Selecting previously unselected package php-redis. 208s Preparing to unpack .../014-php-redis_6.1.0-3_all.deb ... 208s Unpacking php-redis (6.1.0-3) ... 208s Selecting previously unselected package libjemalloc2:s390x. 208s Preparing to unpack .../015-libjemalloc2_5.3.0-2build1_s390x.deb ... 208s Unpacking libjemalloc2:s390x (5.3.0-2build1) ... 208s Selecting previously unselected package liblzf1:s390x. 208s Preparing to unpack .../016-liblzf1_3.6-4_s390x.deb ... 208s Unpacking liblzf1:s390x (3.6-4) ... 208s Selecting previously unselected package redis-tools. 208s Preparing to unpack .../017-redis-tools_5%3a7.0.15-3_s390x.deb ... 208s Unpacking redis-tools (5:7.0.15-3) ... 208s Selecting previously unselected package redis-server. 208s Preparing to unpack .../018-redis-server_5%3a7.0.15-3_s390x.deb ... 208s Unpacking redis-server (5:7.0.15-3) ... 208s Selecting previously unselected package m4. 208s Preparing to unpack .../019-m4_1.4.19-5_s390x.deb ... 208s Unpacking m4 (1.4.19-5) ... 208s Selecting previously unselected package autoconf. 208s Preparing to unpack .../020-autoconf_2.72-3_all.deb ... 208s Unpacking autoconf (2.72-3) ... 208s Selecting previously unselected package autotools-dev. 208s Preparing to unpack .../021-autotools-dev_20220109.1_all.deb ... 208s Unpacking autotools-dev (20220109.1) ... 208s Selecting previously unselected package automake. 208s Preparing to unpack .../022-automake_1%3a1.17-3_all.deb ... 208s Unpacking automake (1:1.17-3) ... 208s Selecting previously unselected package autopoint. 208s Preparing to unpack .../023-autopoint_0.23.1-1_all.deb ... 208s Unpacking autopoint (0.23.1-1) ... 208s Selecting previously unselected package libisl23:s390x. 208s Preparing to unpack .../024-libisl23_0.27-1_s390x.deb ... 208s Unpacking libisl23:s390x (0.27-1) ... 208s Selecting previously unselected package libmpc3:s390x. 208s Preparing to unpack .../025-libmpc3_1.3.1-1build2_s390x.deb ... 208s Unpacking libmpc3:s390x (1.3.1-1build2) ... 208s Selecting previously unselected package cpp-14-s390x-linux-gnu. 208s Preparing to unpack .../026-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package cpp-14. 208s Preparing to unpack .../027-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package cpp-s390x-linux-gnu. 208s Preparing to unpack .../028-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 208s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 208s Selecting previously unselected package cpp. 208s Preparing to unpack .../029-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 208s Unpacking cpp (4:14.2.0-1ubuntu1) ... 208s Selecting previously unselected package dctrl-tools. 208s Preparing to unpack .../030-dctrl-tools_2.24-3build3_s390x.deb ... 208s Unpacking dctrl-tools (2.24-3build3) ... 208s Selecting previously unselected package libdebhelper-perl. 208s Preparing to unpack .../031-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 208s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 208s Selecting previously unselected package libcc1-0:s390x. 208s Preparing to unpack .../032-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 208s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 208s Selecting previously unselected package libgomp1:s390x. 208s Preparing to unpack .../033-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 208s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 208s Selecting previously unselected package libitm1:s390x. 208s Preparing to unpack .../034-libitm1_15-20250213-1ubuntu1_s390x.deb ... 208s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 208s Selecting previously unselected package libasan8:s390x. 208s Preparing to unpack .../035-libasan8_15-20250213-1ubuntu1_s390x.deb ... 208s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 208s Selecting previously unselected package libubsan1:s390x. 208s Preparing to unpack .../036-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 208s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 208s Selecting previously unselected package libgcc-14-dev:s390x. 208s Preparing to unpack .../037-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package gcc-14-s390x-linux-gnu. 208s Preparing to unpack .../038-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 209s Selecting previously unselected package gcc-14. 209s Preparing to unpack .../039-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 209s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 209s Selecting previously unselected package gcc-s390x-linux-gnu. 209s Preparing to unpack .../040-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 209s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 209s Selecting previously unselected package gcc. 209s Preparing to unpack .../041-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 209s Unpacking gcc (4:14.2.0-1ubuntu1) ... 209s Selecting previously unselected package libtool. 209s Preparing to unpack .../042-libtool_2.5.4-3build1_all.deb ... 209s Unpacking libtool (2.5.4-3build1) ... 209s Selecting previously unselected package dh-autoreconf. 209s Preparing to unpack .../043-dh-autoreconf_20_all.deb ... 209s Unpacking dh-autoreconf (20) ... 209s Selecting previously unselected package libarchive-zip-perl. 209s Preparing to unpack .../044-libarchive-zip-perl_1.68-1_all.deb ... 209s Unpacking libarchive-zip-perl (1.68-1) ... 209s Selecting previously unselected package libfile-stripnondeterminism-perl. 209s Preparing to unpack .../045-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 209s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 209s Selecting previously unselected package dh-strip-nondeterminism. 209s Preparing to unpack .../046-dh-strip-nondeterminism_1.14.1-2_all.deb ... 209s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 209s Selecting previously unselected package debugedit. 209s Preparing to unpack .../047-debugedit_1%3a5.1-2_s390x.deb ... 209s Unpacking debugedit (1:5.1-2) ... 209s Selecting previously unselected package dwz. 209s Preparing to unpack .../048-dwz_0.15-1build6_s390x.deb ... 209s Unpacking dwz (0.15-1build6) ... 209s Selecting previously unselected package gettext. 209s Preparing to unpack .../049-gettext_0.23.1-1_s390x.deb ... 209s Unpacking gettext (0.23.1-1) ... 209s Selecting previously unselected package intltool-debian. 209s Preparing to unpack .../050-intltool-debian_0.35.0+20060710.6_all.deb ... 209s Unpacking intltool-debian (0.35.0+20060710.6) ... 209s Selecting previously unselected package po-debconf. 209s Preparing to unpack .../051-po-debconf_1.0.21+nmu1_all.deb ... 209s Unpacking po-debconf (1.0.21+nmu1) ... 209s Selecting previously unselected package debhelper. 209s Preparing to unpack .../052-debhelper_13.24.1ubuntu2_all.deb ... 209s Unpacking debhelper (13.24.1ubuntu2) ... 209s Selecting previously unselected package javascript-common. 209s Preparing to unpack .../053-javascript-common_11+nmu1_all.deb ... 209s Unpacking javascript-common (11+nmu1) ... 209s Selecting previously unselected package libjs-popper.js. 209s Preparing to unpack .../054-libjs-popper.js_1.16.1+ds-6_all.deb ... 209s Unpacking libjs-popper.js (1.16.1+ds-6) ... 209s Selecting previously unselected package libjs-bootstrap4. 209s Preparing to unpack .../055-libjs-bootstrap4_4.6.1+dfsg1-4_all.deb ... 209s Unpacking libjs-bootstrap4 (4.6.1+dfsg1-4) ... 209s Selecting previously unselected package libjs-d3. 209s Preparing to unpack .../056-libjs-d3_3.5.17-4_all.deb ... 209s Unpacking libjs-d3 (3.5.17-4) ... 209s Selecting previously unselected package libjs-jquery. 209s Preparing to unpack .../057-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 209s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 209s Selecting previously unselected package libxslt1.1:s390x. 209s Preparing to unpack .../058-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 209s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 209s Selecting previously unselected package php8.3-xml. 209s Preparing to unpack .../059-php8.3-xml_8.3.11-0ubuntu4_s390x.deb ... 209s Unpacking php8.3-xml (8.3.11-0ubuntu4) ... 209s Selecting previously unselected package php-xml. 209s Preparing to unpack .../060-php-xml_2%3a8.3+93ubuntu2_all.deb ... 209s Unpacking php-xml (2:8.3+93ubuntu2) ... 209s Selecting previously unselected package php-parser. 209s Preparing to unpack .../061-php-parser_5.4.0-2ubuntu1_all.deb ... 209s Unpacking php-parser (5.4.0-2ubuntu1) ... 209s Selecting previously unselected package php-file-iterator. 209s Preparing to unpack .../062-php-file-iterator_3.0.6-2_all.deb ... 209s Unpacking php-file-iterator (3.0.6-2) ... 209s Selecting previously unselected package php-text-template. 209s Preparing to unpack .../063-php-text-template_2.0.4-2_all.deb ... 209s Unpacking php-text-template (2.0.4-2) ... 209s Selecting previously unselected package phpunit-code-unit-reverse-lookup. 209s Preparing to unpack .../064-phpunit-code-unit-reverse-lookup_2.0.3-5_all.deb ... 209s Unpacking phpunit-code-unit-reverse-lookup (2.0.3-5) ... 209s Selecting previously unselected package phpunit-complexity. 209s Preparing to unpack .../065-phpunit-complexity_2.0.3-2_all.deb ... 209s Unpacking phpunit-complexity (2.0.3-2) ... 209s Selecting previously unselected package phpunit-environment. 209s Preparing to unpack .../066-phpunit-environment_5.1.5-1_all.deb ... 209s Unpacking phpunit-environment (5.1.5-1) ... 209s Selecting previously unselected package phpunit-lines-of-code. 209s Preparing to unpack .../067-phpunit-lines-of-code_1.0.4-2_all.deb ... 209s Unpacking phpunit-lines-of-code (1.0.4-2) ... 209s Selecting previously unselected package phpunit-version. 209s Preparing to unpack .../068-phpunit-version_3.0.2-3_all.deb ... 209s Unpacking phpunit-version (3.0.2-3) ... 209s Selecting previously unselected package php-tokenizer. 209s Preparing to unpack .../069-php-tokenizer_1.2.3-2_all.deb ... 209s Unpacking php-tokenizer (1.2.3-2) ... 209s Selecting previously unselected package php-codecoverage. 209s Preparing to unpack .../070-php-codecoverage_9.2.32+dfsg-1_all.deb ... 209s Unpacking php-codecoverage (9.2.32+dfsg-1) ... 209s Selecting previously unselected package php-deepcopy. 209s Preparing to unpack .../071-php-deepcopy_1.12.1-2maysync2_all.deb ... 209s Unpacking php-deepcopy (1.12.1-2maysync2) ... 209s Selecting previously unselected package php-directory-scanner. 209s Preparing to unpack .../072-php-directory-scanner_1.3.3-5_all.deb ... 209s Unpacking php-directory-scanner (1.3.3-5) ... 209s Selecting previously unselected package php-doctrine-instantiator. 209s Preparing to unpack .../073-php-doctrine-instantiator_2.0.0-4_all.deb ... 209s Unpacking php-doctrine-instantiator (2.0.0-4) ... 209s Selecting previously unselected package php-invoker. 209s Preparing to unpack .../074-php-invoker_3.1.1-3_all.deb ... 209s Unpacking php-invoker (3.1.1-3) ... 209s Selecting previously unselected package php-matomo-doctrine-cache. 209s Preparing to unpack .../075-php-matomo-doctrine-cache_1.10.4-2_all.deb ... 209s Unpacking php-matomo-doctrine-cache (1.10.4-2) ... 209s Selecting previously unselected package php8.3-mbstring. 209s Preparing to unpack .../076-php8.3-mbstring_8.3.11-0ubuntu4_s390x.deb ... 209s Unpacking php8.3-mbstring (8.3.11-0ubuntu4) ... 209s Selecting previously unselected package php-mbstring. 209s Preparing to unpack .../077-php-mbstring_2%3a8.3+93ubuntu2_all.deb ... 209s Unpacking php-mbstring (2:8.3+93ubuntu2) ... 209s Selecting previously unselected package php-pear. 209s Preparing to unpack .../078-php-pear_1%3a1.10.13+submodules+notgz+2022032202-2build1_all.deb ... 209s Unpacking php-pear (1:1.10.13+submodules+notgz+2022032202-2build1) ... 209s Selecting previously unselected package php-phar-io-version. 209s Preparing to unpack .../079-php-phar-io-version_3.2.1-2_all.deb ... 209s Unpacking php-phar-io-version (3.2.1-2) ... 209s Selecting previously unselected package php-phar-io-manifest. 209s Preparing to unpack .../080-php-phar-io-manifest_2.0.4-4_all.deb ... 209s Unpacking php-phar-io-manifest (2.0.4-4) ... 209s Selecting previously unselected package php-predis. 209s Preparing to unpack .../081-php-predis_2.3.0-2_all.deb ... 209s Unpacking php-predis (2.3.0-2) ... 209s Selecting previously unselected package php8.3-sqlite3. 209s Preparing to unpack .../082-php8.3-sqlite3_8.3.11-0ubuntu4_s390x.deb ... 209s Unpacking php8.3-sqlite3 (8.3.11-0ubuntu4) ... 209s Selecting previously unselected package php-sqlite3. 209s Preparing to unpack .../083-php-sqlite3_2%3a8.3+93ubuntu2_all.deb ... 209s Unpacking php-sqlite3 (2:8.3+93ubuntu2) ... 209s Selecting previously unselected package php-timer. 209s Preparing to unpack .../084-php-timer_5.0.3-3_all.deb ... 209s Unpacking php-timer (5.0.3-3) ... 209s Selecting previously unselected package php-zeta-base. 209s Preparing to unpack .../085-php-zeta-base_1.9.4-2_all.deb ... 209s Unpacking php-zeta-base (1.9.4-2) ... 209s Selecting previously unselected package php-zeta-console-tools. 209s Preparing to unpack .../086-php-zeta-console-tools_1.7.5-2_all.deb ... 209s Unpacking php-zeta-console-tools (1.7.5-2) ... 209s Selecting previously unselected package phpab. 209s Preparing to unpack .../087-phpab_1.29.3-2_all.deb ... 209s Unpacking phpab (1.29.3-2) ... 209s Selecting previously unselected package phpunit-cli-parser. 209s Preparing to unpack .../088-phpunit-cli-parser_1.0.2-1_all.deb ... 209s Unpacking phpunit-cli-parser (1.0.2-1) ... 209s Selecting previously unselected package phpunit-code-unit. 209s Preparing to unpack .../089-phpunit-code-unit_1.0.8-3_all.deb ... 209s Unpacking phpunit-code-unit (1.0.8-3) ... 210s Selecting previously unselected package phpunit-diff. 210s Preparing to unpack .../090-phpunit-diff_4.0.6-1_all.deb ... 210s Unpacking phpunit-diff (4.0.6-1) ... 210s Selecting previously unselected package phpunit-recursion-context. 210s Preparing to unpack .../091-phpunit-recursion-context_4.0.5-1_all.deb ... 210s Unpacking phpunit-recursion-context (4.0.5-1) ... 210s Selecting previously unselected package phpunit-exporter. 210s Preparing to unpack .../092-phpunit-exporter_4.0.6-1_all.deb ... 210s Unpacking phpunit-exporter (4.0.6-1) ... 210s Selecting previously unselected package phpunit-comparator. 210s Preparing to unpack .../093-phpunit-comparator_4.0.8-2_all.deb ... 210s Unpacking phpunit-comparator (4.0.8-2) ... 210s Selecting previously unselected package phpunit-object-reflector. 210s Preparing to unpack .../094-phpunit-object-reflector_2.0.4-3_all.deb ... 210s Unpacking phpunit-object-reflector (2.0.4-3) ... 210s Selecting previously unselected package phpunit-global-state. 210s Preparing to unpack .../095-phpunit-global-state_5.0.7-1_all.deb ... 210s Unpacking phpunit-global-state (5.0.7-1) ... 210s Selecting previously unselected package phpunit-object-enumerator. 210s Preparing to unpack .../096-phpunit-object-enumerator_4.0.4-3_all.deb ... 210s Unpacking phpunit-object-enumerator (4.0.4-3) ... 210s Selecting previously unselected package phpunit-resource-operations. 210s Preparing to unpack .../097-phpunit-resource-operations_3.0.4-1_all.deb ... 210s Unpacking phpunit-resource-operations (3.0.4-1) ... 210s Selecting previously unselected package phpunit-type. 210s Preparing to unpack .../098-phpunit-type_3.2.1-1_all.deb ... 210s Unpacking phpunit-type (3.2.1-1) ... 210s Selecting previously unselected package phpunit. 210s Preparing to unpack .../099-phpunit_9.6.21-1_all.deb ... 210s Unpacking phpunit (9.6.21-1) ... 210s Selecting previously unselected package redis. 210s Preparing to unpack .../100-redis_5%3a7.0.15-3_all.deb ... 210s Unpacking redis (5:7.0.15-3) ... 210s Selecting previously unselected package pkg-php-tools. 210s Preparing to unpack .../101-pkg-php-tools_1.48_all.deb ... 210s Unpacking pkg-php-tools (1.48) ... 210s Setting up javascript-common (11+nmu1) ... 210s Setting up libsodium23:s390x (1.0.18-1build3) ... 210s Setting up php-predis (2.3.0-2) ... 210s Setting up phpunit-type (3.2.1-1) ... 210s Setting up libjs-popper.js (1.16.1+ds-6) ... 210s Setting up libarchive-zip-perl (1.68-1) ... 210s Setting up libargon2-1:s390x (0~20190702+dfsg-4build1) ... 210s Setting up php-zeta-base (1.9.4-2) ... 210s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 210s Setting up php8.4-common (8.4.1-5) ... 210s Creating config file /etc/php/8.4/mods-available/calendar.ini with new version 210s Creating config file /etc/php/8.4/mods-available/ctype.ini with new version 210s Creating config file /etc/php/8.4/mods-available/exif.ini with new version 210s Creating config file /etc/php/8.4/mods-available/fileinfo.ini with new version 211s Creating config file /etc/php/8.4/mods-available/ffi.ini with new version 211s Creating config file /etc/php/8.4/mods-available/ftp.ini with new version 211s Creating config file /etc/php/8.4/mods-available/gettext.ini with new version 211s Creating config file /etc/php/8.4/mods-available/iconv.ini with new version 211s Creating config file /etc/php/8.4/mods-available/pdo.ini with new version 212s Creating config file /etc/php/8.4/mods-available/phar.ini with new version 212s Creating config file /etc/php/8.4/mods-available/posix.ini with new version 212s Creating config file /etc/php/8.4/mods-available/shmop.ini with new version 212s Creating config file /etc/php/8.4/mods-available/sockets.ini with new version 212s Creating config file /etc/php/8.4/mods-available/sysvmsg.ini with new version 212s Creating config file /etc/php/8.4/mods-available/sysvsem.ini with new version 213s Creating config file /etc/php/8.4/mods-available/sysvshm.ini with new version 213s Creating config file /etc/php/8.4/mods-available/tokenizer.ini with new version 213s Setting up phpunit-resource-operations (3.0.4-1) ... 213s Setting up m4 (1.4.19-5) ... 213s Setting up libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 213s Setting up phpunit-code-unit (1.0.8-3) ... 213s Setting up php8.3-common (8.3.11-0ubuntu4) ... 213s Creating config file /etc/php/8.3/mods-available/calendar.ini with new version 213s Creating config file /etc/php/8.3/mods-available/ctype.ini with new version 213s Creating config file /etc/php/8.3/mods-available/exif.ini with new version 214s Creating config file /etc/php/8.3/mods-available/fileinfo.ini with new version 214s Creating config file /etc/php/8.3/mods-available/ffi.ini with new version 214s Creating config file /etc/php/8.3/mods-available/ftp.ini with new version 214s Creating config file /etc/php/8.3/mods-available/gettext.ini with new version 214s Creating config file /etc/php/8.3/mods-available/iconv.ini with new version 215s Creating config file /etc/php/8.3/mods-available/pdo.ini with new version 215s Creating config file /etc/php/8.3/mods-available/phar.ini with new version 215s Creating config file /etc/php/8.3/mods-available/posix.ini with new version 215s Creating config file /etc/php/8.3/mods-available/shmop.ini with new version 215s Creating config file /etc/php/8.3/mods-available/sockets.ini with new version 216s Creating config file /etc/php/8.3/mods-available/sysvmsg.ini with new version 216s Creating config file /etc/php/8.3/mods-available/sysvsem.ini with new version 216s Creating config file /etc/php/8.3/mods-available/sysvshm.ini with new version 216s Creating config file /etc/php/8.3/mods-available/tokenizer.ini with new version 216s Setting up libjemalloc2:s390x (5.3.0-2build1) ... 216s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 216s Setting up phpunit-object-reflector (2.0.4-3) ... 216s Setting up memcached (1.6.36-1) ... 217s Created symlink '/etc/systemd/system/multi-user.target.wants/memcached.service' → '/usr/lib/systemd/system/memcached.service'. 217s Setting up phpunit-diff (4.0.6-1) ... 217s Setting up php-zeta-console-tools (1.7.5-2) ... 217s Setting up php-phar-io-version (3.2.1-2) ... 217s Setting up php8.3-sqlite3 (8.3.11-0ubuntu4) ... 217s Creating config file /etc/php/8.3/mods-available/sqlite3.ini with new version 217s Creating config file /etc/php/8.3/mods-available/pdo_sqlite.ini with new version 217s Setting up php8.3-mbstring (8.3.11-0ubuntu4) ... 217s Creating config file /etc/php/8.3/mods-available/mbstring.ini with new version 217s Setting up autotools-dev (20220109.1) ... 217s Setting up php8.3-readline (8.3.11-0ubuntu4) ... 218s Creating config file /etc/php/8.3/mods-available/readline.ini with new version 218s Setting up liblzf1:s390x (3.6-4) ... 218s Setting up libjs-d3 (3.5.17-4) ... 218s Setting up php-file-iterator (3.0.6-2) ... 218s Setting up libmpc3:s390x (1.3.1-1build2) ... 218s Setting up autopoint (0.23.1-1) ... 218s Setting up php-deepcopy (1.12.1-2maysync2) ... 218s Setting up php-text-template (2.0.4-2) ... 218s Setting up autoconf (2.72-3) ... 218s Setting up phpunit-recursion-context (4.0.5-1) ... 218s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 218s Setting up dwz (0.15-1build6) ... 218s Setting up php-matomo-doctrine-cache (1.10.4-2) ... 218s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 218s Setting up php-doctrine-instantiator (2.0.0-4) ... 218s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 218s Setting up libhashkit2t64:s390x (1.1.4-1.1build3) ... 218s Setting up debugedit (1:5.1-2) ... 218s Setting up phpunit-object-enumerator (4.0.4-3) ... 218s Setting up php8.3-xml (8.3.11-0ubuntu4) ... 218s Creating config file /etc/php/8.3/mods-available/dom.ini with new version 218s Creating config file /etc/php/8.3/mods-available/simplexml.ini with new version 218s Creating config file /etc/php/8.3/mods-available/xml.ini with new version 218s Creating config file /etc/php/8.3/mods-available/xmlreader.ini with new version 219s Creating config file /etc/php/8.3/mods-available/xmlwriter.ini with new version 219s Creating config file /etc/php/8.3/mods-available/xsl.ini with new version 219s Setting up php-invoker (3.1.1-3) ... 219s Setting up libjs-bootstrap4 (4.6.1+dfsg1-4) ... 219s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 219s Setting up php-directory-scanner (1.3.3-5) ... 219s Setting up php8.3-opcache (8.3.11-0ubuntu4) ... 219s Creating config file /etc/php/8.3/mods-available/opcache.ini with new version 219s Setting up libisl23:s390x (0.27-1) ... 219s Setting up phpunit-environment (5.1.5-1) ... 219s Setting up php-timer (5.0.3-3) ... 219s Setting up phpunit-cli-parser (1.0.2-1) ... 219s Setting up php8.4-opcache (8.4.1-5) ... 219s Creating config file /etc/php/8.4/mods-available/opcache.ini with new version 219s Setting up phpunit-global-state (5.0.7-1) ... 219s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 219s Setting up php-tokenizer (1.2.3-2) ... 219s Setting up dctrl-tools (2.24-3build3) ... 219s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 219s Setting up phpunit-code-unit-reverse-lookup (2.0.3-5) ... 219s Setting up phpunit-version (3.0.2-3) ... 219s Setting up automake (1:1.17-3) ... 219s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 219s Setting up php-xml (2:8.3+93ubuntu2) ... 219s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 219s Setting up gettext (0.23.1-1) ... 219s Setting up php8.4-readline (8.4.1-5) ... 219s Creating config file /etc/php/8.4/mods-available/readline.ini with new version 219s Setting up php-phar-io-manifest (2.0.4-4) ... 219s Setting up libmemcached11t64:s390x (1.1.4-1.1build3) ... 219s Setting up php-sqlite3 (2:8.3+93ubuntu2) ... 219s Setting up php8.3-cli (8.3.11-0ubuntu4) ... 219s update-alternatives: using /usr/bin/php8.3 to provide /usr/bin/php (php) in auto mode 219s update-alternatives: using /usr/bin/phar8.3 to provide /usr/bin/phar (phar) in auto mode 219s update-alternatives: using /usr/bin/phar.phar8.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode 220s Creating config file /etc/php/8.3/cli/php.ini with new version 220s Setting up php-mbstring (2:8.3+93ubuntu2) ... 220s Setting up phpunit-exporter (4.0.6-1) ... 220s Setting up intltool-debian (0.35.0+20060710.6) ... 220s Setting up php-parser (5.4.0-2ubuntu1) ... 220s Setting up redis-tools (5:7.0.15-3) ... 220s Setting up phpunit-lines-of-code (1.0.4-2) ... 220s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 220s Setting up cpp-14 (14.2.0-17ubuntu1) ... 220s Setting up dh-strip-nondeterminism (1.14.1-2) ... 220s Setting up phpab (1.29.3-2) ... 220s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 220s Setting up php8.3-memcache (8.2-2ubuntu1) ... 220s Setting up php8.3-phpdbg (8.3.11-0ubuntu4) ... 220s update-alternatives: using /usr/bin/phpdbg8.3 to provide /usr/bin/phpdbg (phpdbg) in auto mode 220s Creating config file /etc/php/8.3/phpdbg/php.ini with new version 221s Setting up php8.4-cli (8.4.1-5) ... 221s update-alternatives: using /usr/bin/php8.4 to provide /usr/bin/php (php) in auto mode 221s update-alternatives: using /usr/bin/phar8.4 to provide /usr/bin/phar (phar) in auto mode 221s update-alternatives: using /usr/bin/phar.phar8.4 to provide /usr/bin/phar.phar (phar.phar) in auto mode 221s Creating config file /etc/php/8.4/cli/php.ini with new version 221s Setting up php-pear (1:1.10.13+submodules+notgz+2022032202-2build1) ... 221s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 221s Setting up php-memcache (8.2-2ubuntu1) ... 221s Setting up po-debconf (1.0.21+nmu1) ... 221s Setting up phpunit-complexity (2.0.3-2) ... 221s Setting up php-codecoverage (9.2.32+dfsg-1) ... 221s Setting up php8.4-phpdbg (8.4.1-5) ... 221s update-alternatives: using /usr/bin/phpdbg8.4 to provide /usr/bin/phpdbg (phpdbg) in auto mode 221s Creating config file /etc/php/8.4/phpdbg/php.ini with new version 221s Setting up redis-server (5:7.0.15-3) ... 222s Created symlink '/etc/systemd/system/redis.service' → '/usr/lib/systemd/system/redis-server.service'. 222s Created symlink '/etc/systemd/system/multi-user.target.wants/redis-server.service' → '/usr/lib/systemd/system/redis-server.service'. 222s Setting up phpunit-comparator (4.0.8-2) ... 222s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 222s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 222s Setting up cpp (4:14.2.0-1ubuntu1) ... 222s Setting up php8.4-igbinary (3.2.16-4) ... 222s Setting up php8.4-msgpack (1:3.0.0-1) ... 222s Setting up phpunit (9.6.21-1) ... 222s Setting up redis (5:7.0.15-3) ... 222s Setting up php8.4-redis (6.1.0-3) ... 222s Setting up gcc-14 (14.2.0-17ubuntu1) ... 222s Setting up php8.4-memcached (3.3.0-3) ... 222s Setting up php-memcached (3.3.0-3) ... 222s Setting up php-redis (6.1.0-3) ... 222s Setting up libtool (2.5.4-3build1) ... 222s Setting up gcc (4:14.2.0-1ubuntu1) ... 222s Setting up dh-autoreconf (20) ... 222s Setting up debhelper (13.24.1ubuntu2) ... 222s Setting up pkg-php-tools (1.48) ... 222s Processing triggers for man-db (2.13.0-1) ... 224s Processing triggers for install-info (7.1.1-1) ... 224s Processing triggers for libc-bin (2.40-4ubuntu1) ... 224s Processing triggers for php8.3-cli (8.3.11-0ubuntu4) ... 224s Processing triggers for php8.3-phpdbg (8.3.11-0ubuntu4) ... 224s Processing triggers for php8.4-cli (8.4.1-5) ... 224s Processing triggers for php8.4-phpdbg (8.4.1-5) ... 224s autopkgtest: DBG: testbed command exited with code 0 224s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'php-matomo-doctrine-cache'], kind short, sout pipe, serr pipe, env [] 224s autopkgtest: DBG: testbed command exited with code 0 224s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.sUYYXQ/phpunit-packages.all"], kind short, sout raw, serr pipe, env [] 225s autopkgtest: DBG: testbed command exited with code 0 225s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/phpunit-packages.all /tmp/autopkgtest-work.wb102b56/out/phpunit-packages.all 225s autopkgtest: DBG: got reply from testbed: ok 225s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.sUYYXQ/build.p0S/src'], kind short, sout raw, serr raw, env [] 225s autopkgtest: DBG: testbed command exited with code 0 225s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.sUYYXQ/build.p0S/src already exists 225s autopkgtest [04:42:04]: test phpunit: [----------------------- 225s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.sUYYXQ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.sUYYXQ/phpunit-artifacts --chdir=/tmp/autopkgtest.sUYYXQ/build.p0S/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.sUYYXQ/phpunit-stderr --stdout=/tmp/autopkgtest.sUYYXQ/phpunit-stdout --tmp=/tmp/autopkgtest.sUYYXQ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=php-memcached/3.3.0-3 php-redis/6.1.0-3' --make-executable=/tmp/autopkgtest.sUYYXQ/build.p0S/src/debian/tests/phpunit -- /tmp/autopkgtest.sUYYXQ/build.p0S/src/debian/tests/phpunit"], kind test, sout raw, serr raw, env [] 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.sUYYXQ/phpunit-artifacts 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: changing to directory: /tmp/autopkgtest.sUYYXQ/build.p0S/src 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: setting environment: LANG=C.UTF-8 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LANGUAGE 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_ADDRESS 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_ALL 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_COLLATE 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_CTYPE 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_MEASUREMENT 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_MESSAGES 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_MONETARY 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_NAME 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_NUMERIC 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_PAPER 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_TELEPHONE 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: unsetting environment: LC_TIME 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: pretending to be a login shell 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: will write standard error to /tmp/autopkgtest.sUYYXQ/phpunit-stderr 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: will write stdout to /tmp/autopkgtest.sUYYXQ/phpunit-stdout 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.sUYYXQ/autopkgtest_tmp 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=php-memcached/3.3.0-3 php-redis/6.1.0-3 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: marking as executable: /tmp/autopkgtest.sUYYXQ/build.p0S/src/debian/tests/phpunit 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: command to run: /tmp/autopkgtest.sUYYXQ/build.p0S/src/debian/tests/phpunit 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: copying /tmp/tmp.YqGTFL07VO/out to stdout and file: /tmp/autopkgtest.sUYYXQ/phpunit-stdout 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: copying /tmp/tmp.YqGTFL07VO/err to standard error and file: /tmp/autopkgtest.sUYYXQ/phpunit-stdout 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: writing script pid 17720 to /tmp/autopkgtest_script_pid 225s + phpabtpl --require predis --require matomo/cache 225s + phpab --output tests/autoload.php --template debian/autoload.tests.php.tpl tests 225s phpab %development% - Copyright (C) 2009 - 2025 by Arne Blankerts and Contributors 225s 225s Scanning directory tests 225s 225s Autoload file tests/autoload.php generated. 225s 225s + redis-server --daemonize yes 225s + memcached -d -u memcache 225s + phpunit --no-coverage --do-not-cache-result --bootstrap ./tests/autoload.php --exclude-group=php-file 225s PHPUnit requires the "dom", "json", "libxml", "mbstring", "tokenizer", "xml", "xmlwriter" extensions, but the "dom", "mbstring", "xml", "xmlwriter" extensions are not available. 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: checking for leaked background processes... 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: waiting for tee/cat subprocesses... 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: cleaning up... 225s /tmp/autopkgtest.sUYYXQ/wrapper.sh: Exit status: 1 225s autopkgtest: DBG: testbed command exited with code 1 225s autopkgtest [04:42:04]: test phpunit: -----------------------] 225s autopkgtest: DBG: testbed executing test finished with exit status 1 225s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/phpunit-stdout /tmp/autopkgtest-work.wb102b56/out/phpunit-stdout 226s autopkgtest: DBG: got reply from testbed: ok 226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/phpunit-stderr /tmp/autopkgtest-work.wb102b56/out/phpunit-stderr 226s autopkgtest: DBG: got reply from testbed: ok 226s phpunit FAIL non-zero exit status 1 226s autopkgtest [04:42:05]: test phpunit: - - - - - - - - - - results - - - - - - - - - - 226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.sUYYXQ/phpunit-artifacts/ /tmp/autopkgtest-work.wb102b56/out/artifacts/ 226s autopkgtest: DBG: got reply from testbed: ok 226s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.sUYYXQ/phpunit-artifacts', '/tmp/autopkgtest.sUYYXQ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 226s autopkgtest: DBG: testbed command exited with code 0 226s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 226s autopkgtest [04:42:05]: @@@@@@@@@@@@@@@@@@@@ summary 226s phpunit FAIL non-zero exit status 1 226s autopkgtest: DBG: testbed stop 226s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.sUYYXQ 226s autopkgtest: DBG: sending command to testbed: close 244s autopkgtest: DBG: got reply from testbed: ok 244s autopkgtest: DBG: sending command to testbed: quit 244s nova [W] Using flock in prodstack6-s390x 244s Creating nova instance adt-plucky-s390x-php-matomo-doctrine-cache-20250219-043819-juju-7f2275-prod-proposed-migration-environment-15-312d82af-723e-4322-8ba7-e42182744f95 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 244s nova [W] Timed out waiting for 77ce09e1-44c5-4250-90ec-d5c17aa55030 to get deleted.