0s autopkgtest: DBG: testbed init 0s autopkgtest [11:53:26]: starting date and time: 2025-02-19 11:53:26+0000 0s autopkgtest [11:53:26]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [11:53:26]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.e20v53ot/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade dm-tree --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-16.secgroup --name adt-plucky-s390x-dm-tree-20250219-115326-juju-7f2275-prod-proposed-migration-environment-15-0113b599-1966-4186-8489-e51f051f247e --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 73s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.e5fXo1 73s autopkgtest: DBG: sending command to testbed: print-execute-command 73s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.lr83r78j/runcmd 73s autopkgtest: DBG: sending command to testbed: capabilities 73s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu revert-full-system isolation-machine reboot root-on-testbed 73s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'revert-full-system', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 73s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.e5fXo1'], kind short, sout raw, serr pipe, env [] 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.e5fXo1/wrapper.sh 73s autopkgtest: DBG: got reply from testbed: ok 73s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.e5fXo1/wrapper.sh'], kind short, sout raw, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest [11:54:40]: testbed dpkg architecture: s390x 74s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest [11:54:40]: testbed apt version: 2.9.30 74s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest: DBG: testbed has eatmydata 74s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest [11:54:40]: @@@@@@@@@@@@@@@@@@@@ test bed setup 74s 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 [] 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest [11:54:40]: testbed release detected to be: None 74s 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 [] 75s autopkgtest: DBG: testbed command exited with code 0 75s 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 [] 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest: DBG: adding APT source: Types: deb deb-src 75s URIs: http://ftpmaster.internal/ubuntu/ 75s Suites: plucky-proposed 75s Components: main restricted universe multiverse 75s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 75s 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 [] 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 75s Package: * 75s Pin: release plucky-proposed 75s Pin-Priority: 500 75s 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 [] 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest [11:54:41]: updating testbed package index (apt update) 75s 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'] 75s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 76s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 76s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 76s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 76s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 76s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 76s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 76s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 76s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 76s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 76s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 76s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 76s Fetched 1700 kB in 1s (1655 kB/s) 77s Reading package lists... 77s autopkgtest: DBG: testbed command exited with code 0 77s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 77s Package: * 77s Pin: release plucky-proposed 77s Pin-Priority: 100 77s 77s Package: src:sphinx:any 77s Pin: release plucky-proposed 77s Pin-Priority: 995 77s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 77s autopkgtest: DBG: testbed command exited with code 0 77s 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.e5fXo1/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 77s autopkgtest: DBG: testbed command exited with code 0 77s 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'] 78s + lsb_release --codename --short 78s + RELEASE=plucky 78s + cat 78s + [ plucky != trusty ] 78s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 78s Reading package lists... 78s Building dependency tree... 78s Reading state information... 78s Calculating upgrade... 78s The following packages were automatically installed and are no longer required: 78s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 78s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 78s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 78s linux-tools-6.11.0-8-generic 78s Use 'sudo apt autoremove' to remove them. 78s The following packages will be upgraded: 78s iproute2 liblsof0 libp11-kit0 lsof 78s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 78s Need to get 1791 kB of archives. 78s After this operation, 17.4 kB of additional disk space will be used. 78s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 79s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 79s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 79s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 79s Preconfiguring packages ... 79s Fetched 1791 kB in 1s (2812 kB/s) 79s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 79s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 79s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 79s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 79s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 79s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 79s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 79s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 79s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 79s Setting up liblsof0 (4.99.4+dfsg-1) ... 79s Setting up iproute2 (6.13.0-1ubuntu1) ... 79s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 79s Setting up lsof (4.99.4+dfsg-1) ... 79s Processing triggers for man-db (2.13.0-1) ... 80s Processing triggers for libc-bin (2.40-4ubuntu1) ... 80s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 80s + /usr/lib/apt/apt-helper analyze-pattern ?true 80s + uname -r 80s + sed s/\./\\./g 80s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 80s + apt list ?obsolete 80s + tail -n+2 80s + grep -v ^linux-.*6\.12\.0-15-generic.* 80s + cut -d/ -f1 80s + true 80s + obsolete_pkgs= 80s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 80s Reading package lists... 80s Building dependency tree... 80s Reading state information... 81s The following packages will be REMOVED: 81s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 81s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 81s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 81s linux-tools-6.11.0-8-generic* 81s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 81s After this operation, 167 MB disk space will be freed. 81s (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 ... 81031 files and directories currently installed.) 81s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 81s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 81s Removing libpython3.12t64:s390x (3.12.9-1) ... 81s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 81s Removing libnsl2:s390x (1.3.0-3build3) ... 81s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 81s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 81s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 82s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 82s Processing triggers for libc-bin (2.40-4ubuntu1) ... 82s (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 ... 55931 files and directories currently installed.) 82s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 82s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 82s + grep -q trusty /etc/lsb-release 82s + [ ! -d /usr/share/doc/unattended-upgrades ] 82s + [ ! -d /usr/share/doc/lxd ] 82s + [ ! -d /usr/share/doc/lxd-client ] 82s + [ ! -d /usr/share/doc/snapd ] 82s + type iptables 82s + cat 82s + chmod 755 /etc/rc.local 82s + . /etc/rc.local 82s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 82s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 82s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 82s + uname -m 82s + [ s390x = ppc64le ] 82s + [ -d /run/systemd/system ] 82s + systemd-detect-virt --quiet --vm 82s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 82s + cat 82s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 82s + echo COMPRESS=lz4 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest [11:54:48]: upgrading testbed (apt dist-upgrade and autopurge) 82s 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'] 83s Reading package lists... 83s Building dependency tree... 83s Reading state information... 83s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 83s Starting 2 pkgProblemResolver with broken count: 0 83s Done 83s Entering ResolveByKeep 83s 84s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 84s autopkgtest: DBG: testbed command exited with code 0 84s 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'] 84s Reading package lists... 84s Building dependency tree... 84s Reading state information... 84s Starting pkgProblemResolver with broken count: 0 84s Starting 2 pkgProblemResolver with broken count: 0 84s Done 85s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 85s autopkgtest: DBG: testbed command exited with code 0 85s 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.e5fXo1/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 85s autopkgtest: DBG: testbed command exited with code 1 85s autopkgtest [11:54:51]: rebooting testbed after setup commands that affected boot 85s autopkgtest: DBG: sending command to testbed: reboot 106s autopkgtest: DBG: got reply from testbed: ok 106s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.e5fXo1'], 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/reboot.sh /tmp/autopkgtest.e5fXo1/autopkgtest-reboot 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.e5fXo1'], 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/reboot-prepare.sh /tmp/autopkgtest.e5fXo1/autopkgtest-reboot-prepare 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [11:55:14]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 108s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.e5fXo1/testbed-packages"], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/testbed-packages /tmp/autopkgtest-work.e20v53ot/out/testbed-packages 109s autopkgtest: DBG: got reply from testbed: ok 109s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.e5fXo1'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.e5fXo1/autopkgtest-reboot 109s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.e5fXo1'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.e5fXo1/autopkgtest-reboot-prepare 110s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.e5fXo1/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: Binaries: initialising 110s autopkgtest [11:55:16]: @@@@@@@@@@@@@@@@@@@@ apt-source dm-tree 110s autopkgtest: DBG: blame += dm-tree 110s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 110s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'dm-tree'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-dm-tree$'], kind short, sout pipe, serr raw, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-dm-tree=0.1.8-3build5'], kind short, sout pipe, serr raw, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-dm-tree-doc$'], kind short, sout pipe, serr raw, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-dm-tree-doc=0.1.8-3build5'], kind short, sout pipe, serr raw, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: install_deps: deps_new=[] 112s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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.e5fXo1/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source dm-tree=0.1.8-3build5 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 dm-tree_*.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=sphinx/8.1.3-5'] 112s + cd / 112s + mktemp -d /tmp/autopkgtest.e5fXo1/build.XXX 112s + builddir=/tmp/autopkgtest.e5fXo1/build.YC0 112s + cd /tmp/autopkgtest.e5fXo1/build.YC0 112s + apt-get source -d -q --only-source dm-tree=0.1.8-3build5 113s + OUT=Reading package lists... 113s NOTICE: 'dm-tree' packaging is maintained in the 'Git' version control system at: 113s https://salsa.debian.org/python-team/packages/python-dm-tree.git 113s Please use: 113s git clone https://salsa.debian.org/python-team/packages/python-dm-tree.git 113s to retrieve the latest (possibly unreleased) updates to the package. 113s Need to get 45.1 kB of source archives. 113s Get:1 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (dsc) [2423 B] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (tar) [37.0 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (diff) [5716 B] 113s Fetched 45.1 kB in 1s (82.9 kB/s) 113s Download complete and in download only mode 113s + [ -n ] 113s + echo Reading package lists... 113s NOTICE: 'dm-tree' packaging is maintained in the 'Git' version control system at: 113s https://salsa.debian.org/python-team/packages/python-dm-tree.git 113s Please use: 113s git clone https://salsa.debian.org/python-team/packages/python-dm-tree.git 113s to retrieve the latest (possibly unreleased) updates to the package. 113s Need to get 45.1 kB of source archives. 113s Get:1 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (dsc) [2423 B] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (tar) [37.0 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (diff) [5716 B] 113s Fetched 45.1 kB in 1s (82.9 kB/s) 113s Download complete and in download only mode 113s + grep ^Get: 113s Get:1 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (dsc) [2423 B] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (tar) [37.0 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/universe dm-tree 0.1.8-3build5 (diff) [5716 B] 113s + dpkg-source -x dm-tree_0.1.8-3build5.dsc src 113s gpgv: Signature made Thu Nov 14 18:29:26 2024 UTC 113s gpgv: using RSA key 568BF22A66337CBFC9A6B9B72C83DBC8E9BD0E37 113s gpgv: Can't check signature: No public key 113s dpkg-source: warning: cannot verify inline signature for ./dm-tree_0.1.8-3build5.dsc: no acceptable signature found 113s + chmod -R a+rX . 113s + cd src/. 113s + pwd 113s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [11:55:19]: testing package dm-tree version 0.1.8-3build5 113s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/build.YC0/src/debian/ /tmp/autopkgtest-work.e20v53ot/out/pkg/debian/ 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: processing dependency python3-all 113s autopkgtest: DBG: processing dependency @ 113s autopkgtest: DBG: synthesised dependency python-dm-tree-doc 113s autopkgtest: DBG: synthesised dependency python3-dm-tree 113s autopkgtest: DBG: processing dependency @builddeps@ 113s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 113s autopkgtest: DBG: synthesised dependency dh-python 113s autopkgtest: DBG: synthesised dependency libabsl-dev 113s autopkgtest: DBG: synthesised dependency pybind11-dev 113s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 113s autopkgtest: DBG: synthesised dependency python3-absl 113s autopkgtest: DBG: synthesised dependency python3-all 113s autopkgtest: DBG: synthesised dependency python3-all-dev 113s autopkgtest: DBG: synthesised dependency python3-attr 113s autopkgtest: DBG: synthesised dependency python3-numpy 113s autopkgtest: DBG: synthesised dependency python3-pybind11 113s autopkgtest: DBG: synthesised dependency python3-pytest 113s autopkgtest: DBG: synthesised dependency python3-setuptools 113s autopkgtest: DBG: synthesised dependency python3-sphinx 113s autopkgtest: DBG: synthesised dependency python3-sphinx-rtd-theme 113s autopkgtest: DBG: synthesised dependency python3-wrapt 113s autopkgtest: DBG: synthesised dependency build-essential 113s autopkgtest: DBG: Test defined: name upstream path debian/tests/upstream command "None" restrictions ['allow-stderr'] features [] depends ['python3-all', 'python-dm-tree-doc', 'python3-dm-tree', 'debhelper-compat (= 13)', 'dh-python', 'libabsl-dev', 'pybind11-dev', 'pybuild-plugin-pyproject', 'python3-absl', 'python3-all', 'python3-all-dev', 'python3-attr', 'python3-numpy', 'python3-pybind11', 'python3-pytest', 'python3-setuptools', 'python3-sphinx', 'python3-sphinx-rtd-theme', 'python3-wrapt', 'build-essential'] 113s autopkgtest [11:55:19]: build not needed 113s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/build.YC0/src/ /tmp/autopkgtest-work.e20v53ot/out/tests-tree/ 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: processing dependency python3-all 113s autopkgtest: DBG: processing dependency @ 113s autopkgtest: DBG: synthesised dependency python-dm-tree-doc 113s autopkgtest: DBG: synthesised dependency python3-dm-tree 113s autopkgtest: DBG: processing dependency @builddeps@ 113s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 113s autopkgtest: DBG: synthesised dependency dh-python 113s autopkgtest: DBG: synthesised dependency libabsl-dev 113s autopkgtest: DBG: synthesised dependency pybind11-dev 113s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 113s autopkgtest: DBG: synthesised dependency python3-absl 113s autopkgtest: DBG: synthesised dependency python3-all 113s autopkgtest: DBG: synthesised dependency python3-all-dev 113s autopkgtest: DBG: synthesised dependency python3-attr 113s autopkgtest: DBG: synthesised dependency python3-numpy 113s autopkgtest: DBG: synthesised dependency python3-pybind11 113s autopkgtest: DBG: synthesised dependency python3-pytest 113s autopkgtest: DBG: synthesised dependency python3-setuptools 113s autopkgtest: DBG: synthesised dependency python3-sphinx 113s autopkgtest: DBG: synthesised dependency python3-sphinx-rtd-theme 113s autopkgtest: DBG: synthesised dependency python3-wrapt 113s autopkgtest: DBG: synthesised dependency build-essential 113s autopkgtest: DBG: Test defined: name upstream path debian/tests/upstream command "None" restrictions ['allow-stderr'] features [] depends ['python3-all', 'python-dm-tree-doc', 'python3-dm-tree', 'debhelper-compat (= 13)', 'dh-python', 'libabsl-dev', 'pybind11-dev', 'pybuild-plugin-pyproject', 'python3-absl', 'python3-all', 'python3-all-dev', 'python3-attr', 'python3-numpy', 'python3-pybind11', 'python3-pytest', 'python3-setuptools', 'python3-sphinx', 'python3-sphinx-rtd-theme', 'python3-wrapt', 'build-essential'] 113s autopkgtest [11:55:19]: test upstream: preparing testbed 113s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python-dm-tree-doc', 'python3-dm-tree', 'debhelper-compat (= 13)', 'dh-python', 'libabsl-dev', 'pybind11-dev', 'pybuild-plugin-pyproject', 'python3-absl', 'python3-all', 'python3-all-dev', 'python3-attr', 'python3-numpy', 'python3-pybind11', 'python3-pytest', 'python3-setuptools', 'python3-sphinx', 'python3-sphinx-rtd-theme', 'python3-wrapt', 'build-essential'] 113s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 113s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python-dm-tree-doc', 'python3-dm-tree', 'debhelper-compat (= 13)', 'dh-python', 'libabsl-dev', 'pybind11-dev', 'pybuild-plugin-pyproject', 'python3-absl', 'python3-all', 'python3-all-dev', 'python3-attr', 'python3-numpy', 'python3-pybind11', 'python3-pytest', 'python3-setuptools', 'python3-sphinx', 'python3-sphinx-rtd-theme', 'python3-wrapt', 'build-essential'] 113s autopkgtest: DBG: install-deps: satisfying python3-all, python-dm-tree-doc, python3-dm-tree, debhelper-compat (= 13), dh-python, libabsl-dev, pybind11-dev, pybuild-plugin-pyproject, python3-absl, python3-all, python3-all-dev, python3-attr, python3-numpy, python3-pybind11, python3-pytest, python3-setuptools, python3-sphinx, python3-sphinx-rtd-theme, python3-wrapt, build-essential 113s autopkgtest: DBG: can use apt-get on testbed: True 113s 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, python-dm-tree-doc, python3-dm-tree, debhelper-compat (= 13), dh-python, libabsl-dev, pybind11-dev, pybuild-plugin-pyproject, python3-absl, python3-all, python3-all-dev, python3-attr, python3-numpy, python3-pybind11, python3-pytest, python3-setuptools, python3-sphinx, python3-sphinx-rtd-theme, python3-wrapt, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Starting pkgProblemResolver with broken count: 0 114s Starting 2 pkgProblemResolver with broken count: 0 114s Done 114s The following NEW packages will be installed: 114s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 114s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 114s dh-python dh-strip-nondeterminism docutils-common dwz fonts-font-awesome 114s fonts-lato g++ g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 114s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 114s libabsl-dev libabsl20230802 libarchive-zip-perl libasan8 libblas3 libcc1-0 114s libdebhelper-perl libexpat1-dev libfile-stripnondeterminism-perl 114s libgcc-14-dev libgfortran5 libgomp1 libisl23 libitm1 libjs-jquery 114s libjs-sphinxdoc libjs-underscore libjson-perl liblapack3 libmpc3 libnsl2 114s libpython3-all-dev libpython3-dev libpython3.12-dev libpython3.12-minimal 114s libpython3.12-stdlib libpython3.12t64 libpython3.13-dev libstdc++-14-dev 114s libtool libubsan1 m4 po-debconf pybind11-dev pybuild-plugin-pyproject 114s python-dm-tree-doc python3-absl python3-alabaster python3-all 114s python3-all-dev python3-build python3-defusedxml python3-dev python3-dm-tree 114s python3-docutils python3-imagesize python3-iniconfig python3-installer 114s python3-numpy python3-packaging python3-pluggy python3-pybind11 114s python3-pyproject-hooks python3-pytest python3-roman python3-snowballstemmer 114s python3-sphinx python3-sphinx-rtd-theme python3-sphinxcontrib.jquery 114s python3-toml python3-wheel python3-wrapt python3.12 python3.12-dev 114s python3.12-minimal python3.13-dev sgml-base sphinx-common 114s sphinx-rtd-theme-common xml-core zlib1g-dev 114s 0 upgraded, 99 newly installed, 0 to remove and 0 not upgraded. 114s Need to get 93.7 MB of archives. 114s After this operation, 346 MB of additional disk space will be used. 114s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 115s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 115s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 115s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 115s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 115s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 115s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 115s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 115s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 115s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 115s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 115s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 115s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 115s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 115s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 115s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 115s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 115s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 115s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 115s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 115s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 116s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 116s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 116s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 116s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 116s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 116s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 116s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 116s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 116s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 116s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 116s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 116s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 116s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 116s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 116s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 116s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 116s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 116s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 117s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 117s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 117s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 117s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 117s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 117s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 117s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 117s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 117s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 117s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 117s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libabsl20230802 s390x 20230802.1-4ubuntu2 [529 kB] 117s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libabsl-dev s390x 20230802.1-4ubuntu2 [1294 kB] 117s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 117s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 117s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 117s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 117s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 117s Get:58 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 117s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 117s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 117s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 117s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 117s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 117s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 117s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-dev s390x 3.12.9-1 [5849 kB] 117s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-all-dev s390x 3.13.1-1~exp2 [922 B] 117s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x pybind11-dev all 2.13.6-2 [168 kB] 117s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 117s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-hooks all 1.2.0-1 [10.2 kB] 117s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-toml all 0.10.2-1 [16.5 kB] 117s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 117s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-build all 1.2.2-1 [31.0 kB] 117s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-installer all 0.7.0+dfsg1-3 [17.4 kB] 117s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-pyproject all 6.20250108 [1726 B] 118s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 118s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python-dm-tree-doc all 0.1.8-3build5 [22.2 kB] 118s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-absl all 2.1.0-1 [96.0 kB] 118s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 118s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 118s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 118s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-dev s390x 3.12.9-1 [504 kB] 118s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all-dev s390x 3.13.1-1~exp2 [918 B] 118s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 118s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-dm-tree s390x 0.1.8-3build5 [111 kB] 118s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 118s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 118s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 118s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 118s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 118s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 118s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pybind11 all 2.13.6-2 [176 kB] 118s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 118s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 118s Get:94 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 118s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 118s Get:96 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 118s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.jquery all 4.1-5 [6678 B] 118s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-rtd-theme all 3.0.2+dfsg-2 [23.5 kB] 118s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 118s Fetched 93.7 MB in 4s (24.9 MB/s) 118s Selecting previously unselected package libpython3.12-minimal:s390x. 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 ... 55929 files and directories currently installed.) 119s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 119s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 119s Selecting previously unselected package python3.12-minimal. 119s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 119s Unpacking python3.12-minimal (3.12.9-1) ... 119s Selecting previously unselected package fonts-lato. 119s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 119s Unpacking fonts-lato (2.015-1) ... 119s Selecting previously unselected package sgml-base. 119s Preparing to unpack .../03-sgml-base_1.31_all.deb ... 119s Unpacking sgml-base (1.31) ... 119s Selecting previously unselected package libnsl2:s390x. 119s Preparing to unpack .../04-libnsl2_1.3.0-3build3_s390x.deb ... 119s Unpacking libnsl2:s390x (1.3.0-3build3) ... 119s Selecting previously unselected package libpython3.12-stdlib:s390x. 119s Preparing to unpack .../05-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 119s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 119s Selecting previously unselected package python3.12. 119s Preparing to unpack .../06-python3.12_3.12.9-1_s390x.deb ... 119s Unpacking python3.12 (3.12.9-1) ... 119s Selecting previously unselected package m4. 119s Preparing to unpack .../07-m4_1.4.19-5_s390x.deb ... 119s Unpacking m4 (1.4.19-5) ... 119s Selecting previously unselected package autoconf. 119s Preparing to unpack .../08-autoconf_2.72-3_all.deb ... 119s Unpacking autoconf (2.72-3) ... 119s Selecting previously unselected package autotools-dev. 119s Preparing to unpack .../09-autotools-dev_20220109.1_all.deb ... 119s Unpacking autotools-dev (20220109.1) ... 119s Selecting previously unselected package automake. 119s Preparing to unpack .../10-automake_1%3a1.17-3_all.deb ... 119s Unpacking automake (1:1.17-3) ... 119s Selecting previously unselected package autopoint. 119s Preparing to unpack .../11-autopoint_0.23.1-1_all.deb ... 119s Unpacking autopoint (0.23.1-1) ... 119s Selecting previously unselected package libisl23:s390x. 119s Preparing to unpack .../12-libisl23_0.27-1_s390x.deb ... 119s Unpacking libisl23:s390x (0.27-1) ... 119s Selecting previously unselected package libmpc3:s390x. 119s Preparing to unpack .../13-libmpc3_1.3.1-1build2_s390x.deb ... 119s Unpacking libmpc3:s390x (1.3.1-1build2) ... 119s Selecting previously unselected package cpp-14-s390x-linux-gnu. 119s Preparing to unpack .../14-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 119s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 119s Selecting previously unselected package cpp-14. 119s Preparing to unpack .../15-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 119s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 119s Selecting previously unselected package cpp-s390x-linux-gnu. 119s Preparing to unpack .../16-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 119s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 119s Selecting previously unselected package cpp. 119s Preparing to unpack .../17-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 119s Unpacking cpp (4:14.2.0-1ubuntu1) ... 119s Selecting previously unselected package libcc1-0:s390x. 119s Preparing to unpack .../18-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 119s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 119s Selecting previously unselected package libgomp1:s390x. 119s Preparing to unpack .../19-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 119s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 119s Selecting previously unselected package libitm1:s390x. 119s Preparing to unpack .../20-libitm1_15-20250213-1ubuntu1_s390x.deb ... 119s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 119s Selecting previously unselected package libasan8:s390x. 119s Preparing to unpack .../21-libasan8_15-20250213-1ubuntu1_s390x.deb ... 119s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 120s Selecting previously unselected package libubsan1:s390x. 120s Preparing to unpack .../22-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 120s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 120s Selecting previously unselected package libgcc-14-dev:s390x. 120s Preparing to unpack .../23-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 120s Selecting previously unselected package gcc-14-s390x-linux-gnu. 120s Preparing to unpack .../24-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 120s Selecting previously unselected package gcc-14. 120s Preparing to unpack .../25-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 120s Selecting previously unselected package gcc-s390x-linux-gnu. 120s Preparing to unpack .../26-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 120s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 120s Selecting previously unselected package gcc. 120s Preparing to unpack .../27-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 120s Unpacking gcc (4:14.2.0-1ubuntu1) ... 120s Selecting previously unselected package libstdc++-14-dev:s390x. 120s Preparing to unpack .../28-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 120s Selecting previously unselected package g++-14-s390x-linux-gnu. 120s Preparing to unpack .../29-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 120s Selecting previously unselected package g++-14. 120s Preparing to unpack .../30-g++-14_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking g++-14 (14.2.0-17ubuntu1) ... 120s Selecting previously unselected package g++-s390x-linux-gnu. 120s Preparing to unpack .../31-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 120s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 120s Selecting previously unselected package g++. 120s Preparing to unpack .../32-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 120s Unpacking g++ (4:14.2.0-1ubuntu1) ... 120s Selecting previously unselected package build-essential. 120s Preparing to unpack .../33-build-essential_12.10ubuntu1_s390x.deb ... 120s Unpacking build-essential (12.10ubuntu1) ... 120s Selecting previously unselected package libdebhelper-perl. 120s Preparing to unpack .../34-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 120s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 120s Selecting previously unselected package libtool. 120s Preparing to unpack .../35-libtool_2.5.4-3build1_all.deb ... 120s Unpacking libtool (2.5.4-3build1) ... 120s Selecting previously unselected package dh-autoreconf. 120s Preparing to unpack .../36-dh-autoreconf_20_all.deb ... 120s Unpacking dh-autoreconf (20) ... 120s Selecting previously unselected package libarchive-zip-perl. 120s Preparing to unpack .../37-libarchive-zip-perl_1.68-1_all.deb ... 120s Unpacking libarchive-zip-perl (1.68-1) ... 120s Selecting previously unselected package libfile-stripnondeterminism-perl. 120s Preparing to unpack .../38-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 120s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 120s Selecting previously unselected package dh-strip-nondeterminism. 120s Preparing to unpack .../39-dh-strip-nondeterminism_1.14.1-2_all.deb ... 120s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 120s Selecting previously unselected package debugedit. 120s Preparing to unpack .../40-debugedit_1%3a5.1-2_s390x.deb ... 120s Unpacking debugedit (1:5.1-2) ... 120s Selecting previously unselected package dwz. 120s Preparing to unpack .../41-dwz_0.15-1build6_s390x.deb ... 120s Unpacking dwz (0.15-1build6) ... 120s Selecting previously unselected package gettext. 120s Preparing to unpack .../42-gettext_0.23.1-1_s390x.deb ... 120s Unpacking gettext (0.23.1-1) ... 120s Selecting previously unselected package intltool-debian. 120s Preparing to unpack .../43-intltool-debian_0.35.0+20060710.6_all.deb ... 120s Unpacking intltool-debian (0.35.0+20060710.6) ... 120s Selecting previously unselected package po-debconf. 120s Preparing to unpack .../44-po-debconf_1.0.21+nmu1_all.deb ... 120s Unpacking po-debconf (1.0.21+nmu1) ... 120s Selecting previously unselected package debhelper. 120s Preparing to unpack .../45-debhelper_13.24.1ubuntu2_all.deb ... 120s Unpacking debhelper (13.24.1ubuntu2) ... 120s Selecting previously unselected package dh-python. 120s Preparing to unpack .../46-dh-python_6.20250108_all.deb ... 120s Unpacking dh-python (6.20250108) ... 120s Selecting previously unselected package xml-core. 120s Preparing to unpack .../47-xml-core_0.19_all.deb ... 120s Unpacking xml-core (0.19) ... 120s Selecting previously unselected package docutils-common. 120s Preparing to unpack .../48-docutils-common_0.21.2+dfsg-2_all.deb ... 120s Unpacking docutils-common (0.21.2+dfsg-2) ... 121s Selecting previously unselected package fonts-font-awesome. 121s Preparing to unpack .../49-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 121s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 121s Selecting previously unselected package libabsl20230802:s390x. 121s Preparing to unpack .../50-libabsl20230802_20230802.1-4ubuntu2_s390x.deb ... 121s Unpacking libabsl20230802:s390x (20230802.1-4ubuntu2) ... 121s Selecting previously unselected package libabsl-dev:s390x. 121s Preparing to unpack .../51-libabsl-dev_20230802.1-4ubuntu2_s390x.deb ... 121s Unpacking libabsl-dev:s390x (20230802.1-4ubuntu2) ... 121s Selecting previously unselected package libblas3:s390x. 121s Preparing to unpack .../52-libblas3_3.12.1-2_s390x.deb ... 121s Unpacking libblas3:s390x (3.12.1-2) ... 121s Selecting previously unselected package libexpat1-dev:s390x. 121s Preparing to unpack .../53-libexpat1-dev_2.6.4-1_s390x.deb ... 121s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 121s Selecting previously unselected package libgfortran5:s390x. 121s Preparing to unpack .../54-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 121s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 121s Selecting previously unselected package libjs-jquery. 121s Preparing to unpack .../55-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 121s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 121s Selecting previously unselected package libjs-underscore. 121s Preparing to unpack .../56-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 121s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 121s Selecting previously unselected package libjs-sphinxdoc. 121s Preparing to unpack .../57-libjs-sphinxdoc_8.1.3-5_all.deb ... 121s Unpacking libjs-sphinxdoc (8.1.3-5) ... 121s Selecting previously unselected package libjson-perl. 121s Preparing to unpack .../58-libjson-perl_4.10000-1_all.deb ... 121s Unpacking libjson-perl (4.10000-1) ... 121s Selecting previously unselected package liblapack3:s390x. 121s Preparing to unpack .../59-liblapack3_3.12.1-2_s390x.deb ... 121s Unpacking liblapack3:s390x (3.12.1-2) ... 121s Selecting previously unselected package zlib1g-dev:s390x. 121s Preparing to unpack .../60-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 121s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 121s Selecting previously unselected package libpython3.13-dev:s390x. 121s Preparing to unpack .../61-libpython3.13-dev_3.13.2-1_s390x.deb ... 121s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 121s Selecting previously unselected package libpython3-dev:s390x. 121s Preparing to unpack .../62-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 121s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 121s Selecting previously unselected package libpython3.12t64:s390x. 121s Preparing to unpack .../63-libpython3.12t64_3.12.9-1_s390x.deb ... 121s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 121s Selecting previously unselected package libpython3.12-dev:s390x. 121s Preparing to unpack .../64-libpython3.12-dev_3.12.9-1_s390x.deb ... 121s Unpacking libpython3.12-dev:s390x (3.12.9-1) ... 121s Selecting previously unselected package libpython3-all-dev:s390x. 121s Preparing to unpack .../65-libpython3-all-dev_3.13.1-1~exp2_s390x.deb ... 121s Unpacking libpython3-all-dev:s390x (3.13.1-1~exp2) ... 121s Selecting previously unselected package pybind11-dev. 121s Preparing to unpack .../66-pybind11-dev_2.13.6-2_all.deb ... 121s Unpacking pybind11-dev (2.13.6-2) ... 121s Selecting previously unselected package python3-packaging. 121s Preparing to unpack .../67-python3-packaging_24.2-1_all.deb ... 121s Unpacking python3-packaging (24.2-1) ... 121s Selecting previously unselected package python3-pyproject-hooks. 121s Preparing to unpack .../68-python3-pyproject-hooks_1.2.0-1_all.deb ... 121s Unpacking python3-pyproject-hooks (1.2.0-1) ... 121s Selecting previously unselected package python3-toml. 121s Preparing to unpack .../69-python3-toml_0.10.2-1_all.deb ... 121s Unpacking python3-toml (0.10.2-1) ... 121s Selecting previously unselected package python3-wheel. 121s Preparing to unpack .../70-python3-wheel_0.45.1-1_all.deb ... 121s Unpacking python3-wheel (0.45.1-1) ... 121s Selecting previously unselected package python3-build. 121s Preparing to unpack .../71-python3-build_1.2.2-1_all.deb ... 121s Unpacking python3-build (1.2.2-1) ... 121s Selecting previously unselected package python3-installer. 121s Preparing to unpack .../72-python3-installer_0.7.0+dfsg1-3_all.deb ... 121s Unpacking python3-installer (0.7.0+dfsg1-3) ... 121s Selecting previously unselected package pybuild-plugin-pyproject. 121s Preparing to unpack .../73-pybuild-plugin-pyproject_6.20250108_all.deb ... 121s Unpacking pybuild-plugin-pyproject (6.20250108) ... 121s Selecting previously unselected package sphinx-rtd-theme-common. 121s Preparing to unpack .../74-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 121s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 121s Selecting previously unselected package python-dm-tree-doc. 121s Preparing to unpack .../75-python-dm-tree-doc_0.1.8-3build5_all.deb ... 121s Unpacking python-dm-tree-doc (0.1.8-3build5) ... 121s Selecting previously unselected package python3-absl. 121s Preparing to unpack .../76-python3-absl_2.1.0-1_all.deb ... 121s Unpacking python3-absl (2.1.0-1) ... 121s Selecting previously unselected package python3-all. 121s Preparing to unpack .../77-python3-all_3.13.1-1~exp2_s390x.deb ... 121s Unpacking python3-all (3.13.1-1~exp2) ... 121s Selecting previously unselected package python3.13-dev. 121s Preparing to unpack .../78-python3.13-dev_3.13.2-1_s390x.deb ... 121s Unpacking python3.13-dev (3.13.2-1) ... 121s Selecting previously unselected package python3-dev. 121s Preparing to unpack .../79-python3-dev_3.13.1-1~exp2_s390x.deb ... 121s Unpacking python3-dev (3.13.1-1~exp2) ... 121s Selecting previously unselected package python3.12-dev. 121s Preparing to unpack .../80-python3.12-dev_3.12.9-1_s390x.deb ... 121s Unpacking python3.12-dev (3.12.9-1) ... 121s Selecting previously unselected package python3-all-dev. 121s Preparing to unpack .../81-python3-all-dev_3.13.1-1~exp2_s390x.deb ... 121s Unpacking python3-all-dev (3.13.1-1~exp2) ... 121s Selecting previously unselected package python3-defusedxml. 121s Preparing to unpack .../82-python3-defusedxml_0.7.1-3_all.deb ... 121s Unpacking python3-defusedxml (0.7.1-3) ... 121s Selecting previously unselected package python3-dm-tree. 121s Preparing to unpack .../83-python3-dm-tree_0.1.8-3build5_s390x.deb ... 121s Unpacking python3-dm-tree (0.1.8-3build5) ... 121s Selecting previously unselected package python3-roman. 121s Preparing to unpack .../84-python3-roman_5.0-1_all.deb ... 121s Unpacking python3-roman (5.0-1) ... 121s Selecting previously unselected package python3-docutils. 121s Preparing to unpack .../85-python3-docutils_0.21.2+dfsg-2_all.deb ... 121s Unpacking python3-docutils (0.21.2+dfsg-2) ... 121s Selecting previously unselected package python3-imagesize. 121s Preparing to unpack .../86-python3-imagesize_1.4.1-1_all.deb ... 121s Unpacking python3-imagesize (1.4.1-1) ... 121s Selecting previously unselected package python3-iniconfig. 121s Preparing to unpack .../87-python3-iniconfig_1.1.1-2_all.deb ... 122s Unpacking python3-iniconfig (1.1.1-2) ... 122s Selecting previously unselected package python3-numpy. 122s Preparing to unpack .../88-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 122s Unpacking python3-numpy (1:1.26.4+ds-13) ... 122s Selecting previously unselected package python3-pluggy. 122s Preparing to unpack .../89-python3-pluggy_1.5.0-1_all.deb ... 122s Unpacking python3-pluggy (1.5.0-1) ... 122s Selecting previously unselected package python3-pybind11. 122s Preparing to unpack .../90-python3-pybind11_2.13.6-2_all.deb ... 122s Unpacking python3-pybind11 (2.13.6-2) ... 122s Selecting previously unselected package python3-pytest. 122s Preparing to unpack .../91-python3-pytest_8.3.4-1_all.deb ... 122s Unpacking python3-pytest (8.3.4-1) ... 122s Selecting previously unselected package python3-snowballstemmer. 122s Preparing to unpack .../92-python3-snowballstemmer_2.2.0-4build1_all.deb ... 122s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 122s Selecting previously unselected package sphinx-common. 122s Preparing to unpack .../93-sphinx-common_8.1.3-5_all.deb ... 122s Unpacking sphinx-common (8.1.3-5) ... 122s Selecting previously unselected package python3-alabaster. 122s Preparing to unpack .../94-python3-alabaster_0.7.16-0.1_all.deb ... 122s Unpacking python3-alabaster (0.7.16-0.1) ... 122s Selecting previously unselected package python3-sphinx. 122s Preparing to unpack .../95-python3-sphinx_8.1.3-5_all.deb ... 122s Unpacking python3-sphinx (8.1.3-5) ... 122s Selecting previously unselected package python3-sphinxcontrib.jquery. 122s Preparing to unpack .../96-python3-sphinxcontrib.jquery_4.1-5_all.deb ... 122s Unpacking python3-sphinxcontrib.jquery (4.1-5) ... 122s Selecting previously unselected package python3-sphinx-rtd-theme. 122s Preparing to unpack .../97-python3-sphinx-rtd-theme_3.0.2+dfsg-2_all.deb ... 122s Unpacking python3-sphinx-rtd-theme (3.0.2+dfsg-2) ... 122s Selecting previously unselected package python3-wrapt. 122s Preparing to unpack .../98-python3-wrapt_1.15.0-4_s390x.deb ... 122s Unpacking python3-wrapt (1.15.0-4) ... 122s Setting up dh-python (6.20250108) ... 122s Setting up python3-iniconfig (1.1.1-2) ... 122s Setting up fonts-lato (2.015-1) ... 122s Setting up python3-defusedxml (0.7.1-3) ... 122s Setting up libarchive-zip-perl (1.68-1) ... 122s Setting up python3-alabaster (0.7.16-0.1) ... 123s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 123s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 123s Setting up m4 (1.4.19-5) ... 123s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 123s Setting up python3-wheel (0.45.1-1) ... 123s Setting up python3-absl (2.1.0-1) ... 123s Setting up python3-roman (5.0-1) ... 123s Setting up autotools-dev (20220109.1) ... 123s Setting up libblas3:s390x (3.12.1-2) ... 123s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 123s Setting up python3-packaging (24.2-1) ... 123s Setting up libexpat1-dev:s390x (2.6.4-1) ... 123s Setting up python3-pyproject-hooks (1.2.0-1) ... 124s Setting up python3-snowballstemmer (2.2.0-4build1) ... 124s Setting up libmpc3:s390x (1.3.1-1build2) ... 124s Setting up python3-wrapt (1.15.0-4) ... 124s Setting up autopoint (0.23.1-1) ... 124s Setting up python3-toml (0.10.2-1) ... 124s Setting up python3-installer (0.7.0+dfsg1-3) ... 124s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 124s Setting up autoconf (2.72-3) ... 124s Setting up python3-pluggy (1.5.0-1) ... 125s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 125s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 125s Setting up dwz (0.15-1build6) ... 125s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 125s Setting up libjson-perl (4.10000-1) ... 125s Setting up libnsl2:s390x (1.3.0-3build3) ... 125s Setting up debugedit (1:5.1-2) ... 125s Setting up libabsl20230802:s390x (20230802.1-4ubuntu2) ... 125s Setting up sgml-base (1.31) ... 125s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 125s Setting up libisl23:s390x (0.27-1) ... 125s Setting up python3-build (1.2.2-1) ... 125s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 125s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 125s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 125s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 125s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 125s Setting up python3-imagesize (1.4.1-1) ... 125s Setting up automake (1:1.17-3) ... 125s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 125s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 125s Setting up python3.12-minimal (3.12.9-1) ... 126s Setting up liblapack3:s390x (3.12.1-2) ... 126s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 126s Setting up gettext (0.23.1-1) ... 126s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 126s Setting up pybuild-plugin-pyproject (6.20250108) ... 126s Setting up python3-pytest (8.3.4-1) ... 127s Setting up python3.12 (3.12.9-1) ... 128s Setting up python3-all (3.13.1-1~exp2) ... 128s Setting up intltool-debian (0.35.0+20060710.6) ... 128s Setting up libpython3.12t64:s390x (3.12.9-1) ... 128s Setting up python3-dm-tree (0.1.8-3build5) ... 128s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 128s Setting up libabsl-dev:s390x (20230802.1-4ubuntu2) ... 128s Setting up python3-numpy (1:1.26.4+ds-13) ... 132s Setting up libjs-sphinxdoc (8.1.3-5) ... 132s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 132s Setting up cpp-14 (14.2.0-17ubuntu1) ... 132s Setting up dh-strip-nondeterminism (1.14.1-2) ... 132s Setting up xml-core (0.19) ... 132s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 132s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 132s Setting up python-dm-tree-doc (0.1.8-3build5) ... 132s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 132s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 132s Setting up python3.13-dev (3.13.2-1) ... 132s Setting up po-debconf (1.0.21+nmu1) ... 132s Setting up libpython3.12-dev:s390x (3.12.9-1) ... 132s Setting up pybind11-dev (2.13.6-2) ... 132s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 132s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 132s Setting up libpython3-all-dev:s390x (3.13.1-1~exp2) ... 132s Setting up sphinx-common (8.1.3-5) ... 132s Setting up python3-dev (3.13.1-1~exp2) ... 132s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 132s Setting up python3.12-dev (3.12.9-1) ... 132s Setting up cpp (4:14.2.0-1ubuntu1) ... 132s Setting up python3-pybind11 (2.13.6-2) ... 132s Setting up python3-all-dev (3.13.1-1~exp2) ... 132s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 132s Setting up gcc-14 (14.2.0-17ubuntu1) ... 132s Setting up g++-14 (14.2.0-17ubuntu1) ... 132s Setting up libtool (2.5.4-3build1) ... 132s Setting up gcc (4:14.2.0-1ubuntu1) ... 132s Setting up dh-autoreconf (20) ... 132s Setting up g++ (4:14.2.0-1ubuntu1) ... 132s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 132s Setting up build-essential (12.10ubuntu1) ... 132s Setting up debhelper (13.24.1ubuntu2) ... 132s Processing triggers for install-info (7.1.1-1) ... 132s Processing triggers for libc-bin (2.40-4ubuntu1) ... 133s Processing triggers for systemd (257.2-3ubuntu1) ... 133s Processing triggers for man-db (2.13.0-1) ... 134s Processing triggers for sgml-base (1.31) ... 134s Setting up docutils-common (0.21.2+dfsg-2) ... 134s Processing triggers for sgml-base (1.31) ... 134s Setting up python3-docutils (0.21.2+dfsg-2) ... 135s Setting up python3-sphinx (8.1.3-5) ... 136s Setting up python3-sphinxcontrib.jquery (4.1-5) ... 136s Setting up python3-sphinx-rtd-theme (3.0.2+dfsg-2) ... 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-dm-tree-doc'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-dm-tree'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.e5fXo1/upstream-packages.all"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/upstream-packages.all /tmp/autopkgtest-work.e20v53ot/out/upstream-packages.all 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.e5fXo1/build.YC0/src'], kind short, sout raw, serr raw, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.e5fXo1/build.YC0/src already exists 137s autopkgtest [11:55:43]: test upstream: [----------------------- 137s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.e5fXo1/wrapper.sh --debug --artifacts=/tmp/autopkgtest.e5fXo1/upstream-artifacts --chdir=/tmp/autopkgtest.e5fXo1/build.YC0/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.e5fXo1/upstream-stderr --stdout=/tmp/autopkgtest.e5fXo1/upstream-stdout --tmp=/tmp/autopkgtest.e5fXo1/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.e5fXo1/build.YC0/src/debian/tests/upstream -- /tmp/autopkgtest.e5fXo1/build.YC0/src/debian/tests/upstream'], kind test, sout raw, serr raw, env [] 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.e5fXo1/upstream-artifacts 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: changing to directory: /tmp/autopkgtest.e5fXo1/build.YC0/src 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: setting environment: LANG=C.UTF-8 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LANGUAGE 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_ADDRESS 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_ALL 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_COLLATE 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_CTYPE 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_IDENTIFICATION 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_MEASUREMENT 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_MESSAGES 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_MONETARY 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_NAME 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_NUMERIC 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_PAPER 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_TELEPHONE 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: unsetting environment: LC_TIME 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: pretending to be a login shell 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: will write standard error to /tmp/autopkgtest.e5fXo1/upstream-stderr 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: will write stdout to /tmp/autopkgtest.e5fXo1/upstream-stdout 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.e5fXo1/autopkgtest_tmp 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: marking as executable: /tmp/autopkgtest.e5fXo1/build.YC0/src/debian/tests/upstream 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: command to run: /tmp/autopkgtest.e5fXo1/build.YC0/src/debian/tests/upstream 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: copying /tmp/tmp.himb5Eg76P/out to stdout and file: /tmp/autopkgtest.e5fXo1/upstream-stdout 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: copying /tmp/tmp.himb5Eg76P/err to standard error and file: /tmp/autopkgtest.e5fXo1/upstream-stdout 138s /tmp/autopkgtest.e5fXo1/wrapper.sh: writing script pid 2675 to /tmp/autopkgtest_script_pid 138s ============================= test session starts ============================== 138s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 138s rootdir: /tmp/autopkgtest.e5fXo1/autopkgtest_tmp 138s plugins: typeguard-4.4.1 138s collected 70 items 138s 138s tree_test.py ........................................................... [ 84%] 138s ........... [100%] 138s 138s ============================== 70 passed in 0.26s ============================== 139s ============================= test session starts ============================== 139s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 139s rootdir: /tmp/autopkgtest.e5fXo1/autopkgtest_tmp 139s plugins: typeguard-4.4.1 139s collected 70 items 139s 139s tree_test.py ........................................................... [ 84%] 139s ........... [100%] 139s 139s ============================== 70 passed in 0.30s ============================== 139s /tmp/autopkgtest.e5fXo1/wrapper.sh: checking for leaked background processes... 139s /tmp/autopkgtest.e5fXo1/wrapper.sh: waiting for tee/cat subprocesses... 139s /tmp/autopkgtest.e5fXo1/wrapper.sh: cleaning up... 139s /tmp/autopkgtest.e5fXo1/wrapper.sh: Exit status: 0 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [11:55:45]: test upstream: -----------------------] 139s autopkgtest: DBG: testbed executing test finished with exit status 0 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/upstream-stdout /tmp/autopkgtest-work.e20v53ot/out/upstream-stdout 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/upstream-stderr /tmp/autopkgtest-work.e20v53ot/out/upstream-stderr 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest [11:55:46]: test upstream: - - - - - - - - - - results - - - - - - - - - - 140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.e5fXo1/upstream-artifacts/ /tmp/autopkgtest-work.e20v53ot/out/artifacts/ 140s upstream PASS 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.e5fXo1/upstream-artifacts', '/tmp/autopkgtest.e5fXo1/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 140s autopkgtest [11:55:46]: @@@@@@@@@@@@@@@@@@@@ summary 140s upstream PASS 140s autopkgtest: DBG: testbed stop 140s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.e5fXo1 140s autopkgtest: DBG: sending command to testbed: close 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: sending command to testbed: quit 157s nova [W] Using flock in prodstack6-s390x 157s Creating nova instance adt-plucky-s390x-dm-tree-20250219-115326-juju-7f2275-prod-proposed-migration-environment-15-0113b599-1966-4186-8489-e51f051f247e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 157s nova [W] Timed out waiting for d67ad3fd-4a78-4e0a-b807-884be6057a67 to get deleted.