0s autopkgtest: DBG: testbed init 0s autopkgtest [01:58:30]: starting date and time: 2025-02-16 01:58:30+0000 0s autopkgtest [01:58:30]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:58:30]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work._kosdczd/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-lupa --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-1.secgroup --name adt-plucky-s390x-python-lupa-20250216-015830-juju-7f2275-prod-proposed-migration-environment-15-76389094-9581-4392-9bac-d8752eeed03c --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 107s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.H74eyU 107s autopkgtest: DBG: sending command to testbed: print-execute-command 107s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.pp42fjyh/runcmd 107s autopkgtest: DBG: sending command to testbed: capabilities 107s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system revert suggested-normal-user=ubuntu isolation-machine root-on-testbed 107s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.H74eyU/wrapper.sh 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [02:00:17]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [02:00:17]: testbed apt version: 2.9.28 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed has eatmydata 108s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [02:00:18]: @@@@@@@@@@@@@@@@@@@@ test bed setup 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [02:00:18]: testbed release detected to be: None 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 500 108s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [02:00:19]: updating testbed package index (apt update) 109s 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'] 109s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 109s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 109s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 109s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 110s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 110s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 110s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 110s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 110s Fetched 2083 kB in 1s (2015 kB/s) 111s Reading package lists... 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 111s Package: * 111s Pin: release plucky-proposed 111s Pin-Priority: 100 111s 111s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 111s Pin: release plucky-proposed 111s Pin-Priority: 995 111s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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.H74eyU/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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'] 111s + lsb_release --codename --short 111s + RELEASE=plucky 111s + cat 111s + [ plucky != trusty ] 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade... 111s The following packages were automatically installed and are no longer required: 111s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 111s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 111s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 111s linux-tools-6.11.0-8-generic 111s Use 'sudo apt autoremove' to remove them. 111s The following packages will be upgraded: 111s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 111s libxdmcp6 112s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 1471 kB of archives. 112s After this operation, 24.6 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 112s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 112s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 112s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 112s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 112s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 112s Preconfiguring packages ... 112s Fetched 1471 kB in 1s (2145 kB/s) 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 113s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 113s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 113s Setting up dash (0.5.12-12ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 113s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 113s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 113s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 113s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 113s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 113s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 113s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 113s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 113s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 113s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 113s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 113s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 113s Setting up libtasn1-6:s390x (4.20.0-2) ... 113s Processing triggers for libc-bin (2.40-4ubuntu1) ... 113s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for debianutils (5.21) ... 114s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 114s + /usr/lib/apt/apt-helper analyze-pattern ?true 114s + uname -r 114s + sed s/\./\\./g 114s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 114s + apt list ?obsolete 114s + tail -n+2 114s + cut -d/ -f1 114s + grep -v ^linux-.*6\.12\.0-15-generic.* 114s + true 114s + obsolete_pkgs= 114s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s The following packages will be REMOVED: 114s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 114s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 114s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 114s linux-tools-6.11.0-8-generic* 114s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 114s After this operation, 167 MB disk space will be freed. 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 114s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 114s Removing libpython3.12t64:s390x (3.12.9-1) ... 114s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 114s Removing libnsl2:s390x (1.3.0-3build3) ... 114s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 114s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 116s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s Processing triggers for libc-bin (2.40-4ubuntu1) ... 116s (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.) 116s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 116s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s + grep -q trusty /etc/lsb-release 116s + [ ! -d /usr/share/doc/unattended-upgrades ] 116s + [ ! -d /usr/share/doc/lxd ] 116s + [ ! -d /usr/share/doc/lxd-client ] 116s + [ ! -d /usr/share/doc/snapd ] 116s + type iptables 116s + cat 116s + chmod 755 /etc/rc.local 116s + . /etc/rc.local 116s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 116s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 116s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 116s + uname -m 116s + [ s390x = ppc64le ] 116s + [ -d /run/systemd/system ] 116s + systemd-detect-virt --quiet --vm 116s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 116s + cat 116s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 116s + echo COMPRESS=lz4 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [02:00:26]: upgrading testbed (apt dist-upgrade and autopurge) 116s 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'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 117s Entering ResolveByKeep 117s 117s The following packages will be upgraded: 117s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 117s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s Need to get 10.7 MB of archives. 117s After this operation, 305 kB of additional disk space will be used. 117s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 117s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 117s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 118s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 118s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 118s Preconfiguring packages ... 118s Fetched 10.7 MB in 1s (10.1 MB/s) 118s (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.) 118s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 118s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 119s Checking for services that may need to be restarted... 119s Checking init scripts... 119s Checking for services that may need to be restarted... 119s Checking init scripts... 119s Stopping some services possibly affected by the upgrade (will be restarted later): 119s cron: stopping...done. 119s 119s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 119s Setting up libc6:s390x (2.41-1ubuntu1) ... 119s Checking for services that may need to be restarted... 119s Checking init scripts... 119s Restarting services possibly affected by the upgrade: 119s cron: restarting...done. 119s 119s Services restarted successfully. 119s (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.) 119s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 119s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 119s Setting up libc-bin (2.41-1ubuntu1) ... 119s (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.) 119s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 119s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 119s Setting up iproute2 (6.13.0-1ubuntu1) ... 119s Setting up locales (2.41-1ubuntu1) ... 119s Installing new version of config file /etc/locale.alias ... 120s Generating locales (this might take a while)... 121s en_US.UTF-8... done 121s Generation complete. 121s Setting up libc-dev-bin (2.41-1ubuntu1) ... 121s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 121s Processing triggers for man-db (2.13.0-1) ... 121s Processing triggers for systemd (257.2-3ubuntu1) ... 122s autopkgtest: DBG: testbed command exited with code 0 122s 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'] 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 123s Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s autopkgtest: DBG: testbed command exited with code 0 123s 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.H74eyU/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 1 123s autopkgtest [02:00:33]: rebooting testbed after setup commands that affected boot 123s autopkgtest: DBG: sending command to testbed: reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest [02:00:52]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 142s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.H74eyU/testbed-packages"], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/testbed-packages /tmp/autopkgtest-work._kosdczd/out/testbed-packages 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: Binaries: initialising 144s autopkgtest [02:00:54]: @@@@@@@@@@@@@@@@@@@@ apt-source python-lupa 144s autopkgtest: DBG: blame += python-lupa 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 144s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-lupa'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-lupa$'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-lupa=2.2+dfsg-1'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: install_deps: deps_new=[] 145s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s 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.H74eyU/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-lupa=2.2+dfsg-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x python-lupa_*.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'] 145s + cd / 145s + mktemp -d /tmp/autopkgtest.H74eyU/build.XXX 145s + builddir=/tmp/autopkgtest.H74eyU/build.Oxt 145s + cd /tmp/autopkgtest.H74eyU/build.Oxt 145s + apt-get source -d -q --only-source python-lupa=2.2+dfsg-1 146s + OUT=Reading package lists... 146s NOTICE: 'python-lupa' packaging is maintained in the 'Git' version control system at: 146s https://salsa.debian.org/python-team/packages/python-lupa.git 146s Please use: 146s git clone https://salsa.debian.org/python-team/packages/python-lupa.git 146s to retrieve the latest (possibly unreleased) updates to the package. 146s Need to get 353 kB of source archives. 146s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (dsc) [2331 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (tar) [347 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (diff) [3780 B] 146s Fetched 353 kB in 1s (649 kB/s) 146s Download complete and in download only mode 146s + [ -n ] 146s + grep ^Get: 146s + echo Reading package lists... 146s NOTICE: 'python-lupa' packaging is maintained in the 'Git' version control system at: 146s https://salsa.debian.org/python-team/packages/python-lupa.git 146s Please use: 146s git clone https://salsa.debian.org/python-team/packages/python-lupa.git 146s to retrieve the latest (possibly unreleased) updates to the package. 146s Need to get 353 kB of source archives. 146s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (dsc) [2331 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (tar) [347 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (diff) [3780 B] 146s Fetched 353 kB in 1s (649 kB/s) 146s Download complete and in download only mode 146s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (dsc) [2331 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (tar) [347 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-lupa 2.2+dfsg-1 (diff) [3780 B] 146s + dpkg-source -x python-lupa_2.2+dfsg-1.dsc src 146s gpgv: Signature made Sat Nov 23 14:41:34 2024 UTC 146s gpgv: using RSA key 8F6DE104377F3B11E741748731F3144544A1741A 146s gpgv: issuer "tchet@debian.org" 146s gpgv: Can't check signature: No public key 146s dpkg-source: warning: cannot verify inline signature for ./python-lupa_2.2+dfsg-1.dsc: no acceptable signature found 146s + chmod -R a+rX . 146s + cd src/. 146s + pwd 146s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [02:00:56]: testing package python-lupa version 2.2+dfsg-1 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/build.Oxt/src/debian/ /tmp/autopkgtest-work._kosdczd/out/pkg/debian/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: autodep8 generated control: ----- 146s Tests: upstream 146s Depends: 146s python3-all, 146s @, 146s @builddeps@, 146s Restrictions: allow-stderr 146s 146s 146s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done 146s Depends: python3-all, python3-lupa, 146s Restrictions: allow-stderr, superficial, 146s Features: test-name=autodep8-python3 146s 146s 146s ------- 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency python3-lupa 146s autopkgtest: DBG: processing dependency @builddeps@ 146s autopkgtest: DBG: synthesised dependency cython3 146s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 146s autopkgtest: DBG: synthesised dependency dh-sequence-python3 146s autopkgtest: DBG: synthesised dependency libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev 146s autopkgtest: DBG: synthesised dependency pkgconf 146s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 146s autopkgtest: DBG: synthesised dependency python3-all 146s autopkgtest: DBG: synthesised dependency python3-all-dev 146s autopkgtest: DBG: synthesised dependency python3-pytest 146s autopkgtest: DBG: synthesised dependency python3-setuptools 146s autopkgtest: DBG: synthesised dependency build-essential 146s autopkgtest: DBG: Test defined: name upstream path debian/tests/upstream command "None" restrictions ['allow-stderr'] features [] depends ['python3-all', 'python3-lupa', 'cython3', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev', 'pkgconf', 'pybuild-plugin-pyproject', 'python3-all', 'python3-all-dev', 'python3-pytest ', 'python3-setuptools', 'build-essential'] 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-lupa 146s autopkgtest: DBG: marked alternatives ['python3-lupa'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-lupa'] 146s autopkgtest [02:00:56]: build not needed 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/build.Oxt/src/ /tmp/autopkgtest-work._kosdczd/out/tests-tree/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: autodep8 generated control: ----- 148s Tests: upstream 148s Depends: 148s python3-all, 148s @, 148s @builddeps@, 148s Restrictions: allow-stderr 148s 148s 148s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done 148s Depends: python3-all, python3-lupa, 148s Restrictions: allow-stderr, superficial, 148s Features: test-name=autodep8-python3 148s 148s 148s ------- 148s autopkgtest: DBG: processing dependency python3-all 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency python3-lupa 148s autopkgtest: DBG: processing dependency @builddeps@ 148s autopkgtest: DBG: synthesised dependency cython3 148s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 148s autopkgtest: DBG: synthesised dependency dh-sequence-python3 148s autopkgtest: DBG: synthesised dependency libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev 148s autopkgtest: DBG: synthesised dependency pkgconf 148s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 148s autopkgtest: DBG: synthesised dependency python3-all 148s autopkgtest: DBG: synthesised dependency python3-all-dev 148s autopkgtest: DBG: synthesised dependency python3-pytest 148s autopkgtest: DBG: synthesised dependency python3-setuptools 148s autopkgtest: DBG: synthesised dependency build-essential 148s autopkgtest: DBG: Test defined: name upstream path debian/tests/upstream command "None" restrictions ['allow-stderr'] features [] depends ['python3-all', 'python3-lupa', 'cython3', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev', 'pkgconf', 'pybuild-plugin-pyproject', 'python3-all', 'python3-all-dev', 'python3-pytest ', 'python3-setuptools', 'build-essential'] 148s autopkgtest: DBG: processing dependency python3-all 148s autopkgtest: DBG: processing dependency python3-lupa 148s autopkgtest: DBG: marked alternatives ['python3-lupa'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-lupa'] 148s autopkgtest [02:00:58]: test upstream: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-lupa', 'cython3', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev', 'pkgconf', 'pybuild-plugin-pyproject', 'python3-all', 'python3-all-dev', 'python3-pytest ', 'python3-setuptools', 'build-essential'] 148s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 148s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-lupa', 'cython3', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev', 'pkgconf', 'pybuild-plugin-pyproject', 'python3-all', 'python3-all-dev', 'python3-pytest ', 'python3-setuptools', 'build-essential'] 148s autopkgtest: DBG: install-deps: satisfying python3-all, python3-lupa, cython3, debhelper-compat (= 13), dh-sequence-python3, libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev, pkgconf, pybuild-plugin-pyproject, python3-all, python3-all-dev, python3-pytest , python3-setuptools, build-essential 148s autopkgtest: DBG: can use apt-get on testbed: True 148s 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-lupa, cython3, debhelper-compat (= 13), dh-sequence-python3, libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev, pkgconf, pybuild-plugin-pyproject, python3-all, python3-all-dev, python3-pytest , python3-setuptools, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 148s Reading package lists... 148s Building dependency tree... 148s Reading state information... 148s Starting pkgProblemResolver with broken count: 0 148s Starting 2 pkgProblemResolver with broken count: 0 148s Done 149s The following NEW packages will be installed: 149s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 149s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu cython3 debhelper debugedit 149s dh-autoreconf dh-python dh-strip-nondeterminism dwz g++ g++-14 149s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 149s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 149s libcc1-0 libdebhelper-perl libexpat1-dev libfile-stripnondeterminism-perl 149s libgcc-14-dev libgomp1 libisl23 libitm1 libjs-jquery libjs-sphinxdoc 149s libjs-underscore liblua5.1-0 liblua5.1-0-dev libmpc3 libncurses-dev libnsl2 149s libpkgconf3 libpython3-all-dev libpython3-dev libpython3.12-dev 149s libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 149s libpython3.13-dev libreadline-dev libstdc++-14-dev libtool libubsan1 m4 149s pkgconf pkgconf-bin po-debconf pybuild-plugin-pyproject python3-all 149s python3-all-dev python3-build python3-dev python3-iniconfig 149s python3-installer python3-lupa python3-packaging python3-pluggy 149s python3-pyproject-hooks python3-pytest python3-toml python3-wheel python3.12 149s python3.12-dev python3.12-minimal python3.13-dev zlib1g-dev 149s 0 upgraded, 79 newly installed, 0 to remove and 0 not upgraded. 149s Need to get 80.9 MB of archives. 149s After this operation, 287 MB of additional disk space will be used. 149s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 149s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 149s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 149s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 149s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 149s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 149s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 149s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 149s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 149s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 149s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 149s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 149s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 150s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 150s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 150s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 150s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 150s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 150s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 150s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 150s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 151s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 151s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 151s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 151s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 151s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x cython3 s390x 3.0.11+dfsg-2ubuntu1 [3276 kB] 151s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 151s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 151s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 151s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 151s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 151s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 151s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 151s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 151s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 151s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 151s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 151s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 151s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 151s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 151s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 151s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 151s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 151s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x liblua5.1-0 s390x 5.1.5-10 [130 kB] 151s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 151s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libreadline-dev s390x 8.2-6 [187 kB] 151s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x liblua5.1-0-dev s390x 5.1.5-10 [148 kB] 151s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 151s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 151s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 151s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 151s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 151s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-dev s390x 3.12.9-1 [5849 kB] 151s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-all-dev s390x 3.13.1-1~exp2 [922 B] 151s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 151s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 151s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-hooks all 1.2.0-1 [10.2 kB] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-toml all 0.10.2-1 [16.5 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 151s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-build all 1.2.2-1 [31.0 kB] 151s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-installer all 0.7.0+dfsg1-3 [17.4 kB] 151s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-pyproject all 6.20250108 [1726 B] 151s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 151s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 151s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 151s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-dev s390x 3.12.9-1 [504 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all-dev s390x 3.13.1-1~exp2 [918 B] 151s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 151s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lupa s390x 2.2+dfsg-1 [229 kB] 151s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 152s Fetched 80.9 MB in 3s (29.2 MB/s) 152s Selecting previously unselected package libpython3.12-minimal:s390x. 152s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 152s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 152s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 152s Selecting previously unselected package python3.12-minimal. 152s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 152s Unpacking python3.12-minimal (3.12.9-1) ... 152s Selecting previously unselected package libnsl2:s390x. 152s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 152s Unpacking libnsl2:s390x (1.3.0-3build3) ... 152s Selecting previously unselected package libpython3.12-stdlib:s390x. 152s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 152s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 152s Selecting previously unselected package python3.12. 152s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 152s Unpacking python3.12 (3.12.9-1) ... 152s Selecting previously unselected package m4. 152s Preparing to unpack .../05-m4_1.4.19-5_s390x.deb ... 152s Unpacking m4 (1.4.19-5) ... 152s Selecting previously unselected package autoconf. 152s Preparing to unpack .../06-autoconf_2.72-3_all.deb ... 152s Unpacking autoconf (2.72-3) ... 152s Selecting previously unselected package autotools-dev. 152s Preparing to unpack .../07-autotools-dev_20220109.1_all.deb ... 152s Unpacking autotools-dev (20220109.1) ... 152s Selecting previously unselected package automake. 152s Preparing to unpack .../08-automake_1%3a1.17-3_all.deb ... 152s Unpacking automake (1:1.17-3) ... 152s Selecting previously unselected package autopoint. 152s Preparing to unpack .../09-autopoint_0.23.1-1_all.deb ... 152s Unpacking autopoint (0.23.1-1) ... 152s Selecting previously unselected package libisl23:s390x. 152s Preparing to unpack .../10-libisl23_0.27-1_s390x.deb ... 152s Unpacking libisl23:s390x (0.27-1) ... 152s Selecting previously unselected package libmpc3:s390x. 152s Preparing to unpack .../11-libmpc3_1.3.1-1build2_s390x.deb ... 152s Unpacking libmpc3:s390x (1.3.1-1build2) ... 152s Selecting previously unselected package cpp-14-s390x-linux-gnu. 152s Preparing to unpack .../12-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package cpp-14. 153s Preparing to unpack .../13-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package cpp-s390x-linux-gnu. 153s Preparing to unpack .../14-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package cpp. 153s Preparing to unpack .../15-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking cpp (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package libcc1-0:s390x. 153s Preparing to unpack .../16-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libgomp1:s390x. 153s Preparing to unpack .../17-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libitm1:s390x. 153s Preparing to unpack .../18-libitm1_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libasan8:s390x. 153s Preparing to unpack .../19-libasan8_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libubsan1:s390x. 153s Preparing to unpack .../20-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libgcc-14-dev:s390x. 153s Preparing to unpack .../21-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14-s390x-linux-gnu. 153s Preparing to unpack .../22-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14. 153s Preparing to unpack .../23-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-s390x-linux-gnu. 153s Preparing to unpack .../24-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package gcc. 153s Preparing to unpack .../25-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package libstdc++-14-dev:s390x. 153s Preparing to unpack .../26-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-14-s390x-linux-gnu. 153s Preparing to unpack .../27-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-14. 153s Preparing to unpack .../28-g++-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking g++-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-s390x-linux-gnu. 153s Preparing to unpack .../29-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package g++. 153s Preparing to unpack .../30-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking g++ (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package build-essential. 154s Preparing to unpack .../31-build-essential_12.10ubuntu1_s390x.deb ... 154s Unpacking build-essential (12.10ubuntu1) ... 154s Selecting previously unselected package cython3. 154s Preparing to unpack .../32-cython3_3.0.11+dfsg-2ubuntu1_s390x.deb ... 154s Unpacking cython3 (3.0.11+dfsg-2ubuntu1) ... 154s Selecting previously unselected package libdebhelper-perl. 154s Preparing to unpack .../33-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 154s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 154s Selecting previously unselected package libtool. 154s Preparing to unpack .../34-libtool_2.5.4-3build1_all.deb ... 154s Unpacking libtool (2.5.4-3build1) ... 154s Selecting previously unselected package dh-autoreconf. 154s Preparing to unpack .../35-dh-autoreconf_20_all.deb ... 154s Unpacking dh-autoreconf (20) ... 154s Selecting previously unselected package libarchive-zip-perl. 154s Preparing to unpack .../36-libarchive-zip-perl_1.68-1_all.deb ... 154s Unpacking libarchive-zip-perl (1.68-1) ... 154s Selecting previously unselected package libfile-stripnondeterminism-perl. 154s Preparing to unpack .../37-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 154s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 154s Selecting previously unselected package dh-strip-nondeterminism. 154s Preparing to unpack .../38-dh-strip-nondeterminism_1.14.1-2_all.deb ... 154s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 154s Selecting previously unselected package debugedit. 154s Preparing to unpack .../39-debugedit_1%3a5.1-2_s390x.deb ... 154s Unpacking debugedit (1:5.1-2) ... 154s Selecting previously unselected package dwz. 154s Preparing to unpack .../40-dwz_0.15-1build6_s390x.deb ... 154s Unpacking dwz (0.15-1build6) ... 154s Selecting previously unselected package gettext. 154s Preparing to unpack .../41-gettext_0.23.1-1_s390x.deb ... 154s Unpacking gettext (0.23.1-1) ... 154s Selecting previously unselected package intltool-debian. 154s Preparing to unpack .../42-intltool-debian_0.35.0+20060710.6_all.deb ... 154s Unpacking intltool-debian (0.35.0+20060710.6) ... 154s Selecting previously unselected package po-debconf. 154s Preparing to unpack .../43-po-debconf_1.0.21+nmu1_all.deb ... 154s Unpacking po-debconf (1.0.21+nmu1) ... 154s Selecting previously unselected package debhelper. 154s Preparing to unpack .../44-debhelper_13.24.1ubuntu2_all.deb ... 154s Unpacking debhelper (13.24.1ubuntu2) ... 154s Selecting previously unselected package dh-python. 154s Preparing to unpack .../45-dh-python_6.20250108_all.deb ... 154s Unpacking dh-python (6.20250108) ... 154s Selecting previously unselected package libexpat1-dev:s390x. 154s Preparing to unpack .../46-libexpat1-dev_2.6.4-1_s390x.deb ... 154s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 154s Selecting previously unselected package libjs-jquery. 154s Preparing to unpack .../47-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 154s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 154s Selecting previously unselected package libjs-underscore. 154s Preparing to unpack .../48-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 154s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 154s Selecting previously unselected package libjs-sphinxdoc. 154s Preparing to unpack .../49-libjs-sphinxdoc_8.1.3-4_all.deb ... 154s Unpacking libjs-sphinxdoc (8.1.3-4) ... 154s Selecting previously unselected package liblua5.1-0:s390x. 154s Preparing to unpack .../50-liblua5.1-0_5.1.5-10_s390x.deb ... 154s Unpacking liblua5.1-0:s390x (5.1.5-10) ... 154s Selecting previously unselected package libncurses-dev:s390x. 154s Preparing to unpack .../51-libncurses-dev_6.5+20250125-2_s390x.deb ... 154s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 154s Selecting previously unselected package libreadline-dev:s390x. 154s Preparing to unpack .../52-libreadline-dev_8.2-6_s390x.deb ... 154s Unpacking libreadline-dev:s390x (8.2-6) ... 154s Selecting previously unselected package liblua5.1-0-dev:s390x. 154s Preparing to unpack .../53-liblua5.1-0-dev_5.1.5-10_s390x.deb ... 154s Unpacking liblua5.1-0-dev:s390x (5.1.5-10) ... 154s Selecting previously unselected package libpkgconf3:s390x. 154s Preparing to unpack .../54-libpkgconf3_1.8.1-4_s390x.deb ... 154s Unpacking libpkgconf3:s390x (1.8.1-4) ... 154s Selecting previously unselected package zlib1g-dev:s390x. 154s Preparing to unpack .../55-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 154s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 154s Selecting previously unselected package libpython3.13-dev:s390x. 154s Preparing to unpack .../56-libpython3.13-dev_3.13.2-1_s390x.deb ... 154s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 154s Selecting previously unselected package libpython3-dev:s390x. 154s Preparing to unpack .../57-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 154s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 154s Selecting previously unselected package libpython3.12t64:s390x. 154s Preparing to unpack .../58-libpython3.12t64_3.12.9-1_s390x.deb ... 154s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 154s Selecting previously unselected package libpython3.12-dev:s390x. 154s Preparing to unpack .../59-libpython3.12-dev_3.12.9-1_s390x.deb ... 154s Unpacking libpython3.12-dev:s390x (3.12.9-1) ... 154s Selecting previously unselected package libpython3-all-dev:s390x. 154s Preparing to unpack .../60-libpython3-all-dev_3.13.1-1~exp2_s390x.deb ... 154s Unpacking libpython3-all-dev:s390x (3.13.1-1~exp2) ... 154s Selecting previously unselected package pkgconf-bin. 154s Preparing to unpack .../61-pkgconf-bin_1.8.1-4_s390x.deb ... 154s Unpacking pkgconf-bin (1.8.1-4) ... 154s Selecting previously unselected package pkgconf:s390x. 154s Preparing to unpack .../62-pkgconf_1.8.1-4_s390x.deb ... 154s Unpacking pkgconf:s390x (1.8.1-4) ... 154s Selecting previously unselected package python3-packaging. 154s Preparing to unpack .../63-python3-packaging_24.2-1_all.deb ... 154s Unpacking python3-packaging (24.2-1) ... 154s Selecting previously unselected package python3-pyproject-hooks. 154s Preparing to unpack .../64-python3-pyproject-hooks_1.2.0-1_all.deb ... 154s Unpacking python3-pyproject-hooks (1.2.0-1) ... 154s Selecting previously unselected package python3-toml. 154s Preparing to unpack .../65-python3-toml_0.10.2-1_all.deb ... 154s Unpacking python3-toml (0.10.2-1) ... 154s Selecting previously unselected package python3-wheel. 154s Preparing to unpack .../66-python3-wheel_0.45.1-1_all.deb ... 154s Unpacking python3-wheel (0.45.1-1) ... 154s Selecting previously unselected package python3-build. 154s Preparing to unpack .../67-python3-build_1.2.2-1_all.deb ... 154s Unpacking python3-build (1.2.2-1) ... 154s Selecting previously unselected package python3-installer. 154s Preparing to unpack .../68-python3-installer_0.7.0+dfsg1-3_all.deb ... 154s Unpacking python3-installer (0.7.0+dfsg1-3) ... 154s Selecting previously unselected package pybuild-plugin-pyproject. 154s Preparing to unpack .../69-pybuild-plugin-pyproject_6.20250108_all.deb ... 154s Unpacking pybuild-plugin-pyproject (6.20250108) ... 154s Selecting previously unselected package python3-all. 154s Preparing to unpack .../70-python3-all_3.13.1-1~exp2_s390x.deb ... 154s Unpacking python3-all (3.13.1-1~exp2) ... 154s Selecting previously unselected package python3.13-dev. 154s Preparing to unpack .../71-python3.13-dev_3.13.2-1_s390x.deb ... 154s Unpacking python3.13-dev (3.13.2-1) ... 154s Selecting previously unselected package python3-dev. 154s Preparing to unpack .../72-python3-dev_3.13.1-1~exp2_s390x.deb ... 154s Unpacking python3-dev (3.13.1-1~exp2) ... 155s Selecting previously unselected package python3.12-dev. 155s Preparing to unpack .../73-python3.12-dev_3.12.9-1_s390x.deb ... 155s Unpacking python3.12-dev (3.12.9-1) ... 155s Selecting previously unselected package python3-all-dev. 155s Preparing to unpack .../74-python3-all-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking python3-all-dev (3.13.1-1~exp2) ... 155s Selecting previously unselected package python3-iniconfig. 155s Preparing to unpack .../75-python3-iniconfig_1.1.1-2_all.deb ... 155s Unpacking python3-iniconfig (1.1.1-2) ... 155s Selecting previously unselected package python3-lupa. 155s Preparing to unpack .../76-python3-lupa_2.2+dfsg-1_s390x.deb ... 155s Unpacking python3-lupa (2.2+dfsg-1) ... 155s Selecting previously unselected package python3-pluggy. 155s Preparing to unpack .../77-python3-pluggy_1.5.0-1_all.deb ... 155s Unpacking python3-pluggy (1.5.0-1) ... 155s Selecting previously unselected package python3-pytest. 155s Preparing to unpack .../78-python3-pytest_8.3.4-1_all.deb ... 155s Unpacking python3-pytest (8.3.4-1) ... 155s Setting up dh-python (6.20250108) ... 155s Setting up python3-iniconfig (1.1.1-2) ... 155s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 155s Setting up libarchive-zip-perl (1.68-1) ... 155s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 155s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 155s Setting up m4 (1.4.19-5) ... 155s Setting up libreadline-dev:s390x (8.2-6) ... 155s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 155s Setting up python3-wheel (0.45.1-1) ... 155s Setting up autotools-dev (20220109.1) ... 155s Setting up python3-packaging (24.2-1) ... 155s Setting up libpkgconf3:s390x (1.8.1-4) ... 155s Setting up libexpat1-dev:s390x (2.6.4-1) ... 155s Setting up python3-pyproject-hooks (1.2.0-1) ... 156s Setting up libmpc3:s390x (1.3.1-1build2) ... 156s Setting up cython3 (3.0.11+dfsg-2ubuntu1) ... 157s Setting up autopoint (0.23.1-1) ... 157s Setting up pkgconf-bin (1.8.1-4) ... 157s Setting up python3-toml (0.10.2-1) ... 157s Setting up python3-installer (0.7.0+dfsg1-3) ... 157s Setting up autoconf (2.72-3) ... 157s Setting up python3-pluggy (1.5.0-1) ... 158s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 158s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 158s Setting up dwz (0.15-1build6) ... 158s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 158s Setting up libnsl2:s390x (1.3.0-3build3) ... 158s Setting up liblua5.1-0:s390x (5.1.5-10) ... 158s Setting up debugedit (1:5.1-2) ... 158s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 158s Setting up libisl23:s390x (0.27-1) ... 158s Setting up python3-build (1.2.2-1) ... 158s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 158s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 158s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 158s Setting up automake (1:1.17-3) ... 158s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 158s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 158s Setting up python3.12-minimal (3.12.9-1) ... 159s Setting up python3-lupa (2.2+dfsg-1) ... 159s Setting up gettext (0.23.1-1) ... 159s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 159s Setting up liblua5.1-0-dev:s390x (5.1.5-10) ... 159s Setting up pybuild-plugin-pyproject (6.20250108) ... 159s Setting up python3-pytest (8.3.4-1) ... 159s Setting up python3.12 (3.12.9-1) ... 161s Setting up python3-all (3.13.1-1~exp2) ... 161s Setting up pkgconf:s390x (1.8.1-4) ... 161s Setting up intltool-debian (0.35.0+20060710.6) ... 161s Setting up libpython3.12t64:s390x (3.12.9-1) ... 161s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 161s Setting up libjs-sphinxdoc (8.1.3-4) ... 161s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 161s Setting up cpp-14 (14.2.0-17ubuntu1) ... 161s Setting up dh-strip-nondeterminism (1.14.1-2) ... 161s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 161s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 161s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 161s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 161s Setting up python3.13-dev (3.13.2-1) ... 161s Setting up po-debconf (1.0.21+nmu1) ... 161s Setting up libpython3.12-dev:s390x (3.12.9-1) ... 161s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 161s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 161s Setting up libpython3-all-dev:s390x (3.13.1-1~exp2) ... 161s Setting up python3-dev (3.13.1-1~exp2) ... 161s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 161s Setting up python3.12-dev (3.12.9-1) ... 161s Setting up cpp (4:14.2.0-1ubuntu1) ... 161s Setting up python3-all-dev (3.13.1-1~exp2) ... 161s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 161s Setting up gcc-14 (14.2.0-17ubuntu1) ... 161s Setting up g++-14 (14.2.0-17ubuntu1) ... 161s Setting up libtool (2.5.4-3build1) ... 161s Setting up gcc (4:14.2.0-1ubuntu1) ... 161s Setting up dh-autoreconf (20) ... 161s Setting up g++ (4:14.2.0-1ubuntu1) ... 161s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 161s Setting up build-essential (12.10ubuntu1) ... 161s Setting up debhelper (13.24.1ubuntu2) ... 161s Processing triggers for man-db (2.13.0-1) ... 162s Processing triggers for install-info (7.1.1-1) ... 162s Processing triggers for libc-bin (2.41-1ubuntu1) ... 162s Processing triggers for systemd (257.2-3ubuntu1) ... 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-lupa'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.H74eyU/upstream-packages.all"], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/upstream-packages.all /tmp/autopkgtest-work._kosdczd/out/upstream-packages.all 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.H74eyU/build.Oxt/src'], kind short, sout raw, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.H74eyU/build.Oxt/src already exists 163s autopkgtest [02:01:13]: test upstream: [----------------------- 163s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.H74eyU/wrapper.sh --debug --artifacts=/tmp/autopkgtest.H74eyU/upstream-artifacts --chdir=/tmp/autopkgtest.H74eyU/build.Oxt/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.H74eyU/upstream-stderr --stdout=/tmp/autopkgtest.H74eyU/upstream-stdout --tmp=/tmp/autopkgtest.H74eyU/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.H74eyU/build.Oxt/src/debian/tests/upstream -- /tmp/autopkgtest.H74eyU/build.Oxt/src/debian/tests/upstream"], kind test, sout raw, serr raw, env [] 163s /tmp/autopkgtest.H74eyU/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.H74eyU/upstream-artifacts 163s /tmp/autopkgtest.H74eyU/wrapper.sh: changing to directory: /tmp/autopkgtest.H74eyU/build.Oxt/src 163s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 163s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 163s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 163s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 163s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: LANG=C.UTF-8 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LANGUAGE 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_ADDRESS 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_ALL 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_COLLATE 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_CTYPE 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_IDENTIFICATION 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_MEASUREMENT 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_MESSAGES 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_MONETARY 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_NAME 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_NUMERIC 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_PAPER 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_TELEPHONE 163s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_TIME 163s /tmp/autopkgtest.H74eyU/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 163s /tmp/autopkgtest.H74eyU/wrapper.sh: pretending to be a login shell 163s /tmp/autopkgtest.H74eyU/wrapper.sh: will write standard error to /tmp/autopkgtest.H74eyU/upstream-stderr 163s /tmp/autopkgtest.H74eyU/wrapper.sh: will write stdout to /tmp/autopkgtest.H74eyU/upstream-stdout 163s /tmp/autopkgtest.H74eyU/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.H74eyU/autopkgtest_tmp 163s /tmp/autopkgtest.H74eyU/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 163s /tmp/autopkgtest.H74eyU/wrapper.sh: marking as executable: /tmp/autopkgtest.H74eyU/build.Oxt/src/debian/tests/upstream 163s /tmp/autopkgtest.H74eyU/wrapper.sh: command to run: /tmp/autopkgtest.H74eyU/build.Oxt/src/debian/tests/upstream 163s /tmp/autopkgtest.H74eyU/wrapper.sh: copying /tmp/tmp.BPt8qs2lOG/out to stdout and file: /tmp/autopkgtest.H74eyU/upstream-stdout 163s /tmp/autopkgtest.H74eyU/wrapper.sh: copying /tmp/tmp.BPt8qs2lOG/err to standard error and file: /tmp/autopkgtest.H74eyU/upstream-stdout 163s /tmp/autopkgtest.H74eyU/wrapper.sh: writing script pid 2296 to /tmp/autopkgtest_script_pid 165s ................................s.......s..............................................................................................................s.......s.........................................................................................................................................................................................................................................................ssssssssssssssssssssss.................................................................. 165s ---------------------------------------------------------------------- 165s Ran 497 tests in 2.025s 165s 165s OK (skipped=26) 165s Running Lupa 2.2 tests against Lua 5.1. 167s ................................s.......s..............................................................................................................s.......s.........................................................................................................................................................................................................................................................ssssssssssssssssssssss.................................................................. 167s ---------------------------------------------------------------------- 167s Ran 497 tests in 1.757s 167s 167s OK (skipped=26) 167s Running Lupa 2.2 tests against Lua 5.1. 167s /tmp/autopkgtest.H74eyU/wrapper.sh: checking for leaked background processes... 167s /tmp/autopkgtest.H74eyU/wrapper.sh: waiting for tee/cat subprocesses... 167s /tmp/autopkgtest.H74eyU/wrapper.sh: cleaning up... 167s /tmp/autopkgtest.H74eyU/wrapper.sh: Exit status: 0 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [02:01:17]: test upstream: -----------------------] 167s autopkgtest: DBG: testbed executing test finished with exit status 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/upstream-stdout /tmp/autopkgtest-work._kosdczd/out/upstream-stdout 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/upstream-stderr /tmp/autopkgtest-work._kosdczd/out/upstream-stderr 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest [02:01:18]: test upstream: - - - - - - - - - - results - - - - - - - - - - 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/upstream-artifacts/ /tmp/autopkgtest-work._kosdczd/out/artifacts/ 168s upstream PASS 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.H74eyU/upstream-artifacts', '/tmp/autopkgtest.H74eyU/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [02:01:18]: test autodep8-python3: preparing testbed 168s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-all', 'python3-lupa', 'cython3', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'libluajit-5.1-dev [!s390x !alpha !hppa !ia64 !m68k !powerpcspe !sh4 !sparc64] | liblua5.1-0-dev', 'pkgconf', 'pybuild-plugin-pyproject', 'python3-all', 'python3-all-dev', 'python3-pytest ', 'python3-setuptools', 'build-essential'], deps_new=['python3-all', 'python3-lupa'] 168s autopkgtest: DBG: testbed reset 168s autopkgtest: DBG: sending command to testbed: revert 300s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.H74eyU 300s autopkgtest: DBG: sending command to testbed: print-execute-command 300s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.pp42fjyh/runcmd 300s autopkgtest: DBG: sending command to testbed: capabilities 300s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system revert suggested-normal-user=ubuntu root-on-testbed ok isolation-machine 300s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'has_internet'] 300s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.H74eyU/wrapper.sh 300s autopkgtest: DBG: got reply from testbed: ok 300s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/wrapper.sh'], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest [02:03:30]: testbed dpkg architecture: s390x 300s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest [02:03:31]: testbed apt version: 2.9.28 301s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest: DBG: testbed has eatmydata 301s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest [02:03:31]: @@@@@@@@@@@@@@@@@@@@ test bed setup 301s 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 [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest [02:03:31]: testbed release detected to be: plucky 301s 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 [] 301s autopkgtest: DBG: testbed command exited with code 0 301s 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 [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest: DBG: adding APT source: Types: deb deb-src 301s URIs: http://ftpmaster.internal/ubuntu/ 301s Suites: plucky-proposed 301s Components: main restricted universe multiverse 301s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 301s 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 [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 301s Package: * 301s Pin: release plucky-proposed 301s Pin-Priority: 500 301s 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 [] 302s autopkgtest: DBG: testbed command exited with code 0 302s autopkgtest [02:03:32]: updating testbed package index (apt update) 302s 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'] 302s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 302s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 302s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 302s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 302s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 303s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 303s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 303s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 303s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 303s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 303s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 303s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 303s Fetched 2083 kB in 1s (2120 kB/s) 303s Reading package lists... 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 304s Package: * 304s Pin: release plucky-proposed 304s Pin-Priority: 100 304s 304s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 304s Pin: release plucky-proposed 304s Pin-Priority: 995 304s 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 [] 304s autopkgtest: DBG: testbed command exited with code 0 304s 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.H74eyU/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s 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'] 304s + lsb_release --codename --short 304s + RELEASE=plucky 304s + cat 304s + [ plucky != trusty ] 304s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 304s Reading package lists... 304s Building dependency tree... 304s Reading state information... 304s Calculating upgrade... 304s The following packages were automatically installed and are no longer required: 304s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 304s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 304s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 304s linux-tools-6.11.0-8-generic 304s Use 'sudo apt autoremove' to remove them. 304s The following packages will be upgraded: 304s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 304s libxdmcp6 305s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 305s Need to get 1471 kB of archives. 305s After this operation, 24.6 kB of additional disk space will be used. 305s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 305s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 305s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 305s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 305s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 305s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 305s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 305s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 305s Preconfiguring packages ... 305s Fetched 1471 kB in 1s (2381 kB/s) 306s (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.) 306s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 306s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 306s Setting up dash (0.5.12-12ubuntu1) ... 306s (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.) 306s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 306s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 306s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 306s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 306s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 306s (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.) 306s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 306s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 306s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 306s (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.) 306s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 306s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 306s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 306s (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.) 306s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 306s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 306s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 306s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 306s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 306s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 306s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 306s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 306s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 306s Setting up libtasn1-6:s390x (4.20.0-2) ... 306s Processing triggers for libc-bin (2.40-4ubuntu1) ... 306s Processing triggers for man-db (2.13.0-1) ... 306s Processing triggers for debianutils (5.21) ... 307s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 307s + /usr/lib/apt/apt-helper analyze-pattern ?true 307s + uname -r 307s + sed s/\./\\./g 307s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 307s + apt list ?obsolete 307s + tail -n+2 307s + cut -d/ -f1 307s + grep -v ^linux-.*6\.12\.0-15-generic.* 307s + true 307s + obsolete_pkgs= 307s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 307s Reading package lists... 307s Building dependency tree... 307s Reading state information... 307s The following packages will be REMOVED: 307s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 307s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 307s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 307s linux-tools-6.11.0-8-generic* 307s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 307s After this operation, 167 MB disk space will be freed. 307s (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.) 307s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 307s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 307s Removing libpython3.12t64:s390x (3.12.9-1) ... 307s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 308s Removing libnsl2:s390x (1.3.0-3build3) ... 308s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 308s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 308s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 309s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 309s + grep -q trusty /etc/lsb-release 309s Processing triggers for libc-bin (2.40-4ubuntu1) ... 309s (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.) 309s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 309s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 309s + [ ! -d /usr/share/doc/unattended-upgrades ] 309s + [ ! -d /usr/share/doc/lxd ] 309s + [ ! -d /usr/share/doc/lxd-client ] 309s + [ ! -d /usr/share/doc/snapd ] 309s + type iptables 309s + cat 309s + chmod 755 /etc/rc.local 309s + . /etc/rc.local 309s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 309s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 309s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 309s + uname -m 309s + [ s390x = ppc64le ] 309s + [ -d /run/systemd/system ] 309s + systemd-detect-virt --quiet --vm 309s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 309s + cat 309s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 309s + echo COMPRESS=lz4 309s autopkgtest: DBG: testbed command exited with code 0 309s autopkgtest [02:03:39]: upgrading testbed (apt dist-upgrade and autopurge) 309s 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'] 310s Reading package lists... 310s Building dependency tree... 310s Reading state information... 310s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 310s Starting 2 pkgProblemResolver with broken count: 0 310s Done 310s Entering ResolveByKeep 310s 310s The following packages will be upgraded: 310s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 311s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 311s Need to get 10.7 MB of archives. 311s After this operation, 305 kB of additional disk space will be used. 311s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 311s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 311s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 311s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 312s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 312s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 312s Preconfiguring packages ... 312s Fetched 10.7 MB in 1s (7763 kB/s) 312s (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.) 312s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 312s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 312s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 312s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 312s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 312s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 312s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 312s Checking for services that may need to be restarted... 312s Checking init scripts... 312s Checking for services that may need to be restarted... 312s Checking init scripts... 312s Stopping some services possibly affected by the upgrade (will be restarted later): 312s cron: stopping...done. 312s 313s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 313s Setting up libc6:s390x (2.41-1ubuntu1) ... 313s Checking for services that may need to be restarted... 313s Checking init scripts... 313s Restarting services possibly affected by the upgrade: 313s cron: restarting...done. 313s 313s Services restarted successfully. 313s (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.) 313s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 313s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 313s Setting up libc-bin (2.41-1ubuntu1) ... 313s (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.) 313s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 313s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 313s Setting up iproute2 (6.13.0-1ubuntu1) ... 313s Setting up locales (2.41-1ubuntu1) ... 313s Installing new version of config file /etc/locale.alias ... 313s Generating locales (this might take a while)... 315s en_US.UTF-8... done 315s Generation complete. 315s Setting up libc-dev-bin (2.41-1ubuntu1) ... 315s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 315s Processing triggers for man-db (2.13.0-1) ... 316s Processing triggers for systemd (257.2-3ubuntu1) ... 316s autopkgtest: DBG: testbed command exited with code 0 316s 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'] 317s Reading package lists... 317s Building dependency tree... 317s Reading state information... 317s Starting pkgProblemResolver with broken count: 0 317s Starting 2 pkgProblemResolver with broken count: 0 317s Done 317s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 317s autopkgtest: DBG: testbed command exited with code 0 317s 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.H74eyU/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 317s autopkgtest: DBG: testbed command exited with code 1 317s autopkgtest [02:03:47]: rebooting testbed after setup commands that affected boot 317s autopkgtest: DBG: sending command to testbed: reboot 337s autopkgtest: DBG: got reply from testbed: ok 337s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 337s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare 339s autopkgtest: DBG: got reply from testbed: ok 339s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.H74eyU/testbed-packages"], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/testbed-packages /tmp/autopkgtest-work._kosdczd/out/testbed-packages 340s autopkgtest: DBG: got reply from testbed: ok 340s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 340s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot 340s autopkgtest: DBG: got reply from testbed: ok 340s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare 341s autopkgtest: DBG: got reply from testbed: ok 341s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.H74eyU/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 341s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-lupa'] 341s autopkgtest: DBG: install-deps: satisfying python3-all, python3-lupa 341s autopkgtest: DBG: can use apt-get on testbed: True 341s 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-lupa'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 342s Reading package lists... 342s Building dependency tree... 342s Reading state information... 342s Starting pkgProblemResolver with broken count: 0 342s Starting 2 pkgProblemResolver with broken count: 0 342s Done 342s The following NEW packages will be installed: 342s liblua5.1-0 libnsl2 libpython3.12-minimal libpython3.12-stdlib python3-all 342s python3-lupa python3.12 python3.12-minimal 342s 0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded. 342s Need to get 6385 kB of archives. 342s After this operation, 25.4 MB of additional disk space will be used. 342s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 343s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 343s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 343s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 343s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 343s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x liblua5.1-0 s390x 5.1.5-10 [130 kB] 343s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 343s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lupa s390x 2.2+dfsg-1 [229 kB] 344s Fetched 6385 kB in 1s (5910 kB/s) 344s Selecting previously unselected package libpython3.12-minimal:s390x. 344s (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.) 344s Preparing to unpack .../0-libpython3.12-minimal_3.12.9-1_s390x.deb ... 344s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 344s Selecting previously unselected package python3.12-minimal. 344s Preparing to unpack .../1-python3.12-minimal_3.12.9-1_s390x.deb ... 344s Unpacking python3.12-minimal (3.12.9-1) ... 344s Selecting previously unselected package libnsl2:s390x. 344s Preparing to unpack .../2-libnsl2_1.3.0-3build3_s390x.deb ... 344s Unpacking libnsl2:s390x (1.3.0-3build3) ... 344s Selecting previously unselected package libpython3.12-stdlib:s390x. 344s Preparing to unpack .../3-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 344s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 344s Selecting previously unselected package python3.12. 344s Preparing to unpack .../4-python3.12_3.12.9-1_s390x.deb ... 344s Unpacking python3.12 (3.12.9-1) ... 344s Selecting previously unselected package liblua5.1-0:s390x. 344s Preparing to unpack .../5-liblua5.1-0_5.1.5-10_s390x.deb ... 344s Unpacking liblua5.1-0:s390x (5.1.5-10) ... 344s Selecting previously unselected package python3-all. 344s Preparing to unpack .../6-python3-all_3.13.1-1~exp2_s390x.deb ... 344s Unpacking python3-all (3.13.1-1~exp2) ... 344s Selecting previously unselected package python3-lupa. 344s Preparing to unpack .../7-python3-lupa_2.2+dfsg-1_s390x.deb ... 344s Unpacking python3-lupa (2.2+dfsg-1) ... 344s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 344s Setting up libnsl2:s390x (1.3.0-3build3) ... 344s Setting up liblua5.1-0:s390x (5.1.5-10) ... 344s Setting up python3.12-minimal (3.12.9-1) ... 345s Setting up python3-lupa (2.2+dfsg-1) ... 345s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 345s Setting up python3.12 (3.12.9-1) ... 347s Setting up python3-all (3.13.1-1~exp2) ... 347s Processing triggers for man-db (2.13.0-1) ... 347s Processing triggers for libc-bin (2.41-1ubuntu1) ... 347s Processing triggers for systemd (257.2-3ubuntu1) ... 347s autopkgtest: DBG: testbed command exited with code 0 347s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-lupa'], kind short, sout pipe, serr pipe, env [] 347s autopkgtest: DBG: testbed command exited with code 0 347s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.H74eyU/autodep8-python3-packages.all"], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/autodep8-python3-packages.all /tmp/autopkgtest-work._kosdczd/out/autodep8-python3-packages.all 348s autopkgtest: DBG: got reply from testbed: ok 348s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.H74eyU/build.Oxt/src'], kind short, sout raw, serr raw, env [] 348s autopkgtest: DBG: testbed command exited with code 1 348s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.H74eyU/build.Oxt'], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work._kosdczd/out/tests-tree/ /tmp/autopkgtest.H74eyU/build.Oxt/src/ 349s autopkgtest: DBG: got reply from testbed: ok 349s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.H74eyU/build.Oxt/src'], kind short, sout raw, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest [02:04:20]: test autodep8-python3: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done 350s autopkgtest [02:04:20]: test autodep8-python3: [----------------------- 350s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.H74eyU/wrapper.sh --debug --artifacts=/tmp/autopkgtest.H74eyU/autodep8-python3-artifacts --chdir=/tmp/autopkgtest.H74eyU/build.Oxt/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.H74eyU/autodep8-python3-stderr --stdout=/tmp/autopkgtest.H74eyU/autodep8-python3-stdout --tmp=/tmp/autopkgtest.H74eyU/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 \'set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done\''], kind test, sout raw, serr raw, env [] 350s /tmp/autopkgtest.H74eyU/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.H74eyU/autodep8-python3-artifacts 350s /tmp/autopkgtest.H74eyU/wrapper.sh: changing to directory: /tmp/autopkgtest.H74eyU/build.Oxt/src 350s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 350s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 350s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 350s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 350s /tmp/autopkgtest.H74eyU/wrapper.sh: setting environment: LANG=C.UTF-8 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LANGUAGE 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_ADDRESS 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_ALL 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_COLLATE 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_CTYPE 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_IDENTIFICATION 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_MEASUREMENT 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_MESSAGES 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_MONETARY 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_NAME 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_NUMERIC 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_PAPER 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_TELEPHONE 350s /tmp/autopkgtest.H74eyU/wrapper.sh: unsetting environment: LC_TIME 350s /tmp/autopkgtest.H74eyU/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 350s /tmp/autopkgtest.H74eyU/wrapper.sh: pretending to be a login shell 350s /tmp/autopkgtest.H74eyU/wrapper.sh: will write standard error to /tmp/autopkgtest.H74eyU/autodep8-python3-stderr 350s /tmp/autopkgtest.H74eyU/wrapper.sh: will write stdout to /tmp/autopkgtest.H74eyU/autodep8-python3-stdout 350s /tmp/autopkgtest.H74eyU/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.H74eyU/autopkgtest_tmp 350s /tmp/autopkgtest.H74eyU/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 350s /tmp/autopkgtest.H74eyU/wrapper.sh: command to run: bash -ec set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import lupa; print(lupa)" ; done 350s /tmp/autopkgtest.H74eyU/wrapper.sh: copying /tmp/tmp.94qXfw380T/out to stdout and file: /tmp/autopkgtest.H74eyU/autodep8-python3-stdout 350s /tmp/autopkgtest.H74eyU/wrapper.sh: copying /tmp/tmp.94qXfw380T/err to standard error and file: /tmp/autopkgtest.H74eyU/autodep8-python3-stdout 350s /tmp/autopkgtest.H74eyU/wrapper.sh: writing script pid 1346 to /tmp/autopkgtest_script_pid 350s Testing with python3.12: 350s 350s Testing with python3.13: 350s 350s /tmp/autopkgtest.H74eyU/wrapper.sh: checking for leaked background processes... 350s /tmp/autopkgtest.H74eyU/wrapper.sh: waiting for tee/cat subprocesses... 350s /tmp/autopkgtest.H74eyU/wrapper.sh: cleaning up... 350s /tmp/autopkgtest.H74eyU/wrapper.sh: Exit status: 0 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest [02:04:20]: test autodep8-python3: -----------------------] 350s autopkgtest: DBG: testbed executing test finished with exit status 0 350s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/autodep8-python3-stdout /tmp/autopkgtest-work._kosdczd/out/autodep8-python3-stdout 350s autopkgtest: DBG: got reply from testbed: ok 350s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/autodep8-python3-stderr /tmp/autopkgtest-work._kosdczd/out/autodep8-python3-stderr 350s autopkgtest: DBG: got reply from testbed: ok 351s autopkgtest [02:04:21]: test autodep8-python3: - - - - - - - - - - results - - - - - - - - - - 351s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.H74eyU/autodep8-python3-artifacts/ /tmp/autopkgtest-work._kosdczd/out/artifacts/ 351s autodep8-python3 PASS (superficial) 351s autopkgtest: DBG: got reply from testbed: ok 351s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.H74eyU/autodep8-python3-artifacts', '/tmp/autopkgtest.H74eyU/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 351s autopkgtest [02:04:21]: @@@@@@@@@@@@@@@@@@@@ summary 351s upstream PASS 351s autodep8-python3 PASS (superficial) 351s autopkgtest: DBG: testbed stop 351s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.H74eyU 351s autopkgtest: DBG: sending command to testbed: close 355s autopkgtest: DBG: got reply from testbed: ok 355s autopkgtest: DBG: sending command to testbed: quit 355s nova [W] Using flock in prodstack6-s390x 355s Creating nova instance adt-plucky-s390x-python-lupa-20250216-015830-juju-7f2275-prod-proposed-migration-environment-15-76389094-9581-4392-9bac-d8752eeed03c from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 355s nova [W] Timed out waiting for e03d7b74-29cc-495d-bab8-1a7e4f0ea103 to get deleted. 355s nova [W] Using flock in prodstack6-s390x 355s Creating nova instance adt-plucky-s390x-python-lupa-20250216-015830-juju-7f2275-prod-proposed-migration-environment-15-76389094-9581-4392-9bac-d8752eeed03c from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 355s nova [W] Timed out waiting for d15f3c84-9643-49c3-9b9a-12e666d6d213 to get deleted.