0s autopkgtest: DBG: testbed init 0s autopkgtest [01:55:38]: starting date and time: 2025-02-16 01:55:38+0000 0s autopkgtest [01:55:38]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:55:38]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.yb0h35s8/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 python-coverage --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-12.secgroup --name adt-plucky-s390x-python-coverage-20250216-015538-juju-7f2275-prod-proposed-migration-environment-15-8ea7ae85-f6cd-4cd3-b788-04358cbd0fb0 --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 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Dl2imB 96s autopkgtest: DBG: sending command to testbed: print-execute-command 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.us5l86wm/runcmd 96s autopkgtest: DBG: sending command to testbed: capabilities 96s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system reboot revert isolation-machine root-on-testbed 96s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'isolation-machine', 'root-on-testbed', 'has_internet'] 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Dl2imB/wrapper.sh 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/wrapper.sh'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:57:15]: testbed dpkg architecture: s390x 97s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:57:15]: testbed apt version: 2.9.28 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed has eatmydata 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:57:15]: @@@@@@@@@@@@@@@@@@@@ test bed setup 97s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [01:57:16]: testbed release detected to be: None 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT source: Types: deb deb-src 98s URIs: http://ftpmaster.internal/ubuntu/ 98s Suites: plucky-proposed 98s Components: main restricted universe multiverse 98s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 98s Package: * 98s Pin: release plucky-proposed 98s Pin-Priority: 500 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [01:57:16]: updating testbed package index (apt update) 98s 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'] 99s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 99s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 99s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 99s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 99s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 99s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 99s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 99s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 99s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 99s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 99s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 99s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 99s Fetched 2083 kB in 1s (2017 kB/s) 100s Reading package lists... 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 100s Package: * 100s Pin: release plucky-proposed 100s Pin-Priority: 100 100s 100s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 100s Pin: release plucky-proposed 100s Pin-Priority: 995 100s 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 [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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.Dl2imB/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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'] 101s + lsb_release --codename --short 101s + RELEASE=plucky 101s + cat 101s + [ plucky != trusty ] 101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s Calculating upgrade... 101s The following packages were automatically installed and are no longer required: 101s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 101s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 101s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 101s linux-tools-6.11.0-8-generic 101s Use 'sudo apt autoremove' to remove them. 101s The following packages will be upgraded: 101s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 101s libxdmcp6 101s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 101s Need to get 1471 kB of archives. 101s After this operation, 24.6 kB of additional disk space will be used. 101s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 102s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 102s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 102s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 102s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 102s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 102s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 102s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 102s Preconfiguring packages ... 102s Fetched 1471 kB in 1s (2412 kB/s) 102s (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.) 102s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 102s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 102s Setting up dash (0.5.12-12ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 103s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 103s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 103s (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.) 103s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 103s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 103s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 103s (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.) 103s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 103s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 103s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 103s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 103s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 103s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 103s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 103s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 103s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 103s Setting up libtasn1-6:s390x (4.20.0-2) ... 103s Processing triggers for libc-bin (2.40-4ubuntu1) ... 103s Processing triggers for man-db (2.13.0-1) ... 103s Processing triggers for debianutils (5.21) ... 103s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 103s + /usr/lib/apt/apt-helper analyze-pattern ?true 103s + uname -r 103s + sed s/\./\\./g 103s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 103s + apt list ?obsolete 103s + tail -n+2 103s + grep -v ^linux-.*6\.12\.0-15-generic.* 103s + cut -d/ -f1 104s + true 104s + obsolete_pkgs= 104s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 104s Reading package lists... 104s Building dependency tree... 104s Reading state information... 104s The following packages will be REMOVED: 104s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 104s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 104s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 104s linux-tools-6.11.0-8-generic* 104s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 104s After this operation, 167 MB disk space will be freed. 104s (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.) 104s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 104s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 104s Removing libpython3.12t64:s390x (3.12.9-1) ... 104s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 104s Removing libnsl2:s390x (1.3.0-3build3) ... 104s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 104s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 104s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 105s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 106s Processing triggers for libc-bin (2.40-4ubuntu1) ... 106s (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.) 106s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 106s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 106s + grep -q trusty /etc/lsb-release 106s + [ ! -d /usr/share/doc/unattended-upgrades ] 106s + [ ! -d /usr/share/doc/lxd ] 106s + [ ! -d /usr/share/doc/lxd-client ] 106s + [ ! -d /usr/share/doc/snapd ] 106s + type iptables 106s + cat 106s + chmod 755 /etc/rc.local 106s + . /etc/rc.local 106s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 106s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 106s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 106s + uname -m 106s + [ s390x = ppc64le ] 106s + [ -d /run/systemd/system ] 106s + systemd-detect-virt --quiet --vm 106s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 106s + cat 106s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 106s + echo COMPRESS=lz4 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [01:57:24]: upgrading testbed (apt dist-upgrade and autopurge) 106s 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'] 106s Reading package lists... 106s Building dependency tree... 106s Reading state information... 106s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 106s Starting 2 pkgProblemResolver with broken count: 0 106s Done 107s Entering ResolveByKeep 107s 107s The following packages will be upgraded: 107s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 107s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 107s Need to get 10.7 MB of archives. 107s After this operation, 305 kB of additional disk space will be used. 107s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 107s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 107s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 108s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 108s Preconfiguring packages ... 108s Fetched 10.7 MB in 1s (12.0 MB/s) 108s (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.) 108s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 108s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 108s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 108s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 108s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 108s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 108s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 108s Checking for services that may need to be restarted... 108s Checking init scripts... 108s Checking for services that may need to be restarted... 108s Checking init scripts... 108s Stopping some services possibly affected by the upgrade (will be restarted later): 108s cron: stopping...done. 108s 108s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 109s Setting up libc6:s390x (2.41-1ubuntu1) ... 109s Checking for services that may need to be restarted... 109s Checking init scripts... 109s Restarting services possibly affected by the upgrade: 109s cron: restarting...done. 109s 109s Services restarted successfully. 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 ... 55868 files and directories currently installed.) 109s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 109s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 109s Setting up libc-bin (2.41-1ubuntu1) ... 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 ... 55868 files and directories currently installed.) 109s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 109s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 109s Setting up iproute2 (6.13.0-1ubuntu1) ... 109s Setting up locales (2.41-1ubuntu1) ... 109s Installing new version of config file /etc/locale.alias ... 109s Generating locales (this might take a while)... 111s en_US.UTF-8... done 111s Generation complete. 111s Setting up libc-dev-bin (2.41-1ubuntu1) ... 111s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 111s Processing triggers for man-db (2.13.0-1) ... 112s Processing triggers for systemd (257.2-3ubuntu1) ... 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 112s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s Starting pkgProblemResolver with broken count: 0 113s Starting 2 pkgProblemResolver with broken count: 0 113s Done 113s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s autopkgtest: DBG: testbed command exited with code 0 113s 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.Dl2imB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 113s autopkgtest: DBG: testbed command exited with code 1 113s autopkgtest [01:57:31]: rebooting testbed after setup commands that affected boot 113s autopkgtest: DBG: sending command to testbed: reboot 130s autopkgtest: DBG: got reply from testbed: ok 130s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest [01:57:50]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 132s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/testbed-packages"], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/testbed-packages /tmp/autopkgtest-work.yb0h35s8/out/testbed-packages 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 133s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: Binaries: initialising 134s autopkgtest [01:57:52]: @@@@@@@@@@@@@@@@@@@@ apt-source python-coverage 134s autopkgtest: DBG: blame += python-coverage 134s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 134s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-coverage'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-coverage$'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-coverage=7.4.4+dfsg1-0ubuntu3'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-coverage-doc$'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-coverage-doc=7.4.4+dfsg1-0ubuntu3'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: install_deps: deps_new=[] 136s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s 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.Dl2imB/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-coverage=7.4.4+dfsg1-0ubuntu3 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 python-coverage_*.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'] 136s + cd / 136s + mktemp -d /tmp/autopkgtest.Dl2imB/build.XXX 136s + builddir=/tmp/autopkgtest.Dl2imB/build.LsM 136s + cd /tmp/autopkgtest.Dl2imB/build.LsM 136s + apt-get source -d -q --only-source python-coverage=7.4.4+dfsg1-0ubuntu3 136s + OUT=Reading package lists... 136s NOTICE: 'python-coverage' packaging is maintained in the 'Git' version control system at: 136s https://salsa.debian.org/debian/pkg-python-coverage.git 136s Please use: 136s git clone https://salsa.debian.org/debian/pkg-python-coverage.git 136s to retrieve the latest (possibly unreleased) updates to the package. 136s Need to get 805 kB of source archives. 136s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (dsc) [2412 B] 136s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (tar) [781 kB] 136s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (diff) [21.6 kB] 136s Fetched 805 kB in 1s (1477 kB/s) 136s Download complete and in download only mode 136s + [ -n ] 136s + echo Reading package lists... 136s NOTICE: 'python-coverage' packaging is maintained in the 'Git' version control system at: 136s https://salsa.debian.org/debian/pkg-python-coverage.git 136s Please use: 136s git clone https://salsa.debian.org/debian/pkg-python-coverage.git 136s to retrieve the latest (possibly unreleased) updates to the package. 136s Need to get 805 kB of source archives. 136s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (dsc) [2412 B] 136s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (tar) [781 kB] 136s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (diff) [21.6 kB] 136s Fetched 805 kB in 1s (1477 kB/s) 136s Download complete and in download only mode 136s + grep ^Get: 136s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (dsc) [2412 B] 136s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (tar) [781 kB] 136s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-coverage 7.4.4+dfsg1-0ubuntu3 (diff) [21.6 kB] 136s + dpkg-source -x python-coverage_7.4.4+dfsg1-0ubuntu3.dsc src 137s gpgv: Signature made Wed Nov 13 08:57:20 2024 UTC 137s gpgv: using RSA key 568BF22A66337CBFC9A6B9B72C83DBC8E9BD0E37 137s gpgv: Can't check signature: No public key 137s dpkg-source: warning: cannot verify inline signature for ./python-coverage_7.4.4+dfsg1-0ubuntu3.dsc: no acceptable signature found 137s + chmod -R a+rX . 137s + cd src/. 137s + pwd 137s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [01:57:55]: testing package python-coverage version 7.4.4+dfsg1-0ubuntu3 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/ /tmp/autopkgtest-work.yb0h35s8/out/pkg/debian/ 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: processing dependency python3-package-smoke-test 138s autopkgtest: DBG: processing dependency python3-all 138s autopkgtest: DBG: processing dependency @ 138s autopkgtest: DBG: synthesised dependency python3-coverage 138s autopkgtest: DBG: synthesised dependency python-coverage-doc 138s autopkgtest: DBG: Test defined: name smoke-python3 path debian/tests/smoke-python3 command "None" restrictions ['superficial'] features [] depends ['python3-package-smoke-test', 'python3-all', 'python3-coverage', 'python-coverage-doc'] 138s autopkgtest: DBG: processing dependency python-coverage-doc 138s autopkgtest: DBG: marked alternatives ['python-coverage-doc'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency w3m 138s autopkgtest: DBG: Test defined: name command1 path None command " w3m -dump /usr/share/doc/python-coverage-doc/html/index.html > /dev/null" restrictions ['build-needed', 'superficial'] features [] depends ['python-coverage-doc', 'w3m'] 138s autopkgtest: DBG: processing dependency python-coverage-doc 138s autopkgtest: DBG: marked alternatives ['python-coverage-doc'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency file 138s autopkgtest: DBG: Test defined: name command2 path None command " file --brief /usr/share/doc/python-coverage-doc/html/index.html | grep -q 'HTML document'" restrictions ['build-needed', 'superficial'] features [] depends ['python-coverage-doc', 'file'] 138s autopkgtest: DBG: processing dependency python3-all 138s autopkgtest: DBG: processing dependency @ 138s autopkgtest: DBG: synthesised dependency python3-coverage 138s autopkgtest: DBG: synthesised dependency python-coverage-doc 138s autopkgtest: DBG: Test defined: name entry-point-scripts path debian/tests/entry-point-scripts command "None" restrictions [] features [] depends ['python3-all', 'python3-coverage', 'python-coverage-doc'] 138s autopkgtest: DBG: processing dependency python3-all 138s autopkgtest: DBG: processing dependency @ 138s autopkgtest: DBG: synthesised dependency python3-coverage 138s autopkgtest: DBG: synthesised dependency python-coverage-doc 138s autopkgtest: DBG: Test defined: name module-scripts path debian/tests/module-scripts command "None" restrictions [] features [] depends ['python3-all', 'python3-coverage', 'python-coverage-doc'] 138s autopkgtest [01:57:56]: build needed for tests 138s autopkgtest: DBG: needs_reset, previously=False, requested by build_source() line 763 138s autopkgtest: DBG: testbed command ['apt-get', '-q', '--simulate', 'build-dep', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout pipe, serr pipe, 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', 'DEB_BUILD_PROFILES=nocheck noudeb'] 139s autopkgtest: DBG: testbed command exited with code 0 139s 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', 'build-dep', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind install, sout raw, serr pipe, 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', 'DEB_BUILD_PROFILES=nocheck noudeb', 'DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 139s Note, using directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' to get the build dependencies 139s Reading package lists... 139s Building dependency tree... 139s Reading state information... 139s Starting pkgProblemResolver with broken count: 0 140s Starting 2 pkgProblemResolver with broken count: 0 140s Done 140s The following NEW packages will be installed: 140s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 140s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 140s dh-python dh-strip-nondeterminism dictionaries-common docutils-common dwz 140s emacsen-common fonts-font-awesome fonts-lato g++ g++-14 140s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 140s gcc-s390x-linux-gnu gettext hunspell-en-us intltool-debian 140s libarchive-zip-perl libasan8 libaspell15 libcc1-0 libdebhelper-perl 140s libenchant-2-2 libexpat1-dev libfile-stripnondeterminism-perl libgcc-14-dev 140s libgomp1 libhunspell-1.7-0 libisl23 libitm1 libjs-jquery libjs-sphinxdoc 140s libjs-underscore libjson-perl libmpc3 libnsl2 libpython3-all-dev 140s libpython3-dev libpython3.12-dev libpython3.12-minimal libpython3.12-stdlib 140s libpython3.12t64 libpython3.13-dev libstdc++-14-dev libtool libubsan1 m4 140s po-debconf python3-alabaster python3-all python3-all-dev python3-defusedxml 140s python3-dev python3-docutils python3-enchant python3-imagesize 140s python3-importlib-metadata python3-packaging python3-roman 140s python3-snowballstemmer python3-sphinx python3-sphinx-rtd-theme 140s python3-sphinx-tabs python3-sphinxcontrib.jquery 140s python3-sphinxcontrib.restbuilder python3-sphinxcontrib.spelling python3.12 140s python3.12-dev python3.12-minimal python3.13-dev sgml-base sphinx-common 140s sphinx-rtd-theme-common xml-core zlib1g-dev 140s 0 upgraded, 89 newly installed, 0 to remove and 0 not upgraded. 140s Need to get 83.9 MB of archives. 140s After this operation, 294 MB of additional disk space will be used. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 141s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 141s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 141s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 141s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 141s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 141s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 141s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 141s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 141s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 141s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 141s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 141s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 141s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 141s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 141s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 141s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 141s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 141s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 141s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 141s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 141s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 141s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 141s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 141s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 141s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 141s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 142s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 142s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 142s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 142s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 142s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 142s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 142s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 142s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 142s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 142s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 142s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 142s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 142s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 142s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 142s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 142s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 142s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 142s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 142s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x emacsen-common all 3.0.5 [12.1 kB] 142s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x dictionaries-common all 1.30.4 [176 kB] 142s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 142s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 142s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 142s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x hunspell-en-us all 1:2020.12.07-3 [586 kB] 142s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libaspell15 s390x 0.60.8.1-3 [355 kB] 142s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libhunspell-1.7-0 s390x 1.7.2+really1.7.2-10build3 [304 kB] 142s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libenchant-2-2 s390x 2.8.2+dfsg1-3 [61.2 kB] 142s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 142s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 142s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 142s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 142s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 142s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 142s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 142s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 142s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 142s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-dev s390x 3.12.9-1 [5849 kB] 143s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-all-dev s390x 3.13.1-1~exp2 [922 B] 143s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 143s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 143s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 143s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-dev s390x 3.12.9-1 [504 kB] 143s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all-dev s390x 3.13.1-1~exp2 [918 B] 143s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 143s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 143s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 143s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-enchant all 3.3.0~rc1-1 [35.1 kB] 143s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 143s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 143s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 143s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 143s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-common all 8.1.3-4 [663 kB] 143s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 143s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sphinx all 8.1.3-4 [474 kB] 143s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 143s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.jquery all 4.1-5 [6678 B] 143s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-rtd-theme all 3.0.2+dfsg-2 [23.5 kB] 143s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-tabs all 3.4.7-1 [11.4 kB] 143s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.restbuilder all 0.3-4 [11.6 kB] 143s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.spelling all 7.7.0-1 [12.9 kB] 143s Preconfiguring packages ... 143s Fetched 83.9 MB in 3s (26.6 MB/s) 143s Selecting previously unselected package libpython3.12-minimal:s390x. 144s (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.) 144s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 144s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 144s Selecting previously unselected package python3.12-minimal. 144s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 144s Unpacking python3.12-minimal (3.12.9-1) ... 144s Selecting previously unselected package fonts-lato. 144s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 144s Unpacking fonts-lato (2.015-1) ... 144s Selecting previously unselected package sgml-base. 144s Preparing to unpack .../03-sgml-base_1.31_all.deb ... 144s Unpacking sgml-base (1.31) ... 144s Selecting previously unselected package libnsl2:s390x. 144s Preparing to unpack .../04-libnsl2_1.3.0-3build3_s390x.deb ... 144s Unpacking libnsl2:s390x (1.3.0-3build3) ... 144s Selecting previously unselected package libpython3.12-stdlib:s390x. 144s Preparing to unpack .../05-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 144s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 144s Selecting previously unselected package python3.12. 144s Preparing to unpack .../06-python3.12_3.12.9-1_s390x.deb ... 144s Unpacking python3.12 (3.12.9-1) ... 144s Selecting previously unselected package m4. 144s Preparing to unpack .../07-m4_1.4.19-5_s390x.deb ... 144s Unpacking m4 (1.4.19-5) ... 144s Selecting previously unselected package autoconf. 144s Preparing to unpack .../08-autoconf_2.72-3_all.deb ... 144s Unpacking autoconf (2.72-3) ... 144s Selecting previously unselected package autotools-dev. 144s Preparing to unpack .../09-autotools-dev_20220109.1_all.deb ... 144s Unpacking autotools-dev (20220109.1) ... 144s Selecting previously unselected package automake. 144s Preparing to unpack .../10-automake_1%3a1.17-3_all.deb ... 144s Unpacking automake (1:1.17-3) ... 144s Selecting previously unselected package autopoint. 144s Preparing to unpack .../11-autopoint_0.23.1-1_all.deb ... 144s Unpacking autopoint (0.23.1-1) ... 144s Selecting previously unselected package libisl23:s390x. 144s Preparing to unpack .../12-libisl23_0.27-1_s390x.deb ... 144s Unpacking libisl23:s390x (0.27-1) ... 144s Selecting previously unselected package libmpc3:s390x. 144s Preparing to unpack .../13-libmpc3_1.3.1-1build2_s390x.deb ... 144s Unpacking libmpc3:s390x (1.3.1-1build2) ... 144s Selecting previously unselected package cpp-14-s390x-linux-gnu. 144s Preparing to unpack .../14-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package cpp-14. 144s Preparing to unpack .../15-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package cpp-s390x-linux-gnu. 144s Preparing to unpack .../16-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 144s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 144s Selecting previously unselected package cpp. 144s Preparing to unpack .../17-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 144s Unpacking cpp (4:14.2.0-1ubuntu1) ... 144s Selecting previously unselected package libcc1-0:s390x. 144s Preparing to unpack .../18-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libgomp1:s390x. 144s Preparing to unpack .../19-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libitm1:s390x. 144s Preparing to unpack .../20-libitm1_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libasan8:s390x. 144s Preparing to unpack .../21-libasan8_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libubsan1:s390x. 144s Preparing to unpack .../22-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libgcc-14-dev:s390x. 144s Preparing to unpack .../23-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package gcc-14-s390x-linux-gnu. 144s Preparing to unpack .../24-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-14. 145s Preparing to unpack .../25-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-s390x-linux-gnu. 145s Preparing to unpack .../26-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package gcc. 145s Preparing to unpack .../27-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking gcc (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package libstdc++-14-dev:s390x. 145s Preparing to unpack .../28-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package g++-14-s390x-linux-gnu. 145s Preparing to unpack .../29-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package g++-14. 145s Preparing to unpack .../30-g++-14_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking g++-14 (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package g++-s390x-linux-gnu. 145s Preparing to unpack .../31-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package g++. 145s Preparing to unpack .../32-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking g++ (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package build-essential. 145s Preparing to unpack .../33-build-essential_12.10ubuntu1_s390x.deb ... 145s Unpacking build-essential (12.10ubuntu1) ... 145s Selecting previously unselected package libdebhelper-perl. 145s Preparing to unpack .../34-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 145s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 145s Selecting previously unselected package libtool. 145s Preparing to unpack .../35-libtool_2.5.4-3build1_all.deb ... 145s Unpacking libtool (2.5.4-3build1) ... 145s Selecting previously unselected package dh-autoreconf. 145s Preparing to unpack .../36-dh-autoreconf_20_all.deb ... 145s Unpacking dh-autoreconf (20) ... 145s Selecting previously unselected package libarchive-zip-perl. 145s Preparing to unpack .../37-libarchive-zip-perl_1.68-1_all.deb ... 145s Unpacking libarchive-zip-perl (1.68-1) ... 145s Selecting previously unselected package libfile-stripnondeterminism-perl. 145s Preparing to unpack .../38-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 145s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 145s Selecting previously unselected package dh-strip-nondeterminism. 145s Preparing to unpack .../39-dh-strip-nondeterminism_1.14.1-2_all.deb ... 145s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 145s Selecting previously unselected package debugedit. 145s Preparing to unpack .../40-debugedit_1%3a5.1-2_s390x.deb ... 145s Unpacking debugedit (1:5.1-2) ... 145s Selecting previously unselected package dwz. 145s Preparing to unpack .../41-dwz_0.15-1build6_s390x.deb ... 145s Unpacking dwz (0.15-1build6) ... 145s Selecting previously unselected package gettext. 145s Preparing to unpack .../42-gettext_0.23.1-1_s390x.deb ... 145s Unpacking gettext (0.23.1-1) ... 145s Selecting previously unselected package intltool-debian. 145s Preparing to unpack .../43-intltool-debian_0.35.0+20060710.6_all.deb ... 145s Unpacking intltool-debian (0.35.0+20060710.6) ... 145s Selecting previously unselected package po-debconf. 145s Preparing to unpack .../44-po-debconf_1.0.21+nmu1_all.deb ... 145s Unpacking po-debconf (1.0.21+nmu1) ... 145s Selecting previously unselected package debhelper. 145s Preparing to unpack .../45-debhelper_13.24.1ubuntu2_all.deb ... 145s Unpacking debhelper (13.24.1ubuntu2) ... 145s Selecting previously unselected package dh-python. 145s Preparing to unpack .../46-dh-python_6.20250108_all.deb ... 145s Unpacking dh-python (6.20250108) ... 145s Selecting previously unselected package emacsen-common. 145s Preparing to unpack .../47-emacsen-common_3.0.5_all.deb ... 145s Unpacking emacsen-common (3.0.5) ... 145s Selecting previously unselected package dictionaries-common. 145s Preparing to unpack .../48-dictionaries-common_1.30.4_all.deb ... 145s Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common' 145s Unpacking dictionaries-common (1.30.4) ... 145s Selecting previously unselected package xml-core. 145s Preparing to unpack .../49-xml-core_0.19_all.deb ... 145s Unpacking xml-core (0.19) ... 145s Selecting previously unselected package docutils-common. 145s Preparing to unpack .../50-docutils-common_0.21.2+dfsg-2_all.deb ... 145s Unpacking docutils-common (0.21.2+dfsg-2) ... 145s Selecting previously unselected package fonts-font-awesome. 145s Preparing to unpack .../51-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 145s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 145s Selecting previously unselected package hunspell-en-us. 145s Preparing to unpack .../52-hunspell-en-us_1%3a2020.12.07-3_all.deb ... 145s Unpacking hunspell-en-us (1:2020.12.07-3) ... 145s Selecting previously unselected package libaspell15:s390x. 145s Preparing to unpack .../53-libaspell15_0.60.8.1-3_s390x.deb ... 145s Unpacking libaspell15:s390x (0.60.8.1-3) ... 145s Selecting previously unselected package libhunspell-1.7-0:s390x. 145s Preparing to unpack .../54-libhunspell-1.7-0_1.7.2+really1.7.2-10build3_s390x.deb ... 145s Unpacking libhunspell-1.7-0:s390x (1.7.2+really1.7.2-10build3) ... 145s Selecting previously unselected package libenchant-2-2:s390x. 145s Preparing to unpack .../55-libenchant-2-2_2.8.2+dfsg1-3_s390x.deb ... 145s Unpacking libenchant-2-2:s390x (2.8.2+dfsg1-3) ... 145s Selecting previously unselected package libexpat1-dev:s390x. 145s Preparing to unpack .../56-libexpat1-dev_2.6.4-1_s390x.deb ... 145s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 145s Selecting previously unselected package libjs-jquery. 145s Preparing to unpack .../57-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 145s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 145s Selecting previously unselected package libjs-underscore. 145s Preparing to unpack .../58-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 145s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 145s Selecting previously unselected package libjs-sphinxdoc. 145s Preparing to unpack .../59-libjs-sphinxdoc_8.1.3-4_all.deb ... 145s Unpacking libjs-sphinxdoc (8.1.3-4) ... 145s Selecting previously unselected package libjson-perl. 145s Preparing to unpack .../60-libjson-perl_4.10000-1_all.deb ... 145s Unpacking libjson-perl (4.10000-1) ... 145s Selecting previously unselected package zlib1g-dev:s390x. 145s Preparing to unpack .../61-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 145s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 146s Selecting previously unselected package libpython3.13-dev:s390x. 146s Preparing to unpack .../62-libpython3.13-dev_3.13.2-1_s390x.deb ... 146s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 146s Selecting previously unselected package libpython3-dev:s390x. 146s Preparing to unpack .../63-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 146s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 146s Selecting previously unselected package libpython3.12t64:s390x. 146s Preparing to unpack .../64-libpython3.12t64_3.12.9-1_s390x.deb ... 146s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 146s Selecting previously unselected package libpython3.12-dev:s390x. 146s Preparing to unpack .../65-libpython3.12-dev_3.12.9-1_s390x.deb ... 146s Unpacking libpython3.12-dev:s390x (3.12.9-1) ... 146s Selecting previously unselected package libpython3-all-dev:s390x. 146s Preparing to unpack .../66-libpython3-all-dev_3.13.1-1~exp2_s390x.deb ... 146s Unpacking libpython3-all-dev:s390x (3.13.1-1~exp2) ... 146s Selecting previously unselected package python3-all. 146s Preparing to unpack .../67-python3-all_3.13.1-1~exp2_s390x.deb ... 146s Unpacking python3-all (3.13.1-1~exp2) ... 146s Selecting previously unselected package python3.13-dev. 146s Preparing to unpack .../68-python3.13-dev_3.13.2-1_s390x.deb ... 146s Unpacking python3.13-dev (3.13.2-1) ... 146s Selecting previously unselected package python3-dev. 146s Preparing to unpack .../69-python3-dev_3.13.1-1~exp2_s390x.deb ... 146s Unpacking python3-dev (3.13.1-1~exp2) ... 146s Selecting previously unselected package python3.12-dev. 146s Preparing to unpack .../70-python3.12-dev_3.12.9-1_s390x.deb ... 146s Unpacking python3.12-dev (3.12.9-1) ... 146s Selecting previously unselected package python3-all-dev. 146s Preparing to unpack .../71-python3-all-dev_3.13.1-1~exp2_s390x.deb ... 146s Unpacking python3-all-dev (3.13.1-1~exp2) ... 146s Selecting previously unselected package python3-defusedxml. 146s Preparing to unpack .../72-python3-defusedxml_0.7.1-3_all.deb ... 146s Unpacking python3-defusedxml (0.7.1-3) ... 146s Selecting previously unselected package python3-roman. 146s Preparing to unpack .../73-python3-roman_5.0-1_all.deb ... 146s Unpacking python3-roman (5.0-1) ... 146s Selecting previously unselected package python3-docutils. 146s Preparing to unpack .../74-python3-docutils_0.21.2+dfsg-2_all.deb ... 146s Unpacking python3-docutils (0.21.2+dfsg-2) ... 146s Selecting previously unselected package python3-enchant. 146s Preparing to unpack .../75-python3-enchant_3.3.0~rc1-1_all.deb ... 146s Unpacking python3-enchant (3.3.0~rc1-1) ... 146s Selecting previously unselected package python3-imagesize. 146s Preparing to unpack .../76-python3-imagesize_1.4.1-1_all.deb ... 146s Unpacking python3-imagesize (1.4.1-1) ... 146s Selecting previously unselected package python3-importlib-metadata. 146s Preparing to unpack .../77-python3-importlib-metadata_8.6.1-1_all.deb ... 146s Unpacking python3-importlib-metadata (8.6.1-1) ... 146s Selecting previously unselected package python3-packaging. 146s Preparing to unpack .../78-python3-packaging_24.2-1_all.deb ... 146s Unpacking python3-packaging (24.2-1) ... 146s Selecting previously unselected package python3-snowballstemmer. 146s Preparing to unpack .../79-python3-snowballstemmer_2.2.0-4build1_all.deb ... 146s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 146s Selecting previously unselected package sphinx-common. 146s Preparing to unpack .../80-sphinx-common_8.1.3-4_all.deb ... 146s Unpacking sphinx-common (8.1.3-4) ... 146s Selecting previously unselected package python3-alabaster. 146s Preparing to unpack .../81-python3-alabaster_0.7.16-0.1_all.deb ... 146s Unpacking python3-alabaster (0.7.16-0.1) ... 146s Selecting previously unselected package python3-sphinx. 146s Preparing to unpack .../82-python3-sphinx_8.1.3-4_all.deb ... 146s Unpacking python3-sphinx (8.1.3-4) ... 146s Selecting previously unselected package sphinx-rtd-theme-common. 146s Preparing to unpack .../83-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 146s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 146s Selecting previously unselected package python3-sphinxcontrib.jquery. 146s Preparing to unpack .../84-python3-sphinxcontrib.jquery_4.1-5_all.deb ... 146s Unpacking python3-sphinxcontrib.jquery (4.1-5) ... 146s Selecting previously unselected package python3-sphinx-rtd-theme. 146s Preparing to unpack .../85-python3-sphinx-rtd-theme_3.0.2+dfsg-2_all.deb ... 146s Unpacking python3-sphinx-rtd-theme (3.0.2+dfsg-2) ... 146s Selecting previously unselected package python3-sphinx-tabs. 146s Preparing to unpack .../86-python3-sphinx-tabs_3.4.7-1_all.deb ... 146s Unpacking python3-sphinx-tabs (3.4.7-1) ... 146s Selecting previously unselected package python3-sphinxcontrib.restbuilder. 146s Preparing to unpack .../87-python3-sphinxcontrib.restbuilder_0.3-4_all.deb ... 146s Unpacking python3-sphinxcontrib.restbuilder (0.3-4) ... 146s Selecting previously unselected package python3-sphinxcontrib.spelling. 146s Preparing to unpack .../88-python3-sphinxcontrib.spelling_7.7.0-1_all.deb ... 146s Unpacking python3-sphinxcontrib.spelling (7.7.0-1) ... 146s Setting up dh-python (6.20250108) ... 146s Setting up fonts-lato (2.015-1) ... 146s Setting up python3-importlib-metadata (8.6.1-1) ... 147s Setting up python3-defusedxml (0.7.1-3) ... 147s Setting up libarchive-zip-perl (1.68-1) ... 147s Setting up libaspell15:s390x (0.60.8.1-3) ... 147s Setting up python3-alabaster (0.7.16-0.1) ... 147s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 147s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 147s Setting up m4 (1.4.19-5) ... 147s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 147s Setting up python3-roman (5.0-1) ... 147s Setting up autotools-dev (20220109.1) ... 147s Setting up python3-packaging (24.2-1) ... 147s Setting up libexpat1-dev:s390x (2.6.4-1) ... 147s Setting up emacsen-common (3.0.5) ... 147s Setting up python3-snowballstemmer (2.2.0-4build1) ... 148s Setting up libmpc3:s390x (1.3.1-1build2) ... 148s Setting up autopoint (0.23.1-1) ... 148s Setting up autoconf (2.72-3) ... 148s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 148s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 148s Setting up dwz (0.15-1build6) ... 148s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 148s Setting up libjson-perl (4.10000-1) ... 148s Setting up libnsl2:s390x (1.3.0-3build3) ... 148s Setting up debugedit (1:5.1-2) ... 148s Setting up sgml-base (1.31) ... 148s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 148s Setting up libhunspell-1.7-0:s390x (1.7.2+really1.7.2-10build3) ... 148s Setting up libisl23:s390x (0.27-1) ... 148s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 148s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 148s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 148s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 148s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 148s Setting up python3-imagesize (1.4.1-1) ... 148s Setting up automake (1:1.17-3) ... 148s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 148s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 148s Setting up python3.12-minimal (3.12.9-1) ... 149s Setting up gettext (0.23.1-1) ... 149s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 149s Setting up dictionaries-common (1.30.4) ... 149s Setting up python3.12 (3.12.9-1) ... 150s Setting up python3-all (3.13.1-1~exp2) ... 150s Setting up intltool-debian (0.35.0+20060710.6) ... 150s Setting up libpython3.12t64:s390x (3.12.9-1) ... 150s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 150s Setting up libjs-sphinxdoc (8.1.3-4) ... 150s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 150s Setting up cpp-14 (14.2.0-17ubuntu1) ... 150s Setting up dh-strip-nondeterminism (1.14.1-2) ... 150s Setting up xml-core (0.19) ... 150s Setting up hunspell-en-us (1:2020.12.07-3) ... 150s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 150s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 150s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 150s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 150s Setting up libenchant-2-2:s390x (2.8.2+dfsg1-3) ... 150s Setting up python3.13-dev (3.13.2-1) ... 150s Setting up po-debconf (1.0.21+nmu1) ... 150s Setting up libpython3.12-dev:s390x (3.12.9-1) ... 150s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 150s Setting up python3-enchant (3.3.0~rc1-1) ... 150s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 150s Setting up libpython3-all-dev:s390x (3.13.1-1~exp2) ... 150s Setting up sphinx-common (8.1.3-4) ... 150s Setting up python3-dev (3.13.1-1~exp2) ... 150s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 150s Setting up python3.12-dev (3.12.9-1) ... 150s Setting up cpp (4:14.2.0-1ubuntu1) ... 150s Setting up python3-all-dev (3.13.1-1~exp2) ... 150s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 150s Setting up gcc-14 (14.2.0-17ubuntu1) ... 150s Setting up g++-14 (14.2.0-17ubuntu1) ... 150s Setting up libtool (2.5.4-3build1) ... 150s Setting up gcc (4:14.2.0-1ubuntu1) ... 150s Setting up dh-autoreconf (20) ... 150s Setting up g++ (4:14.2.0-1ubuntu1) ... 150s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 150s Setting up build-essential (12.10ubuntu1) ... 150s Setting up debhelper (13.24.1ubuntu2) ... 150s Processing triggers for install-info (7.1.1-1) ... 150s Processing triggers for libc-bin (2.41-1ubuntu1) ... 150s Processing triggers for systemd (257.2-3ubuntu1) ... 151s Processing triggers for man-db (2.13.0-1) ... 152s Processing triggers for sgml-base (1.31) ... 152s Setting up docutils-common (0.21.2+dfsg-2) ... 152s Processing triggers for sgml-base (1.31) ... 152s Setting up python3-docutils (0.21.2+dfsg-2) ... 153s Setting up python3-sphinx (8.1.3-4) ... 154s Setting up python3-sphinxcontrib.restbuilder (0.3-4) ... 154s Setting up python3-sphinxcontrib.spelling (7.7.0-1) ... 154s Setting up python3-sphinxcontrib.jquery (4.1-5) ... 154s Setting up python3-sphinx-tabs (3.4.7-1) ... 154s Setting up python3-sphinx-rtd-theme (3.0.2+dfsg-2) ... 154s Processing triggers for dictionaries-common (1.30.4) ... 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: python-coverage: satisfying fakeroot 155s autopkgtest: DBG: can use apt-get on testbed: True 155s 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', 'fakeroot'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 155s Reading package lists... 155s Building dependency tree... 155s Reading state information... 155s Starting pkgProblemResolver with broken count: 0 155s Starting 2 pkgProblemResolver with broken count: 0 155s Done 156s The following NEW packages will be installed: 156s fakeroot libfakeroot 156s 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. 156s Need to get 100 kB of archives. 156s After this operation, 366 kB of additional disk space will be used. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfakeroot s390x 1.37-1 [32.5 kB] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fakeroot s390x 1.37-1 [67.8 kB] 156s Fetched 100 kB in 0s (292 kB/s) 156s Selecting previously unselected package libfakeroot:s390x. 156s (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 ... 61385 files and directories currently installed.) 156s Preparing to unpack .../libfakeroot_1.37-1_s390x.deb ... 156s Unpacking libfakeroot:s390x (1.37-1) ... 156s Selecting previously unselected package fakeroot. 156s Preparing to unpack .../fakeroot_1.37-1_s390x.deb ... 156s Unpacking fakeroot (1.37-1) ... 156s Setting up libfakeroot:s390x (1.37-1) ... 156s Setting up fakeroot (1.37-1) ... 156s update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode 156s Processing triggers for man-db (2.13.0-1) ... 156s Processing triggers for libc-bin (2.41-1ubuntu1) ... 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /tmp/autopkgtest.Dl2imB/build.LsM/src; DEB_BUILD_OPTIONS="nocheck noautodbgsym noddebs $DEB_BUILD_OPTIONS" DEB_BUILD_PROFILES="noudeb nocheck parallel=2 $DEB_BUILD_PROFILES" dpkg-buildpackage -us -uc -b; dpkg-source --before-build .\''], 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'] 157s + cd /tmp/autopkgtest.Dl2imB/build.LsM/src 157s + DEB_BUILD_OPTIONS=nocheck noautodbgsym noddebs DEB_BUILD_PROFILES=noudeb nocheck parallel=2 dpkg-buildpackage -us -uc -b 157s dpkg-buildpackage: info: source package python-coverage 157s dpkg-buildpackage: info: source version 7.4.4+dfsg1-0ubuntu3 157s dpkg-buildpackage: info: source distribution plucky 157s dpkg-buildpackage: info: source changed by Matthias Klose 157s dpkg-source --before-build . 157s dpkg-buildpackage: info: host architecture s390x 157s debian/rules clean 158s dh clean --with python3,sphinxdoc --buildsystem=pybuild 158s debian/rules override_dh_auto_clean 158s make[1]: Entering directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 158s dh_auto_clean 160s I: pybuild base:311: python3.12 setup.py clean 160s running clean 160s removing '/tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build' (and everything under it) 160s 'build/bdist.linux-s390x' does not exist -- can't clean it 160s 'build/scripts-3.12' does not exist -- can't clean it 160s I: pybuild base:311: python3.13 setup.py clean 160s running clean 160s removing '/tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build' (and everything under it) 160s 'build/bdist.linux-s390x' does not exist -- can't clean it 160s 'build/scripts-3.13' does not exist -- can't clean it 160s rm -f -r doc/*.1 doc/*.1.tmp doc/_build 160s make[1]: Leaving directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 160s dh_autoreconf_clean -O--buildsystem=pybuild 160s dh_clean -O--buildsystem=pybuild 160s debian/rules binary 160s dh binary --with python3,sphinxdoc --buildsystem=pybuild 161s dh_update_autotools_config -O--buildsystem=pybuild 162s dh_autoreconf -O--buildsystem=pybuild 162s dh_auto_configure -O--buildsystem=pybuild 162s I: pybuild base:311: python3.12 setup.py config 162s running config 162s I: pybuild base:311: python3.13 setup.py config 162s running config 162s debian/rules override_dh_auto_build 162s make[1]: Entering directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 162s dh_auto_build --buildsystem=pybuild 164s I: pybuild base:311: /usr/bin/python3.12 setup.py build 164s running build 164s running build_py 164s creating /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/results.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/types.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/context.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/misc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/data.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/collector.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/config.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/exceptions.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/sqlitedb.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/pytracer.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/lcovreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/cmdline.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/sqldata.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/sysmon.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/inorout.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/multiproc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/templite.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/__init__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/html.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/python.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/jsonreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/execfile.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/env.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/disposition.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/plugin.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/parser.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/report_core.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/files.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/xmlreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/annotate.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/version.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/__main__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/tomlconfig.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/plugin_support.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/control.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/phystokens.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/debug.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/report.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/bytecode.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/numbits.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/tracer.pyi -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s copying coverage/py.typed -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage 164s running build_ext 164s building 'coverage.tracer' extension 164s creating build/temp.linux-s390x-cpython-312/coverage/ctracer 164s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.12 -c coverage/ctracer/datastack.c -o build/temp.linux-s390x-cpython-312/coverage/ctracer/datastack.o 164s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.12 -c coverage/ctracer/filedisp.c -o build/temp.linux-s390x-cpython-312/coverage/ctracer/filedisp.o 164s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.12 -c coverage/ctracer/module.c -o build/temp.linux-s390x-cpython-312/coverage/ctracer/module.o 164s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.12 -c coverage/ctracer/tracer.c -o build/temp.linux-s390x-cpython-312/coverage/ctracer/tracer.o 165s s390x-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 build/temp.linux-s390x-cpython-312/coverage/ctracer/datastack.o build/temp.linux-s390x-cpython-312/coverage/ctracer/filedisp.o build/temp.linux-s390x-cpython-312/coverage/ctracer/module.o build/temp.linux-s390x-cpython-312/coverage/ctracer/tracer.o -L/usr/lib/s390x-linux-gnu -o /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/tracer.cpython-312-s390x-linux-gnu.so 165s I: pybuild base:311: /usr/bin/python3 setup.py build 165s running build 165s running build_py 165s creating /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/results.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/types.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/context.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/misc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/data.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/collector.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/config.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/exceptions.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/sqlitedb.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/pytracer.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/lcovreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/cmdline.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/sqldata.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/sysmon.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/inorout.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/multiproc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/templite.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/__init__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/html.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/python.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/jsonreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/execfile.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/env.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/disposition.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/plugin.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/parser.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/report_core.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/files.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/xmlreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/annotate.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/version.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/__main__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/tomlconfig.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/plugin_support.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/control.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/phystokens.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/debug.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/report.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/bytecode.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/numbits.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/tracer.pyi -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s copying coverage/py.typed -> /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage 165s running build_ext 165s building 'coverage.tracer' extension 165s creating build/temp.linux-s390x-cpython-313/coverage/ctracer 165s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.13 -c coverage/ctracer/datastack.c -o build/temp.linux-s390x-cpython-313/coverage/ctracer/datastack.o 165s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.13 -c coverage/ctracer/filedisp.c -o build/temp.linux-s390x-cpython-313/coverage/ctracer/filedisp.o 165s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.13 -c coverage/ctracer/module.c -o build/temp.linux-s390x-cpython-313/coverage/ctracer/module.o 165s s390x-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 -fPIC -I/usr/include/python3.13 -c coverage/ctracer/tracer.c -o build/temp.linux-s390x-cpython-313/coverage/ctracer/tracer.o 166s s390x-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/tmp/autopkgtest.Dl2imB/build.LsM/src=/usr/src/python-coverage-7.4.4+dfsg1-0ubuntu3 -Wdate-time -D_FORTIFY_SOURCE=3 build/temp.linux-s390x-cpython-313/coverage/ctracer/datastack.o build/temp.linux-s390x-cpython-313/coverage/ctracer/filedisp.o build/temp.linux-s390x-cpython-313/coverage/ctracer/module.o build/temp.linux-s390x-cpython-313/coverage/ctracer/tracer.o -L/usr/lib/s390x-linux-gnu -o /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/tracer.cpython-313-s390x-linux-gnu.so 166s python3 -m sphinx -N -bhtml doc/ \ 166s doc/_build/html/ 166s Running Sphinx v8.1.3 166s loading translations [en]... done 166s ** Prerelease = False 166s Converting `source_suffix = '.rst'` to `source_suffix = {'.rst': 'restructuredtext'}`. 166s loading intersphinx inventory 'python' from https://docs.python.org/3/objects.inv ... 166s WARNING: failed to reach any of the inventories with the following issues: 166s intersphinx inventory 'https://docs.python.org/3/objects.inv' not fetchable due to : HTTPSConnectionPool(host='docs.python.org', port=443): Max retries exceeded with url: /3/objects.inv (Caused by ProxyError('Unable to connect to proxy', NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))) 166s building [mo]: targets for 0 po files that are out of date 166s writing output... 166s building [html]: targets for 26 source files that are out of date 166s updating environment: [new config] 26 added, 0 changed, 0 removed 166s reading sources... [ 4%] api 166s reading sources... [ 8%] api_coverage 167s reading sources... [ 12%] api_coveragedata 167s reading sources... [ 15%] api_exceptions 167s reading sources... [ 19%] api_module 167s reading sources... [ 23%] api_plugin 167s reading sources... [ 27%] branch 167s reading sources... [ 31%] changes 168s reading sources... [ 35%] cmd 168s reading sources... [ 38%] config 168s reading sources... [ 42%] contexts 168s reading sources... [ 46%] contributing 168s reading sources... [ 50%] dbschema 168s reading sources... [ 54%] excluding 168s reading sources... [ 58%] faq 168s reading sources... [ 62%] howitworks 168s reading sources... [ 65%] index 168s reading sources... [ 69%] install 168s reading sources... [ 73%] migrating 168s reading sources... [ 77%] other 168s reading sources... [ 81%] plugins 168s reading sources... [ 85%] sleepy 168s reading sources... [ 88%] source 168s reading sources... [ 92%] subprocess 168s reading sources... [ 96%] trouble 168s reading sources... [100%] whatsnew5x 168s 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/cmd.rst:298: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [run] 168s disable_warnings = no-data-collected 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.run] 168s disable_warnings = ["no-data-collected"] 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:run] 168s disable_warnings = no-data-collected [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/config.rst:167: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [run] 168s branch = True 168s 168s [report] 168s ; Regexes for lines to exclude from consideration 168s exclude_also = 168s ; Don't complain about missing debug-only code: 168s def __repr__ 168s if self\.debug 168s 168s ; Don't complain if tests don't hit defensive assertion code: 168s raise AssertionError 168s raise NotImplementedError 168s 168s ; Don't complain if non-runnable code isn't run: 168s if 0: 168s if __name__ == .__main__.: 168s 168s ; Don't complain about abstract methods, they aren't run: 168s @(abc\.)?abstractmethod 168s 168s ignore_errors = True 168s 168s [html] 168s directory = coverage_html_report 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.run] 168s branch = true 168s 168s [tool.coverage.report] 168s # Regexes for lines to exclude from consideration 168s exclude_also = [ 168s # Don't complain about missing debug-only code: 168s "def __repr__", 168s "if self\\.debug", 168s 168s # Don't complain if tests don't hit defensive assertion code: 168s "raise AssertionError", 168s "raise NotImplementedError", 168s 168s # Don't complain if non-runnable code isn't run: 168s "if 0:", 168s "if __name__ == .__main__.:", 168s 168s # Don't complain about abstract methods, they aren't run: 168s "@(abc\\.)?abstractmethod", 168s ] 168s 168s ignore_errors = true 168s 168s [tool.coverage.html] 168s directory = "coverage_html_report" 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:run] 168s branch = True 168s 168s [coverage:report] 168s ; Regexes for lines to exclude from consideration 168s exclude_also = 168s ; Don't complain about missing debug-only code: 168s def __repr__ 168s if self\.debug 168s 168s ; Don't complain if tests don't hit defensive assertion code: 168s raise AssertionError 168s raise NotImplementedError 168s 168s ; Don't complain if non-runnable code isn't run: 168s if 0: 168s if __name__ == .__main__.: 168s 168s ; Don't complain about abstract methods, they aren't run: 168s @(abc\.)?abstractmethod 168s 168s ignore_errors = True 168s 168s [coverage:html] 168s directory = coverage_html_report [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/config.rst:513: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [paths] 168s source = 168s src/ 168s /jenkins/build/*/src 168s c:\myproj\src 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.paths] 168s source = [ 168s "src/", 168s "/jenkins/build/*/src", 168s "c:\\myproj\\src", 168s ] 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:paths] 168s source = 168s src/ 168s /jenkins/build/*/src 168s c:\myproj\src [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/contexts.rst:91: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [run] 168s dynamic_context = test_function 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.run] 168s dynamic_context = "test_function" 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:run] 168s dynamic_context = test_function [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/excluding.rst:108: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [report] 168s exclude_also = 168s def __repr__ 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.report] 168s exclude_also = [ 168s "def __repr__", 168s ] 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:report] 168s exclude_also = 168s def __repr__ [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/excluding.rst:170: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [report] 168s exclude_also = 168s def __repr__ 168s if self.debug: 168s if settings.DEBUG 168s raise AssertionError 168s raise NotImplementedError 168s if 0: 168s if __name__ == .__main__.: 168s if TYPE_CHECKING: 168s class .*\bProtocol\): 168s @(abc\.)?abstractmethod 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.report] 168s exclude_also = [ 168s "def __repr__", 168s "if self.debug:", 168s "if settings.DEBUG", 168s "raise AssertionError", 168s "raise NotImplementedError", 168s "if 0:", 168s "if __name__ == .__main__.:", 168s "if TYPE_CHECKING:", 168s "class .*\\bProtocol\\):", 168s "@(abc\\.)?abstractmethod", 168s ] 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:report] 168s exclude_also = 168s def __repr__ 168s if self.debug: 168s if settings.DEBUG 168s raise AssertionError 168s raise NotImplementedError 168s if 0: 168s if __name__ == .__main__.: 168s if TYPE_CHECKING: 168s class .*\bProtocol\): 168s @(abc\.)?abstractmethod [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/index.rst:76: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. tab:: pytest 168s 168s If you usually use:: 168s 168s $ pytest arg1 arg2 arg3 168s 168s then you can run your tests under coverage with:: 168s 168s $ coverage run -m pytest arg1 arg2 arg3 168s 168s Many people choose to use the `pytest-cov`_ plugin, but for most 168s purposes, it is unnecessary. 168s 168s .. tab:: unittest 168s 168s Change "python" to "coverage run", so this:: 168s 168s $ python3 -m unittest discover 168s 168s becomes:: 168s 168s $ coverage run -m unittest discover 168s 168s .. tab:: nosetest 168s 168s .. note:: Nose has been `unmaintained since at least 2015 `_. 168s *You should seriously consider using a different test runner.* 168s 168s Change this:: 168s 168s $ nosetests arg1 arg2 168s 168s to:: 168s 168s $ coverage run -m nose arg1 arg2 [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/plugins.rst:65: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [run] 168s plugins = 168s something.plugin 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.run] 168s plugins = [ "something.plugin" ] 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:run] 168s plugins = 168s something.plugin [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/plugins.rst:107: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [something.plugin] 168s option1 = True 168s option2 = abc.foo 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.something.plugin] 168s option1 = true 168s option2 = "abc.foo" 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:something.plugin] 168s option1 = True 168s option2 = abc.foo [docutils] 168s /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/source.rst:103: ERROR: Unknown directive type "tabs". 168s 168s .. tabs:: 168s 168s .. code-tab:: ini 168s :caption: .coveragerc 168s 168s [run] 168s omit = 168s # omit anything in a .local directory anywhere 168s */.local/* 168s # omit everything in /usr 168s /usr/* 168s # omit this single file 168s utils/tirefire.py 168s 168s .. code-tab:: toml 168s :caption: pyproject.toml 168s 168s [tool.coverage.run] 168s omit = [ 168s # omit anything in a .local directory anywhere 168s "*/.local/*", 168s # omit everything in /usr 168s "/usr/*", 168s # omit this single file 168s "utils/tirefire.py", 168s ] 168s 168s .. code-tab:: ini 168s :caption: setup.cfg, tox.ini 168s 168s [coverage:run] 168s omit = 168s # omit anything in a .local directory anywhere 168s */.local/* 168s # omit everything in /usr 168s /usr/* 168s # omit this single file 168s utils/tirefire.py [docutils] 168s looking for now-outdated files... none found 168s pickling environment... done 168s checking consistency... done 168s preparing documents... done 168s copying assets... 168s copying static files... 168s Writing evaluated template result to /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/_build/html/_static/basic.css 168s Writing evaluated template result to /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/_build/html/_static/documentation_options.js 168s Writing evaluated template result to /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/_build/html/_static/language_data.js 168s Writing evaluated template result to /tmp/autopkgtest.Dl2imB/build.LsM/src/doc/_build/html/_static/js/versions.js 168s copying static files: done 168s copying extra files... 168s copying extra files: done 168s copying assets: done 168s writing output... [ 4%] api 168s writing output... [ 8%] api_coverage 168s writing output... [ 12%] api_coveragedata 168s writing output... [ 15%] api_exceptions 168s writing output... [ 19%] api_module 168s writing output... [ 23%] api_plugin 168s writing output... [ 27%] branch 168s writing output... [ 31%] changes 169s writing output... [ 35%] cmd 169s writing output... [ 38%] config 169s writing output... [ 42%] contexts 169s writing output... [ 46%] contributing 169s writing output... [ 50%] dbschema 169s writing output... [ 54%] excluding 169s writing output... [ 58%] faq 169s writing output... [ 62%] howitworks 169s writing output... [ 65%] index 169s writing output... [ 69%] install 169s writing output... [ 73%] migrating 169s writing output... [ 77%] other 169s writing output... [ 81%] plugins 169s writing output... [ 85%] sleepy 169s writing output... [ 88%] source 169s writing output... [ 92%] subprocess 169s writing output... [ 96%] trouble 169s writing output... [100%] whatsnew5x 169s 169s generating indices... py-modindex done 169s writing additional pages... search done 169s copying images... [ 50%] media/Tidelift_Logos_RGB_Tidelift_Shorthand_On-White.png 169s copying images... [100%] media/sleepy-snake-600.png 169s 169s dumping search index in English (code: en)... done 169s dumping object inventory... done 169s build succeeded, 11 warnings. 169s 169s The HTML pages are in doc/_build/html. 169s make[1]: Leaving directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 169s create-stamp debian/debhelper-build-stamp 169s dh_testroot -O--buildsystem=pybuild 169s dh_prep -O--buildsystem=pybuild 169s dh_auto_install -O--buildsystem=pybuild 170s I: pybuild base:311: /usr/bin/python3.12 setup.py install --root /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage 170s running install 170s /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 170s !! 170s 170s ******************************************************************************** 170s Please avoid running ``setup.py`` directly. 170s Instead, use pypa/build, pypa/installer or other 170s standards-based tools. 170s 170s See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 170s ******************************************************************************** 170s 170s !! 170s self.initialize_options() 170s running build 170s running build_py 170s running build_ext 170s running install_lib 170s creating /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages 170s creating /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/results.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/types.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/context.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/misc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/data.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/tracer.pyi -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/collector.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/config.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/tracer.cpython-312-s390x-linux-gnu.so -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/exceptions.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/sqlitedb.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/pytracer.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/lcovreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/cmdline.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/sqldata.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/sysmon.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/inorout.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/multiproc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/templite.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/__init__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/html.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/python.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/jsonreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/execfile.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/env.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/disposition.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/plugin.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/parser.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/report_core.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/files.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/xmlreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/py.typed -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/annotate.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/version.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/__main__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/tomlconfig.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/plugin_support.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/control.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/phystokens.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/debug.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/report.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/bytecode.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.12_coverage/build/coverage/numbits.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/results.py to results.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/types.py to types.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/context.py to context.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/misc.py to misc.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/data.py to data.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/collector.py to collector.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/config.py to config.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/exceptions.py to exceptions.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/sqlitedb.py to sqlitedb.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/pytracer.py to pytracer.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/lcovreport.py to lcovreport.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/cmdline.py to cmdline.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/sqldata.py to sqldata.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/sysmon.py to sysmon.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/inorout.py to inorout.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/multiproc.py to multiproc.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/templite.py to templite.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/__init__.py to __init__.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/html.py to html.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/python.py to python.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/jsonreport.py to jsonreport.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/execfile.py to execfile.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/env.py to env.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/disposition.py to disposition.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/plugin.py to plugin.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/parser.py to parser.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/report_core.py to report_core.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/files.py to files.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/xmlreport.py to xmlreport.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/annotate.py to annotate.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/version.py to version.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/__main__.py to __main__.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/tomlconfig.py to tomlconfig.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/plugin_support.py to plugin_support.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/control.py to control.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/phystokens.py to phystokens.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/debug.py to debug.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/report.py to report.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/bytecode.py to bytecode.cpython-312.pyc 170s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage/numbits.py to numbits.cpython-312.pyc 170s running install_egg_info 170s running egg_info 170s creating coverage.egg-info 170s writing coverage.egg-info/PKG-INFO 170s writing dependency_links to coverage.egg-info/dependency_links.txt 170s writing entry points to coverage.egg-info/entry_points.txt 170s writing requirements to coverage.egg-info/requires.txt 170s writing top-level names to coverage.egg-info/top_level.txt 170s writing manifest file 'coverage.egg-info/SOURCES.txt' 170s reading manifest file 'coverage.egg-info/SOURCES.txt' 170s reading manifest template 'MANIFEST.in' 170s no previously-included directories found matching 'doc/_spell' 170s warning: no files found matching 'qunit/*' under directory 'tests' 170s no previously-included directories found matching 'tests/eggsrc/build' 170s adding license file 'LICENSE.txt' 170s writing manifest file 'coverage.egg-info/SOURCES.txt' 170s Copying coverage.egg-info to /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.12/dist-packages/coverage-7.4.4.egg-info 170s Skipping SOURCES.txt 170s running install_scripts 170s Installing python-coverage script to /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/bin 170s I: pybuild pybuild:334: install --mode=u=rwx,go=rx --directory "debian/python3-coverage/usr/share/python3-coverage" ; install --mode=u=rwx,go=rx --directory "debian/python3-coverage/usr/share/python3-coverage/htmlfiles" ; install --mode=u=rw,go=r "coverage/htmlfiles"/* "debian/python3-coverage/usr/share/python3-coverage/htmlfiles" ; dh_link --package=python3-coverage "/usr/share/python3-coverage/htmlfiles" /usr/lib/python3.12/dist-packages/coverage/htmlfiles ; cp debian/python3-coverage/usr/bin/python-coverage debian/python3-coverage/usr/bin/python3.12-coverage ; debian/fix_shebang --interpreter 'usr/bin/python3.12' debian/python3-coverage/usr/bin/python3.12-coverage ; mv debian/python3-coverage/usr/bin/python-coverage debian/python3-coverage/usr/bin/python3-coverage ; debian/fix_shebang --interpreter 'usr/bin/python3' debian/python3-coverage/usr/bin/python3-coverage 170s I: pybuild base:311: /usr/bin/python3 setup.py install --root /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage 170s running install 170s /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 170s !! 170s 170s ******************************************************************************** 170s Please avoid running ``setup.py`` directly. 170s Instead, use pypa/build, pypa/installer or other 170s standards-based tools. 170s 170s See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 170s ******************************************************************************** 170s 170s !! 170s self.initialize_options() 170s running build 170s running build_py 170s running build_ext 170s running install_lib 171s creating /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages 171s creating /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/results.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/types.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/tracer.cpython-313-s390x-linux-gnu.so -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/context.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/misc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/data.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/tracer.pyi -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/collector.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/config.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/exceptions.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/sqlitedb.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/pytracer.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/lcovreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/cmdline.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/sqldata.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/sysmon.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/inorout.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/multiproc.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/templite.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/__init__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/html.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/python.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/jsonreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/execfile.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/env.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/disposition.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/plugin.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/parser.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/report_core.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/files.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/xmlreport.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/py.typed -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/annotate.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/version.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/__main__.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/tomlconfig.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/plugin_support.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/control.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/phystokens.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/debug.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/report.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/bytecode.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s copying /tmp/autopkgtest.Dl2imB/build.LsM/src/.pybuild/cpython3_3.13_coverage/build/coverage/numbits.py -> /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/results.py to results.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/types.py to types.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/context.py to context.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/misc.py to misc.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/data.py to data.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/collector.py to collector.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/config.py to config.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/exceptions.py to exceptions.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/sqlitedb.py to sqlitedb.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/pytracer.py to pytracer.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/lcovreport.py to lcovreport.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/cmdline.py to cmdline.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/sqldata.py to sqldata.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/sysmon.py to sysmon.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/inorout.py to inorout.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/multiproc.py to multiproc.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/templite.py to templite.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/__init__.py to __init__.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/html.py to html.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/python.py to python.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/jsonreport.py to jsonreport.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/execfile.py to execfile.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/env.py to env.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/disposition.py to disposition.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/plugin.py to plugin.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/parser.py to parser.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/report_core.py to report_core.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/files.py to files.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/xmlreport.py to xmlreport.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/annotate.py to annotate.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/version.py to version.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/__main__.py to __main__.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/tomlconfig.py to tomlconfig.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/plugin_support.py to plugin_support.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/control.py to control.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/phystokens.py to phystokens.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/debug.py to debug.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/report.py to report.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/bytecode.py to bytecode.cpython-313.pyc 171s byte-compiling /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage/numbits.py to numbits.cpython-313.pyc 171s running install_egg_info 171s running egg_info 171s writing coverage.egg-info/PKG-INFO 171s writing dependency_links to coverage.egg-info/dependency_links.txt 171s writing entry points to coverage.egg-info/entry_points.txt 171s writing requirements to coverage.egg-info/requires.txt 171s writing top-level names to coverage.egg-info/top_level.txt 171s reading manifest file 'coverage.egg-info/SOURCES.txt' 171s reading manifest template 'MANIFEST.in' 171s no previously-included directories found matching 'doc/_spell' 171s warning: no files found matching 'qunit/*' under directory 'tests' 171s no previously-included directories found matching 'tests/eggsrc/build' 171s adding license file 'LICENSE.txt' 171s writing manifest file 'coverage.egg-info/SOURCES.txt' 171s Copying coverage.egg-info to /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/lib/python3.13/dist-packages/coverage-7.4.4.egg-info 171s Skipping SOURCES.txt 171s running install_scripts 171s Installing python-coverage script to /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/python3-coverage/usr/bin 171s I: pybuild pybuild:334: install --mode=u=rwx,go=rx --directory "debian/python3-coverage/usr/share/python3-coverage" ; install --mode=u=rwx,go=rx --directory "debian/python3-coverage/usr/share/python3-coverage/htmlfiles" ; install --mode=u=rw,go=r "coverage/htmlfiles"/* "debian/python3-coverage/usr/share/python3-coverage/htmlfiles" ; dh_link --package=python3-coverage "/usr/share/python3-coverage/htmlfiles" /usr/lib/python3.13/dist-packages/coverage/htmlfiles ; cp debian/python3-coverage/usr/bin/python-coverage debian/python3-coverage/usr/bin/python3.13-coverage ; debian/fix_shebang --interpreter 'usr/bin/python3.13' debian/python3-coverage/usr/bin/python3.13-coverage ; mv debian/python3-coverage/usr/bin/python-coverage debian/python3-coverage/usr/bin/python3-coverage ; debian/fix_shebang --interpreter 'usr/bin/python3' debian/python3-coverage/usr/bin/python3-coverage 171s dh_installdocs -O--buildsystem=pybuild 171s dh_installdocs: warning: Cannot auto-detect main package for python-coverage-doc. If the default is wrong, please use --doc-main-package 171s dh_sphinxdoc -O--buildsystem=pybuild 171s debian/rules override_dh_installchangelogs 171s make[1]: Entering directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 171s dh_installchangelogs CHANGES.rst 173s make[1]: Leaving directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 173s debian/rules override_dh_installman 173s make[1]: Entering directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 173s install --mode=u=rw,go=r "debian/python-coverage.1" "doc/python-coverage.1" 174s install --mode=u=rw,go=r "doc/python-coverage.1" "doc/python3-coverage.1" 174s install --mode=u=rw,go=r "doc/python-coverage.1" "doc/python3.12-coverage.1" 174s install --mode=u=rw,go=r "doc/python-coverage.1" "doc/python3.13-coverage.1" 174s dh_installman 174s make[1]: Leaving directory '/tmp/autopkgtest.Dl2imB/build.LsM/src' 174s dh_python3 -O--buildsystem=pybuild 174s I: dh_python3 tools:113: replacing shebang in debian/python3-coverage/usr/bin/python3.13-coverage 174s I: dh_python3 tools:113: replacing shebang in debian/python3-coverage/usr/bin/python3.12-coverage 174s I: dh_python3 tools:113: replacing shebang in debian/python3-coverage/usr/bin/python3-coverage 174s I: dh_python3 pydist:414: Truncating unparseable version 3.11.0a6 to 3.11 in [toml:python_full_version <= "3.11.0a6"] 174s dh_installsystemduser -O--buildsystem=pybuild 174s dh_lintian -O--buildsystem=pybuild 174s dh_perl -O--buildsystem=pybuild 174s dh_link -O--buildsystem=pybuild 174s dh_strip_nondeterminism -O--buildsystem=pybuild 175s dh_compress -O--buildsystem=pybuild 175s dh_fixperms -O--buildsystem=pybuild 175s dh_missing -O--buildsystem=pybuild 175s dh_dwz -a -O--buildsystem=pybuild 175s dh_strip -a -O--buildsystem=pybuild 175s 9307865be80fbc7f1844eea3e068d96c8b01be8b 175s 596553928772778ade68657544f96ce4b15cebdf 175s dh_makeshlibs -a -O--buildsystem=pybuild 175s dh_shlibdeps -a -O--buildsystem=pybuild 175s dh_installdeb -O--buildsystem=pybuild 176s dh_gencontrol -O--buildsystem=pybuild 176s dpkg-gencontrol: warning: package python-coverage-doc: substitution variable ${sphinxdoc:Built-Using} unused, but is defined 176s dh_md5sums -O--buildsystem=pybuild 176s dh_builddeb -O--buildsystem=pybuild 176s dpkg-deb: building package 'python-coverage-doc' in '../python-coverage-doc_7.4.4+dfsg1-0ubuntu3_all.deb'. 176s dpkg-deb: building package 'python3-coverage' in '../python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb'. 176s dpkg-genbuildinfo --build=binary -O../python-coverage_7.4.4+dfsg1-0ubuntu3_s390x.buildinfo 177s dpkg-genchanges --build=binary -O../python-coverage_7.4.4+dfsg1-0ubuntu3_s390x.changes 177s dpkg-genchanges: info: binary-only upload (no source code included) 177s dpkg-source --after-build . 177s dpkg-buildpackage: info: binary-only upload (no source included) 177s + dpkg-source --before-build . 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/build.LsM/src/ /tmp/autopkgtest-work.yb0h35s8/out/tests-tree/ 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: processing dependency python3-package-smoke-test 178s autopkgtest: DBG: processing dependency python3-all 178s autopkgtest: DBG: processing dependency @ 178s autopkgtest: DBG: synthesised dependency python3-coverage 178s autopkgtest: DBG: synthesised dependency python-coverage-doc 178s autopkgtest: DBG: Test defined: name smoke-python3 path debian/tests/smoke-python3 command "None" restrictions ['superficial'] features [] depends ['python3-package-smoke-test', 'python3-all', 'python3-coverage', 'python-coverage-doc'] 178s autopkgtest: DBG: processing dependency python-coverage-doc 178s autopkgtest: DBG: marked alternatives ['python-coverage-doc'] as a synthesised dependency 178s autopkgtest: DBG: processing dependency w3m 178s autopkgtest: DBG: Test defined: name command1 path None command " w3m -dump /usr/share/doc/python-coverage-doc/html/index.html > /dev/null" restrictions ['build-needed', 'superficial'] features [] depends ['python-coverage-doc', 'w3m'] 178s autopkgtest: DBG: processing dependency python-coverage-doc 178s autopkgtest: DBG: marked alternatives ['python-coverage-doc'] as a synthesised dependency 178s autopkgtest: DBG: processing dependency file 178s autopkgtest: DBG: Test defined: name command2 path None command " file --brief /usr/share/doc/python-coverage-doc/html/index.html | grep -q 'HTML document'" restrictions ['build-needed', 'superficial'] features [] depends ['python-coverage-doc', 'file'] 178s autopkgtest: DBG: processing dependency python3-all 178s autopkgtest: DBG: processing dependency @ 178s autopkgtest: DBG: synthesised dependency python3-coverage 178s autopkgtest: DBG: synthesised dependency python-coverage-doc 178s autopkgtest: DBG: Test defined: name entry-point-scripts path debian/tests/entry-point-scripts command "None" restrictions [] features [] depends ['python3-all', 'python3-coverage', 'python-coverage-doc'] 178s autopkgtest: DBG: processing dependency python3-all 178s autopkgtest: DBG: processing dependency @ 178s autopkgtest: DBG: synthesised dependency python3-coverage 178s autopkgtest: DBG: synthesised dependency python-coverage-doc 178s autopkgtest: DBG: Test defined: name module-scripts path debian/tests/module-scripts command "None" restrictions [] features [] depends ['python3-all', 'python3-coverage', 'python-coverage-doc'] 178s autopkgtest [01:58:36]: test smoke-python3: preparing testbed 178s autopkgtest: DBG: testbed reset: modified=True, deps_installed=[], deps_new=['python3-package-smoke-test', 'python3-all', 'python3-coverage', 'python-coverage-doc'] 178s autopkgtest: DBG: testbed reset 178s autopkgtest: DBG: sending command to testbed: revert 292s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Dl2imB 292s autopkgtest: DBG: sending command to testbed: print-execute-command 292s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.us5l86wm/runcmd 292s autopkgtest: DBG: sending command to testbed: capabilities 292s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system reboot revert ok isolation-machine root-on-testbed 292s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'ok', 'isolation-machine', 'root-on-testbed', 'has_internet'] 292s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Dl2imB/wrapper.sh 292s autopkgtest: DBG: got reply from testbed: ok 292s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/wrapper.sh'], kind short, sout raw, serr pipe, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest [02:00:31]: testbed dpkg architecture: s390x 293s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest [02:00:31]: testbed apt version: 2.9.28 293s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: testbed has eatmydata 293s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest [02:00:31]: @@@@@@@@@@@@@@@@@@@@ test bed setup 293s 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 [] 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest [02:00:31]: testbed release detected to be: plucky 293s 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 [] 293s autopkgtest: DBG: testbed command exited with code 0 293s 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 [] 294s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest: DBG: adding APT source: Types: deb deb-src 294s URIs: http://ftpmaster.internal/ubuntu/ 294s Suites: plucky-proposed 294s Components: main restricted universe multiverse 294s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 294s 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 [] 294s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 294s Package: * 294s Pin: release plucky-proposed 294s Pin-Priority: 500 294s 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 [] 294s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest [02:00:32]: updating testbed package index (apt update) 294s 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'] 294s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 295s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 295s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 295s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 295s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 295s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 295s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 295s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 295s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 295s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 295s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 295s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 295s Fetched 2083 kB in 1s (2045 kB/s) 296s Reading package lists... 296s autopkgtest: DBG: testbed command exited with code 0 296s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 296s Package: * 296s Pin: release plucky-proposed 296s Pin-Priority: 100 296s 296s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 296s Pin: release plucky-proposed 296s Pin-Priority: 995 296s 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 [] 296s autopkgtest: DBG: testbed command exited with code 0 296s 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.Dl2imB/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 296s autopkgtest: DBG: testbed command exited with code 0 296s 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'] 296s + lsb_release --codename --short 296s + RELEASE=plucky 296s + cat 296s + [ plucky != trusty ] 296s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 296s Reading package lists... 296s Building dependency tree... 296s Reading state information... 297s Calculating upgrade... 297s The following packages were automatically installed and are no longer required: 297s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 297s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 297s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 297s linux-tools-6.11.0-8-generic 297s Use 'sudo apt autoremove' to remove them. 297s The following packages will be upgraded: 297s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 297s libxdmcp6 297s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 297s Need to get 1471 kB of archives. 297s After this operation, 24.6 kB of additional disk space will be used. 297s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 299s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 299s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 299s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 299s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 299s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 299s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 299s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 299s Preconfiguring packages ... 299s Fetched 1471 kB in 1s (2416 kB/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 ... 80969 files and directories currently installed.) 299s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 299s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 299s Setting up dash (0.5.12-12ubuntu1) ... 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 ... 80969 files and directories currently installed.) 299s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 299s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 299s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 299s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 299s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 299s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 299s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 299s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 299s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 299s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 299s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 299s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 299s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 299s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 299s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 299s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 299s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 299s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 299s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 299s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 299s Setting up libtasn1-6:s390x (4.20.0-2) ... 299s Processing triggers for libc-bin (2.40-4ubuntu1) ... 299s Processing triggers for man-db (2.13.0-1) ... 299s Processing triggers for debianutils (5.21) ... 299s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 299s + /usr/lib/apt/apt-helper analyze-pattern ?true 299s + uname -r 299s + sed s/\./\\./g 299s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 299s + apt list ?obsolete 299s + tail -n+2 299s + grep -v ^linux-.*6\.12\.0-15-generic.* 299s + cut -d/ -f1 299s + true 299s + obsolete_pkgs= 299s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 299s Reading package lists... 299s Building dependency tree... 299s Reading state information... 299s The following packages will be REMOVED: 299s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 299s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 299s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 299s linux-tools-6.11.0-8-generic* 299s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 299s After this operation, 167 MB disk space will be freed. 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 ... 80969 files and directories currently installed.) 299s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 299s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 299s Removing libpython3.12t64:s390x (3.12.9-1) ... 299s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 299s Removing libnsl2:s390x (1.3.0-3build3) ... 299s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 299s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 299s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 300s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 300s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55869 files and directories currently installed.) 300s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 300s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 300s + grep -q trusty /etc/lsb-release 300s + [ ! -d /usr/share/doc/unattended-upgrades ] 300s + [ ! -d /usr/share/doc/lxd ] 300s + [ ! -d /usr/share/doc/lxd-client ] 300s + [ ! -d /usr/share/doc/snapd ] 300s + type iptables 300s + cat 300s + chmod 755 /etc/rc.local 300s + . /etc/rc.local 300s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 300s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 300s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 300s + uname -m 300s + [ s390x = ppc64le ] 300s + [ -d /run/systemd/system ] 300s + systemd-detect-virt --quiet --vm 300s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 300s + cat 300s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 300s + echo COMPRESS=lz4 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest [02:00:38]: upgrading testbed (apt dist-upgrade and autopurge) 300s 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'] 301s Reading package lists... 301s Building dependency tree... 301s Reading state information... 301s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 301s Starting 2 pkgProblemResolver with broken count: 0 301s Done 301s Entering ResolveByKeep 301s 301s The following packages will be upgraded: 301s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 301s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 301s Need to get 10.7 MB of archives. 301s After this operation, 305 kB of additional disk space will be used. 301s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 302s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 302s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 302s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 302s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 302s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 302s Preconfiguring packages ... 303s Fetched 10.7 MB in 1s (11.8 MB/s) 303s (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.) 303s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 303s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 303s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 303s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 303s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 303s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 303s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 303s Checking for services that may need to be restarted... 303s Checking init scripts... 303s Checking for services that may need to be restarted... 303s Checking init scripts... 303s Stopping some services possibly affected by the upgrade (will be restarted later): 303s cron: stopping...done. 303s 303s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 303s Setting up libc6:s390x (2.41-1ubuntu1) ... 303s Checking for services that may need to be restarted... 303s Checking init scripts... 303s Restarting services possibly affected by the upgrade: 303s cron: restarting...done. 303s 303s Services restarted successfully. 303s (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.) 303s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 303s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 303s Setting up libc-bin (2.41-1ubuntu1) ... 303s (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.) 303s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 303s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 303s Setting up iproute2 (6.13.0-1ubuntu1) ... 303s Setting up locales (2.41-1ubuntu1) ... 303s Installing new version of config file /etc/locale.alias ... 304s Generating locales (this might take a while)... 305s en_US.UTF-8... done 305s Generation complete. 305s Setting up libc-dev-bin (2.41-1ubuntu1) ... 305s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 305s Processing triggers for man-db (2.13.0-1) ... 305s Processing triggers for systemd (257.2-3ubuntu1) ... 306s autopkgtest: DBG: testbed command exited with code 0 306s 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'] 306s Reading package lists... 306s Building dependency tree... 306s Reading state information... 307s Starting pkgProblemResolver with broken count: 0 307s Starting 2 pkgProblemResolver with broken count: 0 307s Done 307s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 307s autopkgtest: DBG: testbed command exited with code 0 307s 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.Dl2imB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 307s autopkgtest: DBG: testbed command exited with code 1 307s autopkgtest [02:00:45]: rebooting testbed after setup commands that affected boot 307s autopkgtest: DBG: sending command to testbed: reboot 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.Dl2imB'], 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.Dl2imB/autopkgtest-reboot 324s autopkgtest: DBG: got reply from testbed: ok 324s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/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.Dl2imB'], 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.Dl2imB/autopkgtest-reboot-prepare 325s autopkgtest: DBG: got reply from testbed: ok 325s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], 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.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s 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: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/testbed-packages"], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/testbed-packages /tmp/autopkgtest-work.yb0h35s8/out/testbed-packages 326s autopkgtest: DBG: got reply from testbed: ok 326s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 326s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 326s autopkgtest: DBG: got reply from testbed: ok 326s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], 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.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 327s autopkgtest: DBG: got reply from testbed: ok 327s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 328s autopkgtest: DBG: testbed command exited with code 0 328s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 328s autopkgtest: DBG: install_deps: deps_new=['python3-package-smoke-test', 'python3-all', 'python3-coverage', 'python-coverage-doc'] 328s autopkgtest: DBG: install-deps: satisfying python3-package-smoke-test, python3-all, python3-coverage, python-coverage-doc 328s autopkgtest: DBG: can use apt-get on testbed: True 328s 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', 'python3-package-smoke-test, python3-all, python3-coverage, python-coverage-doc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 328s Reading package lists... 328s Building dependency tree... 328s Reading state information... 328s Starting pkgProblemResolver with broken count: 0 328s Starting 2 pkgProblemResolver with broken count: 0 328s Done 328s The following NEW packages will be installed: 328s fonts-font-awesome fonts-lato libjs-jquery libjs-sphinxdoc libjs-underscore 328s libnsl2 libpython3.12-minimal libpython3.12-stdlib python-coverage-doc 328s python3-all python3-coverage python3-package-smoke-test python3.12 328s python3.12-minimal sphinx-rtd-theme-common 328s 0 upgraded, 15 newly installed, 0 to remove and 0 not upgraded. 328s Need to get 11.3 MB of archives. 328s After this operation, 42.0 MB of additional disk space will be used. 328s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 329s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 329s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 329s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 329s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 329s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 329s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 329s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 329s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 329s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 329s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 329s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python-coverage-doc all 7.4.4+dfsg1-0ubuntu3 [360 kB] 329s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 329s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 329s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-package-smoke-test all 1.0-3 [5274 B] 329s Fetched 11.3 MB in 1s (12.8 MB/s) 329s Selecting previously unselected package libpython3.12-minimal:s390x. 330s (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.) 330s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 330s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 330s Selecting previously unselected package python3.12-minimal. 330s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 330s Unpacking python3.12-minimal (3.12.9-1) ... 330s Selecting previously unselected package fonts-lato. 330s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 330s Unpacking fonts-lato (2.015-1) ... 330s Selecting previously unselected package libnsl2:s390x. 330s Preparing to unpack .../03-libnsl2_1.3.0-3build3_s390x.deb ... 330s Unpacking libnsl2:s390x (1.3.0-3build3) ... 330s Selecting previously unselected package libpython3.12-stdlib:s390x. 330s Preparing to unpack .../04-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 330s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 330s Selecting previously unselected package python3.12. 330s Preparing to unpack .../05-python3.12_3.12.9-1_s390x.deb ... 330s Unpacking python3.12 (3.12.9-1) ... 330s Selecting previously unselected package fonts-font-awesome. 330s Preparing to unpack .../06-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 330s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 330s Selecting previously unselected package libjs-jquery. 330s Preparing to unpack .../07-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 330s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 330s Selecting previously unselected package libjs-underscore. 330s Preparing to unpack .../08-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 330s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 330s Selecting previously unselected package libjs-sphinxdoc. 330s Preparing to unpack .../09-libjs-sphinxdoc_8.1.3-4_all.deb ... 330s Unpacking libjs-sphinxdoc (8.1.3-4) ... 330s Selecting previously unselected package sphinx-rtd-theme-common. 330s Preparing to unpack .../10-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 330s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 330s Selecting previously unselected package python-coverage-doc. 330s Preparing to unpack .../11-python-coverage-doc_7.4.4+dfsg1-0ubuntu3_all.deb ... 330s Unpacking python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 330s Selecting previously unselected package python3-all. 330s Preparing to unpack .../12-python3-all_3.13.1-1~exp2_s390x.deb ... 330s Unpacking python3-all (3.13.1-1~exp2) ... 330s Selecting previously unselected package python3-coverage. 330s Preparing to unpack .../13-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 330s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 330s Selecting previously unselected package python3-package-smoke-test. 330s Preparing to unpack .../14-python3-package-smoke-test_1.0-3_all.deb ... 330s Unpacking python3-package-smoke-test (1.0-3) ... 330s Setting up fonts-lato (2.015-1) ... 330s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 330s Setting up python3-package-smoke-test (1.0-3) ... 330s Setting up libnsl2:s390x (1.3.0-3build3) ... 330s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 330s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 330s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 330s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 330s Setting up python3.12-minimal (3.12.9-1) ... 331s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 331s Setting up python3.12 (3.12.9-1) ... 332s Setting up python3-all (3.13.1-1~exp2) ... 332s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 332s Setting up libjs-sphinxdoc (8.1.3-4) ... 332s Setting up python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 332s Processing triggers for systemd (257.2-3ubuntu1) ... 332s Processing triggers for man-db (2.13.0-1) ... 333s Processing triggers for libc-bin (2.41-1ubuntu1) ... 333s autopkgtest: DBG: testbed command exited with code 0 333s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-coverage'], kind short, sout pipe, serr pipe, env [] 333s autopkgtest: DBG: testbed command exited with code 0 333s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-coverage-doc'], kind short, sout pipe, serr pipe, env [] 333s autopkgtest: DBG: testbed command exited with code 0 333s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/smoke-python3-packages.all"], kind short, sout raw, serr pipe, env [] 333s autopkgtest: DBG: testbed command exited with code 0 333s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/smoke-python3-packages.all /tmp/autopkgtest-work.yb0h35s8/out/smoke-python3-packages.all 334s autopkgtest: DBG: got reply from testbed: ok 334s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr raw, env [] 334s autopkgtest: DBG: testbed command exited with code 1 334s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB/build.LsM'], kind short, sout raw, serr pipe, env [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.yb0h35s8/out/tests-tree/ /tmp/autopkgtest.Dl2imB/build.LsM/src/ 337s autopkgtest: DBG: got reply from testbed: ok 337s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr pipe, env [] 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest [02:01:15]: test smoke-python3: [----------------------- 337s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.Dl2imB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Dl2imB/smoke-python3-artifacts --chdir=/tmp/autopkgtest.Dl2imB/build.LsM/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.Dl2imB/smoke-python3-stderr --stdout=/tmp/autopkgtest.Dl2imB/smoke-python3-stdout --tmp=/tmp/autopkgtest.Dl2imB/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' --make-executable=/tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/smoke-python3 -- /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/smoke-python3"], kind test, sout raw, serr raw, env [] 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Dl2imB/smoke-python3-artifacts 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: changing to directory: /tmp/autopkgtest.Dl2imB/build.LsM/src 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: LANG=C.UTF-8 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LANGUAGE 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ADDRESS 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ALL 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_COLLATE 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_CTYPE 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MEASUREMENT 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MESSAGES 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MONETARY 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NAME 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NUMERIC 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_PAPER 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TELEPHONE 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TIME 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: pretending to be a login shell 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write standard error to /tmp/autopkgtest.Dl2imB/smoke-python3-stderr 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write stdout to /tmp/autopkgtest.Dl2imB/smoke-python3-stdout 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Dl2imB/autopkgtest_tmp 337s /tmp/autopkgtest.Dl2imB/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.Dl2imB/wrapper.sh: marking as executable: /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/smoke-python3 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: command to run: /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/smoke-python3 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.UQnbCJNDa0/out to stdout and file: /tmp/autopkgtest.Dl2imB/smoke-python3-stdout 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.UQnbCJNDa0/err to standard error and file: /tmp/autopkgtest.Dl2imB/smoke-python3-stdout 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: writing script pid 1458 to /tmp/autopkgtest_script_pid 337s Python command: python3.12 337s Interpreter: /usr/bin/python3.12 337s 3.12.9 (main, Feb 5 2025, 01:31:18) [GCC 14.2.0] 337s Distribution ‘coverage’: 337s coverage 7.4.4 337s Module ‘coverage’: 337s 337s 337s Python command: python3.13 337s Interpreter: /usr/bin/python3.13 337s 3.13.2 (main, Feb 5 2025, 01:23:35) [GCC 14.2.0] 337s Distribution ‘coverage’: 337s coverage 7.4.4 337s Module ‘coverage’: 337s 337s 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: checking for leaked background processes... 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: waiting for tee/cat subprocesses... 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: cleaning up... 337s /tmp/autopkgtest.Dl2imB/wrapper.sh: Exit status: 0 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest [02:01:15]: test smoke-python3: -----------------------] 337s autopkgtest: DBG: testbed executing test finished with exit status 0 337s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/smoke-python3-stdout /tmp/autopkgtest-work.yb0h35s8/out/smoke-python3-stdout 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/smoke-python3-stderr /tmp/autopkgtest-work.yb0h35s8/out/smoke-python3-stderr 338s autopkgtest: DBG: got reply from testbed: ok 338s smoke-python3 PASS (superficial) 338s autopkgtest [02:01:16]: test smoke-python3: - - - - - - - - - - results - - - - - - - - - - 338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/smoke-python3-artifacts/ /tmp/autopkgtest-work.yb0h35s8/out/artifacts/ 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Dl2imB/smoke-python3-artifacts', '/tmp/autopkgtest.Dl2imB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest [02:01:16]: test command1: preparing testbed 338s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-package-smoke-test', 'python3-all', 'python3-coverage', 'python-coverage-doc'], deps_new=['python-coverage-doc', 'w3m'] 338s autopkgtest: DBG: testbed reset 338s autopkgtest: DBG: sending command to testbed: revert 442s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Dl2imB 442s autopkgtest: DBG: sending command to testbed: print-execute-command 442s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.us5l86wm/runcmd 442s autopkgtest: DBG: sending command to testbed: capabilities 442s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system reboot revert ok isolation-machine root-on-testbed 442s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'ok', 'isolation-machine', 'root-on-testbed', 'has_internet'] 442s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 442s autopkgtest: DBG: testbed command exited with code 0 442s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Dl2imB/wrapper.sh 442s autopkgtest: DBG: got reply from testbed: ok 442s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/wrapper.sh'], kind short, sout raw, serr pipe, env [] 442s autopkgtest: DBG: testbed command exited with code 0 442s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 442s autopkgtest: DBG: testbed command exited with code 0 442s autopkgtest [02:03:00]: testbed dpkg architecture: s390x 442s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 443s autopkgtest: DBG: testbed command exited with code 0 443s autopkgtest [02:03:01]: testbed apt version: 2.9.28 443s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 443s autopkgtest: DBG: testbed command exited with code 0 443s autopkgtest: DBG: testbed has eatmydata 443s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 443s autopkgtest: DBG: testbed command exited with code 0 443s autopkgtest [02:03:01]: @@@@@@@@@@@@@@@@@@@@ test bed setup 443s 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 [] 443s autopkgtest: DBG: testbed command exited with code 0 443s autopkgtest [02:03:01]: testbed release detected to be: plucky 443s 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 [] 443s autopkgtest: DBG: testbed command exited with code 0 443s 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 [] 443s autopkgtest: DBG: testbed command exited with code 0 443s autopkgtest: DBG: adding APT source: Types: deb deb-src 443s URIs: http://ftpmaster.internal/ubuntu/ 443s Suites: plucky-proposed 443s Components: main restricted universe multiverse 443s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 443s 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 [] 444s autopkgtest: DBG: testbed command exited with code 0 444s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 444s Package: * 444s Pin: release plucky-proposed 444s Pin-Priority: 500 444s 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 [] 444s autopkgtest: DBG: testbed command exited with code 0 444s autopkgtest [02:03:02]: updating testbed package index (apt update) 444s 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'] 444s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 444s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 444s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 444s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 445s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 445s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 445s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 445s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 445s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 445s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 445s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 445s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 445s Fetched 2083 kB in 1s (2012 kB/s) 446s Reading package lists... 446s autopkgtest: DBG: testbed command exited with code 0 446s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 446s Package: * 446s Pin: release plucky-proposed 446s Pin-Priority: 100 446s 446s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 446s Pin: release plucky-proposed 446s Pin-Priority: 995 446s 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 [] 446s autopkgtest: DBG: testbed command exited with code 0 446s 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.Dl2imB/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 446s autopkgtest: DBG: testbed command exited with code 0 446s 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'] 446s + lsb_release --codename --short 446s + RELEASE=plucky 446s + cat 446s + [ plucky != trusty ] 446s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 446s Reading package lists... 446s Building dependency tree... 446s Reading state information... 446s Calculating upgrade... 446s The following packages were automatically installed and are no longer required: 446s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 446s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 446s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 446s linux-tools-6.11.0-8-generic 446s Use 'sudo apt autoremove' to remove them. 446s The following packages will be upgraded: 446s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 446s libxdmcp6 447s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 447s Need to get 1471 kB of archives. 447s After this operation, 24.6 kB of additional disk space will be used. 447s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 447s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 447s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 447s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 447s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 447s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 447s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 447s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 448s Preconfiguring packages ... 448s Fetched 1471 kB in 1s (1742 kB/s) 448s (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.) 448s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 448s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 448s Setting up dash (0.5.12-12ubuntu1) ... 448s (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.) 448s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 448s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 448s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 448s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 448s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 448s (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.) 448s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 448s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 448s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 448s (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.) 448s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 448s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 448s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 448s (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.) 448s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 448s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 448s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 448s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 448s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 448s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 448s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 448s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 448s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 448s Setting up libtasn1-6:s390x (4.20.0-2) ... 448s Processing triggers for libc-bin (2.40-4ubuntu1) ... 448s Processing triggers for man-db (2.13.0-1) ... 448s Processing triggers for debianutils (5.21) ... 449s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 449s + /usr/lib/apt/apt-helper analyze-pattern ?true 449s + uname -r 449s + sed s/\./\\./g 449s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 449s + apt list ?obsolete 449s + tail -n+2 449s + cut -d/ -f1 449s + grep -v ^linux-.*6\.12\.0-15-generic.* 449s + true 449s + obsolete_pkgs= 449s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 449s Reading package lists... 450s Building dependency tree... 450s Reading state information... 450s The following packages will be REMOVED: 450s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 450s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 450s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 450s linux-tools-6.11.0-8-generic* 450s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 450s After this operation, 167 MB disk space will be freed. 450s (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.) 450s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 450s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 450s Removing libpython3.12t64:s390x (3.12.9-1) ... 450s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 450s Removing libnsl2:s390x (1.3.0-3build3) ... 450s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 450s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 450s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 450s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 450s Processing triggers for libc-bin (2.40-4ubuntu1) ... 450s (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.) 450s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 450s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 450s + grep -q trusty /etc/lsb-release 450s + [ ! -d /usr/share/doc/unattended-upgrades ] 450s + [ ! -d /usr/share/doc/lxd ] 450s + [ ! -d /usr/share/doc/lxd-client ] 450s + [ ! -d /usr/share/doc/snapd ] 450s + type iptables 450s + cat 450s + chmod 755 /etc/rc.local 450s + . /etc/rc.local 450s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 450s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 450s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 450s + uname -m 450s + [ s390x = ppc64le ] 450s + [ -d /run/systemd/system ] 450s + systemd-detect-virt --quiet --vm 450s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 450s + cat 450s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 450s + echo COMPRESS=lz4 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest [02:03:08]: upgrading testbed (apt dist-upgrade and autopurge) 450s 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'] 451s Reading package lists... 451s Building dependency tree... 451s Reading state information... 451s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 451s Starting 2 pkgProblemResolver with broken count: 0 451s Done 451s Entering ResolveByKeep 451s 451s The following packages will be upgraded: 451s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 451s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 451s Need to get 10.7 MB of archives. 451s After this operation, 305 kB of additional disk space will be used. 451s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 452s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 452s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 453s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 454s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 455s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 455s Preconfiguring packages ... 455s Fetched 10.7 MB in 4s (2886 kB/s) 455s (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.) 455s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 455s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 455s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 455s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 455s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 455s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 455s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 456s Checking for services that may need to be restarted... 456s Checking init scripts... 456s Checking for services that may need to be restarted... 456s Checking init scripts... 456s Stopping some services possibly affected by the upgrade (will be restarted later): 456s cron: stopping...done. 456s 456s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 456s Setting up libc6:s390x (2.41-1ubuntu1) ... 456s Checking for services that may need to be restarted... 456s Checking init scripts... 456s Restarting services possibly affected by the upgrade: 456s cron: restarting...done. 456s 456s Services restarted successfully. 456s (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.) 456s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 456s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 456s Setting up libc-bin (2.41-1ubuntu1) ... 456s (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.) 456s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 456s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 456s Setting up iproute2 (6.13.0-1ubuntu1) ... 456s Setting up locales (2.41-1ubuntu1) ... 456s Installing new version of config file /etc/locale.alias ... 456s Generating locales (this might take a while)... 457s en_US.UTF-8... done 457s Generation complete. 457s Setting up libc-dev-bin (2.41-1ubuntu1) ... 457s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 457s Processing triggers for man-db (2.13.0-1) ... 458s Processing triggers for systemd (257.2-3ubuntu1) ... 459s autopkgtest: DBG: testbed command exited with code 0 459s 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'] 459s Reading package lists... 459s Building dependency tree... 459s Reading state information... 459s Starting pkgProblemResolver with broken count: 0 459s Starting 2 pkgProblemResolver with broken count: 0 459s Done 459s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 459s autopkgtest: DBG: testbed command exited with code 0 459s 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.Dl2imB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 460s autopkgtest: DBG: testbed command exited with code 1 460s autopkgtest [02:03:18]: rebooting testbed after setup commands that affected boot 460s autopkgtest: DBG: sending command to testbed: reboot 475s autopkgtest: DBG: got reply from testbed: ok 475s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 475s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 476s autopkgtest: DBG: got reply from testbed: ok 476s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 476s autopkgtest: DBG: got reply from testbed: ok 476s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/testbed-packages"], kind short, sout raw, serr pipe, env [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/testbed-packages /tmp/autopkgtest-work.yb0h35s8/out/testbed-packages 477s autopkgtest: DBG: got reply from testbed: ok 477s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 477s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 478s autopkgtest: DBG: got reply from testbed: ok 478s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 478s autopkgtest: DBG: testbed command exited with code 0 478s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 478s autopkgtest: DBG: testbed command exited with code 0 478s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 478s autopkgtest: DBG: testbed command exited with code 0 478s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 478s autopkgtest: DBG: testbed command exited with code 0 478s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 479s autopkgtest: DBG: got reply from testbed: ok 479s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 479s autopkgtest: DBG: testbed command exited with code 0 479s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 479s autopkgtest: DBG: testbed command exited with code 0 479s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 479s autopkgtest: DBG: testbed command exited with code 0 479s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 479s autopkgtest: DBG: install_deps: deps_new=['python-coverage-doc', 'w3m'] 479s autopkgtest: DBG: install-deps: satisfying python-coverage-doc, w3m 479s autopkgtest: DBG: can use apt-get on testbed: True 479s 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', 'python-coverage-doc, w3m'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 479s Reading package lists... 479s Building dependency tree... 479s Reading state information... 480s Starting pkgProblemResolver with broken count: 0 480s Starting 2 pkgProblemResolver with broken count: 0 480s Done 480s The following NEW packages will be installed: 480s fonts-font-awesome fonts-lato libgc1 libjs-jquery libjs-sphinxdoc 480s libjs-underscore python-coverage-doc sphinx-rtd-theme-common w3m 480s 0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded. 480s Need to get 6392 kB of archives. 480s After this operation, 20.5 MB of additional disk space will be used. 480s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 481s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 481s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libgc1 s390x 1:8.2.8-1 [93.7 kB] 481s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 481s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 481s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 481s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 481s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x python-coverage-doc all 7.4.4+dfsg1-0ubuntu3 [360 kB] 481s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x w3m s390x 0.5.3+git20230121-2.1 [1152 kB] 482s Fetched 6392 kB in 2s (3692 kB/s) 482s Selecting previously unselected package fonts-lato. 482s (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.) 482s Preparing to unpack .../0-fonts-lato_2.015-1_all.deb ... 482s Unpacking fonts-lato (2.015-1) ... 482s Selecting previously unselected package fonts-font-awesome. 482s Preparing to unpack .../1-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 482s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 482s Selecting previously unselected package libgc1:s390x. 482s Preparing to unpack .../2-libgc1_1%3a8.2.8-1_s390x.deb ... 482s Unpacking libgc1:s390x (1:8.2.8-1) ... 482s Selecting previously unselected package libjs-jquery. 482s Preparing to unpack .../3-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 482s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 482s Selecting previously unselected package libjs-underscore. 482s Preparing to unpack .../4-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 482s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 482s Selecting previously unselected package libjs-sphinxdoc. 482s Preparing to unpack .../5-libjs-sphinxdoc_8.1.3-4_all.deb ... 482s Unpacking libjs-sphinxdoc (8.1.3-4) ... 482s Selecting previously unselected package sphinx-rtd-theme-common. 482s Preparing to unpack .../6-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 482s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 482s Selecting previously unselected package python-coverage-doc. 482s Preparing to unpack .../7-python-coverage-doc_7.4.4+dfsg1-0ubuntu3_all.deb ... 482s Unpacking python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 482s Selecting previously unselected package w3m. 482s Preparing to unpack .../8-w3m_0.5.3+git20230121-2.1_s390x.deb ... 482s Unpacking w3m (0.5.3+git20230121-2.1) ... 482s Setting up fonts-lato (2.015-1) ... 482s Setting up libgc1:s390x (1:8.2.8-1) ... 482s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 482s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 482s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 482s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 482s Setting up w3m (0.5.3+git20230121-2.1) ... 482s Setting up libjs-sphinxdoc (8.1.3-4) ... 482s Setting up python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 482s Processing triggers for man-db (2.13.0-1) ... 483s Processing triggers for libc-bin (2.41-1ubuntu1) ... 483s autopkgtest: DBG: testbed command exited with code 0 483s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-coverage-doc'], kind short, sout pipe, serr pipe, env [] 483s autopkgtest: DBG: testbed command exited with code 0 483s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/command1-packages.all"], kind short, sout raw, serr pipe, env [] 483s autopkgtest: DBG: testbed command exited with code 0 483s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command1-packages.all /tmp/autopkgtest-work.yb0h35s8/out/command1-packages.all 484s autopkgtest: DBG: got reply from testbed: ok 484s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr raw, env [] 484s autopkgtest: DBG: testbed command exited with code 1 484s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB/build.LsM'], kind short, sout raw, serr pipe, env [] 484s autopkgtest: DBG: testbed command exited with code 0 484s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.yb0h35s8/out/tests-tree/ /tmp/autopkgtest.Dl2imB/build.LsM/src/ 486s autopkgtest: DBG: got reply from testbed: ok 486s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr pipe, env [] 486s autopkgtest: DBG: testbed command exited with code 0 486s autopkgtest [02:03:44]: test command1: w3m -dump /usr/share/doc/python-coverage-doc/html/index.html > /dev/null 486s autopkgtest [02:03:44]: test command1: [----------------------- 486s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.Dl2imB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Dl2imB/command1-artifacts --chdir=/tmp/autopkgtest.Dl2imB/build.LsM/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.Dl2imB/command1-stderr --stdout=/tmp/autopkgtest.Dl2imB/command1-stdout --tmp=/tmp/autopkgtest.Dl2imB/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 ' w3m -dump /usr/share/doc/python-coverage-doc/html/index.html > /dev/null'"], kind test, sout raw, serr raw, env [] 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Dl2imB/command1-artifacts 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: changing to directory: /tmp/autopkgtest.Dl2imB/build.LsM/src 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: LANG=C.UTF-8 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LANGUAGE 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ADDRESS 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ALL 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_COLLATE 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_CTYPE 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MEASUREMENT 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MESSAGES 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MONETARY 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NAME 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NUMERIC 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_PAPER 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TELEPHONE 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TIME 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: pretending to be a login shell 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write standard error to /tmp/autopkgtest.Dl2imB/command1-stderr 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write stdout to /tmp/autopkgtest.Dl2imB/command1-stdout 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Dl2imB/autopkgtest_tmp 486s /tmp/autopkgtest.Dl2imB/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 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: command to run: bash -ec w3m -dump /usr/share/doc/python-coverage-doc/html/index.html > /dev/null 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.L0giBiK7jN/out to stdout and file: /tmp/autopkgtest.Dl2imB/command1-stdout 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.L0giBiK7jN/err to standard error and file: /tmp/autopkgtest.Dl2imB/command1-stdout 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: writing script pid 1346 to /tmp/autopkgtest_script_pid 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: checking for leaked background processes... 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: waiting for tee/cat subprocesses... 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: cleaning up... 486s /tmp/autopkgtest.Dl2imB/wrapper.sh: Exit status: 0 486s autopkgtest: DBG: testbed command exited with code 0 486s autopkgtest [02:03:44]: test command1: -----------------------] 486s autopkgtest: DBG: testbed executing test finished with exit status 0 486s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command1-stdout /tmp/autopkgtest-work.yb0h35s8/out/command1-stdout 487s autopkgtest: DBG: got reply from testbed: ok 487s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command1-stderr /tmp/autopkgtest-work.yb0h35s8/out/command1-stderr 487s autopkgtest: DBG: got reply from testbed: ok 487s command1 PASS (superficial) 487s autopkgtest [02:03:45]: test command1: - - - - - - - - - - results - - - - - - - - - - 487s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command1-artifacts/ /tmp/autopkgtest-work.yb0h35s8/out/artifacts/ 487s autopkgtest: DBG: got reply from testbed: ok 487s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Dl2imB/command1-artifacts', '/tmp/autopkgtest.Dl2imB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 487s autopkgtest: DBG: testbed command exited with code 0 487s autopkgtest [02:03:45]: test command2: preparing testbed 487s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python-coverage-doc', 'w3m'], deps_new=['python-coverage-doc', 'file'] 487s autopkgtest: DBG: testbed reset 487s autopkgtest: DBG: sending command to testbed: revert 606s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Dl2imB 606s autopkgtest: DBG: sending command to testbed: print-execute-command 606s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.us5l86wm/runcmd 606s autopkgtest: DBG: sending command to testbed: capabilities 606s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system reboot revert ok isolation-machine root-on-testbed 606s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'ok', 'isolation-machine', 'root-on-testbed', 'has_internet'] 606s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 606s autopkgtest: DBG: testbed command exited with code 0 606s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Dl2imB/wrapper.sh 606s autopkgtest: DBG: got reply from testbed: ok 606s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/wrapper.sh'], kind short, sout raw, serr pipe, env [] 606s autopkgtest: DBG: testbed command exited with code 0 606s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 606s autopkgtest: DBG: testbed command exited with code 0 606s autopkgtest [02:05:44]: testbed dpkg architecture: s390x 606s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 606s autopkgtest: DBG: testbed command exited with code 0 606s autopkgtest [02:05:44]: testbed apt version: 2.9.28 606s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 607s autopkgtest: DBG: testbed command exited with code 0 607s autopkgtest: DBG: testbed has eatmydata 607s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 607s autopkgtest: DBG: testbed command exited with code 0 607s autopkgtest [02:05:45]: @@@@@@@@@@@@@@@@@@@@ test bed setup 607s 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 [] 607s autopkgtest: DBG: testbed command exited with code 0 607s autopkgtest [02:05:45]: testbed release detected to be: plucky 607s 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 [] 607s autopkgtest: DBG: testbed command exited with code 0 607s 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 [] 607s autopkgtest: DBG: testbed command exited with code 0 607s autopkgtest: DBG: adding APT source: Types: deb deb-src 607s URIs: http://ftpmaster.internal/ubuntu/ 607s Suites: plucky-proposed 607s Components: main restricted universe multiverse 607s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 607s 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 [] 607s autopkgtest: DBG: testbed command exited with code 0 607s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 607s Package: * 607s Pin: release plucky-proposed 607s Pin-Priority: 500 607s 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 [] 608s autopkgtest: DBG: testbed command exited with code 0 608s autopkgtest [02:05:46]: updating testbed package index (apt update) 608s 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'] 608s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 608s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 608s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 608s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 608s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 609s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 609s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 609s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 609s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 609s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 609s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 609s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 609s Fetched 2083 kB in 1s (1772 kB/s) 610s Reading package lists... 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 610s Package: * 610s Pin: release plucky-proposed 610s Pin-Priority: 100 610s 610s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 610s Pin: release plucky-proposed 610s Pin-Priority: 995 610s 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 [] 610s autopkgtest: DBG: testbed command exited with code 0 610s 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.Dl2imB/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 610s autopkgtest: DBG: testbed command exited with code 0 610s 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'] 610s + lsb_release --codename --short 610s + RELEASE=plucky 610s + cat 610s + [ plucky != trusty ] 610s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 610s Reading package lists... 610s Building dependency tree... 610s Reading state information... 610s Calculating upgrade... 611s The following packages were automatically installed and are no longer required: 611s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 611s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 611s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 611s linux-tools-6.11.0-8-generic 611s Use 'sudo apt autoremove' to remove them. 611s The following packages will be upgraded: 611s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 611s libxdmcp6 611s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 611s Need to get 1471 kB of archives. 611s After this operation, 24.6 kB of additional disk space will be used. 611s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 611s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 611s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 611s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 611s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 611s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 611s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 611s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 612s Preconfiguring packages ... 612s Fetched 1471 kB in 1s (1973 kB/s) 612s (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.) 612s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 612s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 612s Setting up dash (0.5.12-12ubuntu1) ... 612s (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.) 612s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 612s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 612s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 612s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 612s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 612s (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.) 612s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 612s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 612s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 612s (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.) 612s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 612s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 612s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 612s (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.) 612s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 612s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 612s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 612s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 612s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 612s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 612s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 612s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 612s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 612s Setting up libtasn1-6:s390x (4.20.0-2) ... 612s Processing triggers for libc-bin (2.40-4ubuntu1) ... 612s Processing triggers for man-db (2.13.0-1) ... 613s Processing triggers for debianutils (5.21) ... 613s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 613s + /usr/lib/apt/apt-helper analyze-pattern ?true 613s + uname -r 613s + sed s/\./\\./g 613s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 613s + apt list ?obsolete 613s + tail -n+2 613s + cut -d/ -f1 613s + grep -v ^linux-.*6\.12\.0-15-generic.* 613s + true 613s + obsolete_pkgs= 613s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 613s Reading package lists... 613s Building dependency tree... 613s Reading state information... 613s The following packages will be REMOVED: 613s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 613s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 613s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 613s linux-tools-6.11.0-8-generic* 614s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 614s After this operation, 167 MB disk space will be freed. 614s (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.) 614s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 614s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 614s Removing libpython3.12t64:s390x (3.12.9-1) ... 614s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 614s Removing libnsl2:s390x (1.3.0-3build3) ... 614s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 614s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 614s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 615s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 615s Processing triggers for libc-bin (2.40-4ubuntu1) ... 615s (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.) 615s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 615s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 616s + grep -q trusty /etc/lsb-release 616s + [ ! -d /usr/share/doc/unattended-upgrades ] 616s + [ ! -d /usr/share/doc/lxd ] 616s + [ ! -d /usr/share/doc/lxd-client ] 616s + [ ! -d /usr/share/doc/snapd ] 616s + type iptables 616s + cat 616s + chmod 755 /etc/rc.local 616s + . /etc/rc.local 616s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 616s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 616s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 616s + uname -m 616s + [ s390x = ppc64le ] 616s + [ -d /run/systemd/system ] 616s + systemd-detect-virt --quiet --vm 616s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 616s + cat 616s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 616s + echo COMPRESS=lz4 616s autopkgtest: DBG: testbed command exited with code 0 616s autopkgtest [02:05:54]: upgrading testbed (apt dist-upgrade and autopurge) 616s 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'] 616s Reading package lists... 616s Building dependency tree... 616s Reading state information... 616s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 616s Starting 2 pkgProblemResolver with broken count: 0 616s Done 616s Entering ResolveByKeep 617s 617s The following packages will be upgraded: 617s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 617s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 617s Need to get 10.7 MB of archives. 617s After this operation, 305 kB of additional disk space will be used. 617s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 617s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 617s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 618s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 618s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 618s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 619s Preconfiguring packages ... 619s Fetched 10.7 MB in 2s (5717 kB/s) 619s (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.) 619s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 619s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 619s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 619s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 619s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 619s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 619s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 619s Checking for services that may need to be restarted... 619s Checking init scripts... 619s Checking for services that may need to be restarted... 619s Checking init scripts... 619s Stopping some services possibly affected by the upgrade (will be restarted later): 619s cron: stopping...done. 619s 619s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 619s Setting up libc6:s390x (2.41-1ubuntu1) ... 619s Checking for services that may need to be restarted... 619s Checking init scripts... 619s Restarting services possibly affected by the upgrade: 619s cron: restarting...done. 619s 619s Services restarted successfully. 620s (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.) 620s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 620s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 620s Setting up libc-bin (2.41-1ubuntu1) ... 620s (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.) 620s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 620s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 620s Setting up iproute2 (6.13.0-1ubuntu1) ... 620s Setting up locales (2.41-1ubuntu1) ... 620s Installing new version of config file /etc/locale.alias ... 620s Generating locales (this might take a while)... 621s en_US.UTF-8... done 621s Generation complete. 621s Setting up libc-dev-bin (2.41-1ubuntu1) ... 621s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 621s Processing triggers for man-db (2.13.0-1) ... 622s Processing triggers for systemd (257.2-3ubuntu1) ... 623s autopkgtest: DBG: testbed command exited with code 0 623s 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'] 623s Reading package lists... 624s Building dependency tree... 624s Reading state information... 624s Starting pkgProblemResolver with broken count: 0 624s Starting 2 pkgProblemResolver with broken count: 0 624s Done 624s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 624s autopkgtest: DBG: testbed command exited with code 0 624s 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.Dl2imB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 624s autopkgtest: DBG: testbed command exited with code 1 624s autopkgtest [02:06:02]: rebooting testbed after setup commands that affected boot 624s autopkgtest: DBG: sending command to testbed: reboot 641s autopkgtest: DBG: got reply from testbed: ok 641s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 641s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 642s autopkgtest: DBG: got reply from testbed: ok 642s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 642s autopkgtest: DBG: got reply from testbed: ok 642s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/testbed-packages"], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/testbed-packages /tmp/autopkgtest-work.yb0h35s8/out/testbed-packages 643s autopkgtest: DBG: got reply from testbed: ok 643s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 643s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 644s autopkgtest: DBG: got reply from testbed: ok 644s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 644s autopkgtest: DBG: got reply from testbed: ok 644s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 645s autopkgtest: DBG: testbed command exited with code 0 645s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 645s autopkgtest: DBG: testbed command exited with code 0 645s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 645s autopkgtest: DBG: testbed command exited with code 0 645s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 645s autopkgtest: DBG: install_deps: deps_new=['python-coverage-doc', 'file'] 645s autopkgtest: DBG: install-deps: satisfying python-coverage-doc, file 645s autopkgtest: DBG: can use apt-get on testbed: True 645s 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', 'python-coverage-doc, file'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 645s Reading package lists... 645s Building dependency tree... 645s Reading state information... 646s Starting pkgProblemResolver with broken count: 0 646s Starting 2 pkgProblemResolver with broken count: 0 646s Done 646s The following NEW packages will be installed: 646s fonts-font-awesome fonts-lato libjs-jquery libjs-sphinxdoc libjs-underscore 646s python-coverage-doc sphinx-rtd-theme-common 646s 0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded. 646s Need to get 5146 kB of archives. 646s After this operation, 17.2 MB of additional disk space will be used. 646s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 647s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 647s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 647s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 647s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 647s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 647s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x python-coverage-doc all 7.4.4+dfsg1-0ubuntu3 [360 kB] 647s Fetched 5146 kB in 1s (4245 kB/s) 647s Selecting previously unselected package fonts-lato. 648s (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.) 648s Preparing to unpack .../0-fonts-lato_2.015-1_all.deb ... 648s Unpacking fonts-lato (2.015-1) ... 648s Selecting previously unselected package fonts-font-awesome. 648s Preparing to unpack .../1-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 648s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 648s Selecting previously unselected package libjs-jquery. 648s Preparing to unpack .../2-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 648s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 648s Selecting previously unselected package libjs-underscore. 648s Preparing to unpack .../3-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 648s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 648s Selecting previously unselected package libjs-sphinxdoc. 648s Preparing to unpack .../4-libjs-sphinxdoc_8.1.3-4_all.deb ... 648s Unpacking libjs-sphinxdoc (8.1.3-4) ... 648s Selecting previously unselected package sphinx-rtd-theme-common. 648s Preparing to unpack .../5-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 648s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 648s Selecting previously unselected package python-coverage-doc. 648s Preparing to unpack .../6-python-coverage-doc_7.4.4+dfsg1-0ubuntu3_all.deb ... 648s Unpacking python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 648s Setting up fonts-lato (2.015-1) ... 648s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 648s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 648s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 648s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 648s Setting up libjs-sphinxdoc (8.1.3-4) ... 648s Setting up python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 648s autopkgtest: DBG: testbed command exited with code 0 648s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-coverage-doc'], kind short, sout pipe, serr pipe, env [] 648s autopkgtest: DBG: testbed command exited with code 0 648s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/command2-packages.all"], kind short, sout raw, serr pipe, env [] 648s autopkgtest: DBG: testbed command exited with code 0 648s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command2-packages.all /tmp/autopkgtest-work.yb0h35s8/out/command2-packages.all 649s autopkgtest: DBG: got reply from testbed: ok 649s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr raw, env [] 649s autopkgtest: DBG: testbed command exited with code 1 649s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB/build.LsM'], kind short, sout raw, serr pipe, env [] 649s autopkgtest: DBG: testbed command exited with code 0 649s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.yb0h35s8/out/tests-tree/ /tmp/autopkgtest.Dl2imB/build.LsM/src/ 650s autopkgtest: DBG: got reply from testbed: ok 650s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr pipe, env [] 651s autopkgtest: DBG: testbed command exited with code 0 651s autopkgtest [02:06:29]: test command2: file --brief /usr/share/doc/python-coverage-doc/html/index.html | grep -q 'HTML document' 651s autopkgtest [02:06:29]: test command2: [----------------------- 651s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.Dl2imB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Dl2imB/command2-artifacts --chdir=/tmp/autopkgtest.Dl2imB/build.LsM/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.Dl2imB/command2-stderr --stdout=/tmp/autopkgtest.Dl2imB/command2-stdout --tmp=/tmp/autopkgtest.Dl2imB/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 \' file --brief /usr/share/doc/python-coverage-doc/html/index.html | grep -q \'"\'"\'HTML document\'"\'"\'\''], kind test, sout raw, serr raw, env [] 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Dl2imB/command2-artifacts 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: changing to directory: /tmp/autopkgtest.Dl2imB/build.LsM/src 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: LANG=C.UTF-8 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LANGUAGE 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ADDRESS 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ALL 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_COLLATE 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_CTYPE 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MEASUREMENT 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MESSAGES 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MONETARY 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NAME 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NUMERIC 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_PAPER 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TELEPHONE 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TIME 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: pretending to be a login shell 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write standard error to /tmp/autopkgtest.Dl2imB/command2-stderr 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write stdout to /tmp/autopkgtest.Dl2imB/command2-stdout 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Dl2imB/autopkgtest_tmp 651s /tmp/autopkgtest.Dl2imB/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 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: command to run: bash -ec file --brief /usr/share/doc/python-coverage-doc/html/index.html | grep -q 'HTML document' 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.IycsCgN3w1/out to stdout and file: /tmp/autopkgtest.Dl2imB/command2-stdout 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.IycsCgN3w1/err to standard error and file: /tmp/autopkgtest.Dl2imB/command2-stdout 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: writing script pid 1320 to /tmp/autopkgtest_script_pid 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: checking for leaked background processes... 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: waiting for tee/cat subprocesses... 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: cleaning up... 651s /tmp/autopkgtest.Dl2imB/wrapper.sh: Exit status: 0 651s autopkgtest: DBG: testbed command exited with code 0 651s autopkgtest [02:06:29]: test command2: -----------------------] 651s autopkgtest: DBG: testbed executing test finished with exit status 0 651s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command2-stdout /tmp/autopkgtest-work.yb0h35s8/out/command2-stdout 651s autopkgtest: DBG: got reply from testbed: ok 651s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command2-stderr /tmp/autopkgtest-work.yb0h35s8/out/command2-stderr 651s autopkgtest: DBG: got reply from testbed: ok 652s command2 PASS (superficial) 652s autopkgtest [02:06:30]: test command2: - - - - - - - - - - results - - - - - - - - - - 652s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/command2-artifacts/ /tmp/autopkgtest-work.yb0h35s8/out/artifacts/ 652s autopkgtest: DBG: got reply from testbed: ok 652s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Dl2imB/command2-artifacts', '/tmp/autopkgtest.Dl2imB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 652s autopkgtest: DBG: testbed command exited with code 0 652s autopkgtest [02:06:30]: test entry-point-scripts: preparing testbed 652s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python-coverage-doc', 'file'], deps_new=['python3-all', 'python3-coverage', 'python-coverage-doc'] 652s autopkgtest: DBG: testbed reset 652s autopkgtest: DBG: sending command to testbed: revert 776s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Dl2imB 776s autopkgtest: DBG: sending command to testbed: print-execute-command 776s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.us5l86wm/runcmd 776s autopkgtest: DBG: sending command to testbed: capabilities 776s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system reboot revert ok isolation-machine root-on-testbed 776s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'ok', 'isolation-machine', 'root-on-testbed', 'has_internet'] 776s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 776s autopkgtest: DBG: testbed command exited with code 0 776s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Dl2imB/wrapper.sh 776s autopkgtest: DBG: got reply from testbed: ok 776s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/wrapper.sh'], kind short, sout raw, serr pipe, env [] 776s autopkgtest: DBG: testbed command exited with code 0 776s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 777s autopkgtest: DBG: testbed command exited with code 0 777s autopkgtest [02:08:35]: testbed dpkg architecture: s390x 777s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 777s autopkgtest: DBG: testbed command exited with code 0 777s autopkgtest [02:08:35]: testbed apt version: 2.9.28 777s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 777s autopkgtest: DBG: testbed command exited with code 0 777s autopkgtest: DBG: testbed has eatmydata 777s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 777s autopkgtest: DBG: testbed command exited with code 0 777s autopkgtest [02:08:35]: @@@@@@@@@@@@@@@@@@@@ test bed setup 777s 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 [] 777s autopkgtest: DBG: testbed command exited with code 0 777s autopkgtest [02:08:35]: testbed release detected to be: plucky 777s 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 [] 777s autopkgtest: DBG: testbed command exited with code 0 777s 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 [] 777s autopkgtest: DBG: testbed command exited with code 0 777s autopkgtest: DBG: adding APT source: Types: deb deb-src 777s URIs: http://ftpmaster.internal/ubuntu/ 777s Suites: plucky-proposed 777s Components: main restricted universe multiverse 777s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 777s 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 [] 778s autopkgtest: DBG: testbed command exited with code 0 778s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 778s Package: * 778s Pin: release plucky-proposed 778s Pin-Priority: 500 778s 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 [] 778s autopkgtest: DBG: testbed command exited with code 0 778s autopkgtest [02:08:36]: updating testbed package index (apt update) 778s 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'] 778s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 778s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 778s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 779s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 779s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 779s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 779s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 779s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 779s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 779s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 779s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 779s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 779s Fetched 2083 kB in 1s (2026 kB/s) 780s Reading package lists... 780s autopkgtest: DBG: testbed command exited with code 0 780s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 780s Package: * 780s Pin: release plucky-proposed 780s Pin-Priority: 100 780s 780s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 780s Pin: release plucky-proposed 780s Pin-Priority: 995 780s 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 [] 780s autopkgtest: DBG: testbed command exited with code 0 780s 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.Dl2imB/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 780s autopkgtest: DBG: testbed command exited with code 0 780s 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'] 780s + lsb_release --codename --short 780s + RELEASE=plucky 780s + cat 780s + [ plucky != trusty ] 780s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 780s Reading package lists... 780s Building dependency tree... 780s Reading state information... 780s Calculating upgrade... 781s The following packages were automatically installed and are no longer required: 781s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 781s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 781s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 781s linux-tools-6.11.0-8-generic 781s Use 'sudo apt autoremove' to remove them. 781s The following packages will be upgraded: 781s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 781s libxdmcp6 781s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 781s Need to get 1471 kB of archives. 781s After this operation, 24.6 kB of additional disk space will be used. 781s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 781s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 781s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 781s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 781s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 781s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 781s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 781s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 781s Preconfiguring packages ... 782s Fetched 1471 kB in 1s (2374 kB/s) 782s (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.) 782s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 782s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 782s Setting up dash (0.5.12-12ubuntu1) ... 782s (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.) 782s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 782s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 782s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 782s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 782s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 782s (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.) 782s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 782s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 782s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 782s (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.) 782s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 782s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 782s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 782s (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.) 782s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 782s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 782s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 782s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 782s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 782s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 782s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 782s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 782s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 782s Setting up libtasn1-6:s390x (4.20.0-2) ... 782s Processing triggers for libc-bin (2.40-4ubuntu1) ... 782s Processing triggers for man-db (2.13.0-1) ... 782s Processing triggers for debianutils (5.21) ... 783s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 783s + /usr/lib/apt/apt-helper analyze-pattern ?true 783s + uname -r 783s + sed s/\./\\./g 783s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 783s + apt list ?obsolete 783s + tail -n+2 783s + grep -v ^linux-.*6\.12\.0-15-generic.* 783s + cut -d/ -f1 783s + true 783s + obsolete_pkgs= 783s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 783s Reading package lists... 783s Building dependency tree... 783s Reading state information... 783s The following packages will be REMOVED: 783s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 783s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 783s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 783s linux-tools-6.11.0-8-generic* 783s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 783s After this operation, 167 MB disk space will be freed. 783s (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.) 783s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 783s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 783s Removing libpython3.12t64:s390x (3.12.9-1) ... 783s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 783s Removing libnsl2:s390x (1.3.0-3build3) ... 783s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 784s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 784s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 785s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 785s Processing triggers for libc-bin (2.40-4ubuntu1) ... 785s (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.) 785s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 785s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 785s + grep -q trusty /etc/lsb-release 785s + [ ! -d /usr/share/doc/unattended-upgrades ] 785s + [ ! -d /usr/share/doc/lxd ] 785s + [ ! -d /usr/share/doc/lxd-client ] 785s + [ ! -d /usr/share/doc/snapd ] 785s + type iptables 785s + cat 785s + chmod 755 /etc/rc.local 785s + . /etc/rc.local 785s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 785s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 785s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 785s + uname -m 785s + [ s390x = ppc64le ] 785s + [ -d /run/systemd/system ] 785s + systemd-detect-virt --quiet --vm 785s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 785s + cat 785s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 785s + echo COMPRESS=lz4 785s autopkgtest: DBG: testbed command exited with code 0 785s autopkgtest [02:08:43]: upgrading testbed (apt dist-upgrade and autopurge) 785s 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'] 785s Reading package lists... 785s Building dependency tree... 785s Reading state information... 785s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 785s Starting 2 pkgProblemResolver with broken count: 0 785s Done 786s Entering ResolveByKeep 786s 786s The following packages will be upgraded: 786s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 786s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 786s Need to get 10.7 MB of archives. 786s After this operation, 305 kB of additional disk space will be used. 786s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 786s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 787s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 787s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 787s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 787s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 787s Preconfiguring packages ... 787s Fetched 10.7 MB in 1s (10.1 MB/s) 788s (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.) 788s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 788s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 788s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 788s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 788s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 788s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 788s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 788s Checking for services that may need to be restarted... 788s Checking init scripts... 788s Checking for services that may need to be restarted... 788s Checking init scripts... 788s Stopping some services possibly affected by the upgrade (will be restarted later): 788s cron: stopping...done. 788s 788s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 788s Setting up libc6:s390x (2.41-1ubuntu1) ... 788s Checking for services that may need to be restarted... 788s Checking init scripts... 788s Restarting services possibly affected by the upgrade: 788s cron: restarting...done. 788s 788s Services restarted successfully. 788s (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.) 788s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 788s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 788s Setting up libc-bin (2.41-1ubuntu1) ... 788s (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.) 788s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 788s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 788s Setting up iproute2 (6.13.0-1ubuntu1) ... 789s Setting up locales (2.41-1ubuntu1) ... 789s Installing new version of config file /etc/locale.alias ... 789s Generating locales (this might take a while)... 790s en_US.UTF-8... done 790s Generation complete. 790s Setting up libc-dev-bin (2.41-1ubuntu1) ... 790s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 790s Processing triggers for man-db (2.13.0-1) ... 791s Processing triggers for systemd (257.2-3ubuntu1) ... 791s autopkgtest: DBG: testbed command exited with code 0 791s 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'] 792s Reading package lists... 792s Building dependency tree... 792s Reading state information... 792s Starting pkgProblemResolver with broken count: 0 792s Starting 2 pkgProblemResolver with broken count: 0 792s Done 792s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 792s autopkgtest: DBG: testbed command exited with code 0 792s 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.Dl2imB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 792s autopkgtest: DBG: testbed command exited with code 1 792s autopkgtest [02:08:50]: rebooting testbed after setup commands that affected boot 792s autopkgtest: DBG: sending command to testbed: reboot 810s autopkgtest: DBG: got reply from testbed: ok 810s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 810s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 810s autopkgtest: DBG: testbed command exited with code 0 810s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 810s autopkgtest: DBG: got reply from testbed: ok 810s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 810s autopkgtest: DBG: testbed command exited with code 0 810s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 811s autopkgtest: DBG: testbed command exited with code 0 811s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 811s autopkgtest: DBG: testbed command exited with code 0 811s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 811s autopkgtest: DBG: testbed command exited with code 0 811s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 811s autopkgtest: DBG: got reply from testbed: ok 811s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 811s autopkgtest: DBG: testbed command exited with code 0 811s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 812s autopkgtest: DBG: testbed command exited with code 0 812s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 812s autopkgtest: DBG: testbed command exited with code 0 812s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/testbed-packages"], kind short, sout raw, serr pipe, env [] 812s autopkgtest: DBG: testbed command exited with code 0 812s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/testbed-packages /tmp/autopkgtest-work.yb0h35s8/out/testbed-packages 812s autopkgtest: DBG: got reply from testbed: ok 812s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 812s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 812s autopkgtest: DBG: testbed command exited with code 0 812s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot 812s autopkgtest: DBG: got reply from testbed: ok 812s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 813s autopkgtest: DBG: testbed command exited with code 0 813s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 813s autopkgtest: DBG: testbed command exited with code 0 813s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 813s autopkgtest: DBG: testbed command exited with code 0 813s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB'], kind short, sout raw, serr pipe, env [] 813s autopkgtest: DBG: testbed command exited with code 0 813s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare 813s autopkgtest: DBG: got reply from testbed: ok 813s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 814s autopkgtest: DBG: testbed command exited with code 0 814s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Dl2imB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 814s autopkgtest: DBG: testbed command exited with code 0 814s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 814s autopkgtest: DBG: testbed command exited with code 0 814s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 814s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-coverage', 'python-coverage-doc'] 814s autopkgtest: DBG: install-deps: satisfying python3-all, python3-coverage, python-coverage-doc 814s autopkgtest: DBG: can use apt-get on testbed: True 814s 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', 'python3-all, python3-coverage, python-coverage-doc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 814s Reading package lists... 814s Building dependency tree... 814s Reading state information... 814s Starting pkgProblemResolver with broken count: 0 814s Starting 2 pkgProblemResolver with broken count: 0 814s Done 815s The following NEW packages will be installed: 815s fonts-font-awesome fonts-lato libjs-jquery libjs-sphinxdoc libjs-underscore 815s libnsl2 libpython3.12-minimal libpython3.12-stdlib python-coverage-doc 815s python3-all python3-coverage python3.12 python3.12-minimal 815s sphinx-rtd-theme-common 815s 0 upgraded, 14 newly installed, 0 to remove and 0 not upgraded. 815s Need to get 11.3 MB of archives. 815s After this operation, 41.9 MB of additional disk space will be used. 815s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 815s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 815s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 815s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 815s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 816s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 816s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 816s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 816s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 816s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 816s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 816s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python-coverage-doc all 7.4.4+dfsg1-0ubuntu3 [360 kB] 816s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 816s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 816s Fetched 11.3 MB in 1s (11.8 MB/s) 816s Selecting previously unselected package libpython3.12-minimal:s390x. 816s (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.) 816s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 816s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 816s Selecting previously unselected package python3.12-minimal. 816s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 816s Unpacking python3.12-minimal (3.12.9-1) ... 816s Selecting previously unselected package fonts-lato. 816s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 816s Unpacking fonts-lato (2.015-1) ... 816s Selecting previously unselected package libnsl2:s390x. 816s Preparing to unpack .../03-libnsl2_1.3.0-3build3_s390x.deb ... 816s Unpacking libnsl2:s390x (1.3.0-3build3) ... 816s Selecting previously unselected package libpython3.12-stdlib:s390x. 816s Preparing to unpack .../04-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 816s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 817s Selecting previously unselected package python3.12. 817s Preparing to unpack .../05-python3.12_3.12.9-1_s390x.deb ... 817s Unpacking python3.12 (3.12.9-1) ... 817s Selecting previously unselected package fonts-font-awesome. 817s Preparing to unpack .../06-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 817s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 817s Selecting previously unselected package libjs-jquery. 817s Preparing to unpack .../07-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 817s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 817s Selecting previously unselected package libjs-underscore. 817s Preparing to unpack .../08-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 817s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 817s Selecting previously unselected package libjs-sphinxdoc. 817s Preparing to unpack .../09-libjs-sphinxdoc_8.1.3-4_all.deb ... 817s Unpacking libjs-sphinxdoc (8.1.3-4) ... 817s Selecting previously unselected package sphinx-rtd-theme-common. 817s Preparing to unpack .../10-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 817s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 817s Selecting previously unselected package python-coverage-doc. 817s Preparing to unpack .../11-python-coverage-doc_7.4.4+dfsg1-0ubuntu3_all.deb ... 817s Unpacking python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 817s Selecting previously unselected package python3-all. 817s Preparing to unpack .../12-python3-all_3.13.1-1~exp2_s390x.deb ... 817s Unpacking python3-all (3.13.1-1~exp2) ... 817s Selecting previously unselected package python3-coverage. 817s Preparing to unpack .../13-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 817s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 817s Setting up fonts-lato (2.015-1) ... 817s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 817s Setting up libnsl2:s390x (1.3.0-3build3) ... 817s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 817s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 817s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 817s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 817s Setting up python3.12-minimal (3.12.9-1) ... 818s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 818s Setting up python3.12 (3.12.9-1) ... 819s Setting up python3-all (3.13.1-1~exp2) ... 819s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 819s Setting up libjs-sphinxdoc (8.1.3-4) ... 819s Setting up python-coverage-doc (7.4.4+dfsg1-0ubuntu3) ... 819s Processing triggers for systemd (257.2-3ubuntu1) ... 819s Processing triggers for man-db (2.13.0-1) ... 820s Processing triggers for libc-bin (2.41-1ubuntu1) ... 820s autopkgtest: DBG: testbed command exited with code 0 820s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-coverage'], kind short, sout pipe, serr pipe, env [] 820s autopkgtest: DBG: testbed command exited with code 0 820s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-coverage-doc'], kind short, sout pipe, serr pipe, env [] 820s autopkgtest: DBG: testbed command exited with code 0 820s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/entry-point-scripts-packages.all"], kind short, sout raw, serr pipe, env [] 821s autopkgtest: DBG: testbed command exited with code 0 821s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/entry-point-scripts-packages.all /tmp/autopkgtest-work.yb0h35s8/out/entry-point-scripts-packages.all 821s autopkgtest: DBG: got reply from testbed: ok 821s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr raw, env [] 821s autopkgtest: DBG: testbed command exited with code 1 821s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Dl2imB/build.LsM'], kind short, sout raw, serr pipe, env [] 821s autopkgtest: DBG: testbed command exited with code 0 821s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.yb0h35s8/out/tests-tree/ /tmp/autopkgtest.Dl2imB/build.LsM/src/ 831s autopkgtest: DBG: got reply from testbed: ok 831s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr pipe, env [] 832s autopkgtest: DBG: testbed command exited with code 0 832s autopkgtest [02:09:30]: test entry-point-scripts: [----------------------- 832s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.Dl2imB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Dl2imB/entry-point-scripts-artifacts --chdir=/tmp/autopkgtest.Dl2imB/build.LsM/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.Dl2imB/entry-point-scripts-stderr --stdout=/tmp/autopkgtest.Dl2imB/entry-point-scripts-stdout --tmp=/tmp/autopkgtest.Dl2imB/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' --make-executable=/tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/entry-point-scripts -- /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/entry-point-scripts"], kind test, sout raw, serr raw, env [] 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Dl2imB/entry-point-scripts-artifacts 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: changing to directory: /tmp/autopkgtest.Dl2imB/build.LsM/src 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: LANG=C.UTF-8 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LANGUAGE 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ADDRESS 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ALL 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_COLLATE 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_CTYPE 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MEASUREMENT 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MESSAGES 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MONETARY 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NAME 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NUMERIC 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_PAPER 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TELEPHONE 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TIME 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: pretending to be a login shell 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write standard error to /tmp/autopkgtest.Dl2imB/entry-point-scripts-stderr 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write stdout to /tmp/autopkgtest.Dl2imB/entry-point-scripts-stdout 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Dl2imB/autopkgtest_tmp 832s /tmp/autopkgtest.Dl2imB/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 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: marking as executable: /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/entry-point-scripts 832s Entry point script: ‘python3-coverage’ 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: command to run: /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/entry-point-scripts 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.hrcqXxl2FD/out to stdout and file: /tmp/autopkgtest.Dl2imB/entry-point-scripts-stdout 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.hrcqXxl2FD/err to standard error and file: /tmp/autopkgtest.Dl2imB/entry-point-scripts-stdout 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: writing script pid 1437 to /tmp/autopkgtest_script_pid 832s Hello, world! 832s 832s Entry point script: ‘python3.12-coverage’ 832s Hello, world! 832s 832s Entry point script: ‘python3.13-coverage’ 832s Hello, world! 832s 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: checking for leaked background processes... 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: waiting for tee/cat subprocesses... 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: cleaning up... 832s /tmp/autopkgtest.Dl2imB/wrapper.sh: Exit status: 0 832s autopkgtest: DBG: testbed command exited with code 0 832s autopkgtest [02:09:30]: test entry-point-scripts: -----------------------] 832s autopkgtest: DBG: testbed executing test finished with exit status 0 832s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/entry-point-scripts-stdout /tmp/autopkgtest-work.yb0h35s8/out/entry-point-scripts-stdout 833s autopkgtest: DBG: got reply from testbed: ok 833s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/entry-point-scripts-stderr /tmp/autopkgtest-work.yb0h35s8/out/entry-point-scripts-stderr 833s autopkgtest: DBG: got reply from testbed: ok 833s autopkgtest [02:09:31]: test entry-point-scripts: - - - - - - - - - - results - - - - - - - - - - 833s entry-point-scripts PASS 833s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/entry-point-scripts-artifacts/ /tmp/autopkgtest-work.yb0h35s8/out/artifacts/ 833s autopkgtest: DBG: got reply from testbed: ok 833s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Dl2imB/entry-point-scripts-artifacts', '/tmp/autopkgtest.Dl2imB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 833s autopkgtest: DBG: testbed command exited with code 0 833s autopkgtest [02:09:31]: test module-scripts: preparing testbed 833s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-all', 'python3-coverage', 'python-coverage-doc'], deps_new=['python3-all', 'python3-coverage', 'python-coverage-doc'] 833s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 833s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-coverage', 'python-coverage-doc'] 833s autopkgtest: DBG: install-deps: satisfying python3-all, python3-coverage, python-coverage-doc 833s autopkgtest: DBG: can use apt-get on testbed: True 833s 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', 'python3-all, python3-coverage, python-coverage-doc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 833s Reading package lists... 834s Building dependency tree... 834s Reading state information... 834s Starting pkgProblemResolver with broken count: 0 834s Starting 2 pkgProblemResolver with broken count: 0 834s Done 834s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 834s autopkgtest: DBG: testbed command exited with code 0 834s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-coverage'], kind short, sout pipe, serr pipe, env [] 834s autopkgtest: DBG: testbed command exited with code 0 834s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-coverage-doc'], kind short, sout pipe, serr pipe, env [] 834s autopkgtest: DBG: testbed command exited with code 0 834s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Dl2imB/module-scripts-packages.all"], kind short, sout raw, serr pipe, env [] 835s autopkgtest: DBG: testbed command exited with code 0 835s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/module-scripts-packages.all /tmp/autopkgtest-work.yb0h35s8/out/module-scripts-packages.all 835s autopkgtest: DBG: got reply from testbed: ok 835s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Dl2imB/build.LsM/src'], kind short, sout raw, serr raw, env [] 835s autopkgtest: DBG: testbed command exited with code 0 835s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.Dl2imB/build.LsM/src already exists 835s autopkgtest [02:09:33]: test module-scripts: [----------------------- 835s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.Dl2imB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Dl2imB/module-scripts-artifacts --chdir=/tmp/autopkgtest.Dl2imB/build.LsM/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.Dl2imB/module-scripts-stderr --stdout=/tmp/autopkgtest.Dl2imB/module-scripts-stdout --tmp=/tmp/autopkgtest.Dl2imB/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' --make-executable=/tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/module-scripts -- /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/module-scripts"], kind test, sout raw, serr raw, env [] 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Dl2imB/module-scripts-artifacts 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: changing to directory: /tmp/autopkgtest.Dl2imB/build.LsM/src 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: setting environment: LANG=C.UTF-8 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LANGUAGE 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ADDRESS 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_ALL 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_COLLATE 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_CTYPE 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MEASUREMENT 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MESSAGES 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_MONETARY 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NAME 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_NUMERIC 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_PAPER 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TELEPHONE 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: unsetting environment: LC_TIME 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: pretending to be a login shell 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write standard error to /tmp/autopkgtest.Dl2imB/module-scripts-stderr 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: will write stdout to /tmp/autopkgtest.Dl2imB/module-scripts-stdout 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Dl2imB/autopkgtest_tmp 835s /tmp/autopkgtest.Dl2imB/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 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: marking as executable: /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/module-scripts 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: command to run: /tmp/autopkgtest.Dl2imB/build.LsM/src/debian/tests/module-scripts 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.AhijEU27OR/out to stdout and file: /tmp/autopkgtest.Dl2imB/module-scripts-stdout 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: copying /tmp/tmp.AhijEU27OR/err to standard error and file: /tmp/autopkgtest.Dl2imB/module-scripts-stdout 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: writing script pid 1604 to /tmp/autopkgtest_script_pid 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: checking for leaked background processes... 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: waiting for tee/cat subprocesses... 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: cleaning up... 835s /tmp/autopkgtest.Dl2imB/wrapper.sh: Exit status: 0 835s autopkgtest: DBG: testbed command exited with code 0 835s autopkgtest [02:09:33]: test module-scripts: -----------------------] 835s autopkgtest: DBG: testbed executing test finished with exit status 0 835s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/module-scripts-stdout /tmp/autopkgtest-work.yb0h35s8/out/module-scripts-stdout 836s autopkgtest: DBG: got reply from testbed: ok 836s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/module-scripts-stderr /tmp/autopkgtest-work.yb0h35s8/out/module-scripts-stderr 836s autopkgtest: DBG: got reply from testbed: ok 836s module-scripts PASS 836s autopkgtest [02:09:34]: test module-scripts: - - - - - - - - - - results - - - - - - - - - - 836s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Dl2imB/module-scripts-artifacts/ /tmp/autopkgtest-work.yb0h35s8/out/artifacts/ 836s autopkgtest: DBG: got reply from testbed: ok 836s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Dl2imB/module-scripts-artifacts', '/tmp/autopkgtest.Dl2imB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 836s autopkgtest: DBG: testbed command exited with code 0 836s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 836s autopkgtest [02:09:34]: @@@@@@@@@@@@@@@@@@@@ summary 836s smoke-python3 PASS (superficial) 836s command1 PASS (superficial) 836s command2 PASS (superficial) 836s entry-point-scripts PASS 836s module-scripts PASS 836s autopkgtest: DBG: testbed stop 836s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.Dl2imB 836s autopkgtest: DBG: sending command to testbed: close 854s autopkgtest: DBG: got reply from testbed: ok 854s autopkgtest: DBG: sending command to testbed: quit 854s nova [W] Using flock in prodstack6-s390x 854s flock: timeout while waiting to get lock 854s Creating nova instance adt-plucky-s390x-python-coverage-20250216-015538-juju-7f2275-prod-proposed-migration-environment-15-8ea7ae85-f6cd-4cd3-b788-04358cbd0fb0 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 854s nova [W] Timed out waiting for 352b57f8-b3dd-40ef-9cc8-d48db31cfcc8 to get deleted. 854s nova [W] Using flock in prodstack6-s390x 854s flock: timeout while waiting to get lock 854s Creating nova instance adt-plucky-s390x-python-coverage-20250216-015538-juju-7f2275-prod-proposed-migration-environment-15-8ea7ae85-f6cd-4cd3-b788-04358cbd0fb0 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 854s nova [W] Timed out waiting for 21b76dbb-1d65-44be-ae2a-55ca281e798b to get deleted. 854s nova [W] Using flock in prodstack6-s390x 854s flock: timeout while waiting to get lock 854s Creating nova instance adt-plucky-s390x-python-coverage-20250216-015538-juju-7f2275-prod-proposed-migration-environment-15-8ea7ae85-f6cd-4cd3-b788-04358cbd0fb0 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 854s nova [W] Timed out waiting for f8e3f4af-a1ba-437a-996c-5dd7ace8738f to get deleted. 854s nova [W] Using flock in prodstack6-s390x 854s flock: timeout while waiting to get lock 854s Creating nova instance adt-plucky-s390x-python-coverage-20250216-015538-juju-7f2275-prod-proposed-migration-environment-15-8ea7ae85-f6cd-4cd3-b788-04358cbd0fb0 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 854s nova [W] Timed out waiting for 36b6460c-2255-4890-8c52-82129abe21a8 to get deleted. 854s nova [W] Using flock in prodstack6-s390x 854s Creating nova instance adt-plucky-s390x-python-coverage-20250216-015538-juju-7f2275-prod-proposed-migration-environment-15-8ea7ae85-f6cd-4cd3-b788-04358cbd0fb0 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 854s nova [W] Timed out waiting for 31d6f461-acad-4d7b-bc81-dcbec189eaf9 to get deleted.