0s autopkgtest: DBG: testbed init 0s autopkgtest [23:47:12]: starting date and time: 2025-02-15 23:47:12+0000 0s autopkgtest [23:47:12]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [23:47:12]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.y1s5dmlm/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade libdevel-mat-dumper-perl --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-22.secgroup --name adt-plucky-s390x-libdevel-mat-dumper-perl-20250215-234712-juju-7f2275-prod-proposed-migration-environment-15-f7d79cca-82b0-4f9a-b87c-416dd6d98432 --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 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.92igW4 103s autopkgtest: DBG: sending command to testbed: print-execute-command 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ldqtiem8/runcmd 103s autopkgtest: DBG: sending command to testbed: capabilities 103s autopkgtest: DBG: got reply from testbed: ok revert reboot isolation-machine suggested-normal-user=ubuntu revert-full-system root-on-testbed 103s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'root-on-testbed', 'has_internet'] 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.92igW4/wrapper.sh 104s autopkgtest: DBG: got reply from testbed: ok 104s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/wrapper.sh'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:48:56]: testbed dpkg architecture: s390x 104s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:48:56]: testbed apt version: 2.9.28 104s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed has eatmydata 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:48:56]: @@@@@@@@@@@@@@@@@@@@ test bed setup 104s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [23:48:57]: testbed release detected to be: None 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT source: Types: deb deb-src 105s URIs: http://ftpmaster.internal/ubuntu/ 105s Suites: plucky-proposed 105s Components: main restricted universe multiverse 105s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 500 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [23:48:57]: updating testbed package index (apt update) 105s 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'] 105s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 106s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 106s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 106s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 106s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 106s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 106s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 106s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 106s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 106s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 106s Fetched 2073 kB in 1s (2198 kB/s) 107s Reading package lists... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 100 107s 107s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 107s Pin: release plucky-proposed 107s Pin-Priority: 995 107s 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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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.92igW4/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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'] 107s + lsb_release --codename --short 107s + RELEASE=plucky 107s + cat 107s + [ plucky != trusty ] 107s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 107s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Calculating upgrade... 108s The following packages were automatically installed and are no longer required: 108s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 108s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 108s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 108s linux-tools-6.11.0-8-generic 108s Use 'sudo apt autoremove' to remove them. 108s The following packages will be upgraded: 108s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 108s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 1155 kB of archives. 108s After this operation, 16.4 kB of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 108s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 108s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 108s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 108s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 109s Preconfiguring packages ... 109s Fetched 1155 kB in 1s (1907 kB/s) 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 109s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 109s Setting up dash (0.5.12-12ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 109s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 109s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 109s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 109s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 109s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 109s Setting up libtasn1-6:s390x (4.20.0-2) ... 109s Processing triggers for libc-bin (2.40-4ubuntu1) ... 109s Processing triggers for man-db (2.13.0-1) ... 109s Processing triggers for debianutils (5.21) ... 110s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 110s + /usr/lib/apt/apt-helper analyze-pattern ?true 110s + uname -r 110s + sed s/\./\\./g 110s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 110s + apt list ?obsolete 110s + tail -n+2 110s + cut -d/ -f1 110s + grep -v ^linux-.*6\.12\.0-15-generic.* 110s + true 110s + obsolete_pkgs= 110s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 110s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s The following packages will be REMOVED: 110s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 110s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 110s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 110s linux-tools-6.11.0-8-generic* 110s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 110s After this operation, 167 MB disk space will be freed. 110s (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 ... 80969 files and directories currently installed.) 110s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 110s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 110s Removing libpython3.12t64:s390x (3.12.9-1) ... 110s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 110s Removing libnsl2:s390x (1.3.0-3build3) ... 110s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 110s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 110s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 111s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 111s Processing triggers for libc-bin (2.40-4ubuntu1) ... 111s (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 ... 55869 files and directories currently installed.) 111s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 111s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s + grep -q trusty /etc/lsb-release 112s + [ ! -d /usr/share/doc/unattended-upgrades ] 112s + [ ! -d /usr/share/doc/lxd ] 112s + [ ! -d /usr/share/doc/lxd-client ] 112s + [ ! -d /usr/share/doc/snapd ] 112s + type iptables 112s + cat 112s + chmod 755 /etc/rc.local 112s + . /etc/rc.local 112s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 112s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 112s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 112s + uname -m 112s + [ s390x = ppc64le ] 112s + [ -d /run/systemd/system ] 112s + systemd-detect-virt --quiet --vm 112s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 112s + cat 112s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 112s + echo COMPRESS=lz4 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [23:49:04]: upgrading testbed (apt dist-upgrade and autopurge) 112s 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'] 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 112s Starting 2 pkgProblemResolver with broken count: 0 112s Done 112s Entering ResolveByKeep 112s 113s The following packages will be upgraded: 113s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 113s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s Need to get 10.7 MB of archives. 113s After this operation, 305 kB of additional disk space will be used. 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 113s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 113s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 114s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 114s Preconfiguring packages ... 114s Fetched 10.7 MB in 1s (10.7 MB/s) 114s (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 ... 55867 files and directories currently installed.) 114s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 114s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 114s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 114s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 114s Checking for services that may need to be restarted... 114s Checking init scripts... 114s Checking for services that may need to be restarted... 114s Checking init scripts... 114s Stopping some services possibly affected by the upgrade (will be restarted later): 114s cron: stopping...done. 114s 114s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Setting up libc6:s390x (2.41-1ubuntu1) ... 114s Checking for services that may need to be restarted... 114s Checking init scripts... 114s Restarting services possibly affected by the upgrade: 114s cron: restarting...done. 114s 114s Services restarted successfully. 114s (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 ... 55868 files and directories currently installed.) 114s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 114s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Setting up libc-bin (2.41-1ubuntu1) ... 115s (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 ... 55868 files and directories currently installed.) 115s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 115s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 115s Setting up iproute2 (6.13.0-1ubuntu1) ... 115s Setting up locales (2.41-1ubuntu1) ... 115s Installing new version of config file /etc/locale.alias ... 115s Generating locales (this might take a while)... 116s en_US.UTF-8... done 116s Generation complete. 116s Setting up libc-dev-bin (2.41-1ubuntu1) ... 116s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 116s Processing triggers for man-db (2.13.0-1) ... 117s Processing triggers for systemd (257.2-3ubuntu1) ... 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 118s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.92igW4/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 1 118s autopkgtest [23:49:10]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [23:49:29]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 137s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.92igW4/testbed-packages"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/testbed-packages /tmp/autopkgtest-work.y1s5dmlm/out/testbed-packages 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: Binaries: initialising 139s autopkgtest [23:49:31]: @@@@@@@@@@@@@@@@@@@@ apt-source libdevel-mat-dumper-perl 139s autopkgtest: DBG: blame += libdevel-mat-dumper-perl 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 139s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'libdevel-mat-dumper-perl'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libdevel-mat-dumper-perl$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libdevel-mat-dumper-perl=0.50-1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: install_deps: deps_new=[] 140s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s 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.92igW4/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source libdevel-mat-dumper-perl=0.50-1 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 libdevel-mat-dumper-perl_*.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=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 140s + cd / 140s + mktemp -d /tmp/autopkgtest.92igW4/build.XXX 140s + builddir=/tmp/autopkgtest.92igW4/build.0cr 140s + cd /tmp/autopkgtest.92igW4/build.0cr 140s + apt-get source -d -q --only-source libdevel-mat-dumper-perl=0.50-1 140s + OUT=Reading package lists... 140s NOTICE: 'libdevel-mat-dumper-perl' packaging is maintained in the 'Git' version control system at: 140s https://salsa.debian.org/perl-team/modules/packages/libdevel-mat-dumper-perl.git 140s Please use: 140s git clone https://salsa.debian.org/perl-team/modules/packages/libdevel-mat-dumper-perl.git 140s to retrieve the latest (possibly unreleased) updates to the package. 140s Need to get 44.3 kB of source archives. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (dsc) [2514 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (tar) [39.4 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (diff) [2416 B] 140s Fetched 44.3 kB in 0s (124 kB/s) 140s Download complete and in download only mode 140s + [ -n ] 140s + grep ^Get: 140s + echo Reading package lists... 140s NOTICE: 'libdevel-mat-dumper-perl' packaging is maintained in the 'Git' version control system at: 140s https://salsa.debian.org/perl-team/modules/packages/libdevel-mat-dumper-perl.git 140s Please use: 140s git clone https://salsa.debian.org/perl-team/modules/packages/libdevel-mat-dumper-perl.git 140s to retrieve the latest (possibly unreleased) updates to the package. 140s Need to get 44.3 kB of source archives. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (dsc) [2514 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (tar) [39.4 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (diff) [2416 B] 140s Fetched 44.3 kB in 0s (124 kB/s) 140s Download complete and in download only mode 140s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (dsc) [2514 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (tar) [39.4 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libdevel-mat-dumper-perl 0.50-1 (diff) [2416 B] 140s + dpkg-source -x libdevel-mat-dumper-perl_0.50-1.dsc src 141s gpgv: Signature made Sun Oct 27 20:15:53 2024 UTC 141s gpgv: using RSA key D1E1316E93A760A8104D85FABB3A68018649AA06 141s gpgv: Can't check signature: No public key 141s dpkg-source: warning: cannot verify inline signature for ./libdevel-mat-dumper-perl_0.50-1.dsc: no acceptable signature found 141s + chmod -R a+rX . 141s + cd src/. 141s + pwd 141s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [23:49:33]: testing package libdevel-mat-dumper-perl version 0.50-1 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/build.0cr/src/debian/ /tmp/autopkgtest-work.y1s5dmlm/out/pkg/debian/ 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: autodep8 generated control: ----- 141s Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps 141s Depends: @, @builddeps@, pkg-perl-autopkgtest, 141s Restrictions: skippable, 141s Features: test-name=autodep8-perl-build-deps 141s 141s 141s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 141s Depends: @, pkg-perl-autopkgtest, 141s Restrictions: skippable, superficial, 141s Features: test-name=autodep8-perl 141s 141s 141s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 141s Depends: @, pkg-perl-autopkgtest, 141s Restrictions: needs-recommends, skippable, superficial, 141s Features: test-name=autodep8-perl-recommends 141s 141s 141s ------- 141s autopkgtest: DBG: processing dependency @ 141s autopkgtest: DBG: synthesised dependency libdevel-mat-dumper-perl 141s autopkgtest: DBG: processing dependency @builddeps@ 141s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 141s autopkgtest: DBG: synthesised dependency libextutils-cbuilder-perl 141s autopkgtest: DBG: synthesised dependency libmodule-build-perl 141s autopkgtest: DBG: synthesised dependency libtest-simple-perl 141s autopkgtest: DBG: synthesised dependency perl-xs-dev 141s autopkgtest: DBG: synthesised dependency perl:native 141s autopkgtest: DBG: synthesised dependency build-essential 141s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 141s autopkgtest: DBG: Test defined: name autodep8-perl-build-deps path None command "/usr/share/pkg-perl-autopkgtest/runner build-deps" restrictions ['skippable'] features ['test-name=autodep8-perl-build-deps'] depends ['libdevel-mat-dumper-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libmodule-build-perl', 'libtest-simple-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 141s autopkgtest: DBG: processing dependency @ 141s autopkgtest: DBG: synthesised dependency libdevel-mat-dumper-perl 141s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 141s autopkgtest: DBG: Test defined: name autodep8-perl path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps" restrictions ['skippable', 'superficial'] features ['test-name=autodep8-perl'] depends ['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 141s autopkgtest: DBG: processing dependency @ 141s autopkgtest: DBG: synthesised dependency libdevel-mat-dumper-perl 141s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 141s autopkgtest: DBG: processing dependency @recommends@ 141s autopkgtest: DBG: Test defined: name autodep8-perl-recommends path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends" restrictions ['needs-recommends', 'skippable', 'superficial'] features ['test-name=autodep8-perl-recommends'] depends ['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 141s autopkgtest [23:49:33]: build not needed 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/build.0cr/src/ /tmp/autopkgtest-work.y1s5dmlm/out/tests-tree/ 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: autodep8 generated control: ----- 141s Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps 141s Depends: @, @builddeps@, pkg-perl-autopkgtest, 141s Restrictions: skippable, 141s Features: test-name=autodep8-perl-build-deps 141s 141s 141s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 141s Depends: @, pkg-perl-autopkgtest, 141s Restrictions: skippable, superficial, 141s Features: test-name=autodep8-perl 141s 141s 141s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 141s Depends: @, pkg-perl-autopkgtest, 141s Restrictions: needs-recommends, skippable, superficial, 141s Features: test-name=autodep8-perl-recommends 141s 141s 141s ------- 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency libdevel-mat-dumper-perl 142s autopkgtest: DBG: processing dependency @builddeps@ 142s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 142s autopkgtest: DBG: synthesised dependency libextutils-cbuilder-perl 142s autopkgtest: DBG: synthesised dependency libmodule-build-perl 142s autopkgtest: DBG: synthesised dependency libtest-simple-perl 142s autopkgtest: DBG: synthesised dependency perl-xs-dev 142s autopkgtest: DBG: synthesised dependency perl:native 142s autopkgtest: DBG: synthesised dependency build-essential 142s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 142s autopkgtest: DBG: Test defined: name autodep8-perl-build-deps path None command "/usr/share/pkg-perl-autopkgtest/runner build-deps" restrictions ['skippable'] features ['test-name=autodep8-perl-build-deps'] depends ['libdevel-mat-dumper-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libmodule-build-perl', 'libtest-simple-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency libdevel-mat-dumper-perl 142s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 142s autopkgtest: DBG: Test defined: name autodep8-perl path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps" restrictions ['skippable', 'superficial'] features ['test-name=autodep8-perl'] depends ['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency libdevel-mat-dumper-perl 142s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 142s autopkgtest: DBG: processing dependency @recommends@ 142s autopkgtest: DBG: Test defined: name autodep8-perl-recommends path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends" restrictions ['needs-recommends', 'skippable', 'superficial'] features ['test-name=autodep8-perl-recommends'] depends ['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 142s autopkgtest [23:49:34]: test autodep8-perl-build-deps: preparing testbed 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libdevel-mat-dumper-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libmodule-build-perl', 'libtest-simple-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 142s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 142s autopkgtest: DBG: install_deps: deps_new=['libdevel-mat-dumper-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libmodule-build-perl', 'libtest-simple-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 142s autopkgtest: DBG: install-deps: satisfying libdevel-mat-dumper-perl, debhelper-compat (= 13), libextutils-cbuilder-perl, libmodule-build-perl, libtest-simple-perl , perl-xs-dev, perl:native, build-essential, pkg-perl-autopkgtest 142s autopkgtest: DBG: can use apt-get on testbed: True 142s 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', 'libdevel-mat-dumper-perl, debhelper-compat (= 13), libextutils-cbuilder-perl, libmodule-build-perl, libtest-simple-perl , perl-xs-dev, perl:native, build-essential, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 142s Reading package lists... 142s Building dependency tree... 142s Reading state information... 142s Starting pkgProblemResolver with broken count: 0 142s Starting 2 pkgProblemResolver with broken count: 0 142s Done 142s The following NEW packages will be installed: 142s autoconf autodep8 automake autopoint autotools-dev build-essential cpp 142s cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dctrl-tools debhelper 142s debugedit dh-autoreconf dh-strip-nondeterminism dwz g++ g++-14 142s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 142s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 142s libcc1-0 libdebhelper-perl libdevel-mat-dumper-perl 142s libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 libisl23 libitm1 142s libmodule-build-perl libmpc3 libperl-dev libstdc++-14-dev libtool libubsan1 142s m4 pkg-perl-autopkgtest po-debconf 142s 0 upgraded, 45 newly installed, 0 to remove and 0 not upgraded. 142s Need to get 55.0 MB of archives. 142s After this operation, 175 MB of additional disk space will be used. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 143s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x autodep8 all 0.28+nmu1ubuntu1 [13.7 kB] 143s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 143s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 143s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 143s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 143s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 143s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 143s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 143s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 143s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 143s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 143s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 143s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 143s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 143s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 143s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 143s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 144s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 144s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 144s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 144s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 144s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 144s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 144s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 144s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 144s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 144s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 144s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 144s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 144s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 144s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 144s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 144s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 144s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 144s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 144s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 144s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 144s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 144s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libdevel-mat-dumper-perl s390x 0.50-1 [33.9 kB] 144s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libmodule-build-perl all 0.423400-2 [200 kB] 144s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libperl-dev s390x 5.40.0-8 [1310 kB] 144s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-perl-autopkgtest all 0.80 [18.7 kB] 145s Fetched 55.0 MB in 2s (26.0 MB/s) 145s Selecting previously unselected package m4. 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 ... 55869 files and directories currently installed.) 145s Preparing to unpack .../00-m4_1.4.19-5_s390x.deb ... 145s Unpacking m4 (1.4.19-5) ... 145s Selecting previously unselected package autoconf. 145s Preparing to unpack .../01-autoconf_2.72-3_all.deb ... 145s Unpacking autoconf (2.72-3) ... 145s Selecting previously unselected package dctrl-tools. 145s Preparing to unpack .../02-dctrl-tools_2.24-3build3_s390x.deb ... 145s Unpacking dctrl-tools (2.24-3build3) ... 145s Selecting previously unselected package autodep8. 145s Preparing to unpack .../03-autodep8_0.28+nmu1ubuntu1_all.deb ... 145s Unpacking autodep8 (0.28+nmu1ubuntu1) ... 145s Selecting previously unselected package autotools-dev. 145s Preparing to unpack .../04-autotools-dev_20220109.1_all.deb ... 145s Unpacking autotools-dev (20220109.1) ... 145s Selecting previously unselected package automake. 145s Preparing to unpack .../05-automake_1%3a1.17-3_all.deb ... 145s Unpacking automake (1:1.17-3) ... 145s Selecting previously unselected package autopoint. 145s Preparing to unpack .../06-autopoint_0.23.1-1_all.deb ... 145s Unpacking autopoint (0.23.1-1) ... 145s Selecting previously unselected package libisl23:s390x. 145s Preparing to unpack .../07-libisl23_0.27-1_s390x.deb ... 145s Unpacking libisl23:s390x (0.27-1) ... 145s Selecting previously unselected package libmpc3:s390x. 145s Preparing to unpack .../08-libmpc3_1.3.1-1build2_s390x.deb ... 145s Unpacking libmpc3:s390x (1.3.1-1build2) ... 145s Selecting previously unselected package cpp-14-s390x-linux-gnu. 145s Preparing to unpack .../09-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package cpp-14. 145s Preparing to unpack .../10-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package cpp-s390x-linux-gnu. 145s Preparing to unpack .../11-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package cpp. 145s Preparing to unpack .../12-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking cpp (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package libcc1-0:s390x. 145s Preparing to unpack .../13-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package libgomp1:s390x. 145s Preparing to unpack .../14-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package libitm1:s390x. 145s Preparing to unpack .../15-libitm1_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package libasan8:s390x. 145s Preparing to unpack .../16-libasan8_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package libubsan1:s390x. 145s Preparing to unpack .../17-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package libgcc-14-dev:s390x. 145s Preparing to unpack .../18-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-14-s390x-linux-gnu. 145s Preparing to unpack .../19-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-14. 145s Preparing to unpack .../20-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-s390x-linux-gnu. 145s Preparing to unpack .../21-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package gcc. 145s Preparing to unpack .../22-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking gcc (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package libstdc++-14-dev:s390x. 145s Preparing to unpack .../23-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 146s Selecting previously unselected package g++-14-s390x-linux-gnu. 146s Preparing to unpack .../24-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 146s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 146s Selecting previously unselected package g++-14. 146s Preparing to unpack .../25-g++-14_14.2.0-17ubuntu1_s390x.deb ... 146s Unpacking g++-14 (14.2.0-17ubuntu1) ... 146s Selecting previously unselected package g++-s390x-linux-gnu. 146s Preparing to unpack .../26-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 146s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 146s Selecting previously unselected package g++. 146s Preparing to unpack .../27-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 146s Unpacking g++ (4:14.2.0-1ubuntu1) ... 146s Selecting previously unselected package build-essential. 146s Preparing to unpack .../28-build-essential_12.10ubuntu1_s390x.deb ... 146s Unpacking build-essential (12.10ubuntu1) ... 146s Selecting previously unselected package libdebhelper-perl. 146s Preparing to unpack .../29-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 146s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 146s Selecting previously unselected package libtool. 146s Preparing to unpack .../30-libtool_2.5.4-3build1_all.deb ... 146s Unpacking libtool (2.5.4-3build1) ... 146s Selecting previously unselected package dh-autoreconf. 146s Preparing to unpack .../31-dh-autoreconf_20_all.deb ... 146s Unpacking dh-autoreconf (20) ... 146s Selecting previously unselected package libarchive-zip-perl. 146s Preparing to unpack .../32-libarchive-zip-perl_1.68-1_all.deb ... 146s Unpacking libarchive-zip-perl (1.68-1) ... 146s Selecting previously unselected package libfile-stripnondeterminism-perl. 146s Preparing to unpack .../33-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 146s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 146s Selecting previously unselected package dh-strip-nondeterminism. 146s Preparing to unpack .../34-dh-strip-nondeterminism_1.14.1-2_all.deb ... 146s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 146s Selecting previously unselected package debugedit. 146s Preparing to unpack .../35-debugedit_1%3a5.1-2_s390x.deb ... 146s Unpacking debugedit (1:5.1-2) ... 146s Selecting previously unselected package dwz. 146s Preparing to unpack .../36-dwz_0.15-1build6_s390x.deb ... 146s Unpacking dwz (0.15-1build6) ... 146s Selecting previously unselected package gettext. 146s Preparing to unpack .../37-gettext_0.23.1-1_s390x.deb ... 146s Unpacking gettext (0.23.1-1) ... 146s Selecting previously unselected package intltool-debian. 146s Preparing to unpack .../38-intltool-debian_0.35.0+20060710.6_all.deb ... 146s Unpacking intltool-debian (0.35.0+20060710.6) ... 146s Selecting previously unselected package po-debconf. 146s Preparing to unpack .../39-po-debconf_1.0.21+nmu1_all.deb ... 146s Unpacking po-debconf (1.0.21+nmu1) ... 146s Selecting previously unselected package debhelper. 146s Preparing to unpack .../40-debhelper_13.24.1ubuntu2_all.deb ... 146s Unpacking debhelper (13.24.1ubuntu2) ... 146s Selecting previously unselected package libdevel-mat-dumper-perl. 146s Preparing to unpack .../41-libdevel-mat-dumper-perl_0.50-1_s390x.deb ... 146s Unpacking libdevel-mat-dumper-perl (0.50-1) ... 146s Selecting previously unselected package libmodule-build-perl. 146s Preparing to unpack .../42-libmodule-build-perl_0.423400-2_all.deb ... 146s Adding 'diversion of /usr/bin/config_data to /usr/bin/config_data.diverted by libmodule-build-perl' 146s Adding 'diversion of /usr/share/man/man1/config_data.1.gz to /usr/share/man/man1/config_data.diverted.1.gz by libmodule-build-perl' 146s Unpacking libmodule-build-perl (0.423400-2) ... 146s Selecting previously unselected package libperl-dev:s390x. 146s Preparing to unpack .../43-libperl-dev_5.40.0-8_s390x.deb ... 146s Unpacking libperl-dev:s390x (5.40.0-8) ... 146s Selecting previously unselected package pkg-perl-autopkgtest. 146s Preparing to unpack .../44-pkg-perl-autopkgtest_0.80_all.deb ... 146s Unpacking pkg-perl-autopkgtest (0.80) ... 146s Setting up libarchive-zip-perl (1.68-1) ... 146s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 146s Setting up m4 (1.4.19-5) ... 146s Setting up libperl-dev:s390x (5.40.0-8) ... 146s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 146s Setting up libdevel-mat-dumper-perl (0.50-1) ... 146s Setting up libmodule-build-perl (0.423400-2) ... 146s Setting up autotools-dev (20220109.1) ... 146s Setting up libmpc3:s390x (1.3.1-1build2) ... 146s Setting up autopoint (0.23.1-1) ... 146s Setting up autoconf (2.72-3) ... 146s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 146s Setting up dwz (0.15-1build6) ... 146s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 146s Setting up debugedit (1:5.1-2) ... 146s Setting up libisl23:s390x (0.27-1) ... 146s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 146s Setting up dctrl-tools (2.24-3build3) ... 146s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 146s Setting up autodep8 (0.28+nmu1ubuntu1) ... 146s Setting up automake (1:1.17-3) ... 146s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 146s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 146s Setting up gettext (0.23.1-1) ... 146s Setting up intltool-debian (0.35.0+20060710.6) ... 146s Setting up pkg-perl-autopkgtest (0.80) ... 146s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 146s Setting up cpp-14 (14.2.0-17ubuntu1) ... 146s Setting up dh-strip-nondeterminism (1.14.1-2) ... 146s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 146s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 146s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 146s Setting up po-debconf (1.0.21+nmu1) ... 146s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 146s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 146s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 146s Setting up cpp (4:14.2.0-1ubuntu1) ... 146s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 146s Setting up gcc-14 (14.2.0-17ubuntu1) ... 146s Setting up g++-14 (14.2.0-17ubuntu1) ... 146s Setting up libtool (2.5.4-3build1) ... 146s Setting up gcc (4:14.2.0-1ubuntu1) ... 146s Setting up dh-autoreconf (20) ... 146s Setting up g++ (4:14.2.0-1ubuntu1) ... 146s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 146s Setting up build-essential (12.10ubuntu1) ... 146s Setting up debhelper (13.24.1ubuntu2) ... 146s Processing triggers for install-info (7.1.1-1) ... 146s Processing triggers for libc-bin (2.41-1ubuntu1) ... 146s Processing triggers for man-db (2.13.0-1) ... 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libdevel-mat-dumper-perl'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-packages.all"], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-packages.all /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-build-deps-packages.all 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.92igW4/build.0cr/src'], kind short, sout raw, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.92igW4/build.0cr/src already exists 147s autopkgtest [23:49:39]: test autodep8-perl-build-deps: /usr/share/pkg-perl-autopkgtest/runner build-deps 147s autopkgtest [23:49:39]: test autodep8-perl-build-deps: [----------------------- 147s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.92igW4/wrapper.sh --debug --artifacts=/tmp/autopkgtest.92igW4/autodep8-perl-build-deps-artifacts --chdir=/tmp/autopkgtest.92igW4/build.0cr/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.92igW4/autodep8-perl-build-deps-stderr --stdout=/tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stdout --tmp=/tmp/autopkgtest.92igW4/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/pkg-perl-autopkgtest/runner build-deps'"], kind test, sout raw, serr raw, env [] 147s /tmp/autopkgtest.92igW4/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-artifacts 147s /tmp/autopkgtest.92igW4/wrapper.sh: changing to directory: /tmp/autopkgtest.92igW4/build.0cr/src 147s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 147s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 147s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 147s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 147s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: LANG=C.UTF-8 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LANGUAGE 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_ADDRESS 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_ALL 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_COLLATE 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_CTYPE 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_IDENTIFICATION 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MEASUREMENT 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MESSAGES 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MONETARY 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_NAME 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_NUMERIC 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_PAPER 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_TELEPHONE 147s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_TIME 147s /tmp/autopkgtest.92igW4/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 147s /tmp/autopkgtest.92igW4/wrapper.sh: pretending to be a login shell 147s /tmp/autopkgtest.92igW4/wrapper.sh: will write standard error to /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stderr 147s /tmp/autopkgtest.92igW4/wrapper.sh: will write stdout to /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stdout 147s /tmp/autopkgtest.92igW4/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.92igW4/autopkgtest_tmp 147s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 147s /tmp/autopkgtest.92igW4/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner build-deps 147s /tmp/autopkgtest.92igW4/wrapper.sh: copying /tmp/tmp.OQGhQEFreW/out to stdout and file: /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stdout 147s /tmp/autopkgtest.92igW4/wrapper.sh: copying /tmp/tmp.OQGhQEFreW/err to standard error and file: /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stdout 147s /tmp/autopkgtest.92igW4/wrapper.sh: writing script pid 1824 to /tmp/autopkgtest_script_pid 147s t/00use.t ..... 147s ok 1 - use Devel::MAT::Dumper; 147s ok 2 - use Devel::MAT::Dumper::Helper; 147s 1..2 147s ok 147s t/01header.t .. 147s ok 1 - Write dumpfile 147s ok 2 - File magic signature 147s ok 3 - Flags 147s ok 4 - Zero 147s ok 5 - Major 147s ok 6 - Minor 147s ok 7 - Perlver 147s 1..7 147s ok 147s All tests successful. 147s Files=2, Tests=9, 0 wallclock secs ( 0.01 usr 0.00 sys + 0.07 cusr 0.00 csys = 0.08 CPU) 147s Result: PASS 147s /tmp/autopkgtest.92igW4/wrapper.sh: checking for leaked background processes... 147s /tmp/autopkgtest.92igW4/wrapper.sh: waiting for tee/cat subprocesses... 147s /tmp/autopkgtest.92igW4/wrapper.sh: cleaning up... 147s /tmp/autopkgtest.92igW4/wrapper.sh: Exit status: 0 147s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [23:49:40]: test autodep8-perl-build-deps: -----------------------] 148s autopkgtest: DBG: testbed executing test finished with exit status 0 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stdout /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-build-deps-stdout 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-stderr /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-build-deps-stderr 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest [23:49:40]: test autodep8-perl-build-deps: - - - - - - - - - - results - - - - - - - - - - 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-build-deps-artifacts/ /tmp/autopkgtest-work.y1s5dmlm/out/artifacts/ 148s autodep8-perl-build-deps PASS 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.92igW4/autodep8-perl-build-deps-artifacts', '/tmp/autopkgtest.92igW4/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [23:49:40]: test autodep8-perl: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libdevel-mat-dumper-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libmodule-build-perl', 'libtest-simple-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'], deps_new=['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: testbed reset 148s autopkgtest: DBG: sending command to testbed: revert 258s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.92igW4 258s autopkgtest: DBG: sending command to testbed: print-execute-command 258s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ldqtiem8/runcmd 258s autopkgtest: DBG: sending command to testbed: capabilities 258s autopkgtest: DBG: got reply from testbed: ok revert root-on-testbed reboot isolation-machine ok suggested-normal-user=ubuntu revert-full-system 258s autopkgtest: DBG: testbed capabilities: ['revert', 'root-on-testbed', 'reboot', 'isolation-machine', 'ok', 'suggested-normal-user=ubuntu', 'revert-full-system', 'has_internet'] 258s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 258s autopkgtest: DBG: testbed command exited with code 0 258s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.92igW4/wrapper.sh 258s autopkgtest: DBG: got reply from testbed: ok 258s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/wrapper.sh'], kind short, sout raw, serr pipe, env [] 258s autopkgtest: DBG: testbed command exited with code 0 258s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest [23:51:31]: testbed dpkg architecture: s390x 259s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest [23:51:31]: testbed apt version: 2.9.28 259s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest: DBG: testbed has eatmydata 259s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest [23:51:31]: @@@@@@@@@@@@@@@@@@@@ test bed setup 259s 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 [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest [23:51:31]: testbed release detected to be: plucky 259s 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 [] 260s autopkgtest: DBG: testbed command exited with code 0 260s 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 [] 260s autopkgtest: DBG: testbed command exited with code 0 260s autopkgtest: DBG: adding APT source: Types: deb deb-src 260s URIs: http://ftpmaster.internal/ubuntu/ 260s Suites: plucky-proposed 260s Components: main restricted universe multiverse 260s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 260s 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 [] 260s autopkgtest: DBG: testbed command exited with code 0 260s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 260s Package: * 260s Pin: release plucky-proposed 260s Pin-Priority: 500 260s 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 [] 260s autopkgtest: DBG: testbed command exited with code 0 260s autopkgtest [23:51:32]: updating testbed package index (apt update) 260s 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'] 260s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 261s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 261s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 261s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 261s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 261s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 261s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 261s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 261s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 261s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 261s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 261s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 261s Fetched 2073 kB in 1s (2121 kB/s) 262s Reading package lists... 262s autopkgtest: DBG: testbed command exited with code 0 262s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 262s Package: * 262s Pin: release plucky-proposed 262s Pin-Priority: 100 262s 262s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 262s Pin: release plucky-proposed 262s Pin-Priority: 995 262s 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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 262s autopkgtest: DBG: testbed command exited with code 0 262s 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.92igW4/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 262s autopkgtest: DBG: testbed command exited with code 0 262s 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'] 263s + lsb_release --codename --short 263s + RELEASE=plucky 263s + cat 263s + [ plucky != trusty ] 263s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 263s Reading package lists... 263s Building dependency tree... 263s Reading state information... 263s Calculating upgrade... 263s The following packages were automatically installed and are no longer required: 263s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 263s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 263s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 263s linux-tools-6.11.0-8-generic 263s Use 'sudo apt autoremove' to remove them. 263s The following packages will be upgraded: 263s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 263s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 263s Need to get 1155 kB of archives. 263s After this operation, 16.4 kB of additional disk space will be used. 263s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 263s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 263s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 263s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 264s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 264s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 264s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 264s Preconfiguring packages ... 264s Fetched 1155 kB in 1s (1599 kB/s) 264s (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 ... 80969 files and directories currently installed.) 264s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 264s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 264s Setting up dash (0.5.12-12ubuntu1) ... 264s (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 ... 80969 files and directories currently installed.) 264s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 264s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 264s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 264s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 264s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 264s (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 ... 80969 files and directories currently installed.) 264s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 264s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 264s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 264s (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 ... 80969 files and directories currently installed.) 264s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 264s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 264s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 264s (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 ... 80969 files and directories currently installed.) 264s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 264s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 264s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 264s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 264s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 264s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 264s Setting up libtasn1-6:s390x (4.20.0-2) ... 264s Processing triggers for libc-bin (2.40-4ubuntu1) ... 264s Processing triggers for man-db (2.13.0-1) ... 265s Processing triggers for debianutils (5.21) ... 265s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 265s + /usr/lib/apt/apt-helper analyze-pattern ?true 265s + uname -r 265s + sed s/\./\\./g 265s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 265s + apt list ?obsolete 265s + tail -n+2 265s + + grep -v ^linux-.*6\.12\.0-15-generic.* 265s cut -d/ -f1 265s + true 265s + obsolete_pkgs= 265s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 265s Reading package lists... 266s Building dependency tree... 266s Reading state information... 266s The following packages will be REMOVED: 266s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 266s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 266s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 266s linux-tools-6.11.0-8-generic* 266s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 266s After this operation, 167 MB disk space will be freed. 266s (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 ... 80969 files and directories currently installed.) 266s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 266s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 266s Removing libpython3.12t64:s390x (3.12.9-1) ... 266s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 266s Removing libnsl2:s390x (1.3.0-3build3) ... 266s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 266s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 266s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 267s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 267s Processing triggers for libc-bin (2.40-4ubuntu1) ... 267s (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 ... 55869 files and directories currently installed.) 267s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 267s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 267s + grep -q trusty /etc/lsb-release 267s + [ ! -d /usr/share/doc/unattended-upgrades ] 267s + [ ! -d /usr/share/doc/lxd ] 267s + [ ! -d /usr/share/doc/lxd-client ] 267s + [ ! -d /usr/share/doc/snapd ] 267s + type iptables 267s + cat 267s + chmod 755 /etc/rc.local 267s + . /etc/rc.local 267s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 267s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 267s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 267s + uname -m 267s + [ s390x = ppc64le ] 267s + [ -d /run/systemd/system ] 267s + systemd-detect-virt --quiet --vm 267s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 267s + cat 267s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 267s + echo COMPRESS=lz4 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest [23:51:39]: upgrading testbed (apt dist-upgrade and autopurge) 267s 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'] 268s Reading package lists... 268s Building dependency tree... 268s Reading state information... 268s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 268s Starting 2 pkgProblemResolver with broken count: 0 268s Done 268s Entering ResolveByKeep 268s 269s The following packages will be upgraded: 269s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 269s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 269s Need to get 10.7 MB of archives. 269s After this operation, 305 kB of additional disk space will be used. 269s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 269s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 269s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 269s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 269s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 269s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 270s Preconfiguring packages ... 270s Fetched 10.7 MB in 1s (10.9 MB/s) 270s (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 ... 55867 files and directories currently installed.) 270s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 270s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 270s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 270s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 270s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 270s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 270s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 270s Checking for services that may need to be restarted... 270s Checking init scripts... 270s Checking for services that may need to be restarted... 270s Checking init scripts... 270s Stopping some services possibly affected by the upgrade (will be restarted later): 270s cron: stopping...done. 270s 270s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 270s Setting up libc6:s390x (2.41-1ubuntu1) ... 270s Checking for services that may need to be restarted... 270s Checking init scripts... 270s Restarting services possibly affected by the upgrade: 270s cron: restarting...done. 270s 270s Services restarted successfully. 270s (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 ... 55868 files and directories currently installed.) 270s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 270s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 271s Setting up libc-bin (2.41-1ubuntu1) ... 271s (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 ... 55868 files and directories currently installed.) 271s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 271s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 271s Setting up iproute2 (6.13.0-1ubuntu1) ... 271s Setting up locales (2.41-1ubuntu1) ... 271s Installing new version of config file /etc/locale.alias ... 271s Generating locales (this might take a while)... 272s en_US.UTF-8... done 272s Generation complete. 272s Setting up libc-dev-bin (2.41-1ubuntu1) ... 272s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 272s Processing triggers for man-db (2.13.0-1) ... 273s Processing triggers for systemd (257.2-3ubuntu1) ... 274s autopkgtest: DBG: testbed command exited with code 0 274s 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'] 274s Reading package lists... 274s Building dependency tree... 274s Reading state information... 274s Starting pkgProblemResolver with broken count: 0 274s Starting 2 pkgProblemResolver with broken count: 0 274s Done 275s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 275s autopkgtest: DBG: testbed command exited with code 0 275s 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.92igW4/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 275s autopkgtest: DBG: testbed command exited with code 1 275s autopkgtest [23:51:47]: rebooting testbed after setup commands that affected boot 275s autopkgtest: DBG: sending command to testbed: reboot 292s autopkgtest: DBG: got reply from testbed: ok 292s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 292s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot 292s autopkgtest: DBG: got reply from testbed: ok 292s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare 293s autopkgtest: DBG: got reply from testbed: ok 293s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 294s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.92igW4/testbed-packages"], kind short, sout raw, serr pipe, env [] 294s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/testbed-packages /tmp/autopkgtest-work.y1s5dmlm/out/testbed-packages 294s autopkgtest: DBG: got reply from testbed: ok 294s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 294s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 295s autopkgtest: DBG: testbed command exited with code 0 295s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot 295s autopkgtest: DBG: got reply from testbed: ok 295s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 295s autopkgtest: DBG: testbed command exited with code 0 295s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 295s autopkgtest: DBG: testbed command exited with code 0 295s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 295s autopkgtest: DBG: testbed command exited with code 0 295s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4'], kind short, sout raw, serr pipe, env [] 295s autopkgtest: DBG: testbed command exited with code 0 295s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare 296s autopkgtest: DBG: got reply from testbed: ok 296s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 296s autopkgtest: DBG: testbed command exited with code 0 296s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.92igW4/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 296s autopkgtest: DBG: testbed command exited with code 0 296s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 296s autopkgtest: DBG: testbed command exited with code 0 296s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 296s autopkgtest: DBG: install_deps: deps_new=['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 296s autopkgtest: DBG: install-deps: satisfying libdevel-mat-dumper-perl, pkg-perl-autopkgtest 296s autopkgtest: DBG: can use apt-get on testbed: True 296s 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', 'libdevel-mat-dumper-perl, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 296s Reading package lists... 297s Building dependency tree... 297s Reading state information... 297s Starting pkgProblemResolver with broken count: 0 297s Starting 2 pkgProblemResolver with broken count: 0 297s Done 297s The following NEW packages will be installed: 297s autodep8 dctrl-tools libdevel-mat-dumper-perl pkg-perl-autopkgtest 297s 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. 297s Need to get 172 kB of archives. 297s After this operation, 548 kB of additional disk space will be used. 297s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 297s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autodep8 all 0.28+nmu1ubuntu1 [13.7 kB] 297s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libdevel-mat-dumper-perl s390x 0.50-1 [33.9 kB] 297s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-perl-autopkgtest all 0.80 [18.7 kB] 298s Fetched 172 kB in 0s (426 kB/s) 298s Selecting previously unselected package dctrl-tools. 298s (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 ... 55869 files and directories currently installed.) 298s Preparing to unpack .../dctrl-tools_2.24-3build3_s390x.deb ... 298s Unpacking dctrl-tools (2.24-3build3) ... 298s Selecting previously unselected package autodep8. 298s Preparing to unpack .../autodep8_0.28+nmu1ubuntu1_all.deb ... 298s Unpacking autodep8 (0.28+nmu1ubuntu1) ... 298s Selecting previously unselected package libdevel-mat-dumper-perl. 298s Preparing to unpack .../libdevel-mat-dumper-perl_0.50-1_s390x.deb ... 298s Unpacking libdevel-mat-dumper-perl (0.50-1) ... 298s Selecting previously unselected package pkg-perl-autopkgtest. 298s Preparing to unpack .../pkg-perl-autopkgtest_0.80_all.deb ... 298s Unpacking pkg-perl-autopkgtest (0.80) ... 298s Setting up libdevel-mat-dumper-perl (0.50-1) ... 298s Setting up dctrl-tools (2.24-3build3) ... 298s Setting up autodep8 (0.28+nmu1ubuntu1) ... 298s Setting up pkg-perl-autopkgtest (0.80) ... 298s Processing triggers for man-db (2.13.0-1) ... 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libdevel-mat-dumper-perl'], kind short, sout pipe, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.92igW4/autodep8-perl-packages.all"], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-packages.all /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-packages.all 299s autopkgtest: DBG: got reply from testbed: ok 300s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.92igW4/build.0cr/src'], kind short, sout raw, serr raw, env [] 300s autopkgtest: DBG: testbed command exited with code 1 300s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.92igW4/build.0cr'], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.y1s5dmlm/out/tests-tree/ /tmp/autopkgtest.92igW4/build.0cr/src/ 301s autopkgtest: DBG: got reply from testbed: ok 301s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.92igW4/build.0cr/src'], kind short, sout raw, serr pipe, env [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest [23:52:13]: test autodep8-perl: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 301s autopkgtest [23:52:13]: test autodep8-perl: [----------------------- 301s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.92igW4/wrapper.sh --debug --artifacts=/tmp/autopkgtest.92igW4/autodep8-perl-artifacts --chdir=/tmp/autopkgtest.92igW4/build.0cr/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.92igW4/autodep8-perl-stderr --stdout=/tmp/autopkgtest.92igW4/autodep8-perl-stdout --tmp=/tmp/autopkgtest.92igW4/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/pkg-perl-autopkgtest/runner runtime-deps'"], kind test, sout raw, serr raw, env [] 301s /tmp/autopkgtest.92igW4/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.92igW4/autodep8-perl-artifacts 301s /tmp/autopkgtest.92igW4/wrapper.sh: changing to directory: /tmp/autopkgtest.92igW4/build.0cr/src 301s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 301s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 301s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 301s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 301s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: LANG=C.UTF-8 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LANGUAGE 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_ADDRESS 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_ALL 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_COLLATE 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_CTYPE 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_IDENTIFICATION 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MEASUREMENT 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MESSAGES 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MONETARY 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_NAME 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_NUMERIC 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_PAPER 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_TELEPHONE 301s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_TIME 301s /tmp/autopkgtest.92igW4/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 301s /tmp/autopkgtest.92igW4/wrapper.sh: pretending to be a login shell 301s /tmp/autopkgtest.92igW4/wrapper.sh: will write standard error to /tmp/autopkgtest.92igW4/autodep8-perl-stderr 301s /tmp/autopkgtest.92igW4/wrapper.sh: will write stdout to /tmp/autopkgtest.92igW4/autodep8-perl-stdout 301s /tmp/autopkgtest.92igW4/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.92igW4/autopkgtest_tmp 301s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 301s /tmp/autopkgtest.92igW4/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner runtime-deps 301s /tmp/autopkgtest.92igW4/wrapper.sh: copying /tmp/tmp.PMMlaXJ1o9/out to stdout and file: /tmp/autopkgtest.92igW4/autodep8-perl-stdout 301s /tmp/autopkgtest.92igW4/wrapper.sh: copying /tmp/tmp.PMMlaXJ1o9/err to standard error and file: /tmp/autopkgtest.92igW4/autodep8-perl-stdout 301s /tmp/autopkgtest.92igW4/wrapper.sh: writing script pid 1281 to /tmp/autopkgtest_script_pid 301s /usr/share/pkg-perl-autopkgtest/runtime-deps.d/use.t .. 301s 1..4 301s ok 1 - /usr/bin/perl -w -M"Devel::MAT::Dumper" -e 1 2>&1 exited successfully 301s ok 2 - /usr/bin/perl -w -M"Devel::MAT::Dumper" -e 1 2>&1 produced no (non-whitelisted) output 301s ok 3 - env PERL_DL_NONLAZY=1 /usr/bin/perl -w -M"Devel::MAT::Dumper" -e 1 2>&1 exited successfully 301s ok 4 - env PERL_DL_NONLAZY=1 /usr/bin/perl -w -M"Devel::MAT::Dumper" -e 1 2>&1 produced no (non-whitelisted) output 301s ok 301s All tests successful. 301s Files=1, Tests=4, 0 wallclock secs ( 0.01 usr 0.00 sys + 0.09 cusr 0.01 csys = 0.11 CPU) 301s Result: PASS 301s /tmp/autopkgtest.92igW4/wrapper.sh: checking for leaked background processes... 301s /tmp/autopkgtest.92igW4/wrapper.sh: waiting for tee/cat subprocesses... 301s /tmp/autopkgtest.92igW4/wrapper.sh: cleaning up... 301s /tmp/autopkgtest.92igW4/wrapper.sh: Exit status: 0 301s autopkgtest: DBG: testbed command exited with code 0 302s autopkgtest [23:52:14]: test autodep8-perl: -----------------------] 302s autopkgtest: DBG: testbed executing test finished with exit status 0 302s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-stdout /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-stdout 302s autopkgtest: DBG: got reply from testbed: ok 302s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-stderr /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-stderr 302s autopkgtest: DBG: got reply from testbed: ok 302s autopkgtest [23:52:14]: test autodep8-perl: - - - - - - - - - - results - - - - - - - - - - 302s autodep8-perl PASS (superficial) 302s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-artifacts/ /tmp/autopkgtest-work.y1s5dmlm/out/artifacts/ 302s autopkgtest: DBG: got reply from testbed: ok 302s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.92igW4/autodep8-perl-artifacts', '/tmp/autopkgtest.92igW4/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 303s autopkgtest: DBG: testbed command exited with code 0 303s autopkgtest [23:52:15]: test autodep8-perl-recommends: preparing testbed 303s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'], deps_new=['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 303s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 303s autopkgtest: DBG: install_deps: deps_new=['libdevel-mat-dumper-perl', 'pkg-perl-autopkgtest'] 303s autopkgtest: DBG: install-deps: satisfying libdevel-mat-dumper-perl, pkg-perl-autopkgtest 303s autopkgtest: DBG: can use apt-get on testbed: True 303s 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', 'libdevel-mat-dumper-perl, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 303s Reading package lists... 303s Building dependency tree... 303s Reading state information... 303s Starting pkgProblemResolver with broken count: 0 303s Starting 2 pkgProblemResolver with broken count: 0 303s Done 303s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 303s autopkgtest: DBG: testbed command exited with code 0 303s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libdevel-mat-dumper-perl'], kind short, sout pipe, serr pipe, env [] 303s autopkgtest: DBG: testbed command exited with code 0 303s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.92igW4/autodep8-perl-recommends-packages.all"], kind short, sout raw, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-recommends-packages.all /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-recommends-packages.all 304s autopkgtest: DBG: got reply from testbed: ok 304s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.92igW4/build.0cr/src'], kind short, sout raw, serr raw, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.92igW4/build.0cr/src already exists 304s autopkgtest [23:52:16]: test autodep8-perl-recommends: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 304s autopkgtest [23:52:16]: test autodep8-perl-recommends: [----------------------- 304s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.92igW4/wrapper.sh --debug --artifacts=/tmp/autopkgtest.92igW4/autodep8-perl-recommends-artifacts --chdir=/tmp/autopkgtest.92igW4/build.0cr/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.92igW4/autodep8-perl-recommends-stderr --stdout=/tmp/autopkgtest.92igW4/autodep8-perl-recommends-stdout --tmp=/tmp/autopkgtest.92igW4/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec '/usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends'"], kind test, sout raw, serr raw, env [] 304s /tmp/autopkgtest.92igW4/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.92igW4/autodep8-perl-recommends-artifacts 304s /tmp/autopkgtest.92igW4/wrapper.sh: changing to directory: /tmp/autopkgtest.92igW4/build.0cr/src 304s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 304s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 304s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 304s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 304s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: LANG=C.UTF-8 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LANGUAGE 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_ADDRESS 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_ALL 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_COLLATE 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_CTYPE 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_IDENTIFICATION 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MEASUREMENT 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MESSAGES 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_MONETARY 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_NAME 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_NUMERIC 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_PAPER 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_TELEPHONE 304s /tmp/autopkgtest.92igW4/wrapper.sh: unsetting environment: LC_TIME 304s /tmp/autopkgtest.92igW4/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 304s /tmp/autopkgtest.92igW4/wrapper.sh: pretending to be a login shell 304s /tmp/autopkgtest.92igW4/wrapper.sh: will write standard error to /tmp/autopkgtest.92igW4/autodep8-perl-recommends-stderr 304s /tmp/autopkgtest.92igW4/wrapper.sh: will write stdout to /tmp/autopkgtest.92igW4/autodep8-perl-recommends-stdout 304s /tmp/autopkgtest.92igW4/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.92igW4/autopkgtest_tmp 304s /tmp/autopkgtest.92igW4/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 304s /tmp/autopkgtest.92igW4/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 304s /tmp/autopkgtest.92igW4/wrapper.sh: copying /tmp/tmp.N1FuhLbvE1/out to stdout and file: /tmp/autopkgtest.92igW4/autodep8-perl-recommends-stdout 304s /tmp/autopkgtest.92igW4/wrapper.sh: copying /tmp/tmp.N1FuhLbvE1/err to standard error and file: /tmp/autopkgtest.92igW4/autodep8-perl-recommends-stdout 304s /tmp/autopkgtest.92igW4/wrapper.sh: writing script pid 1437 to /tmp/autopkgtest_script_pid 304s /usr/share/pkg-perl-autopkgtest/runtime-deps-and-recommends.d/syntax.t .. 304s 1..4 304s ok 1 - Package libdevel-mat-dumper-perl is known to dpkg 304s ok 2 - Got status information for package libdevel-mat-dumper-perl 304s ok 3 - Got file list for package libdevel-mat-dumper-perl 304s # Subtest: all modules in libdevel-mat-dumper-perl pass the syntax check 304s 1..2 304s # Useless use of a constant (21930) in void context at /usr/lib/s390x-linux-gnu/perl5/5.40/Devel/MAT/Dumper/Helper.pm line 392. 304s ok 1 - /usr/bin/perl -wc /usr/lib/s390x-linux-gnu/perl5/5.40/Devel/MAT/Dumper/Helper.pm exited successfully 304s # Useless use of a constant (21930) in void context at /usr/lib/s390x-linux-gnu/perl5/5.40/Devel/MAT/Dumper.pm line 283. 304s ok 2 - /usr/bin/perl -wc /usr/lib/s390x-linux-gnu/perl5/5.40/Devel/MAT/Dumper.pm exited successfully 304s ok 4 - all modules in libdevel-mat-dumper-perl pass the syntax check 304s ok 304s All tests successful. 304s Files=1, Tests=4, 0 wallclock secs ( 0.02 usr 0.00 sys + 0.06 cusr 0.01 csys = 0.09 CPU) 304s Result: PASS 304s /tmp/autopkgtest.92igW4/wrapper.sh: checking for leaked background processes... 304s /tmp/autopkgtest.92igW4/wrapper.sh: waiting for tee/cat subprocesses... 304s /tmp/autopkgtest.92igW4/wrapper.sh: cleaning up... 304s /tmp/autopkgtest.92igW4/wrapper.sh: Exit status: 0 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest [23:52:16]: test autodep8-perl-recommends: -----------------------] 304s autopkgtest: DBG: testbed executing test finished with exit status 0 304s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-recommends-stdout /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-recommends-stdout 305s autopkgtest: DBG: got reply from testbed: ok 305s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-recommends-stderr /tmp/autopkgtest-work.y1s5dmlm/out/autodep8-perl-recommends-stderr 305s autopkgtest: DBG: got reply from testbed: ok 305s autopkgtest [23:52:17]: test autodep8-perl-recommends: - - - - - - - - - - results - - - - - - - - - - 305s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.92igW4/autodep8-perl-recommends-artifacts/ /tmp/autopkgtest-work.y1s5dmlm/out/artifacts/ 305s autodep8-perl-recommends PASS (superficial) 305s autopkgtest: DBG: got reply from testbed: ok 305s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.92igW4/autodep8-perl-recommends-artifacts', '/tmp/autopkgtest.92igW4/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 305s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 305s autopkgtest [23:52:17]: @@@@@@@@@@@@@@@@@@@@ summary 305s autodep8-perl-build-deps PASS 305s autodep8-perl PASS (superficial) 305s autodep8-perl-recommends PASS (superficial) 305s autopkgtest: DBG: testbed stop 305s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.92igW4 305s autopkgtest: DBG: sending command to testbed: close 323s autopkgtest: DBG: got reply from testbed: ok 323s autopkgtest: DBG: sending command to testbed: quit 323s nova [W] Using flock in prodstack6-s390x 323s Creating nova instance adt-plucky-s390x-libdevel-mat-dumper-perl-20250215-234712-juju-7f2275-prod-proposed-migration-environment-15-f7d79cca-82b0-4f9a-b87c-416dd6d98432 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 323s nova [W] Timed out waiting for 10702a43-9079-4f49-92e9-966b7e43efe9 to get deleted. 323s nova [W] Using flock in prodstack6-s390x 323s flock: timeout while waiting to get lock 323s Creating nova instance adt-plucky-s390x-libdevel-mat-dumper-perl-20250215-234712-juju-7f2275-prod-proposed-migration-environment-15-f7d79cca-82b0-4f9a-b87c-416dd6d98432 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 323s nova [W] Timed out waiting for 02ea5a01-0902-438a-8311-c5028f4e5737 to get deleted.