0s autopkgtest: DBG: testbed init 0s autopkgtest [23:46:50]: starting date and time: 2025-02-15 23:46:50+0000 0s autopkgtest [23:46:50]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [23:46:50]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.rqpjso17/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-cover-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-21.secgroup --name adt-plucky-s390x-libdevel-cover-perl-20250215-234650-juju-7f2275-prod-proposed-migration-environment-15-56bb4fc4-5592-4e0e-93bd-f3d0e052ed49 --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 101s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.5GjNo9 101s autopkgtest: DBG: sending command to testbed: print-execute-command 101s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.bnnpfcd5/runcmd 101s autopkgtest: DBG: sending command to testbed: capabilities 101s autopkgtest: DBG: got reply from testbed: ok isolation-machine suggested-normal-user=ubuntu reboot revert revert-full-system root-on-testbed 101s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'revert', 'revert-full-system', 'root-on-testbed', 'has_internet'] 101s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.5GjNo9/wrapper.sh 102s autopkgtest: DBG: got reply from testbed: ok 102s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/wrapper.sh'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [23:48:32]: testbed dpkg architecture: s390x 102s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [23:48:32]: testbed apt version: 2.9.28 102s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed has eatmydata 102s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [23:48:32]: @@@@@@@@@@@@@@@@@@@@ test bed setup 102s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [23:48:33]: testbed release detected to be: None 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: adding APT source: Types: deb deb-src 103s URIs: http://ftpmaster.internal/ubuntu/ 103s Suites: plucky-proposed 103s Components: main restricted universe multiverse 103s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 103s Package: * 103s Pin: release plucky-proposed 103s Pin-Priority: 500 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [23:48:33]: updating testbed package index (apt update) 103s 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'] 104s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 104s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 104s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 104s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 104s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 104s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 104s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 104s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 104s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 104s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 104s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 104s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 104s Fetched 2073 kB in 1s (2040 kB/s) 105s Reading package lists... 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 100 105s 105s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 105s Pin: release plucky-proposed 105s Pin-Priority: 995 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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.5GjNo9/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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'] 106s + lsb_release --codename --short 106s + RELEASE=plucky 106s + cat 106s + [ plucky != trusty ] 106s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 106s Reading package lists... 106s Building dependency tree... 106s Reading state information... 106s Calculating upgrade... 106s The following packages were automatically installed and are no longer required: 106s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 106s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 106s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 106s linux-tools-6.11.0-8-generic 106s Use 'sudo apt autoremove' to remove them. 106s The following packages will be upgraded: 106s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 106s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 106s Need to get 1155 kB of archives. 106s After this operation, 16.4 kB of additional disk space will be used. 106s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 106s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 106s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 106s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 107s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 107s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 107s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 107s Preconfiguring packages ... 107s Fetched 1155 kB in 1s (1872 kB/s) 107s (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.) 107s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 107s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 107s Setting up dash (0.5.12-12ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 107s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 107s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 107s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 107s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 107s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 107s Setting up libtasn1-6:s390x (4.20.0-2) ... 107s Processing triggers for libc-bin (2.40-4ubuntu1) ... 107s Processing triggers for man-db (2.13.0-1) ... 108s Processing triggers for debianutils (5.21) ... 108s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 108s + /usr/lib/apt/apt-helper analyze-pattern ?true 108s + uname -r 108s + sed s/\./\\./g 108s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 108s + + tail -n+2 108s apt list ?obsolete 108s + grep -v ^linux-.*6\.12\.0-15-generic.* 108s + cut -d/ -f1 108s + true 108s + obsolete_pkgs= 108s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 109s The following packages will be REMOVED: 109s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 109s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 109s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 109s linux-tools-6.11.0-8-generic* 109s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 109s After this operation, 167 MB disk space will be freed. 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 Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 109s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 109s Removing libpython3.12t64:s390x (3.12.9-1) ... 109s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 109s Removing libnsl2:s390x (1.3.0-3build3) ... 109s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 109s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 109s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 110s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 110s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55869 files and directories currently installed.) 110s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 110s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 110s + grep -q trusty /etc/lsb-release 110s + [ ! -d /usr/share/doc/unattended-upgrades ] 110s + [ ! -d /usr/share/doc/lxd ] 110s + [ ! -d /usr/share/doc/lxd-client ] 110s + [ ! -d /usr/share/doc/snapd ] 110s + type iptables 110s + cat 110s + chmod 755 /etc/rc.local 110s + . /etc/rc.local 110s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 110s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 110s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 110s + uname -m 110s + [ s390x = ppc64le ] 110s + [ -d /run/systemd/system ] 110s + systemd-detect-virt --quiet --vm 110s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 110s + cat 110s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 110s + echo COMPRESS=lz4 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [23:48:40]: upgrading testbed (apt dist-upgrade and autopurge) 110s 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'] 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 111s Starting 2 pkgProblemResolver with broken count: 0 111s Done 111s Entering ResolveByKeep 111s 111s The following packages will be upgraded: 111s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 112s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 10.7 MB of archives. 112s After this operation, 305 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 112s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 112s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 112s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 113s Preconfiguring packages ... 113s Fetched 10.7 MB in 1s (9022 kB/s) 113s (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.) 113s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 113s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 113s Checking for services that may need to be restarted... 113s Checking init scripts... 113s Checking for services that may need to be restarted... 113s Checking init scripts... 113s Stopping some services possibly affected by the upgrade (will be restarted later): 113s cron: stopping...done. 113s 113s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s 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) ... 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 .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 114s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 114s Setting up iproute2 (6.13.0-1ubuntu1) ... 114s Setting up locales (2.41-1ubuntu1) ... 114s Installing new version of config file /etc/locale.alias ... 114s Generating locales (this might take a while)... 115s en_US.UTF-8... done 115s Generation complete. 115s Setting up libc-dev-bin (2.41-1ubuntu1) ... 115s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 115s Processing triggers for man-db (2.13.0-1) ... 116s 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'] 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s 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.5GjNo9/${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:48:48]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 127s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [23:49:11]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 141s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5GjNo9/testbed-packages"], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/testbed-packages /tmp/autopkgtest-work.rqpjso17/out/testbed-packages 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: Binaries: initialising 143s autopkgtest [23:49:13]: @@@@@@@@@@@@@@@@@@@@ apt-source libdevel-cover-perl 143s autopkgtest: DBG: blame += libdevel-cover-perl 143s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 143s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'libdevel-cover-perl'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libdevel-cover-perl$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libdevel-cover-perl=1.44-1build1'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: install_deps: deps_new=[] 144s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s 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.5GjNo9/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source libdevel-cover-perl=1.44-1build1 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-cover-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'] 144s + cd / 144s + mktemp -d /tmp/autopkgtest.5GjNo9/build.XXX 144s + builddir=/tmp/autopkgtest.5GjNo9/build.slW 144s + cd /tmp/autopkgtest.5GjNo9/build.slW 144s + apt-get source -d -q --only-source libdevel-cover-perl=1.44-1build1 145s + OUT=Reading package lists... 145s NOTICE: 'libdevel-cover-perl' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/perl-team/modules/packages/libdevel-cover-perl.git 145s Please use: 145s git clone https://salsa.debian.org/perl-team/modules/packages/libdevel-cover-perl.git 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 232 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (dsc) [2557 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (tar) [222 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (diff) [8260 B] 145s Fetched 232 kB in 1s (459 kB/s) 145s Download complete and in download only mode 145s + [ -n ] 145s + echo Reading package lists... 145s NOTICE: 'libdevel-cover-perl' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/perl-team/modules/packages/libdevel-cover-perl.git 145s Please use: 145s git clone https://salsa.debian.org/perl-team/modules/packages/libdevel-cover-perl.git 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 232 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (dsc) [2557 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (tar) [222 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (diff) [8260 B] 145s Fetched 232 kB in 1s (459 kB/s) 145s Download complete and in download only mode+ 145s grep ^Get: 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (dsc) [2557 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (tar) [222 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libdevel-cover-perl 1.44-1build1 (diff) [8260 B] 145s + dpkg-source -x libdevel-cover-perl_1.44-1build1.dsc src 145s gpgv: Signature made Sun Oct 20 12:34:24 2024 UTC 145s gpgv: using RSA key 568BF22A66337CBFC9A6B9B72C83DBC8E9BD0E37 145s gpgv: Can't check signature: No public key 145s dpkg-source: warning: cannot verify inline signature for ./libdevel-cover-perl_1.44-1build1.dsc: no acceptable signature found 145s + chmod -R a+rX . 145s + cd src/. 145s + pwd 145s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [23:49:15]: testing package libdevel-cover-perl version 1.44-1build1 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/build.slW/src/debian/ /tmp/autopkgtest-work.rqpjso17/out/pkg/debian/ 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: autodep8 generated control: ----- 145s Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps 145s Depends: @, @builddeps@, pkg-perl-autopkgtest, 145s Restrictions: skippable, 145s Features: test-name=autodep8-perl-build-deps 145s 145s 145s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 145s Depends: @, pkg-perl-autopkgtest, 145s Restrictions: skippable, superficial, 145s Features: test-name=autodep8-perl 145s 145s 145s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 145s Depends: @, pkg-perl-autopkgtest, 145s Restrictions: needs-recommends, skippable, superficial, 145s Features: test-name=autodep8-perl-recommends 145s 145s 145s ------- 145s autopkgtest: DBG: processing dependency @ 145s autopkgtest: DBG: synthesised dependency libdevel-cover-perl 145s autopkgtest: DBG: processing dependency @builddeps@ 145s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 145s autopkgtest: DBG: synthesised dependency libdbm-deep-perl 145s autopkgtest: DBG: synthesised dependency libhtml-parser-perl 145s autopkgtest: DBG: synthesised dependency libmoo-perl 145s autopkgtest: DBG: synthesised dependency libmoose-perl 145s autopkgtest: DBG: synthesised dependency libpod-coverage-perl 145s autopkgtest: DBG: synthesised dependency libppi-html-perl | perltidy 145s autopkgtest: DBG: synthesised dependency libreadonly-perl 145s autopkgtest: DBG: synthesised dependency libtemplate-perl 145s autopkgtest: DBG: synthesised dependency libtest-differences-perl 145s autopkgtest: DBG: synthesised dependency perl-xs-dev 145s autopkgtest: DBG: synthesised dependency perl:native 145s autopkgtest: DBG: synthesised dependency build-essential 145s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 145s 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-cover-perl', 'debhelper-compat (= 13)', 'libdbm-deep-perl ', 'libhtml-parser-perl ', 'libmoo-perl ', 'libmoose-perl ', 'libpod-coverage-perl ', 'libppi-html-perl | perltidy ', 'libreadonly-perl ', 'libtemplate-perl', 'libtest-differences-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 145s autopkgtest: DBG: processing dependency @ 145s autopkgtest: DBG: synthesised dependency libdevel-cover-perl 145s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 145s 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-cover-perl', 'pkg-perl-autopkgtest'] 145s autopkgtest: DBG: processing dependency @ 145s autopkgtest: DBG: synthesised dependency libdevel-cover-perl 145s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 145s autopkgtest: DBG: processing dependency @recommends@ 145s autopkgtest: DBG: synthesised dependency gcc 145s autopkgtest: DBG: synthesised dependency libtemplate-perl 145s 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-cover-perl', 'pkg-perl-autopkgtest', 'gcc', 'libtemplate-perl'] 145s autopkgtest [23:49:15]: build not needed 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/build.slW/src/ /tmp/autopkgtest-work.rqpjso17/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: autodep8 generated control: ----- 146s Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps 146s Depends: @, @builddeps@, pkg-perl-autopkgtest, 146s Restrictions: skippable, 146s Features: test-name=autodep8-perl-build-deps 146s 146s 146s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 146s Depends: @, pkg-perl-autopkgtest, 146s Restrictions: skippable, superficial, 146s Features: test-name=autodep8-perl 146s 146s 146s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 146s Depends: @, pkg-perl-autopkgtest, 146s Restrictions: needs-recommends, skippable, superficial, 146s Features: test-name=autodep8-perl-recommends 146s 146s 146s ------- 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency libdevel-cover-perl 146s autopkgtest: DBG: processing dependency @builddeps@ 146s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 146s autopkgtest: DBG: synthesised dependency libdbm-deep-perl 146s autopkgtest: DBG: synthesised dependency libhtml-parser-perl 146s autopkgtest: DBG: synthesised dependency libmoo-perl 146s autopkgtest: DBG: synthesised dependency libmoose-perl 146s autopkgtest: DBG: synthesised dependency libpod-coverage-perl 146s autopkgtest: DBG: synthesised dependency libppi-html-perl | perltidy 146s autopkgtest: DBG: synthesised dependency libreadonly-perl 146s autopkgtest: DBG: synthesised dependency libtemplate-perl 146s autopkgtest: DBG: synthesised dependency libtest-differences-perl 146s autopkgtest: DBG: synthesised dependency perl-xs-dev 146s autopkgtest: DBG: synthesised dependency perl:native 146s autopkgtest: DBG: synthesised dependency build-essential 146s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 146s 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-cover-perl', 'debhelper-compat (= 13)', 'libdbm-deep-perl ', 'libhtml-parser-perl ', 'libmoo-perl ', 'libmoose-perl ', 'libpod-coverage-perl ', 'libppi-html-perl | perltidy ', 'libreadonly-perl ', 'libtemplate-perl', 'libtest-differences-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency libdevel-cover-perl 146s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 146s 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-cover-perl', 'pkg-perl-autopkgtest'] 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency libdevel-cover-perl 146s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 146s autopkgtest: DBG: processing dependency @recommends@ 146s autopkgtest: DBG: synthesised dependency gcc 146s autopkgtest: DBG: synthesised dependency libtemplate-perl 146s 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-cover-perl', 'pkg-perl-autopkgtest', 'gcc', 'libtemplate-perl'] 146s autopkgtest [23:49:16]: test autodep8-perl-build-deps: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libdevel-cover-perl', 'debhelper-compat (= 13)', 'libdbm-deep-perl ', 'libhtml-parser-perl ', 'libmoo-perl ', 'libmoose-perl ', 'libpod-coverage-perl ', 'libppi-html-perl | perltidy ', 'libreadonly-perl ', 'libtemplate-perl', 'libtest-differences-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['libdevel-cover-perl', 'debhelper-compat (= 13)', 'libdbm-deep-perl ', 'libhtml-parser-perl ', 'libmoo-perl ', 'libmoose-perl ', 'libpod-coverage-perl ', 'libppi-html-perl | perltidy ', 'libreadonly-perl ', 'libtemplate-perl', 'libtest-differences-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 146s autopkgtest: DBG: install-deps: satisfying libdevel-cover-perl, debhelper-compat (= 13), libdbm-deep-perl , libhtml-parser-perl , libmoo-perl , libmoose-perl , libpod-coverage-perl , libppi-html-perl | perltidy , libreadonly-perl , libtemplate-perl, libtest-differences-perl , perl-xs-dev, perl:native, build-essential, pkg-perl-autopkgtest 146s autopkgtest: DBG: can use apt-get on testbed: True 146s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'libdevel-cover-perl, debhelper-compat (= 13), libdbm-deep-perl , libhtml-parser-perl , libmoo-perl , libmoose-perl , libpod-coverage-perl , libppi-html-perl | perltidy , libreadonly-perl , libtemplate-perl, libtest-differences-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'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 147s Starting pkgProblemResolver with broken count: 0 147s Starting 2 pkgProblemResolver with broken count: 0 147s Done 147s The following NEW packages will be installed: 147s autoconf autodep8 automake autopoint autotools-dev build-essential cpp 147s cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dctrl-tools debhelper 147s debugedit dh-autoreconf dh-strip-nondeterminism dwz g++ g++-14 147s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 147s gcc-s390x-linux-gnu gettext intltool-debian libalgorithm-c3-perl 147s libalgorithm-diff-perl libappconfig-perl libarchive-zip-perl libasan8 147s libb-hooks-op-check-perl libcapture-tiny-perl libcc1-0 libclass-c3-perl 147s libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl 147s libclass-xsaccessor-perl libclone-perl libcss-tiny-perl libdata-optlist-perl 147s libdbm-deep-perl libdebhelper-perl libdevel-callchecker-perl 147s libdevel-cover-perl libdevel-globaldestruction-perl 147s libdevel-overloadinfo-perl libdevel-stacktrace-perl libdevel-symdump-perl 147s libdist-checkconflicts-perl libdynaloader-functions-perl 147s libeval-closure-perl libexporter-tiny-perl libfile-slurp-perl 147s libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 libhtml-parser-perl 147s libhtml-tagset-perl libimport-into-perl libisl23 libitm1 147s liblist-moreutils-perl liblist-moreutils-xs-perl 147s libmodule-implementation-perl libmodule-runtime-conflicts-perl 147s libmodule-runtime-perl libmoo-perl libmoose-perl libmpc3 libmro-compat-perl 147s libpackage-deprecationmanager-perl libpackage-stash-perl 147s libpackage-stash-xs-perl libparams-classify-perl libparams-util-perl 147s libperl-dev libpod-coverage-perl libpod-parser-perl libppi-html-perl 147s libppi-perl libreadonly-perl librole-tiny-perl libsafe-isa-perl 147s libstdc++-14-dev libsub-exporter-perl libsub-exporter-progressive-perl 147s libsub-install-perl libsub-quote-perl libtask-weaken-perl libtemplate-perl 147s libtest-differences-perl libtext-diff-perl libtool libtry-tiny-perl 147s libubsan1 liburi-perl libyaml-pp-perl m4 pkg-perl-autopkgtest po-debconf 147s 0 upgraded, 102 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 57.9 MB of archives. 147s After this operation, 184 MB of additional disk space will be used. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x autodep8 all 0.28+nmu1ubuntu1 [13.7 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 149s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 149s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 149s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 149s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 149s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 149s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 150s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 150s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 150s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 150s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 150s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 150s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 150s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libalgorithm-c3-perl all 0.11-2 [10.2 kB] 150s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libalgorithm-diff-perl all 1.201-1 [41.8 kB] 150s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libappconfig-perl all 1.71-2.3 [64.8 kB] 150s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libb-hooks-op-check-perl s390x 0.22-3build2 [9566 B] 150s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libcapture-tiny-perl all 0.50-1 [20.7 kB] 150s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x libclass-c3-perl all 0.35-2 [18.4 kB] 150s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libparams-util-perl s390x 1.102-3build1 [21.3 kB] 150s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-install-perl all 0.929-1 [9764 B] 151s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libdata-optlist-perl all 0.114-1 [9708 B] 151s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libdynaloader-functions-perl all 0.004-1 [11.4 kB] 151s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-callchecker-perl s390x 0.009-1build1 [14.2 kB] 151s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libparams-classify-perl s390x 0.015-2build6 [20.6 kB] 151s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-runtime-perl all 0.016-2 [16.4 kB] 151s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 151s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-implementation-perl all 0.09-2 [12.0 kB] 151s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libpackage-stash-perl all 0.40-1 [19.5 kB] 151s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x libclass-load-perl all 0.25-2 [12.7 kB] 151s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x libclass-load-xs-perl s390x 0.10-2build5 [13.4 kB] 151s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-method-modifiers-perl all 2.15-1 [16.1 kB] 151s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-xsaccessor-perl s390x 1.19-4build5 [34.2 kB] 151s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 151s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x libcss-tiny-perl all 1.20-3 [9890 B] 151s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libdbm-deep-perl all 2.0019-1 [104 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 151s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libdevel-cover-perl s390x 1.44-1build1 [174 kB] 151s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-exporter-progressive-perl all 0.001013-3 [6718 B] 151s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libdevel-globaldestruction-perl all 0.14-4 [6114 B] 151s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libmro-compat-perl all 0.15-2 [10.1 kB] 151s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libdevel-overloadinfo-perl all 0.007-1 [7422 B] 151s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-stacktrace-perl all 2.0500-1 [22.1 kB] 151s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-symdump-perl all 2.18-5 [12.6 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libdist-checkconflicts-perl all 0.11-2 [9942 B] 151s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-exporter-perl all 0.990-1 [49.0 kB] 151s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libeval-closure-perl all 0.14-3 [10.1 kB] 151s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libexporter-tiny-perl all 1.006002-1 [36.8 kB] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libfile-slurp-perl all 9999.32-2 [21.7 kB] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libimport-into-perl all 1.002005-2 [10.7 kB] 151s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x liblist-moreutils-xs-perl s390x 0.430-4build1 [45.3 kB] 151s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x liblist-moreutils-perl all 0.430-2 [38.2 kB] 151s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libmodule-runtime-conflicts-perl all 0.003-2 [6956 B] 151s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x librole-tiny-perl all 2.002004-1 [16.3 kB] 151s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-quote-perl all 2.006008-1ubuntu1 [20.7 kB] 151s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libmoo-perl all 2.005005-1 [47.4 kB] 151s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libpackage-deprecationmanager-perl all 0.18-1 [16.7 kB] 151s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libpackage-stash-xs-perl s390x 0.30-1build5 [20.1 kB] 151s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x libmoose-perl s390x 2.2207-1build3 [717 kB] 151s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libperl-dev s390x 5.40.0-8 [1310 kB] 151s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libpod-parser-perl all 1.67-1 [80.6 kB] 151s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x libpod-coverage-perl all 0.23-2 [19.3 kB] 151s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libsafe-isa-perl all 1.000010-1 [7684 B] 151s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libtask-weaken-perl all 1.06-2 [7924 B] 151s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x libyaml-pp-perl all 0.38.1-2 [107 kB] 151s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libppi-perl all 1.281-1 [281 kB] 151s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libppi-html-perl all 1.08-3 [13.0 kB] 151s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libreadonly-perl all 2.050-3 [19.9 kB] 151s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libtemplate-perl s390x 2.27-1build11 [498 kB] 151s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x libtext-diff-perl all 1.45-2 [25.6 kB] 151s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libtest-differences-perl all 0.71-1 [15.8 kB] 151s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-perl-autopkgtest all 0.80 [18.7 kB] 152s Fetched 57.9 MB in 4s (13.0 MB/s) 152s Selecting previously unselected package m4. 152s (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.) 152s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 152s Unpacking m4 (1.4.19-5) ... 152s Selecting previously unselected package autoconf. 152s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 152s Unpacking autoconf (2.72-3) ... 152s Selecting previously unselected package dctrl-tools. 152s Preparing to unpack .../002-dctrl-tools_2.24-3build3_s390x.deb ... 152s Unpacking dctrl-tools (2.24-3build3) ... 152s Selecting previously unselected package autodep8. 152s Preparing to unpack .../003-autodep8_0.28+nmu1ubuntu1_all.deb ... 152s Unpacking autodep8 (0.28+nmu1ubuntu1) ... 152s Selecting previously unselected package autotools-dev. 152s Preparing to unpack .../004-autotools-dev_20220109.1_all.deb ... 152s Unpacking autotools-dev (20220109.1) ... 152s Selecting previously unselected package automake. 152s Preparing to unpack .../005-automake_1%3a1.17-3_all.deb ... 152s Unpacking automake (1:1.17-3) ... 152s Selecting previously unselected package autopoint. 152s Preparing to unpack .../006-autopoint_0.23.1-1_all.deb ... 152s Unpacking autopoint (0.23.1-1) ... 152s Selecting previously unselected package libisl23:s390x. 152s Preparing to unpack .../007-libisl23_0.27-1_s390x.deb ... 152s Unpacking libisl23:s390x (0.27-1) ... 152s Selecting previously unselected package libmpc3:s390x. 152s Preparing to unpack .../008-libmpc3_1.3.1-1build2_s390x.deb ... 152s Unpacking libmpc3:s390x (1.3.1-1build2) ... 152s Selecting previously unselected package cpp-14-s390x-linux-gnu. 152s Preparing to unpack .../009-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package cpp-14. 152s Preparing to unpack .../010-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package cpp-s390x-linux-gnu. 152s Preparing to unpack .../011-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package cpp. 152s Preparing to unpack .../012-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking cpp (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package libcc1-0:s390x. 152s Preparing to unpack .../013-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libgomp1:s390x. 152s Preparing to unpack .../014-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libitm1:s390x. 152s Preparing to unpack .../015-libitm1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libasan8:s390x. 152s Preparing to unpack .../016-libasan8_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libubsan1:s390x. 152s Preparing to unpack .../017-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libgcc-14-dev:s390x. 152s Preparing to unpack .../018-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14-s390x-linux-gnu. 153s Preparing to unpack .../019-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14. 153s Preparing to unpack .../020-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-s390x-linux-gnu. 153s Preparing to unpack .../021-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package gcc. 153s Preparing to unpack .../022-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package libstdc++-14-dev:s390x. 153s Preparing to unpack .../023-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-14-s390x-linux-gnu. 153s Preparing to unpack .../024-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-14. 153s Preparing to unpack .../025-g++-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking g++-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-s390x-linux-gnu. 153s Preparing to unpack .../026-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package g++. 153s Preparing to unpack .../027-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking g++ (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package build-essential. 153s Preparing to unpack .../028-build-essential_12.10ubuntu1_s390x.deb ... 153s Unpacking build-essential (12.10ubuntu1) ... 153s Selecting previously unselected package libdebhelper-perl. 153s Preparing to unpack .../029-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 153s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 153s Selecting previously unselected package libtool. 153s Preparing to unpack .../030-libtool_2.5.4-3build1_all.deb ... 153s Unpacking libtool (2.5.4-3build1) ... 153s Selecting previously unselected package dh-autoreconf. 153s Preparing to unpack .../031-dh-autoreconf_20_all.deb ... 153s Unpacking dh-autoreconf (20) ... 153s Selecting previously unselected package libarchive-zip-perl. 153s Preparing to unpack .../032-libarchive-zip-perl_1.68-1_all.deb ... 153s Unpacking libarchive-zip-perl (1.68-1) ... 153s Selecting previously unselected package libfile-stripnondeterminism-perl. 153s Preparing to unpack .../033-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 153s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 153s Selecting previously unselected package dh-strip-nondeterminism. 153s Preparing to unpack .../034-dh-strip-nondeterminism_1.14.1-2_all.deb ... 153s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 153s Selecting previously unselected package debugedit. 153s Preparing to unpack .../035-debugedit_1%3a5.1-2_s390x.deb ... 153s Unpacking debugedit (1:5.1-2) ... 153s Selecting previously unselected package dwz. 153s Preparing to unpack .../036-dwz_0.15-1build6_s390x.deb ... 153s Unpacking dwz (0.15-1build6) ... 153s Selecting previously unselected package gettext. 153s Preparing to unpack .../037-gettext_0.23.1-1_s390x.deb ... 153s Unpacking gettext (0.23.1-1) ... 153s Selecting previously unselected package intltool-debian. 153s Preparing to unpack .../038-intltool-debian_0.35.0+20060710.6_all.deb ... 153s Unpacking intltool-debian (0.35.0+20060710.6) ... 153s Selecting previously unselected package po-debconf. 153s Preparing to unpack .../039-po-debconf_1.0.21+nmu1_all.deb ... 153s Unpacking po-debconf (1.0.21+nmu1) ... 153s Selecting previously unselected package debhelper. 153s Preparing to unpack .../040-debhelper_13.24.1ubuntu2_all.deb ... 153s Unpacking debhelper (13.24.1ubuntu2) ... 153s Selecting previously unselected package libalgorithm-c3-perl. 153s Preparing to unpack .../041-libalgorithm-c3-perl_0.11-2_all.deb ... 153s Unpacking libalgorithm-c3-perl (0.11-2) ... 153s Selecting previously unselected package libalgorithm-diff-perl. 153s Preparing to unpack .../042-libalgorithm-diff-perl_1.201-1_all.deb ... 153s Unpacking libalgorithm-diff-perl (1.201-1) ... 153s Selecting previously unselected package libappconfig-perl. 153s Preparing to unpack .../043-libappconfig-perl_1.71-2.3_all.deb ... 153s Unpacking libappconfig-perl (1.71-2.3) ... 153s Selecting previously unselected package libb-hooks-op-check-perl:s390x. 153s Preparing to unpack .../044-libb-hooks-op-check-perl_0.22-3build2_s390x.deb ... 153s Unpacking libb-hooks-op-check-perl:s390x (0.22-3build2) ... 153s Selecting previously unselected package libcapture-tiny-perl. 153s Preparing to unpack .../045-libcapture-tiny-perl_0.50-1_all.deb ... 153s Unpacking libcapture-tiny-perl (0.50-1) ... 153s Selecting previously unselected package libclass-c3-perl. 153s Preparing to unpack .../046-libclass-c3-perl_0.35-2_all.deb ... 153s Unpacking libclass-c3-perl (0.35-2) ... 153s Selecting previously unselected package libparams-util-perl. 153s Preparing to unpack .../047-libparams-util-perl_1.102-3build1_s390x.deb ... 153s Unpacking libparams-util-perl (1.102-3build1) ... 153s Selecting previously unselected package libsub-install-perl. 153s Preparing to unpack .../048-libsub-install-perl_0.929-1_all.deb ... 153s Unpacking libsub-install-perl (0.929-1) ... 153s Selecting previously unselected package libdata-optlist-perl. 153s Preparing to unpack .../049-libdata-optlist-perl_0.114-1_all.deb ... 153s Unpacking libdata-optlist-perl (0.114-1) ... 153s Selecting previously unselected package libdynaloader-functions-perl. 153s Preparing to unpack .../050-libdynaloader-functions-perl_0.004-1_all.deb ... 153s Unpacking libdynaloader-functions-perl (0.004-1) ... 153s Selecting previously unselected package libdevel-callchecker-perl:s390x. 153s Preparing to unpack .../051-libdevel-callchecker-perl_0.009-1build1_s390x.deb ... 153s Unpacking libdevel-callchecker-perl:s390x (0.009-1build1) ... 153s Selecting previously unselected package libparams-classify-perl:s390x. 153s Preparing to unpack .../052-libparams-classify-perl_0.015-2build6_s390x.deb ... 153s Unpacking libparams-classify-perl:s390x (0.015-2build6) ... 153s Selecting previously unselected package libmodule-runtime-perl. 153s Preparing to unpack .../053-libmodule-runtime-perl_0.016-2_all.deb ... 153s Unpacking libmodule-runtime-perl (0.016-2) ... 153s Selecting previously unselected package libtry-tiny-perl. 153s Preparing to unpack .../054-libtry-tiny-perl_0.32-1_all.deb ... 153s Unpacking libtry-tiny-perl (0.32-1) ... 153s Selecting previously unselected package libmodule-implementation-perl. 154s Preparing to unpack .../055-libmodule-implementation-perl_0.09-2_all.deb ... 154s Unpacking libmodule-implementation-perl (0.09-2) ... 154s Selecting previously unselected package libpackage-stash-perl. 154s Preparing to unpack .../056-libpackage-stash-perl_0.40-1_all.deb ... 154s Unpacking libpackage-stash-perl (0.40-1) ... 154s Selecting previously unselected package libclass-load-perl. 154s Preparing to unpack .../057-libclass-load-perl_0.25-2_all.deb ... 154s Unpacking libclass-load-perl (0.25-2) ... 154s Selecting previously unselected package libclass-load-xs-perl. 154s Preparing to unpack .../058-libclass-load-xs-perl_0.10-2build5_s390x.deb ... 154s Unpacking libclass-load-xs-perl (0.10-2build5) ... 154s Selecting previously unselected package libclass-method-modifiers-perl. 154s Preparing to unpack .../059-libclass-method-modifiers-perl_2.15-1_all.deb ... 154s Unpacking libclass-method-modifiers-perl (2.15-1) ... 154s Selecting previously unselected package libclass-xsaccessor-perl. 154s Preparing to unpack .../060-libclass-xsaccessor-perl_1.19-4build5_s390x.deb ... 154s Unpacking libclass-xsaccessor-perl (1.19-4build5) ... 154s Selecting previously unselected package libclone-perl:s390x. 154s Preparing to unpack .../061-libclone-perl_0.47-1_s390x.deb ... 154s Unpacking libclone-perl:s390x (0.47-1) ... 154s Selecting previously unselected package libcss-tiny-perl. 154s Preparing to unpack .../062-libcss-tiny-perl_1.20-3_all.deb ... 154s Unpacking libcss-tiny-perl (1.20-3) ... 154s Selecting previously unselected package libdbm-deep-perl. 154s Preparing to unpack .../063-libdbm-deep-perl_2.0019-1_all.deb ... 154s Unpacking libdbm-deep-perl (2.0019-1) ... 154s Selecting previously unselected package libhtml-tagset-perl. 154s Preparing to unpack .../064-libhtml-tagset-perl_3.24-1_all.deb ... 154s Unpacking libhtml-tagset-perl (3.24-1) ... 154s Selecting previously unselected package liburi-perl. 154s Preparing to unpack .../065-liburi-perl_5.30-1_all.deb ... 154s Unpacking liburi-perl (5.30-1) ... 154s Selecting previously unselected package libhtml-parser-perl:s390x. 154s Preparing to unpack .../066-libhtml-parser-perl_3.83-1build1_s390x.deb ... 154s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 154s Selecting previously unselected package libdevel-cover-perl. 154s Preparing to unpack .../067-libdevel-cover-perl_1.44-1build1_s390x.deb ... 154s Unpacking libdevel-cover-perl (1.44-1build1) ... 154s Selecting previously unselected package libsub-exporter-progressive-perl. 154s Preparing to unpack .../068-libsub-exporter-progressive-perl_0.001013-3_all.deb ... 154s Unpacking libsub-exporter-progressive-perl (0.001013-3) ... 154s Selecting previously unselected package libdevel-globaldestruction-perl. 154s Preparing to unpack .../069-libdevel-globaldestruction-perl_0.14-4_all.deb ... 154s Unpacking libdevel-globaldestruction-perl (0.14-4) ... 154s Selecting previously unselected package libmro-compat-perl. 154s Preparing to unpack .../070-libmro-compat-perl_0.15-2_all.deb ... 154s Unpacking libmro-compat-perl (0.15-2) ... 154s Selecting previously unselected package libdevel-overloadinfo-perl. 154s Preparing to unpack .../071-libdevel-overloadinfo-perl_0.007-1_all.deb ... 154s Unpacking libdevel-overloadinfo-perl (0.007-1) ... 154s Selecting previously unselected package libdevel-stacktrace-perl. 154s Preparing to unpack .../072-libdevel-stacktrace-perl_2.0500-1_all.deb ... 154s Unpacking libdevel-stacktrace-perl (2.0500-1) ... 154s Selecting previously unselected package libdevel-symdump-perl. 154s Preparing to unpack .../073-libdevel-symdump-perl_2.18-5_all.deb ... 154s Unpacking libdevel-symdump-perl (2.18-5) ... 154s Selecting previously unselected package libdist-checkconflicts-perl. 154s Preparing to unpack .../074-libdist-checkconflicts-perl_0.11-2_all.deb ... 154s Unpacking libdist-checkconflicts-perl (0.11-2) ... 154s Selecting previously unselected package libsub-exporter-perl. 154s Preparing to unpack .../075-libsub-exporter-perl_0.990-1_all.deb ... 154s Unpacking libsub-exporter-perl (0.990-1) ... 154s Selecting previously unselected package libeval-closure-perl. 154s Preparing to unpack .../076-libeval-closure-perl_0.14-3_all.deb ... 154s Unpacking libeval-closure-perl (0.14-3) ... 154s Selecting previously unselected package libexporter-tiny-perl. 154s Preparing to unpack .../077-libexporter-tiny-perl_1.006002-1_all.deb ... 154s Unpacking libexporter-tiny-perl (1.006002-1) ... 154s Selecting previously unselected package libfile-slurp-perl. 154s Preparing to unpack .../078-libfile-slurp-perl_9999.32-2_all.deb ... 154s Unpacking libfile-slurp-perl (9999.32-2) ... 154s Selecting previously unselected package libimport-into-perl. 154s Preparing to unpack .../079-libimport-into-perl_1.002005-2_all.deb ... 154s Unpacking libimport-into-perl (1.002005-2) ... 154s Selecting previously unselected package liblist-moreutils-xs-perl. 154s Preparing to unpack .../080-liblist-moreutils-xs-perl_0.430-4build1_s390x.deb ... 154s Unpacking liblist-moreutils-xs-perl (0.430-4build1) ... 154s Selecting previously unselected package liblist-moreutils-perl. 154s Preparing to unpack .../081-liblist-moreutils-perl_0.430-2_all.deb ... 154s Unpacking liblist-moreutils-perl (0.430-2) ... 154s Selecting previously unselected package libmodule-runtime-conflicts-perl. 154s Preparing to unpack .../082-libmodule-runtime-conflicts-perl_0.003-2_all.deb ... 154s Unpacking libmodule-runtime-conflicts-perl (0.003-2) ... 154s Selecting previously unselected package librole-tiny-perl. 154s Preparing to unpack .../083-librole-tiny-perl_2.002004-1_all.deb ... 154s Unpacking librole-tiny-perl (2.002004-1) ... 154s Selecting previously unselected package libsub-quote-perl. 154s Preparing to unpack .../084-libsub-quote-perl_2.006008-1ubuntu1_all.deb ... 154s Unpacking libsub-quote-perl (2.006008-1ubuntu1) ... 154s Selecting previously unselected package libmoo-perl. 154s Preparing to unpack .../085-libmoo-perl_2.005005-1_all.deb ... 154s Unpacking libmoo-perl (2.005005-1) ... 154s Selecting previously unselected package libpackage-deprecationmanager-perl. 154s Preparing to unpack .../086-libpackage-deprecationmanager-perl_0.18-1_all.deb ... 154s Unpacking libpackage-deprecationmanager-perl (0.18-1) ... 154s Selecting previously unselected package libpackage-stash-xs-perl:s390x. 154s Preparing to unpack .../087-libpackage-stash-xs-perl_0.30-1build5_s390x.deb ... 154s Unpacking libpackage-stash-xs-perl:s390x (0.30-1build5) ... 154s Selecting previously unselected package libmoose-perl:s390x. 154s Preparing to unpack .../088-libmoose-perl_2.2207-1build3_s390x.deb ... 154s Unpacking libmoose-perl:s390x (2.2207-1build3) ... 154s Selecting previously unselected package libperl-dev:s390x. 154s Preparing to unpack .../089-libperl-dev_5.40.0-8_s390x.deb ... 154s Unpacking libperl-dev:s390x (5.40.0-8) ... 154s Selecting previously unselected package libpod-parser-perl. 154s Preparing to unpack .../090-libpod-parser-perl_1.67-1_all.deb ... 154s Adding 'diversion of /usr/bin/podselect to /usr/bin/podselect.bundled by libpod-parser-perl' 154s Adding 'diversion of /usr/share/man/man1/podselect.1.gz to /usr/share/man/man1/podselect.bundled.1.gz by libpod-parser-perl' 154s Unpacking libpod-parser-perl (1.67-1) ... 154s Selecting previously unselected package libpod-coverage-perl. 154s Preparing to unpack .../091-libpod-coverage-perl_0.23-2_all.deb ... 154s Unpacking libpod-coverage-perl (0.23-2) ... 154s Selecting previously unselected package libsafe-isa-perl. 154s Preparing to unpack .../092-libsafe-isa-perl_1.000010-1_all.deb ... 154s Unpacking libsafe-isa-perl (1.000010-1) ... 154s Selecting previously unselected package libtask-weaken-perl. 154s Preparing to unpack .../093-libtask-weaken-perl_1.06-2_all.deb ... 154s Unpacking libtask-weaken-perl (1.06-2) ... 154s Selecting previously unselected package libyaml-pp-perl. 154s Preparing to unpack .../094-libyaml-pp-perl_0.38.1-2_all.deb ... 154s Unpacking libyaml-pp-perl (0.38.1-2) ... 154s Selecting previously unselected package libppi-perl. 154s Preparing to unpack .../095-libppi-perl_1.281-1_all.deb ... 154s Unpacking libppi-perl (1.281-1) ... 154s Selecting previously unselected package libppi-html-perl. 154s Preparing to unpack .../096-libppi-html-perl_1.08-3_all.deb ... 154s Unpacking libppi-html-perl (1.08-3) ... 154s Selecting previously unselected package libreadonly-perl. 154s Preparing to unpack .../097-libreadonly-perl_2.050-3_all.deb ... 154s Unpacking libreadonly-perl (2.050-3) ... 154s Selecting previously unselected package libtemplate-perl. 154s Preparing to unpack .../098-libtemplate-perl_2.27-1build11_s390x.deb ... 154s Unpacking libtemplate-perl (2.27-1build11) ... 154s Selecting previously unselected package libtext-diff-perl. 154s Preparing to unpack .../099-libtext-diff-perl_1.45-2_all.deb ... 154s Unpacking libtext-diff-perl (1.45-2) ... 154s Selecting previously unselected package libtest-differences-perl. 154s Preparing to unpack .../100-libtest-differences-perl_0.71-1_all.deb ... 154s Unpacking libtest-differences-perl (0.71-1) ... 154s Selecting previously unselected package pkg-perl-autopkgtest. 154s Preparing to unpack .../101-pkg-perl-autopkgtest_0.80_all.deb ... 154s Unpacking pkg-perl-autopkgtest (0.80) ... 154s Setting up libfile-slurp-perl (9999.32-2) ... 154s Setting up libsafe-isa-perl (1.000010-1) ... 154s Setting up libtask-weaken-perl (1.06-2) ... 154s Setting up libcss-tiny-perl (1.20-3) ... 154s Setting up libdynaloader-functions-perl (0.004-1) ... 154s Setting up libclass-method-modifiers-perl (2.15-1) ... 154s Setting up libclone-perl:s390x (0.47-1) ... 154s Setting up libalgorithm-diff-perl (1.201-1) ... 154s Setting up libarchive-zip-perl (1.68-1) ... 154s Setting up libhtml-tagset-perl (3.24-1) ... 154s Setting up libyaml-pp-perl (0.38.1-2) ... 154s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 154s Setting up libtry-tiny-perl (0.32-1) ... 154s Setting up m4 (1.4.19-5) ... 154s Setting up libperl-dev:s390x (5.40.0-8) ... 154s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 154s Setting up libdbm-deep-perl (2.0019-1) ... 154s Setting up libsub-install-perl (0.929-1) ... 154s Setting up libreadonly-perl (2.050-3) ... 154s Setting up libpackage-stash-xs-perl:s390x (0.30-1build5) ... 154s Setting up autotools-dev (20220109.1) ... 154s Setting up libalgorithm-c3-perl (0.11-2) ... 154s Setting up libtext-diff-perl (1.45-2) ... 154s Setting up libmpc3:s390x (1.3.1-1build2) ... 154s Setting up libpod-parser-perl (1.67-1) ... 154s Setting up autopoint (0.23.1-1) ... 154s Setting up libb-hooks-op-check-perl:s390x (0.22-3build2) ... 154s Setting up liblist-moreutils-xs-perl (0.430-4build1) ... 154s Setting up libparams-util-perl (1.102-3build1) ... 154s Setting up autoconf (2.72-3) ... 154s Setting up libsub-exporter-progressive-perl (0.001013-3) ... 154s Setting up libcapture-tiny-perl (0.50-1) ... 154s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 154s Setting up dwz (0.15-1build6) ... 154s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 154s Setting up librole-tiny-perl (2.002004-1) ... 154s Setting up debugedit (1:5.1-2) ... 154s Setting up libdevel-globaldestruction-perl (0.14-4) ... 154s Setting up libsub-quote-perl (2.006008-1ubuntu1) ... 154s Setting up libdevel-stacktrace-perl (2.0500-1) ... 154s Setting up libclass-xsaccessor-perl (1.19-4build5) ... 154s Setting up libdevel-symdump-perl (2.18-5) ... 154s Setting up libexporter-tiny-perl (1.006002-1) ... 154s Setting up libisl23:s390x (0.27-1) ... 154s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 154s Setting up liburi-perl (5.30-1) ... 154s Setting up libappconfig-perl (1.71-2.3) ... 154s Setting up dctrl-tools (2.24-3build3) ... 154s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 154s Setting up autodep8 (0.28+nmu1ubuntu1) ... 154s Setting up automake (1:1.17-3) ... 154s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 154s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 154s Setting up gettext (0.23.1-1) ... 154s Setting up liblist-moreutils-perl (0.430-2) ... 154s Setting up libpod-coverage-perl (0.23-2) ... 154s Setting up libtest-differences-perl (0.71-1) ... 154s Setting up libclass-c3-perl (0.35-2) ... 154s Setting up libdevel-callchecker-perl:s390x (0.009-1build1) ... 154s Setting up intltool-debian (0.35.0+20060710.6) ... 154s Setting up libppi-perl (1.281-1) ... 154s Setting up libdata-optlist-perl (0.114-1) ... 154s Setting up pkg-perl-autopkgtest (0.80) ... 154s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Setting up libtemplate-perl (2.27-1build11) ... 154s Setting up cpp-14 (14.2.0-17ubuntu1) ... 154s Setting up dh-strip-nondeterminism (1.14.1-2) ... 154s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 154s Setting up libmro-compat-perl (0.15-2) ... 154s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 154s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 154s Setting up libsub-exporter-perl (0.990-1) ... 154s Setting up libeval-closure-perl (0.14-3) ... 154s Setting up libdevel-cover-perl (1.44-1build1) ... 154s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Setting up po-debconf (1.0.21+nmu1) ... 154s Setting up libparams-classify-perl:s390x (0.015-2build6) ... 154s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Setting up libmodule-runtime-perl (0.016-2) ... 154s Setting up libppi-html-perl (1.08-3) ... 154s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Setting up libdist-checkconflicts-perl (0.11-2) ... 154s Setting up cpp (4:14.2.0-1ubuntu1) ... 154s Setting up libmodule-implementation-perl (0.09-2) ... 154s Setting up libpackage-stash-perl (0.40-1) ... 154s Setting up libimport-into-perl (1.002005-2) ... 154s Setting up libmoo-perl (2.005005-1) ... 154s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Setting up libmodule-runtime-conflicts-perl (0.003-2) ... 154s Setting up libclass-load-perl (0.25-2) ... 154s Setting up gcc-14 (14.2.0-17ubuntu1) ... 154s Setting up libpackage-deprecationmanager-perl (0.18-1) ... 154s Setting up libdevel-overloadinfo-perl (0.007-1) ... 154s Setting up libclass-load-xs-perl (0.10-2build5) ... 154s Setting up g++-14 (14.2.0-17ubuntu1) ... 154s Setting up libtool (2.5.4-3build1) ... 154s Setting up libmoose-perl:s390x (2.2207-1build3) ... 154s Setting up gcc (4:14.2.0-1ubuntu1) ... 154s Setting up dh-autoreconf (20) ... 154s Setting up g++ (4:14.2.0-1ubuntu1) ... 154s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 154s Setting up build-essential (12.10ubuntu1) ... 154s Setting up debhelper (13.24.1ubuntu2) ... 154s Processing triggers for install-info (7.1.1-1) ... 154s Processing triggers for libc-bin (2.41-1ubuntu1) ... 154s Processing triggers for man-db (2.13.0-1) ... 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libdevel-cover-perl'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-packages.all"], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-packages.all /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-build-deps-packages.all 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.5GjNo9/build.slW/src'], kind short, sout raw, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.5GjNo9/build.slW/src already exists 157s autopkgtest [23:49:27]: test autodep8-perl-build-deps: /usr/share/pkg-perl-autopkgtest/runner build-deps 157s autopkgtest [23:49:27]: test autodep8-perl-build-deps: [----------------------- 157s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.5GjNo9/wrapper.sh --debug --artifacts=/tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-artifacts --chdir=/tmp/autopkgtest.5GjNo9/build.slW/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.5GjNo9/autodep8-perl-build-deps-stderr --stdout=/tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stdout --tmp=/tmp/autopkgtest.5GjNo9/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 [] 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-artifacts 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: changing to directory: /tmp/autopkgtest.5GjNo9/build.slW/src 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: LANG=C.UTF-8 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LANGUAGE 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_ADDRESS 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_ALL 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_COLLATE 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_CTYPE 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_IDENTIFICATION 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MEASUREMENT 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MESSAGES 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MONETARY 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_NAME 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_NUMERIC 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_PAPER 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_TELEPHONE 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_TIME 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: pretending to be a login shell 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: will write standard error to /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stderr 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: will write stdout to /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stdout 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.5GjNo9/autopkgtest_tmp 157s /tmp/autopkgtest.5GjNo9/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 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner build-deps 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: copying /tmp/tmp.tPXdtnrTcH/out to stdout and file: /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stdout 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: copying /tmp/tmp.tPXdtnrTcH/err to standard error and file: /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stdout 157s /tmp/autopkgtest.5GjNo9/wrapper.sh: writing script pid 2374 to /tmp/autopkgtest_script_pid 157s mkdir: created directory '/tmp/autopkgtest.5GjNo9/autopkgtest_tmp/smoke3JL1Op/lib/Devel' 157s mkdir: created directory '/tmp/autopkgtest.5GjNo9/autopkgtest_tmp/smoke3JL1Op/lib/Devel/Cover/' 157s 'lib/Devel/Cover.pm' -> '/tmp/autopkgtest.5GjNo9/autopkgtest_tmp/smoke3JL1Op/lib/Devel/Cover.pm' 157s Writing tests ........ done 157s 157s checking for Storable .... 3.32 /usr/lib/s390x-linux-gnu/perl/5.40/Storable.pm 157s checking for JSON::MaybeXS .... not found 157s 157s 157s The coverage database can be stored in any of the Storable, JSON or Sereal 157s formats. To use the Storable format, the Storable module is required. This has 157s been a core module since perl-5.8.0. To store the database in JSON format 157s JSON::MaybeXS can be used. It will use the best JSON backend available, trying 157s first Cpanel::JSON::XS. To use the Sereal format, the Sereal module should be 157s installed. This is available on CPAN. 157s 157s Sereal is used if it is available. Otherwise JSON is used, if available. 157s Otherwise Storable will be used. The Sereal and JSON formats should be portable 157s between all systems, whereas Storable format may not be. 157s 157s 157s checking for Sereal .... not found 157s checking for Digest::MD5 .... 2.58_01 /usr/lib/s390x-linux-gnu/perl/5.40/Digest/MD5.pm 157s checking for Test::More .... 1.302199 /usr/share/perl/5.40/Test/More.pm 157s checking for Template version 2.00 .... 2.27 /usr/lib/s390x-linux-gnu/perl5/5.40/Template.pm 157s checking for PPI::HTML version 1.07 .... 1.08 /usr/share/perl5/PPI/HTML.pm 157s checking for Perl::Tidy version 20060719 .... not found 157s 157s 157s One of PPI::HTML 1.07 or Perl::Tidy 20060719 is required to add syntax 157s highlighting to some HTML backends to cover and for cpancover. Unless you have 157s specific requirements this should not be a problem, but you will not be able to 157s use syntax highlighting in these reports until you install PPI::HTML or 157s Perl::Tidy, available from the CPAN. However, the rest of Devel::Cover will be 157s available as usual. 157s 157s 157s checking for Pod::Coverage version 0.06 .... 0.23 /usr/share/perl5/Pod/Coverage.pm 157s checking for Pod::Coverage::CountParents .... /usr/share/perl5/Pod/Coverage/CountParents.pm 157s checking for Test::Differences .... 0.71 /usr/share/perl5/Test/Differences.pm 157s checking for Browser::Open .... not found 157s 157s 157s Browser::Open is used to launch a web browser when the -launch flag is specified 157s with HTML report formats. You can download Browser::Open from CPAN. 157s 157s 157s checking for HTML::Entities .... 3.83 /usr/lib/s390x-linux-gnu/perl5/5.40/HTML/Entities.pm 157s 157s 157s 157s Checking if your kit is complete... 157s Looks good 157s Generating a Unix-style Makefile 157s Writing Makefile for Devel::Cover 157s Writing MYMETA.yml and MYMETA.json 157s 157s removed 'lib/Devel/Cover.pm' 157s './bin' -> '/usr/bin' 157s 'lib/Devel/Cover/Report' -> '/usr/lib/s390x-linux-gnu/perl5/5.40/Devel/Cover/Report' 158s t/e2e/aaccessor.t .................. 158s 1..1 158s ok 1 - output 158s ok 158s t/e2e/aalias.t ..................... 158s 1..1 158s ok 1 - output 158s ok 158s t/e2e/aalias1.t .................... 158s 1..1 158s ok 1 - output 158s ok 158s t/e2e/aand.t ....................... 158s 1..1 158s ok 1 - output 158s ok 159s t/e2e/abigint.t .................... 159s 1..1 159s ok 1 - output 159s ok 159s t/e2e/abranch_return_sub.t ......... 159s 1..1 159s ok 1 - output 159s ok 159s t/e2e/acircular_ref.t .............. 159s 1..1 159s ok 1 - output 159s ok 160s t/e2e/acond_and.t .................. 160s 1..1 160s ok 1 - output 160s ok 160s t/e2e/acond_branch.t ............... 160s 1..1 160s ok 1 - output 160s ok 160s t/e2e/acond_chained.t .............. 160s 1..1 160s ok 1 - output 160s ok 161s t/e2e/acond_or.t ................... 161s 1..1 161s ok 1 - output 161s ok 161s t/e2e/acond_xor.t .................. 161s 1..1 161s ok 1 - output 161s ok 161s t/e2e/acop.t ....................... 161s 1..1 161s ok 1 - output 161s ok 162s t/e2e/adbm_cond.t .................. 162s 1..1 162s ok 1 - output 162s ok 162s t/e2e/adefault_param.t ............. 162s 1..1 162s ok 1 - output 162s ok 162s t/e2e/adeparse.t ................... 162s 1..1 162s ok 1 - output 162s ok 163s t/e2e/adestroy.t ................... 163s 1..1 163s ok 1 - output 163s ok 163s t/e2e/adynamic_subs.t .............. 163s 1..1 163s ok 1 - output 163s ok 163s t/e2e/aempty.t ..................... 163s 1..1 163s ok 1 - output 163s ok 164s t/e2e/aend_constant.t .............. 164s 1..1 164s ok 1 - output 164s ok 164s t/e2e/aeval1.t ..................... 164s 1..1 164s ok 1 - output 164s ok 164s t/e2e/aeval2.t ..................... 164s 1..1 164s ok 1 - output 164s ok 165s t/e2e/aeval3.t ..................... 165s 1..1 165s ok 1 - output 165s ok 165s t/e2e/aeval_merge.t ................ 165s 1..1 165s ok 1 - output 165s ok 165s t/e2e/aeval_merge_0.t .............. 165s 1..1 165s ok 1 - output 165s ok 165s t/e2e/aeval_merge_1.t .............. 165s 1..1 165s ok 1 - output 165s ok 166s t/e2e/aeval_nested.t ............... 166s 1..1 166s ok 1 - output 166s ok 166s t/e2e/aeval_string.t ............... 166s 1..1 166s ok 1 - output 166s ok 166s t/e2e/aexec.t ...................... 166s 1..1 166s ok 1 - output 166s ok 167s t/e2e/aexec_die.t .................. 167s 1..1 167s ok 1 - output 167s ok 167s t/e2e/afinal_op.t .................. 167s 1..1 167s ok 1 - output 167s ok 167s t/e2e/afork.t ...................... 167s 1..1 167s ok 1 - output 167s ok 168s t/e2e/aif.t ........................ 168s 1..1 168s ok 1 - output 168s ok 168s t/e2e/ainc_sub.t ................... skipped: depends too much on specific installed perl 168s t/e2e/amodule1.t ................... 168s 1..1 168s ok 1 - output 168s ok 168s t/e2e/amodule2.t ................... 168s 1..1 168s ok 1 - output 168s ok 168s t/e2e/amodule_ignore.t ............. 168s 1..1 168s ok 1 - output 168s ok 169s t/e2e/amodule_import.t ............. 169s 1..1 169s ok 1 - output 169s ok 169s t/e2e/amodule_relative.t ........... 169s 1..1 169s ok 1 - output 169s ok 169s t/e2e/amodule_statements.t ......... 169s 1..1 169s ok 1 - output 169s ok 170s t/e2e/amoo_cond.t .................. 170s 1..1 170s ok 1 - output 170s ok 170s t/e2e/amoose_basic.t ............... 170s 1..1 170s ok 1 - output 170s ok 171s t/e2e/amoose_cond.t ................ 171s 1..1 171s ok 1 - output 171s ok 171s t/e2e/amoose_constraint.t .......... 171s 1..1 171s ok 1 - output 171s ok 172s t/e2e/aoverload_bool.t ............. 172s 1..1 172s ok 1 - output 172s ok 172s t/e2e/aoverload_bool2.t ............ 172s 1..1 172s ok 1 - output 172s ok 172s t/e2e/aoverloaded.t ................ 172s 1..1 172s ok 1 - output 172s ok 173s t/e2e/apadrange.t .................. 173s 1..1 173s ok 1 - output 173s ok 173s t/e2e/apadrange2.t ................. 173s 1..1 173s ok 1 - output 173s ok 173s t/e2e/apod.t ....................... 173s 1..1 173s ok 1 - output 173s ok 174s t/e2e/apod_nocp.t .................. 174s 1..1 174s ok 1 - output 174s ok 174s t/e2e/areadonly.t .................. 174s 1..1 174s ok 1 - output 174s ok 174s t/e2e/arecursive_sub.t ............. 174s 1..1 174s ok 1 - output 174s ok 175s t/e2e/aredefine_sub.t .............. 175s 1..1 175s ok 1 - output 175s ok 175s t/e2e/arequire.t ................... 175s 1..1 175s ok 1 - output 175s ok 175s t/e2e/asignature.t ................. 175s 1..1 175s ok 1 - output 175s ok 175s t/e2e/askip.t ...................... 175s 1..1 175s ok 1 - output 175s ok 176s t/e2e/asort.t ...................... 176s 1..1 176s ok 1 - output 176s ok 176s t/e2e/aspecial_blocks.t ............ 176s 1..1 176s ok 1 - output 176s ok 176s t/e2e/astatement.t ................. 176s 1..1 176s ok 1 - output 176s ok 177s t/e2e/asubs_only.t ................. 177s 1..1 177s ok 1 - output 177s ok 177s t/e2e/at0.t ........................ 177s 1..1 177s ok 1 - output 177s ok 177s t/e2e/at1.t ........................ 177s 1..1 177s ok 1 - output 177s ok 178s t/e2e/at2.t ........................ 178s 1..1 178s ok 1 - output 178s ok 178s t/e2e/ataint.t ..................... 178s 1..1 178s ok 1 - output 178s ok 178s t/e2e/atrivial.t ................... 178s 1..1 178s ok 1 - output 178s ok 179s t/e2e/auncoverable.t ............... 179s 1..1 179s ok 1 - output 179s ok 179s t/e2e/auncoverable_error.t ......... 179s 1..1 179s ok 1 - output 179s ok 179s t/e2e/auncoverable_error_ignore.t .. 179s 1..1 179s ok 1 - output 179s ok 179s t/e2e/av-58x.t ..................... 179s 1..1 179s ok 1 - output 179s ok 180s t/e2e/axor_constant_fold.t ......... 180s 1..1 180s ok 1 - output 180s ok 180s t/internal/criteria.t .............. 180s 1..5 180s ok 1 - Set coverage to none empties coverage 180s ok 2 - Set coverage to all fills coverage 180s ok 3 - Removing path coverage works 180s ok 4 - Adding non-existent coverage warns 180s ok 5 - Adding non-existent coverage has no effect 180s ok 180s t/internal/inc_filter.t ............ 180s 1..2 180s ok 1 - cwd_lib was left in the array four times 180s ok 2 - no other paths were left in the array 180s ok 180s t/internal/launch.t ................ 180s 1..10 180s ok 1 - Sort does not support launch 180s ok 2 - Text does not support launch 180s ok 3 - Html_basic supports launch 180s ok 4 - Html_minimal supports launch 180s ok 5 - Json does not support launch 180s ok 6 - Html supports launch 180s ok 7 - Vim does not support launch 180s ok 8 - Html_subtle supports launch 180s ok 9 - Text2 does not support launch 180s ok 10 - Compilation does not support launch 180s ok 180s t/internal/subprocess.t ............ 180s 1..2 180s ok 1 - simple test with perl -e 180s ok 2 - test with perl -MDevel::Cover,-silent,1 -e 180s ok 180s t/regexp/regexp_eval.t ............. 180s 1..1 180s ok 1 180s ok 180s All tests successful. 180s Files=76, Tests=90, -63 wallclock secs ( 0.13 usr 0.05 sys + 19.86 cusr 2.57 csys = 22.61 CPU) 180s Result: PASS 180s /tmp/autopkgtest.5GjNo9/wrapper.sh: checking for leaked background processes... 180s /tmp/autopkgtest.5GjNo9/wrapper.sh: waiting for tee/cat subprocesses... 180s /tmp/autopkgtest.5GjNo9/wrapper.sh: cleaning up... 180s /tmp/autopkgtest.5GjNo9/wrapper.sh: Exit status: 0 180s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest [23:49:51]: test autodep8-perl-build-deps: -----------------------] 181s autopkgtest: DBG: testbed executing test finished with exit status 0 181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stdout /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-build-deps-stdout 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-stderr /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-build-deps-stderr 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest [23:49:51]: test autodep8-perl-build-deps: - - - - - - - - - - results - - - - - - - - - - 181s autodep8-perl-build-deps PASS 181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-artifacts/ /tmp/autopkgtest-work.rqpjso17/out/artifacts/ 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.5GjNo9/autodep8-perl-build-deps-artifacts', '/tmp/autopkgtest.5GjNo9/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 181s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest [23:49:51]: test autodep8-perl: preparing testbed 181s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libdevel-cover-perl', 'debhelper-compat (= 13)', 'libdbm-deep-perl ', 'libhtml-parser-perl ', 'libmoo-perl ', 'libmoose-perl ', 'libpod-coverage-perl ', 'libppi-html-perl | perltidy ', 'libreadonly-perl ', 'libtemplate-perl', 'libtest-differences-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'], deps_new=['libdevel-cover-perl', 'pkg-perl-autopkgtest'] 181s autopkgtest: DBG: testbed reset 181s autopkgtest: DBG: sending command to testbed: revert 289s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.5GjNo9 289s autopkgtest: DBG: sending command to testbed: print-execute-command 289s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.bnnpfcd5/runcmd 289s autopkgtest: DBG: sending command to testbed: capabilities 289s autopkgtest: DBG: got reply from testbed: ok isolation-machine root-on-testbed suggested-normal-user=ubuntu ok reboot revert revert-full-system 289s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'root-on-testbed', 'suggested-normal-user=ubuntu', 'ok', 'reboot', 'revert', 'revert-full-system', 'has_internet'] 289s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.5GjNo9/wrapper.sh 289s autopkgtest: DBG: got reply from testbed: ok 289s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/wrapper.sh'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest [23:51:39]: testbed dpkg architecture: s390x 289s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [23:51:40]: testbed apt version: 2.9.28 290s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: testbed has eatmydata 290s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [23:51:40]: @@@@@@@@@@@@@@@@@@@@ test bed setup 290s 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 [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [23:51:40]: testbed release detected to be: plucky 290s 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 [] 290s autopkgtest: DBG: testbed command exited with code 0 290s 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 [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: adding APT source: Types: deb deb-src 290s URIs: http://ftpmaster.internal/ubuntu/ 290s Suites: plucky-proposed 290s Components: main restricted universe multiverse 290s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 290s 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 [] 291s autopkgtest: DBG: testbed command exited with code 0 291s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 291s Package: * 291s Pin: release plucky-proposed 291s Pin-Priority: 500 291s 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 [] 291s autopkgtest: DBG: testbed command exited with code 0 291s autopkgtest [23:51:41]: updating testbed package index (apt update) 291s 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'] 291s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 291s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 291s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 291s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 291s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 292s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 292s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 292s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 292s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 292s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 292s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 292s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 292s Fetched 2073 kB in 1s (2062 kB/s) 293s Reading package lists... 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 293s Package: * 293s Pin: release plucky-proposed 293s Pin-Priority: 100 293s 293s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 293s Pin: release plucky-proposed 293s Pin-Priority: 995 293s 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 [] 293s autopkgtest: DBG: testbed command exited with code 0 293s 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.5GjNo9/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s 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'] 293s + lsb_release --codename --short 293s + RELEASE=plucky 293s + cat 293s + [ plucky != trusty ] 293s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 293s Reading package lists... 293s Building dependency tree... 293s Reading state information... 293s Calculating upgrade... 293s The following packages were automatically installed and are no longer required: 293s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 293s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 293s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 293s linux-tools-6.11.0-8-generic 293s Use 'sudo apt autoremove' to remove them. 293s The following packages will be upgraded: 293s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 294s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 294s Need to get 1155 kB of archives. 294s After this operation, 16.4 kB of additional disk space will be used. 294s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 294s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 294s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 294s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 294s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 294s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 294s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 294s Preconfiguring packages ... 294s Fetched 1155 kB in 1s (1910 kB/s) 294s (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.) 294s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 294s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 294s Setting up dash (0.5.12-12ubuntu1) ... 294s (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.) 294s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 294s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 294s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 294s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 294s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 295s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 295s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 295s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 295s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 295s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 295s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 295s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 295s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 295s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 295s Setting up libtasn1-6:s390x (4.20.0-2) ... 295s Processing triggers for libc-bin (2.40-4ubuntu1) ... 295s Processing triggers for man-db (2.13.0-1) ... 295s Processing triggers for debianutils (5.21) ... 295s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 295s + /usr/lib/apt/apt-helper analyze-pattern ?true 295s + uname -r 295s + sed s/\./\\./g 295s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 295s + apt list ?obsolete 295s + tail -n+2 295s + grep -v ^linux-.*6\.12\.0-15-generic.* 295s + cut -d/ -f1 295s + true 295s + obsolete_pkgs= 295s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 295s Reading package lists... 296s Building dependency tree... 296s Reading state information... 296s The following packages will be REMOVED: 296s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 296s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 296s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 296s linux-tools-6.11.0-8-generic* 296s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 296s After this operation, 167 MB disk space will be freed. 296s (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.) 296s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 296s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 296s Removing libpython3.12t64:s390x (3.12.9-1) ... 296s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 296s Removing libnsl2:s390x (1.3.0-3build3) ... 296s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 296s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 296s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 297s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 297s Processing triggers for libc-bin (2.40-4ubuntu1) ... 297s (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.) 297s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 297s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 297s + grep -q trusty /etc/lsb-release 297s + [ ! -d /usr/share/doc/unattended-upgrades ] 297s + [ ! -d /usr/share/doc/lxd ] 297s + [ ! -d /usr/share/doc/lxd-client ] 297s + [ ! -d /usr/share/doc/snapd ] 297s + type iptables 297s + cat 297s + chmod 755 /etc/rc.local 297s + . /etc/rc.local 297s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 297s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 297s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 297s + uname -m 297s + [ s390x = ppc64le ] 297s + [ -d /run/systemd/system ] 297s + systemd-detect-virt --quiet --vm 297s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 297s + cat 297s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 297s + echo COMPRESS=lz4 297s autopkgtest: DBG: testbed command exited with code 0 297s autopkgtest [23:51:47]: upgrading testbed (apt dist-upgrade and autopurge) 297s 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'] 297s Reading package lists... 297s Building dependency tree... 297s Reading state information... 298s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 298s Starting 2 pkgProblemResolver with broken count: 0 298s Done 298s Entering ResolveByKeep 298s 298s The following packages will be upgraded: 298s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 298s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 298s Need to get 10.7 MB of archives. 298s After this operation, 305 kB of additional disk space will be used. 298s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 298s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 299s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 299s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 299s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 299s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 299s Preconfiguring packages ... 299s Fetched 10.7 MB in 1s (10.6 MB/s) 299s (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.) 299s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 299s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 299s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 299s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 299s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 299s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 300s Checking for services that may need to be restarted... 300s Checking init scripts... 300s Checking for services that may need to be restarted... 300s Checking init scripts... 300s Stopping some services possibly affected by the upgrade (will be restarted later): 300s cron: stopping...done. 300s 300s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Setting up libc6:s390x (2.41-1ubuntu1) ... 300s Checking for services that may need to be restarted... 300s Checking init scripts... 300s Restarting services possibly affected by the upgrade: 300s cron: restarting...done. 300s 300s Services restarted successfully. 300s (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.) 300s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 300s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Setting up libc-bin (2.41-1ubuntu1) ... 300s (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.) 300s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 300s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 300s Setting up iproute2 (6.13.0-1ubuntu1) ... 300s Setting up locales (2.41-1ubuntu1) ... 300s Installing new version of config file /etc/locale.alias ... 301s Generating locales (this might take a while)... 302s en_US.UTF-8... done 302s Generation complete. 302s Setting up libc-dev-bin (2.41-1ubuntu1) ... 302s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 302s Processing triggers for man-db (2.13.0-1) ... 302s Processing triggers for systemd (257.2-3ubuntu1) ... 303s autopkgtest: DBG: testbed command exited with code 0 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', '--purge', 'autoremove'], 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 304s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 304s autopkgtest: DBG: testbed command exited with code 0 304s 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.5GjNo9/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 304s autopkgtest: DBG: testbed command exited with code 1 304s autopkgtest [23:51:54]: rebooting testbed after setup commands that affected boot 304s autopkgtest: DBG: sending command to testbed: reboot 322s autopkgtest: DBG: got reply from testbed: ok 322s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 322s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 322s autopkgtest: DBG: testbed command exited with code 0 322s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot 322s autopkgtest: DBG: got reply from testbed: ok 322s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 322s autopkgtest: DBG: testbed command exited with code 0 322s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare 323s autopkgtest: DBG: got reply from testbed: ok 323s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5GjNo9/testbed-packages"], kind short, sout raw, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/testbed-packages /tmp/autopkgtest-work.rqpjso17/out/testbed-packages 324s autopkgtest: DBG: got reply from testbed: ok 324s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 324s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot 325s autopkgtest: DBG: got reply from testbed: ok 325s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare 326s autopkgtest: DBG: got reply from testbed: ok 326s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5GjNo9/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 326s autopkgtest: DBG: install_deps: deps_new=['libdevel-cover-perl', 'pkg-perl-autopkgtest'] 326s autopkgtest: DBG: install-deps: satisfying libdevel-cover-perl, pkg-perl-autopkgtest 326s autopkgtest: DBG: can use apt-get on testbed: True 326s 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-cover-perl, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 326s Reading package lists... 327s Building dependency tree... 327s Reading state information... 327s Starting pkgProblemResolver with broken count: 0 327s Starting 2 pkgProblemResolver with broken count: 0 327s Done 327s The following NEW packages will be installed: 327s autodep8 dctrl-tools libdevel-cover-perl libhtml-parser-perl 327s libhtml-tagset-perl liburi-perl pkg-perl-autopkgtest 327s 0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded. 327s Need to get 509 kB of archives. 327s After this operation, 1582 kB of additional disk space will be used. 327s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 327s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autodep8 all 0.28+nmu1ubuntu1 [13.7 kB] 327s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 327s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 327s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 327s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libdevel-cover-perl s390x 1.44-1build1 [174 kB] 327s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-perl-autopkgtest all 0.80 [18.7 kB] 328s Fetched 509 kB in 1s (943 kB/s) 328s Selecting previously unselected package dctrl-tools. 328s (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.) 328s Preparing to unpack .../0-dctrl-tools_2.24-3build3_s390x.deb ... 328s Unpacking dctrl-tools (2.24-3build3) ... 328s Selecting previously unselected package autodep8. 328s Preparing to unpack .../1-autodep8_0.28+nmu1ubuntu1_all.deb ... 328s Unpacking autodep8 (0.28+nmu1ubuntu1) ... 328s Selecting previously unselected package libhtml-tagset-perl. 328s Preparing to unpack .../2-libhtml-tagset-perl_3.24-1_all.deb ... 328s Unpacking libhtml-tagset-perl (3.24-1) ... 328s Selecting previously unselected package liburi-perl. 328s Preparing to unpack .../3-liburi-perl_5.30-1_all.deb ... 328s Unpacking liburi-perl (5.30-1) ... 328s Selecting previously unselected package libhtml-parser-perl:s390x. 328s Preparing to unpack .../4-libhtml-parser-perl_3.83-1build1_s390x.deb ... 328s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 328s Selecting previously unselected package libdevel-cover-perl. 328s Preparing to unpack .../5-libdevel-cover-perl_1.44-1build1_s390x.deb ... 328s Unpacking libdevel-cover-perl (1.44-1build1) ... 328s Selecting previously unselected package pkg-perl-autopkgtest. 328s Preparing to unpack .../6-pkg-perl-autopkgtest_0.80_all.deb ... 328s Unpacking pkg-perl-autopkgtest (0.80) ... 328s Setting up libhtml-tagset-perl (3.24-1) ... 328s Setting up liburi-perl (5.30-1) ... 328s Setting up dctrl-tools (2.24-3build3) ... 328s Setting up autodep8 (0.28+nmu1ubuntu1) ... 328s Setting up pkg-perl-autopkgtest (0.80) ... 328s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 328s Setting up libdevel-cover-perl (1.44-1build1) ... 328s Processing triggers for man-db (2.13.0-1) ... 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libdevel-cover-perl'], kind short, sout pipe, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5GjNo9/autodep8-perl-packages.all"], kind short, sout raw, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-packages.all /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-packages.all 329s autopkgtest: DBG: got reply from testbed: ok 329s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.5GjNo9/build.slW/src'], kind short, sout raw, serr raw, env [] 330s autopkgtest: DBG: testbed command exited with code 1 330s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5GjNo9/build.slW'], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.rqpjso17/out/tests-tree/ /tmp/autopkgtest.5GjNo9/build.slW/src/ 331s autopkgtest: DBG: got reply from testbed: ok 331s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.5GjNo9/build.slW/src'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest [23:52:21]: test autodep8-perl: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 331s autopkgtest [23:52:21]: test autodep8-perl: [----------------------- 331s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.5GjNo9/wrapper.sh --debug --artifacts=/tmp/autopkgtest.5GjNo9/autodep8-perl-artifacts --chdir=/tmp/autopkgtest.5GjNo9/build.slW/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.5GjNo9/autodep8-perl-stderr --stdout=/tmp/autopkgtest.5GjNo9/autodep8-perl-stdout --tmp=/tmp/autopkgtest.5GjNo9/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 [] 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.5GjNo9/autodep8-perl-artifacts 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: changing to directory: /tmp/autopkgtest.5GjNo9/build.slW/src 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: LANG=C.UTF-8 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LANGUAGE 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_ADDRESS 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_ALL 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_COLLATE 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_CTYPE 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_IDENTIFICATION 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MEASUREMENT 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MESSAGES 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MONETARY 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_NAME 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_NUMERIC 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_PAPER 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_TELEPHONE 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_TIME 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: pretending to be a login shell 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: will write standard error to /tmp/autopkgtest.5GjNo9/autodep8-perl-stderr 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: will write stdout to /tmp/autopkgtest.5GjNo9/autodep8-perl-stdout 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.5GjNo9/autopkgtest_tmp 331s /tmp/autopkgtest.5GjNo9/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 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner runtime-deps 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: copying /tmp/tmp.hlWtsx9crB/out to stdout and file: /tmp/autopkgtest.5GjNo9/autodep8-perl-stdout 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: copying /tmp/tmp.hlWtsx9crB/err to standard error and file: /tmp/autopkgtest.5GjNo9/autodep8-perl-stdout 331s Test skipped 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: writing script pid 1301 to /tmp/autopkgtest_script_pid 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: checking for leaked background processes... 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: waiting for tee/cat subprocesses... 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: cleaning up... 331s /tmp/autopkgtest.5GjNo9/wrapper.sh: Exit status: 77 331s autopkgtest: DBG: testbed command exited with code 77 331s autopkgtest [23:52:21]: test autodep8-perl: -----------------------] 331s autopkgtest: DBG: testbed executing test finished with exit status 77 331s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-stdout /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-stdout 331s autopkgtest: DBG: got reply from testbed: ok 331s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-stderr /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-stderr 332s autopkgtest: DBG: got reply from testbed: ok 332s autodep8-perl SKIP exit status 77 and marked as skippable 332s autopkgtest [23:52:22]: test autodep8-perl: - - - - - - - - - - results - - - - - - - - - - 332s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-artifacts/ /tmp/autopkgtest-work.rqpjso17/out/artifacts/ 332s autopkgtest: DBG: got reply from testbed: ok 332s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.5GjNo9/autodep8-perl-artifacts', '/tmp/autopkgtest.5GjNo9/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest [23:52:22]: test autodep8-perl-recommends: preparing testbed 332s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libdevel-cover-perl', 'pkg-perl-autopkgtest'], deps_new=['libdevel-cover-perl', 'pkg-perl-autopkgtest', 'gcc', 'libtemplate-perl'] 332s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 332s autopkgtest: DBG: install_deps: deps_new=['libdevel-cover-perl', 'pkg-perl-autopkgtest', 'gcc', 'libtemplate-perl'] 332s autopkgtest: DBG: install-deps: satisfying libdevel-cover-perl, pkg-perl-autopkgtest, gcc, libtemplate-perl 332s autopkgtest: DBG: can use apt-get on testbed: True 332s 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-cover-perl, pkg-perl-autopkgtest, gcc, libtemplate-perl'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 332s Reading package lists... 332s Building dependency tree... 332s Reading state information... 333s Starting pkgProblemResolver with broken count: 0 333s Starting 2 pkgProblemResolver with broken count: 0 333s Done 333s The following NEW packages will be installed: 333s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu gcc gcc-14 333s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libappconfig-perl libasan8 333s libcc1-0 libgcc-14-dev libgomp1 libisl23 libitm1 libmpc3 libtemplate-perl 333s libubsan1 333s 0 upgraded, 18 newly installed, 0 to remove and 0 not upgraded. 333s Need to get 35.6 MB of archives. 333s After this operation, 105 MB of additional disk space will be used. 333s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 333s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 333s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 334s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 334s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 334s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 334s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 334s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 334s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 334s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 334s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 334s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 334s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 335s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 335s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 335s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 335s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libappconfig-perl all 1.71-2.3 [64.8 kB] 335s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libtemplate-perl s390x 2.27-1build11 [498 kB] 335s Fetched 35.6 MB in 2s (17.2 MB/s) 335s Selecting previously unselected package libisl23:s390x. 335s (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 ... 56206 files and directories currently installed.) 335s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 335s Unpacking libisl23:s390x (0.27-1) ... 335s Selecting previously unselected package libmpc3:s390x. 335s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 335s Unpacking libmpc3:s390x (1.3.1-1build2) ... 335s Selecting previously unselected package cpp-14-s390x-linux-gnu. 335s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package cpp-14. 335s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package cpp-s390x-linux-gnu. 335s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 335s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 335s Selecting previously unselected package cpp. 335s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 335s Unpacking cpp (4:14.2.0-1ubuntu1) ... 335s Selecting previously unselected package libcc1-0:s390x. 335s Preparing to unpack .../06-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libgomp1:s390x. 335s Preparing to unpack .../07-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libitm1:s390x. 335s Preparing to unpack .../08-libitm1_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libasan8:s390x. 335s Preparing to unpack .../09-libasan8_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libubsan1:s390x. 335s Preparing to unpack .../10-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libgcc-14-dev:s390x. 335s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package gcc-14-s390x-linux-gnu. 335s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 336s Selecting previously unselected package gcc-14. 336s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 336s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 336s Selecting previously unselected package gcc-s390x-linux-gnu. 336s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 336s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 336s Selecting previously unselected package gcc. 336s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 336s Unpacking gcc (4:14.2.0-1ubuntu1) ... 336s Selecting previously unselected package libappconfig-perl. 336s Preparing to unpack .../16-libappconfig-perl_1.71-2.3_all.deb ... 336s Unpacking libappconfig-perl (1.71-2.3) ... 336s Selecting previously unselected package libtemplate-perl. 336s Preparing to unpack .../17-libtemplate-perl_2.27-1build11_s390x.deb ... 336s Unpacking libtemplate-perl (2.27-1build11) ... 336s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 336s Setting up libmpc3:s390x (1.3.1-1build2) ... 336s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 336s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 336s Setting up libisl23:s390x (0.27-1) ... 336s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 336s Setting up libappconfig-perl (1.71-2.3) ... 336s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 336s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 336s Setting up libtemplate-perl (2.27-1build11) ... 336s Setting up cpp-14 (14.2.0-17ubuntu1) ... 336s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 336s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 336s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 336s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 336s Setting up cpp (4:14.2.0-1ubuntu1) ... 336s Setting up gcc-14 (14.2.0-17ubuntu1) ... 336s Setting up gcc (4:14.2.0-1ubuntu1) ... 336s Processing triggers for man-db (2.13.0-1) ... 336s Processing triggers for libc-bin (2.41-1ubuntu1) ... 336s autopkgtest: DBG: testbed command exited with code 0 336s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libdevel-cover-perl'], kind short, sout pipe, serr pipe, env [] 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-packages.all"], kind short, sout raw, serr pipe, env [] 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-packages.all /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-recommends-packages.all 337s autopkgtest: DBG: got reply from testbed: ok 337s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.5GjNo9/build.slW/src'], kind short, sout raw, serr raw, env [] 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.5GjNo9/build.slW/src already exists 337s autopkgtest [23:52:27]: test autodep8-perl-recommends: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 337s autopkgtest [23:52:27]: test autodep8-perl-recommends: [----------------------- 337s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.5GjNo9/wrapper.sh --debug --artifacts=/tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-artifacts --chdir=/tmp/autopkgtest.5GjNo9/build.slW/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.5GjNo9/autodep8-perl-recommends-stderr --stdout=/tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stdout --tmp=/tmp/autopkgtest.5GjNo9/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 [] 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-artifacts 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: changing to directory: /tmp/autopkgtest.5GjNo9/build.slW/src 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: setting environment: LANG=C.UTF-8 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LANGUAGE 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_ADDRESS 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_ALL 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_COLLATE 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_CTYPE 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_IDENTIFICATION 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MEASUREMENT 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MESSAGES 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_MONETARY 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_NAME 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_NUMERIC 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_PAPER 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_TELEPHONE 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: unsetting environment: LC_TIME 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: pretending to be a login shell 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: will write standard error to /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stderr 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: will write stdout to /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stdout 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.5GjNo9/autopkgtest_tmp 337s /tmp/autopkgtest.5GjNo9/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 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: copying /tmp/tmp.YxiZyHFNCY/out to stdout and file: /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stdout 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: copying /tmp/tmp.YxiZyHFNCY/err to standard error and file: /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stdout 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: writing script pid 1654 to /tmp/autopkgtest_script_pid 337s /usr/share/pkg-perl-autopkgtest/runtime-deps-and-recommends.d/syntax.t .. 337s 1..4 337s ok 1 - Package libdevel-cover-perl is known to dpkg 337s ok 2 - Got status information for package libdevel-cover-perl 337s ok 3 # skip libdevel-cover-perl has Suggestions and no explicit skip list 337s ok 4 # skip libdevel-cover-perl has Suggestions and no explicit skip list 337s ok 337s All tests successful. 337s Files=1, Tests=4, 0 wallclock secs ( 0.01 usr 0.00 sys + 0.04 cusr 0.00 csys = 0.05 CPU) 337s Result: PASS 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: checking for leaked background processes... 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: waiting for tee/cat subprocesses... 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: cleaning up... 337s /tmp/autopkgtest.5GjNo9/wrapper.sh: Exit status: 0 337s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest [23:52:28]: test autodep8-perl-recommends: -----------------------] 338s autopkgtest: DBG: testbed executing test finished with exit status 0 338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stdout /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-recommends-stdout 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-stderr /tmp/autopkgtest-work.rqpjso17/out/autodep8-perl-recommends-stderr 338s autopkgtest: DBG: got reply from testbed: ok 338s autodep8-perl-recommends PASS (superficial) 338s autopkgtest [23:52:28]: test autodep8-perl-recommends: - - - - - - - - - - results - - - - - - - - - - 338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-artifacts/ /tmp/autopkgtest-work.rqpjso17/out/artifacts/ 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.5GjNo9/autodep8-perl-recommends-artifacts', '/tmp/autopkgtest.5GjNo9/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 338s autopkgtest [23:52:28]: @@@@@@@@@@@@@@@@@@@@ summary 338s autodep8-perl-build-deps PASS 338s autodep8-perl SKIP exit status 77 and marked as skippable 338s autodep8-perl-recommends PASS (superficial) 338s autopkgtest: DBG: testbed stop 338s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.5GjNo9 338s autopkgtest: DBG: sending command to testbed: close 356s autopkgtest: DBG: got reply from testbed: ok 356s autopkgtest: DBG: sending command to testbed: quit 356s nova [W] Using flock in prodstack6-s390x 356s Creating nova instance adt-plucky-s390x-libdevel-cover-perl-20250215-234650-juju-7f2275-prod-proposed-migration-environment-15-56bb4fc4-5592-4e0e-93bd-f3d0e052ed49 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 356s nova [W] Timed out waiting for 81163d6b-583a-4993-8781-61554ddbe623 to get deleted. 356s nova [W] Using flock in prodstack6-s390x 356s Creating nova instance adt-plucky-s390x-libdevel-cover-perl-20250215-234650-juju-7f2275-prod-proposed-migration-environment-15-56bb4fc4-5592-4e0e-93bd-f3d0e052ed49 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 356s nova [W] Timed out waiting for f8a39ad3-da6d-4e99-b00c-301a26a834f5 to get deleted.