0s autopkgtest: DBG: testbed init 0s autopkgtest [12:19:39]: starting date and time: 2025-02-19 12:19:39+0000 0s autopkgtest [12:19:39]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:19:39]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.wws_kge9/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade numpy --debug --timeout-short=300 --timeout-copy=20000 --timeout-test=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-big-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-29.secgroup --name adt-plucky-s390x-numpy-20250219-121939-juju-7f2275-prod-proposed-migration-environment-15-8d723ae9-b18c-440a-aabd-b1c30764ae32 --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 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TgRL59 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.9vndivz9/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert suggested-normal-user=ubuntu isolation-machine reboot root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TgRL59'], 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.TgRL59/wrapper.sh 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TgRL59/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 [12:21:26]: 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 [12:21:26]: testbed apt version: 2.9.30 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s 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 [12:21:27]: @@@@@@@@@@@@@@@@@@@@ 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 [12:21:27]: 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [12:21:27]: updating testbed package index (apt update) 108s 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/restricted Sources [3120 B] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 109s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 109s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 109s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 109s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 109s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 110s Fetched 1700 kB in 1s (1907 kB/s) 110s Reading package lists... 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 100 110s 110s Package: src:sphinx:any 110s Pin: release plucky-proposed 110s Pin-Priority: 995 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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.TgRL59/${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 iproute2 liblsof0 libp11-kit0 lsof 111s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 111s Need to get 1791 kB of archives. 111s After this operation, 17.4 kB of additional disk space will be used. 111s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 112s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 112s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 112s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 112s Preconfiguring packages ... 112s Fetched 1791 kB in 1s (2887 kB/s) 112s (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.) 112s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 112s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 112s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 112s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 112s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 112s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 112s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 112s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 112s Setting up liblsof0 (4.99.4+dfsg-1) ... 112s Setting up iproute2 (6.13.0-1ubuntu1) ... 112s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 112s Setting up lsof (4.99.4+dfsg-1) ... 112s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for libc-bin (2.40-4ubuntu1) ... 113s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 113s + /usr/lib/apt/apt-helper analyze-pattern ?true 113s + uname -r 113s + sed s/\./\\./g 113s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 113s + apt+ tail -n+2 113s list ?obsolete 113s + cut -d/ -f1 113s + grep -v ^linux-.*6\.12\.0-15-generic.* 113s + true 113s + obsolete_pkgs= 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s The following packages will be REMOVED: 113s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 113s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 113s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 113s linux-tools-6.11.0-8-generic* 114s 0 upgraded, 0 newly installed, 9 to remove and 0 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 ... 81031 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) ... 115s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 115s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 115s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s + grep -q trusty /etc/lsb-release 115s + [ ! -d /usr/share/doc/unattended-upgrades ] 115s + [ ! -d /usr/share/doc/lxd ] 115s + [ ! -d /usr/share/doc/lxd-client ] 115s + [ ! -d /usr/share/doc/snapd ] 115s + type iptables 115s + cat 115s + chmod 755 /etc/rc.local 115s + . /etc/rc.local 115s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 115s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 115s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 115s + uname -m 115s + [ s390x = ppc64le ] 115s + [ -d /run/systemd/system ] 115s + systemd-detect-virt --quiet --vm 115s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 115s + cat 115s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 115s + echo COMPRESS=lz4 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [12:21:34]: upgrading testbed (apt dist-upgrade and autopurge) 115s 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'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 116s Entering ResolveByKeep 116s 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 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', '--purge', 'autoremove'], 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 Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 116s 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.TgRL59/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 117s autopkgtest: DBG: testbed command exited with code 1 117s autopkgtest [12:21:36]: rebooting testbed after setup commands that affected boot 117s autopkgtest: DBG: sending command to testbed: reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TgRL59'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TgRL59/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TgRL59'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TgRL59/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [12:21:55]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 136s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TgRL59/testbed-packages"], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/testbed-packages /tmp/autopkgtest-work.wws_kge9/out/testbed-packages 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TgRL59'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TgRL59/autopkgtest-reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TgRL59'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TgRL59/autopkgtest-reboot-prepare 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TgRL59/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: Binaries: initialising 138s autopkgtest [12:21:57]: @@@@@@@@@@@@@@@@@@@@ apt-source numpy 138s autopkgtest: DBG: blame += numpy 138s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 138s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'numpy'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-numpy$'], kind short, sout pipe, serr raw, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-numpy=1:1.26.4+ds-13'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-numpy-dev$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-numpy-doc$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-numpy-doc=1:1.26.4+ds-13'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: install_deps: deps_new=[] 139s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s 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.TgRL59/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source numpy=1:1.26.4+ds-13 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 numpy_*.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'] 140s + cd / 140s + mktemp -d /tmp/autopkgtest.TgRL59/build.XXX 140s + builddir=/tmp/autopkgtest.TgRL59/build.FUQ 140s + cd /tmp/autopkgtest.TgRL59/build.FUQ 140s + apt-get source -d -q --only-source numpy=1:1.26.4+ds-13 142s + OUT=Reading package lists... 142s NOTICE: 'numpy' packaging is maintained in the 'Git' version control system at: 142s https://salsa.debian.org/python-team/packages/numpy.git 142s Please use: 142s git clone https://salsa.debian.org/python-team/packages/numpy.git 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 11.4 MB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (dsc) [3451 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (tar) [11.3 MB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (diff) [157 kB] 142s Fetched 11.4 MB in 2s (5007 kB/s) 142s Download complete and in download only mode 142s + [ -n ] 142s + echo Reading package lists... 142s NOTICE: 'numpy' packaging is maintained in the 'Git' version control system at: 142s https://salsa.debian.org/python-team/packages/numpy.git 142s Please use: 142s git clone https://salsa.debian.org/python-team/packages/numpy.git 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 11.4 MB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (dsc) [3451 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (tar) [11.3 MB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (diff) [157 kB] 142s Fetched 11.4 MB in 2s (5007 kB/s) 142s Download complete and in download only mode 142s + grep ^Get: 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (dsc) [3451 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (tar) [11.3 MB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/main numpy 1:1.26.4+ds-13 (diff) [157 kB] 142s + dpkg-source -x numpy_1.26.4+ds-13.dsc src 142s gpgv: Signature made Mon Jan 13 19:48:09 2025 UTC 142s gpgv: using RSA key 8F6DE104377F3B11E741748731F3144544A1741A 142s gpgv: issuer "tchet@debian.org" 142s gpgv: Can't check signature: No public key 142s dpkg-source: warning: cannot verify inline signature for ./numpy_1.26.4+ds-13.dsc: no acceptable signature found 143s + chmod -R a+rX . 143s + cd src/. 143s + pwd 143s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [12:22:02]: testing package numpy version 1:1.26.4+ds-13 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/build.FUQ/src/debian/ /tmp/autopkgtest-work.wws_kge9/out/pkg/debian/ 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: autodep8 generated control: ----- 143s Test-Command: pybuild-autopkgtest 143s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 143s Restrictions: allow-stderr, skippable, 143s Features: test-name=pybuild-autopkgtest 143s 143s ------- 143s autopkgtest: DBG: processing dependency @ 143s autopkgtest: DBG: synthesised dependency python3-numpy 143s autopkgtest: DBG: synthesised dependency python-numpy-doc 143s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 143s autopkgtest: DBG: processing dependency @builddeps@ 143s autopkgtest: DBG: synthesised dependency cython3:native (>= 3.0) 143s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 143s autopkgtest: DBG: synthesised dependency dh-python 143s autopkgtest: DBG: synthesised dependency dh-sequence-python3 143s autopkgtest: DBG: synthesised dependency gfortran [amd64 arm64 ppc64el] 143s autopkgtest: DBG: synthesised dependency libblas-dev [!arm !m68k] 143s autopkgtest: DBG: synthesised dependency liblapack-dev [!arm !m68k] 143s autopkgtest: DBG: synthesised dependency libpython3-all-dev 143s autopkgtest: DBG: synthesised dependency mypy 143s autopkgtest: DBG: synthesised dependency ninja-build 143s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 143s autopkgtest: DBG: synthesised dependency python3-all-dev:any 143s autopkgtest: DBG: synthesised dependency python3-charset-normalizer 143s autopkgtest: DBG: synthesised dependency python3-hypothesis 143s autopkgtest: DBG: synthesised dependency python3-mesonpy:native 143s autopkgtest: DBG: synthesised dependency python3-pyproject-metadata:native 143s autopkgtest: DBG: synthesised dependency python3-pytest 143s autopkgtest: DBG: synthesised dependency python3-pytest-xdist 143s autopkgtest: DBG: synthesised dependency python3-scipy 143s autopkgtest: DBG: synthesised dependency python3-setuptools 143s autopkgtest: DBG: synthesised dependency python3-typing-extensions (>= 4.2.0) 143s autopkgtest: DBG: synthesised dependency python3-tz 143s autopkgtest: DBG: synthesised dependency tzdata-legacy 143s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 143s autopkgtest: DBG: synthesised dependency doxygen 143s autopkgtest: DBG: synthesised dependency python-imageio-doc 143s autopkgtest: DBG: synthesised dependency python-pandas-doc 143s autopkgtest: DBG: synthesised dependency python-pytest-doc 143s autopkgtest: DBG: synthesised dependency python-scipy-doc 143s autopkgtest: DBG: synthesised dependency python-skimage-doc 143s autopkgtest: DBG: synthesised dependency python3-breathe 143s autopkgtest: DBG: synthesised dependency python3-doc 143s autopkgtest: DBG: synthesised dependency python3-ipython 143s autopkgtest: DBG: synthesised dependency python3-matplotlib 143s autopkgtest: DBG: synthesised dependency python3-numpydoc 143s autopkgtest: DBG: synthesised dependency python3-pickleshare 143s autopkgtest: DBG: synthesised dependency python3-pydata-sphinx-theme 143s autopkgtest: DBG: synthesised dependency python3-sphinx 143s autopkgtest: DBG: synthesised dependency python3-sphinx-design 143s autopkgtest: DBG: synthesised dependency build-essential 143s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-numpy', 'python-numpy-doc', 'pybuild-plugin-autopkgtest', 'cython3:native (>= 3.0)', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-python3', 'gfortran [amd64 arm64 ppc64el] ', 'libblas-dev [!arm !m68k]', 'liblapack-dev [!arm !m68k]', 'libpython3-all-dev', 'mypy ', 'ninja-build', 'pybuild-plugin-pyproject', 'python3-all-dev:any', 'python3-charset-normalizer ', 'python3-hypothesis ', 'python3-mesonpy:native', 'python3-pyproject-metadata:native', 'python3-pytest ', 'python3-pytest-xdist ', 'python3-scipy ', 'python3-setuptools ', 'python3-typing-extensions (>= 4.2.0) ', 'python3-tz ', 'tzdata-legacy ', 'dh-sequence-sphinxdoc ', 'doxygen ', 'python-imageio-doc ', 'python-pandas-doc ', 'python-pytest-doc ', 'python-scipy-doc ', 'python-skimage-doc ', 'python3-breathe ', 'python3-doc ', 'python3-ipython ', 'python3-matplotlib ', 'python3-numpydoc ', 'python3-pickleshare ', 'python3-pydata-sphinx-theme ', 'python3-sphinx ', 'python3-sphinx-design ', 'build-essential'] 143s autopkgtest [12:22:02]: build not needed 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/build.FUQ/src/ /tmp/autopkgtest-work.wws_kge9/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: autodep8 generated control: ----- 146s Test-Command: pybuild-autopkgtest 146s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 146s Restrictions: allow-stderr, skippable, 146s Features: test-name=pybuild-autopkgtest 146s 146s ------- 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency python3-numpy 146s autopkgtest: DBG: synthesised dependency python-numpy-doc 146s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 146s autopkgtest: DBG: processing dependency @builddeps@ 146s autopkgtest: DBG: synthesised dependency cython3:native (>= 3.0) 146s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 146s autopkgtest: DBG: synthesised dependency dh-python 146s autopkgtest: DBG: synthesised dependency dh-sequence-python3 146s autopkgtest: DBG: synthesised dependency gfortran [amd64 arm64 ppc64el] 146s autopkgtest: DBG: synthesised dependency libblas-dev [!arm !m68k] 146s autopkgtest: DBG: synthesised dependency liblapack-dev [!arm !m68k] 146s autopkgtest: DBG: synthesised dependency libpython3-all-dev 146s autopkgtest: DBG: synthesised dependency mypy 146s autopkgtest: DBG: synthesised dependency ninja-build 146s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 146s autopkgtest: DBG: synthesised dependency python3-all-dev:any 146s autopkgtest: DBG: synthesised dependency python3-charset-normalizer 146s autopkgtest: DBG: synthesised dependency python3-hypothesis 146s autopkgtest: DBG: synthesised dependency python3-mesonpy:native 146s autopkgtest: DBG: synthesised dependency python3-pyproject-metadata:native 146s autopkgtest: DBG: synthesised dependency python3-pytest 146s autopkgtest: DBG: synthesised dependency python3-pytest-xdist 146s autopkgtest: DBG: synthesised dependency python3-scipy 146s autopkgtest: DBG: synthesised dependency python3-setuptools 146s autopkgtest: DBG: synthesised dependency python3-typing-extensions (>= 4.2.0) 146s autopkgtest: DBG: synthesised dependency python3-tz 146s autopkgtest: DBG: synthesised dependency tzdata-legacy 146s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 146s autopkgtest: DBG: synthesised dependency doxygen 146s autopkgtest: DBG: synthesised dependency python-imageio-doc 146s autopkgtest: DBG: synthesised dependency python-pandas-doc 146s autopkgtest: DBG: synthesised dependency python-pytest-doc 146s autopkgtest: DBG: synthesised dependency python-scipy-doc 146s autopkgtest: DBG: synthesised dependency python-skimage-doc 146s autopkgtest: DBG: synthesised dependency python3-breathe 146s autopkgtest: DBG: synthesised dependency python3-doc 146s autopkgtest: DBG: synthesised dependency python3-ipython 146s autopkgtest: DBG: synthesised dependency python3-matplotlib 146s autopkgtest: DBG: synthesised dependency python3-numpydoc 146s autopkgtest: DBG: synthesised dependency python3-pickleshare 146s autopkgtest: DBG: synthesised dependency python3-pydata-sphinx-theme 146s autopkgtest: DBG: synthesised dependency python3-sphinx 146s autopkgtest: DBG: synthesised dependency python3-sphinx-design 146s autopkgtest: DBG: synthesised dependency build-essential 146s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-numpy', 'python-numpy-doc', 'pybuild-plugin-autopkgtest', 'cython3:native (>= 3.0)', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-python3', 'gfortran [amd64 arm64 ppc64el] ', 'libblas-dev [!arm !m68k]', 'liblapack-dev [!arm !m68k]', 'libpython3-all-dev', 'mypy ', 'ninja-build', 'pybuild-plugin-pyproject', 'python3-all-dev:any', 'python3-charset-normalizer ', 'python3-hypothesis ', 'python3-mesonpy:native', 'python3-pyproject-metadata:native', 'python3-pytest ', 'python3-pytest-xdist ', 'python3-scipy ', 'python3-setuptools ', 'python3-typing-extensions (>= 4.2.0) ', 'python3-tz ', 'tzdata-legacy ', 'dh-sequence-sphinxdoc ', 'doxygen ', 'python-imageio-doc ', 'python-pandas-doc ', 'python-pytest-doc ', 'python-scipy-doc ', 'python-skimage-doc ', 'python3-breathe ', 'python3-doc ', 'python3-ipython ', 'python3-matplotlib ', 'python3-numpydoc ', 'python3-pickleshare ', 'python3-pydata-sphinx-theme ', 'python3-sphinx ', 'python3-sphinx-design ', 'build-essential'] 146s autopkgtest [12:22:05]: test pybuild-autopkgtest: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-numpy', 'python-numpy-doc', 'pybuild-plugin-autopkgtest', 'cython3:native (>= 3.0)', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-python3', 'gfortran [amd64 arm64 ppc64el] ', 'libblas-dev [!arm !m68k]', 'liblapack-dev [!arm !m68k]', 'libpython3-all-dev', 'mypy ', 'ninja-build', 'pybuild-plugin-pyproject', 'python3-all-dev:any', 'python3-charset-normalizer ', 'python3-hypothesis ', 'python3-mesonpy:native', 'python3-pyproject-metadata:native', 'python3-pytest ', 'python3-pytest-xdist ', 'python3-scipy ', 'python3-setuptools ', 'python3-typing-extensions (>= 4.2.0) ', 'python3-tz ', 'tzdata-legacy ', 'dh-sequence-sphinxdoc ', 'doxygen ', 'python-imageio-doc ', 'python-pandas-doc ', 'python-pytest-doc ', 'python-scipy-doc ', 'python-skimage-doc ', 'python3-breathe ', 'python3-doc ', 'python3-ipython ', 'python3-matplotlib ', 'python3-numpydoc ', 'python3-pickleshare ', 'python3-pydata-sphinx-theme ', 'python3-sphinx ', 'python3-sphinx-design ', 'build-essential'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['python3-numpy', 'python-numpy-doc', 'pybuild-plugin-autopkgtest', 'cython3:native (>= 3.0)', 'debhelper-compat (= 13)', 'dh-python', 'dh-sequence-python3', 'gfortran [amd64 arm64 ppc64el] ', 'libblas-dev [!arm !m68k]', 'liblapack-dev [!arm !m68k]', 'libpython3-all-dev', 'mypy ', 'ninja-build', 'pybuild-plugin-pyproject', 'python3-all-dev:any', 'python3-charset-normalizer ', 'python3-hypothesis ', 'python3-mesonpy:native', 'python3-pyproject-metadata:native', 'python3-pytest ', 'python3-pytest-xdist ', 'python3-scipy ', 'python3-setuptools ', 'python3-typing-extensions (>= 4.2.0) ', 'python3-tz ', 'tzdata-legacy ', 'dh-sequence-sphinxdoc ', 'doxygen ', 'python-imageio-doc ', 'python-pandas-doc ', 'python-pytest-doc ', 'python-scipy-doc ', 'python-skimage-doc ', 'python3-breathe ', 'python3-doc ', 'python3-ipython ', 'python3-matplotlib ', 'python3-numpydoc ', 'python3-pickleshare ', 'python3-pydata-sphinx-theme ', 'python3-sphinx ', 'python3-sphinx-design ', 'build-essential'] 146s autopkgtest: DBG: install-deps: satisfying python3-numpy, python-numpy-doc, pybuild-plugin-autopkgtest, cython3:native (>= 3.0), debhelper-compat (= 13), dh-python, dh-sequence-python3, gfortran [amd64 arm64 ppc64el] , libblas-dev [!arm !m68k], liblapack-dev [!arm !m68k], libpython3-all-dev, mypy , ninja-build, pybuild-plugin-pyproject, python3-all-dev:any, python3-charset-normalizer , python3-hypothesis , python3-mesonpy:native, python3-pyproject-metadata:native, python3-pytest , python3-pytest-xdist , python3-scipy , python3-setuptools , python3-typing-extensions (>= 4.2.0) , python3-tz , tzdata-legacy , dh-sequence-sphinxdoc , doxygen , python-imageio-doc , python-pandas-doc , python-pytest-doc , python-scipy-doc , python-skimage-doc , python3-breathe , python3-doc , python3-ipython , python3-matplotlib , python3-numpydoc , python3-pickleshare , python3-pydata-sphinx-theme , python3-sphinx , python3-sphinx-design , build-essential 146s autopkgtest: DBG: can use apt-get on testbed: True 146s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-numpy, python-numpy-doc, pybuild-plugin-autopkgtest, cython3:native (>= 3.0), debhelper-compat (= 13), dh-python, dh-sequence-python3, gfortran [amd64 arm64 ppc64el] , libblas-dev [!arm !m68k], liblapack-dev [!arm !m68k], libpython3-all-dev, mypy , ninja-build, pybuild-plugin-pyproject, python3-all-dev:any, python3-charset-normalizer , python3-hypothesis , python3-mesonpy:native, python3-pyproject-metadata:native, python3-pytest , python3-pytest-xdist , python3-scipy , python3-setuptools , python3-typing-extensions (>= 4.2.0) , python3-tz , tzdata-legacy , dh-sequence-sphinxdoc , doxygen , python-imageio-doc , python-pandas-doc , python-pytest-doc , python-scipy-doc , python-skimage-doc , python3-breathe , python3-doc , python3-ipython , python3-matplotlib , python3-numpydoc , python3-pickleshare , python3-pydata-sphinx-theme , python3-sphinx , python3-sphinx-design , build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 146s Reading package lists... 146s Building dependency tree... 146s Reading state information... 146s Starting pkgProblemResolver with broken count: 0 146s Starting 2 pkgProblemResolver with broken count: 0 146s Done 147s The following NEW packages will be installed: 147s autoconf automake autopoint autotools-dev blt build-essential cpp cpp-14 147s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu cython3 debhelper debugedit 147s dh-autoreconf dh-python dh-strip-nondeterminism docutils-common doxygen dwz 147s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 147s fonts-glyphicons-halflings fonts-lyx fonts-mathjax fonts-open-sans g++ 147s g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 147s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext graphviz intltool-debian 147s libann0 libaom3 libarchive-zip-perl libasan8 libblas-dev libblas3 libcairo2 147s libcc1-0 libcdt5 libcgraph6 libclang-cpp19 libdatrie1 libde265-0 147s libdebhelper-perl libdeflate0 libexpat1-dev libfile-stripnondeterminism-perl 147s libfmt10 libfontconfig1 libfreetype6 libgcc-14-dev libgd3 libgfortran5 147s libgomp1 libgraphite2-3 libgts-0.7-5t64 libgvc6 libgvpr2 libharfbuzz0b 147s libheif-plugin-aomdec libheif-plugin-libde265 libheif1 libice6 147s libimagequant0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 147s libjs-bootstrap libjs-jquery libjs-jquery-ui libjs-mathjax libjs-sphinxdoc 147s libjs-underscore libjson-perl liblab-gamut1 liblapack-dev liblapack3 147s liblbfgsb0 liblcms2-2 libltdl7 libmpc3 libnsl2 libopenjp2-7 libpango-1.0-0 147s libpangocairo-1.0-0 libpangoft2-1.0-0 libpathplan4 libpixman-1-0 147s libpython3-all-dev libpython3-dev libpython3.12-dev libpython3.12-minimal 147s libpython3.12-stdlib libpython3.12t64 libpython3.13-dev libqhull-r8.0 147s libraqm0 libsharpyuv0 libsm6 libstdc++-14-dev libtcl8.6 libthai-data 147s libthai0 libtiff6 libtk8.6 libtool libubsan1 libwebp7 libwebpdemux2 147s libwebpmux3 libxapian30 libxaw7 libxcb-render0 libxcb-shm0 libxft2 libxmu6 147s libxpm4 libxrender1 libxslt1.1 libxss1 libxt6t64 m4 meson mypy ninja-build 147s node-fortawesome-fontawesome-free po-debconf pybuild-plugin-autopkgtest 147s pybuild-plugin-pyproject python-imageio-doc python-matplotlib-data 147s python-numpy-doc python-pandas-doc python-pytest-doc python-scipy-doc 147s python-skimage-doc python3-accessible-pygments python3-alabaster python3-all 147s python3-all-dev python3-asttokens python3-breathe python3-brotli python3-bs4 147s python3-build python3-charset-normalizer python3-contourpy python3-cycler 147s python3-dateutil python3-decorator python3-defusedxml python3-dev 147s python3-doc python3-docutils python3-execnet python3-executing 147s python3-fonttools python3-fs python3-hypothesis python3-imagesize 147s python3-iniconfig python3-installer python3-ipython python3-jedi 147s python3-kiwisolver python3-lxml python3-lz4 python3-matplotlib 147s python3-matplotlib-inline python3-mesonpy python3-mpmath python3-mypy 147s python3-mypy-extensions python3-numpy python3-numpydoc python3-packaging 147s python3-parso python3-pexpect python3-pickleshare python3-pil 147s python3-pil.imagetk python3-platformdirs python3-pluggy 147s python3-prompt-toolkit python3-psutil python3-ptyprocess python3-pure-eval 147s python3-pydata-sphinx-theme python3-pyproject-hooks 147s python3-pyproject-metadata python3-pytest python3-pytest-xdist python3-pytz 147s python3-roman python3-scipy python3-snowballstemmer python3-sortedcontainers 147s python3-soupsieve python3-sphinx python3-sphinx-design python3-stack-data 147s python3-sympy python3-tabulate python3-tk python3-toml python3-traitlets 147s python3-typeshed python3-tz python3-ufolib2 python3-wcwidth python3-wheel 147s python3.12 python3.12-dev python3.12-minimal python3.12-tk python3.13-dev 147s python3.13-doc python3.13-tk sgml-base sphinx-common tk8.6-blt2.5 147s tzdata-legacy unicode-data x11-common xml-core zlib1g-dev 147s 0 upgraded, 236 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 251 MB of archives. 147s After this operation, 1366 MB of additional disk space will be used. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 149s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 149s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 149s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 149s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 149s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 149s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 149s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x tk8.6-blt2.5 s390x 2.5.3+dfsg-7build1 [662 kB] 149s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x blt s390x 2.5.3+dfsg-7build1 [4840 B] 149s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 149s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 149s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 151s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 151s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 151s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 151s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 151s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 151s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 151s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 151s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 151s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 152s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 154s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 154s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 154s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 154s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 155s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 156s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 156s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 156s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 156s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 156s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x cython3 s390x 3.0.11+dfsg-2ubuntu1 [3276 kB] 157s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 157s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 157s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 157s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 157s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 157s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 157s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 157s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 157s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 157s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 157s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 157s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 157s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 157s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 157s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 157s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-cpp19 s390x 1:19.1.7-1ubuntu1 [16.7 MB] 159s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libfmt10 s390x 10.1.1+ds1-4 [82.6 kB] 159s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libxapian30 s390x 1.4.25-2 [743 kB] 159s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x doxygen s390x 1.9.8+ds-2.1 [5408 kB] 160s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 160s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB] 160s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lyx all 2.4.3-1 [171 kB] 160s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-mathjax all 2.7.9+dfsg-1 [2208 kB] 160s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-open-sans all 1.11-2 [635 kB] 160s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libann0 s390x 1.1.2+doc-9build1 [28.8 kB] 160s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libcdt5 s390x 2.42.4-2build4 [23.3 kB] 160s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libcgraph6 s390x 2.42.4-2build4 [47.0 kB] 160s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 160s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 161s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 161s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 161s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 161s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 161s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 161s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 161s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 161s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 161s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 161s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 161s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 161s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 161s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 161s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 161s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 161s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 161s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libgts-0.7-5t64 s390x 0.7.6+darcs121130-5.2build1 [164 kB] 161s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 161s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 161s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 161s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 161s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 161s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 161s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 161s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 161s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 161s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 161s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 161s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libpathplan4 s390x 2.42.4-2build4 [26.6 kB] 161s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x libgvc6 s390x 2.42.4-2build4 [789 kB] 162s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x libgvpr2 s390x 2.42.4-2build4 [194 kB] 162s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x liblab-gamut1 s390x 2.42.4-2build4 [1837 kB] 162s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 162s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 162s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 162s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 162s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 162s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x graphviz s390x 2.42.4-2build4 [699 kB] 162s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 162s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libblas-dev s390x 3.12.1-2 [254 kB] 162s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 162s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 162s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB] 162s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 162s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 162s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 162s Get:123 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 162s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 162s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 163s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack-dev s390x 3.12.1-2 [5967 kB] 163s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 163s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 163s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 163s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 164s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 164s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 164s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-dev s390x 3.12.9-1 [5849 kB] 164s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-all-dev s390x 3.13.1-1~exp2 [922 B] 164s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 164s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 164s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 164s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 165s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x ninja-build s390x 1.12.1-1 [153 kB] 165s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x meson all 1.7.0-1ubuntu1 [645 kB] 165s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mypy-extensions all 1.0.0-1 [6148 B] 165s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 165s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mypy s390x 1.15.0-2 [16.0 MB] 167s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x mypy all 1.15.0-2 [25.4 kB] 167s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x node-fortawesome-fontawesome-free all 6.7.2+ds1-1 [1653 kB] 167s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-autopkgtest all 6.20250108 [1744 B] 167s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 167s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-hooks all 1.2.0-1 [10.2 kB] 167s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-toml all 0.10.2-1 [16.5 kB] 167s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 167s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-build all 1.2.2-1 [31.0 kB] 167s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-installer all 0.7.0+dfsg1-3 [17.4 kB] 167s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-pyproject all 6.20250108 [1726 B] 167s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x python-imageio-doc all 2.37.0-1 [151 kB] 167s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x python-matplotlib-data all 3.8.3-3ubuntu2 [2929 kB] 167s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x python-numpy-doc all 1:1.26.4+ds-13 [5471 kB] 167s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-mathjax all 2.7.9+dfsg-1 [5665 kB] 167s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x python-pandas-doc all 2.2.3+dfsg-8 [10.7 MB] 168s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x python-pytest-doc all 8.3.4-1 [967 kB] 168s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x python-skimage-doc all 0.25.1-1 [2471 kB] 168s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-accessible-pygments all 0.0.5-2 [790 kB] 168s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 168s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 168s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 168s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-dev s390x 3.12.9-1 [504 kB] 168s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all-dev s390x 3.13.1-1~exp2 [918 B] 168s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asttokens all 3.0.0-1 [20.4 kB] 168s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 168s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 169s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 169s Get:171 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 169s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 169s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 169s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 169s Get:175 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 169s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-breathe all 4.35.0-3 [70.9 kB] 169s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-brotli s390x 1.1.0-2build3 [381 kB] 169s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x python3-soupsieve all 2.6-1 [33.0 kB] 169s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x python3-bs4 all 4.13.3-1 [136 kB] 169s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-charset-normalizer s390x 3.4.1-1 [148 kB] 169s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 169s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-contourpy s390x 1.3.1-1 [235 kB] 169s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cycler all 0.12.1-1 [9716 B] 169s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 169s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 169s Get:186 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-doc all 3.13.2-1 [14.2 MB] 170s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x python3-doc all 3.13.1-1~exp2 [10.4 kB] 170s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-execnet all 2.1.1-1 [33.4 kB] 170s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-executing all 2.2.0-0.1 [25.0 kB] 170s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 170s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 170s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 170s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fs all 2.4.16-6 [90.7 kB] 170s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 170s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lz4 s390x 4.4.0+dfsg-1 [27.0 kB] 170s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 172s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 172s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 173s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufolib2 all 0.17.0+dfsg1-1 [33.5 kB] 173s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x unicode-data all 15.1.0-1 [8878 kB] 173s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fonttools s390x 4.55.3-2 [1723 kB] 174s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 174s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 174s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 174s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parso all 0.8.4-1 [67.6 kB] 174s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typeshed all 0.0~git20241223.ea91db2-1 [1548 kB] 174s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jedi all 0.19.1+ds1-1 [693 kB] 174s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-traitlets all 5.14.3+really5.14.3-1 [71.5 kB] 174s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib-inline all 0.1.6-2 [8784 B] 174s Get:210 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 174s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-prompt-toolkit all 3.0.50-1 [257 kB] 174s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-eval all 0.2.3-1 [11.4 kB] 174s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stack-data all 0.6.3-1 [22.0 kB] 174s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 174s Get:215 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 174s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipython all 8.30.0-2 [569 kB] 174s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kiwisolver s390x 1.4.7-3 [65.6 kB] 174s Get:218 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 174s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 174s Get:220 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-tk s390x 3.12.9-1 [117 kB] 174s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-tk s390x 3.13.2-1 [108 kB] 174s Get:222 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tk s390x 3.13.1-1 [9770 B] 174s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pil.imagetk s390x 11.1.0-5 [9766 B] 174s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib s390x 3.8.3-3ubuntu2 [4657 kB] 175s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-metadata all 0.9.0-1 [19.1 kB] 175s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mesonpy all 0.17.1-1 [106 kB] 175s Get:227 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tabulate all 0.9.0-1 [45.3 kB] 175s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-numpydoc all 1.8.0-1 [52.4 kB] 175s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pickleshare all 0.7.5-5 [7570 B] 175s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 175s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pydata-sphinx-theme all 0.16.1+dfsg-1 [958 kB] 175s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 175s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-xdist all 3.6.1-1 [33.8 kB] 175s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinx-design all 0.6.1-1 [894 kB] 175s Get:235 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2025a-2ubuntu1 [99.2 kB] 175s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x python-scipy-doc all 1.14.1-4ubuntu1 [32.6 kB] 176s Fetched 251 MB in 28s (8839 kB/s) 176s Selecting previously unselected package libpython3.12-minimal:s390x. 176s (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.) 176s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 176s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 176s Selecting previously unselected package python3.12-minimal. 176s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 176s Unpacking python3.12-minimal (3.12.9-1) ... 176s Selecting previously unselected package sgml-base. 176s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 176s Unpacking sgml-base (1.31) ... 176s Selecting previously unselected package libnsl2:s390x. 176s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ... 176s Unpacking libnsl2:s390x (1.3.0-3build3) ... 176s Selecting previously unselected package libpython3.12-stdlib:s390x. 176s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 176s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 176s Selecting previously unselected package python3.12. 176s Preparing to unpack .../005-python3.12_3.12.9-1_s390x.deb ... 176s Unpacking python3.12 (3.12.9-1) ... 176s Selecting previously unselected package m4. 176s Preparing to unpack .../006-m4_1.4.19-5_s390x.deb ... 176s Unpacking m4 (1.4.19-5) ... 176s Selecting previously unselected package autoconf. 176s Preparing to unpack .../007-autoconf_2.72-3_all.deb ... 176s Unpacking autoconf (2.72-3) ... 176s Selecting previously unselected package autotools-dev. 176s Preparing to unpack .../008-autotools-dev_20220109.1_all.deb ... 176s Unpacking autotools-dev (20220109.1) ... 176s Selecting previously unselected package automake. 176s Preparing to unpack .../009-automake_1%3a1.17-3_all.deb ... 176s Unpacking automake (1:1.17-3) ... 176s Selecting previously unselected package autopoint. 176s Preparing to unpack .../010-autopoint_0.23.1-1_all.deb ... 176s Unpacking autopoint (0.23.1-1) ... 176s Selecting previously unselected package libtcl8.6:s390x. 176s Preparing to unpack .../011-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 176s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 176s Selecting previously unselected package libfreetype6:s390x. 176s Preparing to unpack .../012-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 176s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 176s Selecting previously unselected package fonts-dejavu-mono. 176s Preparing to unpack .../013-fonts-dejavu-mono_2.37-8_all.deb ... 176s Unpacking fonts-dejavu-mono (2.37-8) ... 176s Selecting previously unselected package fonts-dejavu-core. 176s Preparing to unpack .../014-fonts-dejavu-core_2.37-8_all.deb ... 176s Unpacking fonts-dejavu-core (2.37-8) ... 176s Selecting previously unselected package fontconfig-config. 176s Preparing to unpack .../015-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 176s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 176s Selecting previously unselected package libfontconfig1:s390x. 176s Preparing to unpack .../016-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 176s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 176s Selecting previously unselected package libxrender1:s390x. 176s Preparing to unpack .../017-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 176s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 176s Selecting previously unselected package libxft2:s390x. 176s Preparing to unpack .../018-libxft2_2.3.6-1build1_s390x.deb ... 176s Unpacking libxft2:s390x (2.3.6-1build1) ... 176s Selecting previously unselected package x11-common. 176s Preparing to unpack .../019-x11-common_1%3a7.7+23ubuntu3_all.deb ... 176s Unpacking x11-common (1:7.7+23ubuntu3) ... 176s Selecting previously unselected package libxss1:s390x. 176s Preparing to unpack .../020-libxss1_1%3a1.2.3-1build3_s390x.deb ... 176s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 176s Selecting previously unselected package libtk8.6:s390x. 176s Preparing to unpack .../021-libtk8.6_8.6.16-1_s390x.deb ... 176s Unpacking libtk8.6:s390x (8.6.16-1) ... 176s Selecting previously unselected package tk8.6-blt2.5. 176s Preparing to unpack .../022-tk8.6-blt2.5_2.5.3+dfsg-7build1_s390x.deb ... 176s Unpacking tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 176s Selecting previously unselected package blt. 176s Preparing to unpack .../023-blt_2.5.3+dfsg-7build1_s390x.deb ... 176s Unpacking blt (2.5.3+dfsg-7build1) ... 176s Selecting previously unselected package libisl23:s390x. 176s Preparing to unpack .../024-libisl23_0.27-1_s390x.deb ... 176s Unpacking libisl23:s390x (0.27-1) ... 176s Selecting previously unselected package libmpc3:s390x. 176s Preparing to unpack .../025-libmpc3_1.3.1-1build2_s390x.deb ... 176s Unpacking libmpc3:s390x (1.3.1-1build2) ... 176s Selecting previously unselected package cpp-14-s390x-linux-gnu. 176s Preparing to unpack .../026-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package cpp-14. 177s Preparing to unpack .../027-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package cpp-s390x-linux-gnu. 177s Preparing to unpack .../028-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 177s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 177s Selecting previously unselected package cpp. 177s Preparing to unpack .../029-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 177s Unpacking cpp (4:14.2.0-1ubuntu1) ... 177s Selecting previously unselected package libcc1-0:s390x. 177s Preparing to unpack .../030-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libgomp1:s390x. 177s Preparing to unpack .../031-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libitm1:s390x. 177s Preparing to unpack .../032-libitm1_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libasan8:s390x. 177s Preparing to unpack .../033-libasan8_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libubsan1:s390x. 177s Preparing to unpack .../034-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 177s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 177s Selecting previously unselected package libgcc-14-dev:s390x. 177s Preparing to unpack .../035-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package gcc-14-s390x-linux-gnu. 177s Preparing to unpack .../036-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package gcc-14. 177s Preparing to unpack .../037-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package gcc-s390x-linux-gnu. 177s Preparing to unpack .../038-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 177s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 177s Selecting previously unselected package gcc. 177s Preparing to unpack .../039-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 177s Unpacking gcc (4:14.2.0-1ubuntu1) ... 177s Selecting previously unselected package libstdc++-14-dev:s390x. 177s Preparing to unpack .../040-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package g++-14-s390x-linux-gnu. 177s Preparing to unpack .../041-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package g++-14. 177s Preparing to unpack .../042-g++-14_14.2.0-17ubuntu1_s390x.deb ... 177s Unpacking g++-14 (14.2.0-17ubuntu1) ... 177s Selecting previously unselected package g++-s390x-linux-gnu. 177s Preparing to unpack .../043-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 177s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 177s Selecting previously unselected package g++. 177s Preparing to unpack .../044-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 177s Unpacking g++ (4:14.2.0-1ubuntu1) ... 177s Selecting previously unselected package build-essential. 177s Preparing to unpack .../045-build-essential_12.10ubuntu1_s390x.deb ... 177s Unpacking build-essential (12.10ubuntu1) ... 177s Selecting previously unselected package cython3. 177s Preparing to unpack .../046-cython3_3.0.11+dfsg-2ubuntu1_s390x.deb ... 177s Unpacking cython3 (3.0.11+dfsg-2ubuntu1) ... 178s Selecting previously unselected package libdebhelper-perl. 178s Preparing to unpack .../047-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 178s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 178s Selecting previously unselected package libtool. 178s Preparing to unpack .../048-libtool_2.5.4-3build1_all.deb ... 178s Unpacking libtool (2.5.4-3build1) ... 178s Selecting previously unselected package dh-autoreconf. 178s Preparing to unpack .../049-dh-autoreconf_20_all.deb ... 178s Unpacking dh-autoreconf (20) ... 178s Selecting previously unselected package libarchive-zip-perl. 178s Preparing to unpack .../050-libarchive-zip-perl_1.68-1_all.deb ... 178s Unpacking libarchive-zip-perl (1.68-1) ... 178s Selecting previously unselected package libfile-stripnondeterminism-perl. 178s Preparing to unpack .../051-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 178s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 178s Selecting previously unselected package dh-strip-nondeterminism. 178s Preparing to unpack .../052-dh-strip-nondeterminism_1.14.1-2_all.deb ... 178s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 178s Selecting previously unselected package debugedit. 178s Preparing to unpack .../053-debugedit_1%3a5.1-2_s390x.deb ... 178s Unpacking debugedit (1:5.1-2) ... 178s Selecting previously unselected package dwz. 178s Preparing to unpack .../054-dwz_0.15-1build6_s390x.deb ... 178s Unpacking dwz (0.15-1build6) ... 178s Selecting previously unselected package gettext. 178s Preparing to unpack .../055-gettext_0.23.1-1_s390x.deb ... 178s Unpacking gettext (0.23.1-1) ... 178s Selecting previously unselected package intltool-debian. 178s Preparing to unpack .../056-intltool-debian_0.35.0+20060710.6_all.deb ... 178s Unpacking intltool-debian (0.35.0+20060710.6) ... 178s Selecting previously unselected package po-debconf. 178s Preparing to unpack .../057-po-debconf_1.0.21+nmu1_all.deb ... 178s Unpacking po-debconf (1.0.21+nmu1) ... 178s Selecting previously unselected package debhelper. 178s Preparing to unpack .../058-debhelper_13.24.1ubuntu2_all.deb ... 178s Unpacking debhelper (13.24.1ubuntu2) ... 178s Selecting previously unselected package dh-python. 178s Preparing to unpack .../059-dh-python_6.20250108_all.deb ... 178s Unpacking dh-python (6.20250108) ... 178s Selecting previously unselected package xml-core. 178s Preparing to unpack .../060-xml-core_0.19_all.deb ... 178s Unpacking xml-core (0.19) ... 178s Selecting previously unselected package docutils-common. 178s Preparing to unpack .../061-docutils-common_0.21.2+dfsg-2_all.deb ... 178s Unpacking docutils-common (0.21.2+dfsg-2) ... 178s Selecting previously unselected package libclang-cpp19. 178s Preparing to unpack .../062-libclang-cpp19_1%3a19.1.7-1ubuntu1_s390x.deb ... 178s Unpacking libclang-cpp19 (1:19.1.7-1ubuntu1) ... 178s Selecting previously unselected package libfmt10:s390x. 178s Preparing to unpack .../063-libfmt10_10.1.1+ds1-4_s390x.deb ... 178s Unpacking libfmt10:s390x (10.1.1+ds1-4) ... 178s Selecting previously unselected package libxapian30:s390x. 178s Preparing to unpack .../064-libxapian30_1.4.25-2_s390x.deb ... 178s Unpacking libxapian30:s390x (1.4.25-2) ... 178s Selecting previously unselected package doxygen. 178s Preparing to unpack .../065-doxygen_1.9.8+ds-2.1_s390x.deb ... 178s Unpacking doxygen (1.9.8+ds-2.1) ... 178s Selecting previously unselected package fontconfig. 178s Preparing to unpack .../066-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 178s Unpacking fontconfig (2.15.0-2ubuntu1) ... 178s Selecting previously unselected package fonts-glyphicons-halflings. 178s Preparing to unpack .../067-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ... 178s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 178s Selecting previously unselected package fonts-lyx. 178s Preparing to unpack .../068-fonts-lyx_2.4.3-1_all.deb ... 178s Unpacking fonts-lyx (2.4.3-1) ... 178s Selecting previously unselected package fonts-mathjax. 178s Preparing to unpack .../069-fonts-mathjax_2.7.9+dfsg-1_all.deb ... 178s Unpacking fonts-mathjax (2.7.9+dfsg-1) ... 179s Selecting previously unselected package fonts-open-sans. 179s Preparing to unpack .../070-fonts-open-sans_1.11-2_all.deb ... 179s Unpacking fonts-open-sans (1.11-2) ... 179s Selecting previously unselected package libann0. 179s Preparing to unpack .../071-libann0_1.1.2+doc-9build1_s390x.deb ... 179s Unpacking libann0 (1.1.2+doc-9build1) ... 179s Selecting previously unselected package libcdt5:s390x. 179s Preparing to unpack .../072-libcdt5_2.42.4-2build4_s390x.deb ... 179s Unpacking libcdt5:s390x (2.42.4-2build4) ... 179s Selecting previously unselected package libcgraph6:s390x. 179s Preparing to unpack .../073-libcgraph6_2.42.4-2build4_s390x.deb ... 179s Unpacking libcgraph6:s390x (2.42.4-2build4) ... 179s Selecting previously unselected package libsharpyuv0:s390x. 179s Preparing to unpack .../074-libsharpyuv0_1.5.0-0.1_s390x.deb ... 179s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 179s Selecting previously unselected package libaom3:s390x. 179s Preparing to unpack .../075-libaom3_3.12.0-1_s390x.deb ... 179s Unpacking libaom3:s390x (3.12.0-1) ... 179s Selecting previously unselected package libheif-plugin-aomdec:s390x. 179s Preparing to unpack .../076-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package libde265-0:s390x. 179s Preparing to unpack .../077-libde265-0_1.0.15-1build4_s390x.deb ... 179s Unpacking libde265-0:s390x (1.0.15-1build4) ... 179s Selecting previously unselected package libheif-plugin-libde265:s390x. 179s Preparing to unpack .../078-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package libheif1:s390x. 179s Preparing to unpack .../079-libheif1_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif1:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package libimagequant0:s390x. 179s Preparing to unpack .../080-libimagequant0_2.18.0-1build1_s390x.deb ... 179s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 179s Selecting previously unselected package libjpeg-turbo8:s390x. 179s Preparing to unpack .../081-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 179s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 179s Selecting previously unselected package libjpeg8:s390x. 179s Preparing to unpack .../082-libjpeg8_8c-2ubuntu11_s390x.deb ... 179s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 179s Selecting previously unselected package libgraphite2-3:s390x. 179s Preparing to unpack .../083-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 179s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 179s Selecting previously unselected package libharfbuzz0b:s390x. 179s Preparing to unpack .../084-libharfbuzz0b_10.2.0-1_s390x.deb ... 179s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 179s Selecting previously unselected package libraqm0:s390x. 179s Preparing to unpack .../085-libraqm0_0.10.2-1_s390x.deb ... 179s Unpacking libraqm0:s390x (0.10.2-1) ... 179s Selecting previously unselected package libdeflate0:s390x. 179s Preparing to unpack .../086-libdeflate0_1.23-1_s390x.deb ... 179s Unpacking libdeflate0:s390x (1.23-1) ... 179s Selecting previously unselected package libjbig0:s390x. 179s Preparing to unpack .../087-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 179s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 179s Selecting previously unselected package libwebp7:s390x. 179s Preparing to unpack .../088-libwebp7_1.5.0-0.1_s390x.deb ... 179s Unpacking libwebp7:s390x (1.5.0-0.1) ... 179s Selecting previously unselected package libtiff6:s390x. 179s Preparing to unpack .../089-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 179s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 179s Selecting previously unselected package libxpm4:s390x. 179s Preparing to unpack .../090-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 179s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 179s Selecting previously unselected package libgd3:s390x. 179s Preparing to unpack .../091-libgd3_2.3.3-12ubuntu3_s390x.deb ... 179s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 179s Selecting previously unselected package libgts-0.7-5t64:s390x. 179s Preparing to unpack .../092-libgts-0.7-5t64_0.7.6+darcs121130-5.2build1_s390x.deb ... 179s Unpacking libgts-0.7-5t64:s390x (0.7.6+darcs121130-5.2build1) ... 179s Selecting previously unselected package libpixman-1-0:s390x. 179s Preparing to unpack .../093-libpixman-1-0_0.44.0-3_s390x.deb ... 179s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 179s Selecting previously unselected package libxcb-render0:s390x. 179s Preparing to unpack .../094-libxcb-render0_1.17.0-2_s390x.deb ... 179s Unpacking libxcb-render0:s390x (1.17.0-2) ... 179s Selecting previously unselected package libxcb-shm0:s390x. 179s Preparing to unpack .../095-libxcb-shm0_1.17.0-2_s390x.deb ... 179s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 179s Selecting previously unselected package libcairo2:s390x. 179s Preparing to unpack .../096-libcairo2_1.18.2-2_s390x.deb ... 179s Unpacking libcairo2:s390x (1.18.2-2) ... 179s Selecting previously unselected package libltdl7:s390x. 179s Preparing to unpack .../097-libltdl7_2.5.4-3build1_s390x.deb ... 179s Unpacking libltdl7:s390x (2.5.4-3build1) ... 179s Selecting previously unselected package libthai-data. 179s Preparing to unpack .../098-libthai-data_0.1.29-2build1_all.deb ... 179s Unpacking libthai-data (0.1.29-2build1) ... 179s Selecting previously unselected package libdatrie1:s390x. 179s Preparing to unpack .../099-libdatrie1_0.2.13-3build1_s390x.deb ... 179s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 179s Selecting previously unselected package libthai0:s390x. 179s Preparing to unpack .../100-libthai0_0.1.29-2build1_s390x.deb ... 179s Unpacking libthai0:s390x (0.1.29-2build1) ... 179s Selecting previously unselected package libpango-1.0-0:s390x. 179s Preparing to unpack .../101-libpango-1.0-0_1.56.1-1_s390x.deb ... 179s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 179s Selecting previously unselected package libpangoft2-1.0-0:s390x. 179s Preparing to unpack .../102-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 179s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 179s Selecting previously unselected package libpangocairo-1.0-0:s390x. 179s Preparing to unpack .../103-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 179s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 179s Selecting previously unselected package libpathplan4:s390x. 179s Preparing to unpack .../104-libpathplan4_2.42.4-2build4_s390x.deb ... 179s Unpacking libpathplan4:s390x (2.42.4-2build4) ... 179s Selecting previously unselected package libgvc6. 179s Preparing to unpack .../105-libgvc6_2.42.4-2build4_s390x.deb ... 179s Unpacking libgvc6 (2.42.4-2build4) ... 179s Selecting previously unselected package libgvpr2:s390x. 179s Preparing to unpack .../106-libgvpr2_2.42.4-2build4_s390x.deb ... 179s Unpacking libgvpr2:s390x (2.42.4-2build4) ... 179s Selecting previously unselected package liblab-gamut1:s390x. 179s Preparing to unpack .../107-liblab-gamut1_2.42.4-2build4_s390x.deb ... 179s Unpacking liblab-gamut1:s390x (2.42.4-2build4) ... 179s Selecting previously unselected package libice6:s390x. 179s Preparing to unpack .../108-libice6_2%3a1.1.1-1_s390x.deb ... 179s Unpacking libice6:s390x (2:1.1.1-1) ... 179s Selecting previously unselected package libsm6:s390x. 179s Preparing to unpack .../109-libsm6_2%3a1.2.4-1_s390x.deb ... 179s Unpacking libsm6:s390x (2:1.2.4-1) ... 179s Selecting previously unselected package libxt6t64:s390x. 179s Preparing to unpack .../110-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 179s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 179s Selecting previously unselected package libxmu6:s390x. 179s Preparing to unpack .../111-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 179s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 179s Selecting previously unselected package libxaw7:s390x. 179s Preparing to unpack .../112-libxaw7_2%3a1.0.16-1_s390x.deb ... 179s Unpacking libxaw7:s390x (2:1.0.16-1) ... 179s Selecting previously unselected package graphviz. 179s Preparing to unpack .../113-graphviz_2.42.4-2build4_s390x.deb ... 179s Unpacking graphviz (2.42.4-2build4) ... 179s Selecting previously unselected package libblas3:s390x. 179s Preparing to unpack .../114-libblas3_3.12.1-2_s390x.deb ... 179s Unpacking libblas3:s390x (3.12.1-2) ... 179s Selecting previously unselected package libblas-dev:s390x. 179s Preparing to unpack .../115-libblas-dev_3.12.1-2_s390x.deb ... 179s Unpacking libblas-dev:s390x (3.12.1-2) ... 179s Selecting previously unselected package libexpat1-dev:s390x. 179s Preparing to unpack .../116-libexpat1-dev_2.6.4-1_s390x.deb ... 179s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 179s Selecting previously unselected package libgfortran5:s390x. 179s Preparing to unpack .../117-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 179s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 179s Selecting previously unselected package libjs-bootstrap. 179s Preparing to unpack .../118-libjs-bootstrap_3.4.1+dfsg-3_all.deb ... 179s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ... 179s Selecting previously unselected package libjs-jquery. 179s Preparing to unpack .../119-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 179s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 179s Selecting previously unselected package libjs-jquery-ui. 179s Preparing to unpack .../120-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 179s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 179s Selecting previously unselected package libjs-underscore. 179s Preparing to unpack .../121-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 179s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 179s Selecting previously unselected package libjs-sphinxdoc. 179s Preparing to unpack .../122-libjs-sphinxdoc_8.1.3-5_all.deb ... 179s Unpacking libjs-sphinxdoc (8.1.3-5) ... 179s Selecting previously unselected package libjson-perl. 179s Preparing to unpack .../123-libjson-perl_4.10000-1_all.deb ... 179s Unpacking libjson-perl (4.10000-1) ... 179s Selecting previously unselected package liblapack3:s390x. 179s Preparing to unpack .../124-liblapack3_3.12.1-2_s390x.deb ... 179s Unpacking liblapack3:s390x (3.12.1-2) ... 179s Selecting previously unselected package liblapack-dev:s390x. 179s Preparing to unpack .../125-liblapack-dev_3.12.1-2_s390x.deb ... 179s Unpacking liblapack-dev:s390x (3.12.1-2) ... 180s Selecting previously unselected package liblbfgsb0:s390x. 180s Preparing to unpack .../126-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 180s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 180s Selecting previously unselected package liblcms2-2:s390x. 180s Preparing to unpack .../127-liblcms2-2_2.16-2_s390x.deb ... 180s Unpacking liblcms2-2:s390x (2.16-2) ... 180s Selecting previously unselected package zlib1g-dev:s390x. 180s Preparing to unpack .../128-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 180s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 180s Selecting previously unselected package libpython3.13-dev:s390x. 180s Preparing to unpack .../129-libpython3.13-dev_3.13.2-1_s390x.deb ... 180s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 180s Selecting previously unselected package libpython3-dev:s390x. 180s Preparing to unpack .../130-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 180s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 180s Selecting previously unselected package libpython3.12t64:s390x. 180s Preparing to unpack .../131-libpython3.12t64_3.12.9-1_s390x.deb ... 180s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 180s Selecting previously unselected package libpython3.12-dev:s390x. 180s Preparing to unpack .../132-libpython3.12-dev_3.12.9-1_s390x.deb ... 180s Unpacking libpython3.12-dev:s390x (3.12.9-1) ... 180s Selecting previously unselected package libpython3-all-dev:s390x. 180s Preparing to unpack .../133-libpython3-all-dev_3.13.1-1~exp2_s390x.deb ... 180s Unpacking libpython3-all-dev:s390x (3.13.1-1~exp2) ... 180s Selecting previously unselected package libqhull-r8.0:s390x. 180s Preparing to unpack .../134-libqhull-r8.0_2020.2-6build1_s390x.deb ... 180s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 180s Selecting previously unselected package libwebpdemux2:s390x. 180s Preparing to unpack .../135-libwebpdemux2_1.5.0-0.1_s390x.deb ... 180s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 180s Selecting previously unselected package libwebpmux3:s390x. 180s Preparing to unpack .../136-libwebpmux3_1.5.0-0.1_s390x.deb ... 180s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 180s Selecting previously unselected package libxslt1.1:s390x. 180s Preparing to unpack .../137-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 180s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 180s Selecting previously unselected package ninja-build. 180s Preparing to unpack .../138-ninja-build_1.12.1-1_s390x.deb ... 180s Unpacking ninja-build (1.12.1-1) ... 180s Selecting previously unselected package meson. 180s Preparing to unpack .../139-meson_1.7.0-1ubuntu1_all.deb ... 180s Unpacking meson (1.7.0-1ubuntu1) ... 180s Selecting previously unselected package python3-mypy-extensions. 180s Preparing to unpack .../140-python3-mypy-extensions_1.0.0-1_all.deb ... 180s Unpacking python3-mypy-extensions (1.0.0-1) ... 180s Selecting previously unselected package python3-psutil. 180s Preparing to unpack .../141-python3-psutil_5.9.8-2build3_s390x.deb ... 180s Unpacking python3-psutil (5.9.8-2build3) ... 180s Selecting previously unselected package python3-mypy. 180s Preparing to unpack .../142-python3-mypy_1.15.0-2_s390x.deb ... 180s Unpacking python3-mypy (1.15.0-2) ... 181s Selecting previously unselected package mypy. 181s Preparing to unpack .../143-mypy_1.15.0-2_all.deb ... 181s Unpacking mypy (1.15.0-2) ... 181s Selecting previously unselected package node-fortawesome-fontawesome-free. 181s Preparing to unpack .../144-node-fortawesome-fontawesome-free_6.7.2+ds1-1_all.deb ... 181s Unpacking node-fortawesome-fontawesome-free (6.7.2+ds1-1) ... 181s Selecting previously unselected package pybuild-plugin-autopkgtest. 181s Preparing to unpack .../145-pybuild-plugin-autopkgtest_6.20250108_all.deb ... 181s Unpacking pybuild-plugin-autopkgtest (6.20250108) ... 181s Selecting previously unselected package python3-packaging. 181s Preparing to unpack .../146-python3-packaging_24.2-1_all.deb ... 181s Unpacking python3-packaging (24.2-1) ... 181s Selecting previously unselected package python3-pyproject-hooks. 181s Preparing to unpack .../147-python3-pyproject-hooks_1.2.0-1_all.deb ... 181s Unpacking python3-pyproject-hooks (1.2.0-1) ... 181s Selecting previously unselected package python3-toml. 181s Preparing to unpack .../148-python3-toml_0.10.2-1_all.deb ... 181s Unpacking python3-toml (0.10.2-1) ... 181s Selecting previously unselected package python3-wheel. 181s Preparing to unpack .../149-python3-wheel_0.45.1-1_all.deb ... 181s Unpacking python3-wheel (0.45.1-1) ... 181s Selecting previously unselected package python3-build. 181s Preparing to unpack .../150-python3-build_1.2.2-1_all.deb ... 181s Unpacking python3-build (1.2.2-1) ... 181s Selecting previously unselected package python3-installer. 181s Preparing to unpack .../151-python3-installer_0.7.0+dfsg1-3_all.deb ... 181s Unpacking python3-installer (0.7.0+dfsg1-3) ... 181s Selecting previously unselected package pybuild-plugin-pyproject. 181s Preparing to unpack .../152-pybuild-plugin-pyproject_6.20250108_all.deb ... 181s Unpacking pybuild-plugin-pyproject (6.20250108) ... 181s Selecting previously unselected package python-imageio-doc. 181s Preparing to unpack .../153-python-imageio-doc_2.37.0-1_all.deb ... 181s Unpacking python-imageio-doc (2.37.0-1) ... 181s Selecting previously unselected package python-matplotlib-data. 181s Preparing to unpack .../154-python-matplotlib-data_3.8.3-3ubuntu2_all.deb ... 181s Unpacking python-matplotlib-data (3.8.3-3ubuntu2) ... 181s Selecting previously unselected package python-numpy-doc. 181s Preparing to unpack .../155-python-numpy-doc_1%3a1.26.4+ds-13_all.deb ... 181s Unpacking python-numpy-doc (1:1.26.4+ds-13) ... 181s Selecting previously unselected package libjs-mathjax. 181s Preparing to unpack .../156-libjs-mathjax_2.7.9+dfsg-1_all.deb ... 181s Unpacking libjs-mathjax (2.7.9+dfsg-1) ... 182s Selecting previously unselected package python-pandas-doc. 182s Preparing to unpack .../157-python-pandas-doc_2.2.3+dfsg-8_all.deb ... 182s Unpacking python-pandas-doc (2.2.3+dfsg-8) ... 183s Selecting previously unselected package python-pytest-doc. 183s Preparing to unpack .../158-python-pytest-doc_8.3.4-1_all.deb ... 183s Unpacking python-pytest-doc (8.3.4-1) ... 183s Selecting previously unselected package python-skimage-doc. 183s Preparing to unpack .../159-python-skimage-doc_0.25.1-1_all.deb ... 183s Unpacking python-skimage-doc (0.25.1-1) ... 183s Selecting previously unselected package python3-accessible-pygments. 183s Preparing to unpack .../160-python3-accessible-pygments_0.0.5-2_all.deb ... 183s Unpacking python3-accessible-pygments (0.0.5-2) ... 183s Selecting previously unselected package python3-all. 183s Preparing to unpack .../161-python3-all_3.13.1-1~exp2_s390x.deb ... 183s Unpacking python3-all (3.13.1-1~exp2) ... 183s Selecting previously unselected package python3.13-dev. 183s Preparing to unpack .../162-python3.13-dev_3.13.2-1_s390x.deb ... 183s Unpacking python3.13-dev (3.13.2-1) ... 183s Selecting previously unselected package python3-dev. 183s Preparing to unpack .../163-python3-dev_3.13.1-1~exp2_s390x.deb ... 183s Unpacking python3-dev (3.13.1-1~exp2) ... 183s Selecting previously unselected package python3.12-dev. 183s Preparing to unpack .../164-python3.12-dev_3.12.9-1_s390x.deb ... 183s Unpacking python3.12-dev (3.12.9-1) ... 183s Selecting previously unselected package python3-all-dev. 183s Preparing to unpack .../165-python3-all-dev_3.13.1-1~exp2_s390x.deb ... 183s Unpacking python3-all-dev (3.13.1-1~exp2) ... 183s Selecting previously unselected package python3-asttokens. 183s Preparing to unpack .../166-python3-asttokens_3.0.0-1_all.deb ... 183s Unpacking python3-asttokens (3.0.0-1) ... 183s Selecting previously unselected package python3-roman. 183s Preparing to unpack .../167-python3-roman_5.0-1_all.deb ... 183s Unpacking python3-roman (5.0-1) ... 183s Selecting previously unselected package python3-docutils. 183s Preparing to unpack .../168-python3-docutils_0.21.2+dfsg-2_all.deb ... 183s Unpacking python3-docutils (0.21.2+dfsg-2) ... 183s Selecting previously unselected package python3-defusedxml. 183s Preparing to unpack .../169-python3-defusedxml_0.7.1-3_all.deb ... 183s Unpacking python3-defusedxml (0.7.1-3) ... 183s Selecting previously unselected package sphinx-common. 183s Preparing to unpack .../170-sphinx-common_8.1.3-5_all.deb ... 183s Unpacking sphinx-common (8.1.3-5) ... 183s Selecting previously unselected package python3-alabaster. 183s Preparing to unpack .../171-python3-alabaster_0.7.16-0.1_all.deb ... 183s Unpacking python3-alabaster (0.7.16-0.1) ... 183s Selecting previously unselected package python3-imagesize. 183s Preparing to unpack .../172-python3-imagesize_1.4.1-1_all.deb ... 183s Unpacking python3-imagesize (1.4.1-1) ... 183s Selecting previously unselected package python3-snowballstemmer. 183s Preparing to unpack .../173-python3-snowballstemmer_2.2.0-4build1_all.deb ... 183s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 183s Selecting previously unselected package python3-sphinx. 183s Preparing to unpack .../174-python3-sphinx_8.1.3-5_all.deb ... 183s Unpacking python3-sphinx (8.1.3-5) ... 183s Selecting previously unselected package python3-breathe. 183s Preparing to unpack .../175-python3-breathe_4.35.0-3_all.deb ... 183s Unpacking python3-breathe (4.35.0-3) ... 183s Selecting previously unselected package python3-brotli. 183s Preparing to unpack .../176-python3-brotli_1.1.0-2build3_s390x.deb ... 183s Unpacking python3-brotli (1.1.0-2build3) ... 183s Selecting previously unselected package python3-soupsieve. 183s Preparing to unpack .../177-python3-soupsieve_2.6-1_all.deb ... 183s Unpacking python3-soupsieve (2.6-1) ... 183s Selecting previously unselected package python3-bs4. 183s Preparing to unpack .../178-python3-bs4_4.13.3-1_all.deb ... 183s Unpacking python3-bs4 (4.13.3-1) ... 183s Selecting previously unselected package python3-charset-normalizer. 183s Preparing to unpack .../179-python3-charset-normalizer_3.4.1-1_s390x.deb ... 183s Unpacking python3-charset-normalizer (3.4.1-1) ... 183s Selecting previously unselected package python3-numpy. 183s Preparing to unpack .../180-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 183s Unpacking python3-numpy (1:1.26.4+ds-13) ... 183s Selecting previously unselected package python3-contourpy. 183s Preparing to unpack .../181-python3-contourpy_1.3.1-1_s390x.deb ... 183s Unpacking python3-contourpy (1.3.1-1) ... 183s Selecting previously unselected package python3-cycler. 183s Preparing to unpack .../182-python3-cycler_0.12.1-1_all.deb ... 183s Unpacking python3-cycler (0.12.1-1) ... 183s Selecting previously unselected package python3-dateutil. 183s Preparing to unpack .../183-python3-dateutil_2.9.0-3_all.deb ... 183s Unpacking python3-dateutil (2.9.0-3) ... 183s Selecting previously unselected package python3-decorator. 183s Preparing to unpack .../184-python3-decorator_5.1.1-5_all.deb ... 183s Unpacking python3-decorator (5.1.1-5) ... 183s Selecting previously unselected package python3.13-doc. 183s Preparing to unpack .../185-python3.13-doc_3.13.2-1_all.deb ... 183s Unpacking python3.13-doc (3.13.2-1) ... 184s Selecting previously unselected package python3-doc. 184s Preparing to unpack .../186-python3-doc_3.13.1-1~exp2_all.deb ... 184s Unpacking python3-doc (3.13.1-1~exp2) ... 184s Selecting previously unselected package python3-execnet. 184s Preparing to unpack .../187-python3-execnet_2.1.1-1_all.deb ... 184s Unpacking python3-execnet (2.1.1-1) ... 184s Selecting previously unselected package python3-executing. 184s Preparing to unpack .../188-python3-executing_2.2.0-0.1_all.deb ... 184s Unpacking python3-executing (2.2.0-0.1) ... 184s Selecting previously unselected package python3-pytz. 184s Preparing to unpack .../189-python3-pytz_2025.1-3_all.deb ... 184s Unpacking python3-pytz (2025.1-3) ... 184s Selecting previously unselected package python3-tz. 184s Preparing to unpack .../190-python3-tz_2025.1-3_all.deb ... 184s Unpacking python3-tz (2025.1-3) ... 184s Selecting previously unselected package python3-platformdirs. 184s Preparing to unpack .../191-python3-platformdirs_4.3.6-1_all.deb ... 184s Unpacking python3-platformdirs (4.3.6-1) ... 184s Selecting previously unselected package python3-fs. 184s Preparing to unpack .../192-python3-fs_2.4.16-6_all.deb ... 184s Unpacking python3-fs (2.4.16-6) ... 184s Selecting previously unselected package python3-lxml:s390x. 184s Preparing to unpack .../193-python3-lxml_5.3.1-1_s390x.deb ... 184s Unpacking python3-lxml:s390x (5.3.1-1) ... 184s Selecting previously unselected package python3-lz4. 184s Preparing to unpack .../194-python3-lz4_4.4.0+dfsg-1_s390x.deb ... 184s Unpacking python3-lz4 (4.4.0+dfsg-1) ... 184s Selecting previously unselected package python3-scipy. 184s Preparing to unpack .../195-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 184s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 184s Selecting previously unselected package python3-mpmath. 184s Preparing to unpack .../196-python3-mpmath_1.3.0-1_all.deb ... 184s Unpacking python3-mpmath (1.3.0-1) ... 184s Selecting previously unselected package python3-sympy. 184s Preparing to unpack .../197-python3-sympy_1.13.3-1_all.deb ... 184s Unpacking python3-sympy (1.13.3-1) ... 185s Selecting previously unselected package python3-ufolib2. 185s Preparing to unpack .../198-python3-ufolib2_0.17.0+dfsg1-1_all.deb ... 185s Unpacking python3-ufolib2 (0.17.0+dfsg1-1) ... 185s Selecting previously unselected package unicode-data. 185s Preparing to unpack .../199-unicode-data_15.1.0-1_all.deb ... 185s Unpacking unicode-data (15.1.0-1) ... 185s Selecting previously unselected package python3-fonttools. 185s Preparing to unpack .../200-python3-fonttools_4.55.3-2_s390x.deb ... 185s Unpacking python3-fonttools (4.55.3-2) ... 185s Selecting previously unselected package python3-sortedcontainers. 185s Preparing to unpack .../201-python3-sortedcontainers_2.4.0-2_all.deb ... 185s Unpacking python3-sortedcontainers (2.4.0-2) ... 185s Selecting previously unselected package python3-hypothesis. 185s Preparing to unpack .../202-python3-hypothesis_6.125.2-1_all.deb ... 185s Unpacking python3-hypothesis (6.125.2-1) ... 185s Selecting previously unselected package python3-iniconfig. 185s Preparing to unpack .../203-python3-iniconfig_1.1.1-2_all.deb ... 185s Unpacking python3-iniconfig (1.1.1-2) ... 185s Selecting previously unselected package python3-parso. 185s Preparing to unpack .../204-python3-parso_0.8.4-1_all.deb ... 185s Unpacking python3-parso (0.8.4-1) ... 185s Selecting previously unselected package python3-typeshed. 185s Preparing to unpack .../205-python3-typeshed_0.0~git20241223.ea91db2-1_all.deb ... 185s Unpacking python3-typeshed (0.0~git20241223.ea91db2-1) ... 185s Selecting previously unselected package python3-jedi. 185s Preparing to unpack .../206-python3-jedi_0.19.1+ds1-1_all.deb ... 185s Unpacking python3-jedi (0.19.1+ds1-1) ... 185s Selecting previously unselected package python3-traitlets. 185s Preparing to unpack .../207-python3-traitlets_5.14.3+really5.14.3-1_all.deb ... 185s Unpacking python3-traitlets (5.14.3+really5.14.3-1) ... 185s Selecting previously unselected package python3-matplotlib-inline. 185s Preparing to unpack .../208-python3-matplotlib-inline_0.1.6-2_all.deb ... 185s Unpacking python3-matplotlib-inline (0.1.6-2) ... 185s Selecting previously unselected package python3-wcwidth. 185s Preparing to unpack .../209-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 185s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 185s Selecting previously unselected package python3-prompt-toolkit. 185s Preparing to unpack .../210-python3-prompt-toolkit_3.0.50-1_all.deb ... 185s Unpacking python3-prompt-toolkit (3.0.50-1) ... 185s Selecting previously unselected package python3-pure-eval. 185s Preparing to unpack .../211-python3-pure-eval_0.2.3-1_all.deb ... 185s Unpacking python3-pure-eval (0.2.3-1) ... 185s Selecting previously unselected package python3-stack-data. 185s Preparing to unpack .../212-python3-stack-data_0.6.3-1_all.deb ... 185s Unpacking python3-stack-data (0.6.3-1) ... 185s Selecting previously unselected package python3-ptyprocess. 185s Preparing to unpack .../213-python3-ptyprocess_0.7.0-6_all.deb ... 185s Unpacking python3-ptyprocess (0.7.0-6) ... 185s Selecting previously unselected package python3-pexpect. 185s Preparing to unpack .../214-python3-pexpect_4.9-3_all.deb ... 185s Unpacking python3-pexpect (4.9-3) ... 185s Selecting previously unselected package python3-ipython. 185s Preparing to unpack .../215-python3-ipython_8.30.0-2_all.deb ... 185s Unpacking python3-ipython (8.30.0-2) ... 185s Selecting previously unselected package python3-kiwisolver. 185s Preparing to unpack .../216-python3-kiwisolver_1.4.7-3_s390x.deb ... 185s Unpacking python3-kiwisolver (1.4.7-3) ... 185s Selecting previously unselected package libopenjp2-7:s390x. 185s Preparing to unpack .../217-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 185s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 185s Selecting previously unselected package python3-pil:s390x. 185s Preparing to unpack .../218-python3-pil_11.1.0-5_s390x.deb ... 185s Unpacking python3-pil:s390x (11.1.0-5) ... 185s Selecting previously unselected package python3.12-tk. 185s Preparing to unpack .../219-python3.12-tk_3.12.9-1_s390x.deb ... 185s Unpacking python3.12-tk (3.12.9-1) ... 185s Selecting previously unselected package python3.13-tk. 185s Preparing to unpack .../220-python3.13-tk_3.13.2-1_s390x.deb ... 186s Unpacking python3.13-tk (3.13.2-1) ... 186s Selecting previously unselected package python3-tk:s390x. 186s Preparing to unpack .../221-python3-tk_3.13.1-1_s390x.deb ... 186s Unpacking python3-tk:s390x (3.13.1-1) ... 186s Selecting previously unselected package python3-pil.imagetk:s390x. 186s Preparing to unpack .../222-python3-pil.imagetk_11.1.0-5_s390x.deb ... 186s Unpacking python3-pil.imagetk:s390x (11.1.0-5) ... 186s Selecting previously unselected package python3-matplotlib. 186s Preparing to unpack .../223-python3-matplotlib_3.8.3-3ubuntu2_s390x.deb ... 186s Unpacking python3-matplotlib (3.8.3-3ubuntu2) ... 186s Selecting previously unselected package python3-pyproject-metadata. 186s Preparing to unpack .../224-python3-pyproject-metadata_0.9.0-1_all.deb ... 186s Unpacking python3-pyproject-metadata (0.9.0-1) ... 186s Selecting previously unselected package python3-mesonpy. 186s Preparing to unpack .../225-python3-mesonpy_0.17.1-1_all.deb ... 186s Unpacking python3-mesonpy (0.17.1-1) ... 186s Selecting previously unselected package python3-tabulate. 186s Preparing to unpack .../226-python3-tabulate_0.9.0-1_all.deb ... 186s Unpacking python3-tabulate (0.9.0-1) ... 186s Selecting previously unselected package python3-numpydoc. 186s Preparing to unpack .../227-python3-numpydoc_1.8.0-1_all.deb ... 186s Unpacking python3-numpydoc (1.8.0-1) ... 186s Selecting previously unselected package python3-pickleshare. 186s Preparing to unpack .../228-python3-pickleshare_0.7.5-5_all.deb ... 186s Unpacking python3-pickleshare (0.7.5-5) ... 186s Selecting previously unselected package python3-pluggy. 186s Preparing to unpack .../229-python3-pluggy_1.5.0-1_all.deb ... 186s Unpacking python3-pluggy (1.5.0-1) ... 186s Selecting previously unselected package python3-pydata-sphinx-theme. 186s Preparing to unpack .../230-python3-pydata-sphinx-theme_0.16.1+dfsg-1_all.deb ... 186s Unpacking python3-pydata-sphinx-theme (0.16.1+dfsg-1) ... 186s Selecting previously unselected package python3-pytest. 186s Preparing to unpack .../231-python3-pytest_8.3.4-1_all.deb ... 186s Unpacking python3-pytest (8.3.4-1) ... 186s Selecting previously unselected package python3-pytest-xdist. 186s Preparing to unpack .../232-python3-pytest-xdist_3.6.1-1_all.deb ... 186s Unpacking python3-pytest-xdist (3.6.1-1) ... 186s Selecting previously unselected package python3-sphinx-design. 186s Preparing to unpack .../233-python3-sphinx-design_0.6.1-1_all.deb ... 186s Unpacking python3-sphinx-design (0.6.1-1) ... 186s Selecting previously unselected package tzdata-legacy. 186s Preparing to unpack .../234-tzdata-legacy_2025a-2ubuntu1_all.deb ... 186s Unpacking tzdata-legacy (2025a-2ubuntu1) ... 186s Selecting previously unselected package python-scipy-doc. 186s Preparing to unpack .../235-python-scipy-doc_1.14.1-4ubuntu1_all.deb ... 186s Unpacking python-scipy-doc (1.14.1-4ubuntu1) ... 186s Setting up dh-python (6.20250108) ... 186s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 186s Setting up liblcms2-2:s390x (2.16-2) ... 186s Setting up python3-iniconfig (1.1.1-2) ... 186s Setting up libpixman-1-0:s390x (0.44.0-3) ... 186s Setting up libxapian30:s390x (1.4.25-2) ... 186s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 186s Setting up libaom3:s390x (3.12.0-1) ... 186s Setting up python3-pure-eval (0.2.3-1) ... 186s Setting up fonts-mathjax (2.7.9+dfsg-1) ... 186s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 186s Setting up libjs-mathjax (2.7.9+dfsg-1) ... 186s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 186s Setting up libdatrie1:s390x (0.2.13-3build1) ... 186s Setting up python3-parso (0.8.4-1) ... 187s Setting up python3-lz4 (4.4.0+dfsg-1) ... 187s Setting up libxcb-render0:s390x (1.17.0-2) ... 187s Setting up python3-defusedxml (0.7.1-3) ... 187s Setting up libarchive-zip-perl (1.68-1) ... 187s Setting up python3-asttokens (3.0.0-1) ... 187s Setting up python3-charset-normalizer (3.4.1-1) ... 187s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 187s Setting up python3-alabaster (0.7.16-0.1) ... 187s Setting up fonts-lyx (2.4.3-1) ... 187s Setting up python3-mypy-extensions (1.0.0-1) ... 187s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 187s Setting up liblab-gamut1:s390x (2.42.4-2build4) ... 187s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 187s Setting up x11-common (1:7.7+23ubuntu3) ... 188s Setting up libdeflate0:s390x (1.23-1) ... 188s Setting up python3-tabulate (0.9.0-1) ... 188s Setting up m4 (1.4.19-5) ... 188s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 188s Setting up python3-pytz (2025.1-3) ... 188s Setting up libxcb-shm0:s390x (1.17.0-2) ... 188s Setting up python3-sortedcontainers (2.4.0-2) ... 188s Setting up node-fortawesome-fontawesome-free (6.7.2+ds1-1) ... 188s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 188s Setting up fonts-open-sans (1.11-2) ... 188s Setting up python3-wheel (0.45.1-1) ... 188s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 188s Setting up python3-platformdirs (4.3.6-1) ... 188s Setting up python3-psutil (5.9.8-2build3) ... 189s Setting up tzdata-legacy (2025a-2ubuntu1) ... 189s Setting up python3-tz (2025.1-3) ... 189s Setting up ninja-build (1.12.1-1) ... 189s Setting up python3-fs (2.4.16-6) ... 189s Setting up unicode-data (15.1.0-1) ... 189s Setting up python3-roman (5.0-1) ... 189s Setting up python3-decorator (5.1.1-5) ... 189s Setting up autotools-dev (20220109.1) ... 189s Setting up libblas3:s390x (3.12.1-2) ... 189s 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 189s Setting up python3-packaging (24.2-1) ... 189s Setting up libexpat1-dev:s390x (2.6.4-1) ... 189s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 190s Setting up python3-pyproject-hooks (1.2.0-1) ... 190s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 190s Setting up python3-accessible-pygments (0.0.5-2) ... 190s Setting up python3-typeshed (0.0~git20241223.ea91db2-1) ... 190s Setting up python3-executing (2.2.0-0.1) ... 190s Setting up python3-snowballstemmer (2.2.0-4build1) ... 191s Setting up libpathplan4:s390x (2.42.4-2build4) ... 191s Setting up python3-brotli (1.1.0-2build3) ... 191s Setting up libann0 (1.1.2+doc-9build1) ... 191s Setting up python3-cycler (0.12.1-1) ... 191s Setting up libimagequant0:s390x (2.18.0-1build1) ... 191s Setting up fonts-dejavu-mono (2.37-8) ... 191s Setting up python3-kiwisolver (1.4.7-3) ... 191s Setting up libmpc3:s390x (1.3.1-1build2) ... 191s Setting up python3-mypy (1.15.0-2) ... 193s Setting up cython3 (3.0.11+dfsg-2ubuntu1) ... 194s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 194s Setting up autopoint (0.23.1-1) ... 194s Setting up fonts-dejavu-core (2.37-8) ... 194s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 194s Setting up libltdl7:s390x (2.5.4-3build1) ... 194s Setting up python3-pickleshare (0.7.5-5) ... 194s Setting up python3-toml (0.10.2-1) ... 194s Setting up python3-installer (0.7.0+dfsg1-3) ... 195s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 195s Setting up autoconf (2.72-3) ... 195s Setting up python3-pluggy (1.5.0-1) ... 195s Setting up libwebp7:s390x (1.5.0-0.1) ... 195s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 195s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 195s Setting up dwz (0.15-1build6) ... 195s Setting up python3-traitlets (5.14.3+really5.14.3-1) ... 195s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 195s Setting up libjson-perl (4.10000-1) ... 195s Setting up libnsl2:s390x (1.3.0-3build3) ... 195s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 195s Setting up debugedit (1:5.1-2) ... 195s Setting up mypy (1.15.0-2) ... 195s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 195s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 195s Setting up libthai-data (0.1.29-2build1) ... 195s Setting up python3-dateutil (2.9.0-3) ... 195s Setting up libgts-0.7-5t64:s390x (0.7.6+darcs121130-5.2build1) ... 195s Setting up sgml-base (1.31) ... 195s Setting up libcdt5:s390x (2.42.4-2build4) ... 195s Setting up libcgraph6:s390x (2.42.4-2build4) ... 195s Setting up libxss1:s390x (1:1.2.3-1build3) ... 195s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 195s Setting up python3-mpmath (1.3.0-1) ... 196s Setting up libisl23:s390x (0.27-1) ... 196s Setting up python3-build (1.2.2-1) ... 196s Setting up libde265-0:s390x (1.0.15-1build4) ... 196s Setting up python3-execnet (2.1.1-1) ... 196s Setting up python-matplotlib-data (3.8.3-3ubuntu2) ... 196s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 196s Setting up python3-stack-data (0.6.3-1) ... 196s Setting up python3-soupsieve (2.6-1) ... 196s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 196s Setting up libfmt10:s390x (10.1.1+ds1-4) ... 196s Setting up libblas-dev:s390x (3.12.1-2) ... 196s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode 196s Setting up libjs-bootstrap (3.4.1+dfsg-3) ... 196s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 196s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 196s Setting up libclang-cpp19 (1:19.1.7-1ubuntu1) ... 196s Setting up python3-imagesize (1.4.1-1) ... 197s Setting up python3-ptyprocess (0.7.0-6) ... 197s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 197s Setting up automake (1:1.17-3) ... 197s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 197s Setting up python3-prompt-toolkit (3.0.50-1) ... 198s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 198s Setting up python3-sympy (1.13.3-1) ... 208s Setting up python3.12-minimal (3.12.9-1) ... 209s Setting up libice6:s390x (2:1.1.1-1) ... 209s Setting up liblapack3:s390x (3.12.1-2) ... 209s 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 209s Setting up gettext (0.23.1-1) ... 209s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 209s Setting up python3-jedi (0.19.1+ds1-1) ... 209s Setting up python3-pyproject-metadata (0.9.0-1) ... 209s Setting up pybuild-plugin-pyproject (6.20250108) ... 209s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 209s Setting up python3-pytest (8.3.4-1) ... 210s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 210s Setting up python3.12 (3.12.9-1) ... 211s Setting up python3-hypothesis (6.125.2-1) ... 211s Setting up meson (1.7.0-1ubuntu1) ... 213s Setting up python3-all (3.13.1-1~exp2) ... 213s Setting up python3-bs4 (4.13.3-1) ... 213s Setting up intltool-debian (0.35.0+20060710.6) ... 213s Setting up python3-matplotlib-inline (0.1.6-2) ... 213s Setting up libpython3.12t64:s390x (3.12.9-1) ... 213s Setting up python3.13-doc (3.13.2-1) ... 213s Setting up libthai0:s390x (0.1.29-2build1) ... 213s Setting up doxygen (1.9.8+ds-2.1) ... 213s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 213s Setting up python3-pexpect (4.9-3) ... 213s Setting up libraqm0:s390x (0.10.2-1) ... 213s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 213s Setting up python-scipy-doc (1.14.1-4ubuntu1) ... 213s Setting up liblapack-dev:s390x (3.12.1-2) ... 213s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode 213s Setting up python3-numpy (1:1.26.4+ds-13) ... 217s Setting up libjs-sphinxdoc (8.1.3-5) ... 217s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 217s Setting up cpp-14 (14.2.0-17ubuntu1) ... 217s Setting up dh-strip-nondeterminism (1.14.1-2) ... 217s Setting up python-imageio-doc (2.37.0-1) ... 217s Setting up libgvpr2:s390x (2.42.4-2build4) ... 217s Setting up python3-lxml:s390x (5.3.1-1) ... 217s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 217s Setting up xml-core (0.19) ... 217s Setting up python3-mesonpy (0.17.1-1) ... 217s Setting up python3-contourpy (1.3.1-1) ... 217s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 217s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 217s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 217s Setting up libsm6:s390x (2:1.2.4-1) ... 217s Setting up python3-doc (3.13.1-1~exp2) ... 217s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 217s Setting up python-numpy-doc (1:1.26.4+ds-13) ... 217s Setting up fontconfig (2.15.0-2ubuntu1) ... 219s Regenerating fonts cache... done. 219s Setting up libxft2:s390x (2.3.6-1build1) ... 219s Setting up python3-scipy (1.14.1-4ubuntu1) ... 225s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 225s Setting up python3-pytest-xdist (3.6.1-1) ... 225s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 225s Setting up python-pandas-doc (2.2.3+dfsg-8) ... 225s Setting up python3.13-dev (3.13.2-1) ... 225s Setting up po-debconf (1.0.21+nmu1) ... 225s Setting up python-skimage-doc (0.25.1-1) ... 225s Setting up libtk8.6:s390x (8.6.16-1) ... 225s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 225s Setting up python3.12-tk (3.12.9-1) ... 225s Setting up python-pytest-doc (8.3.4-1) ... 225s Setting up libpython3.12-dev:s390x (3.12.9-1) ... 225s Setting up libcairo2:s390x (1.18.2-2) ... 225s Setting up python3.13-tk (3.13.2-1) ... 226s Setting up python3-pil:s390x (11.1.0-5) ... 226s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 226s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 226s Setting up libpython3-all-dev:s390x (3.13.1-1~exp2) ... 226s Setting up python3-ipython (8.30.0-2) ... 227s Setting up sphinx-common (8.1.3-5) ... 227s Setting up python3-dev (3.13.1-1~exp2) ... 227s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 227s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 227s Setting up python3.12-dev (3.12.9-1) ... 227s Setting up cpp (4:14.2.0-1ubuntu1) ... 227s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 227s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 227s Setting up python3-all-dev (3.13.1-1~exp2) ... 227s Setting up tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 227s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 227s Setting up blt (2.5.3+dfsg-7build1) ... 227s Setting up python3-tk:s390x (3.13.1-1) ... 227s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 227s Setting up libxaw7:s390x (2:1.0.16-1) ... 227s Setting up gcc-14 (14.2.0-17ubuntu1) ... 227s Setting up python3-pil.imagetk:s390x (11.1.0-5) ... 227s Setting up g++-14 (14.2.0-17ubuntu1) ... 227s Setting up libtool (2.5.4-3build1) ... 227s Setting up gcc (4:14.2.0-1ubuntu1) ... 227s Setting up dh-autoreconf (20) ... 227s Setting up g++ (4:14.2.0-1ubuntu1) ... 227s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 227s Setting up build-essential (12.10ubuntu1) ... 227s Setting up debhelper (13.24.1ubuntu2) ... 227s Setting up pybuild-plugin-autopkgtest (6.20250108) ... 227s Setting up python3-ufolib2 (0.17.0+dfsg1-1) ... 227s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 227s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 227s Setting up libheif1:s390x (1.19.5-1build1) ... 227s Setting up python3-fonttools (4.55.3-2) ... 229s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 229s Setting up libgvc6 (2.42.4-2build4) ... 229s Setting up graphviz (2.42.4-2build4) ... 229s Setting up python3-matplotlib (3.8.3-3ubuntu2) ... 231s Processing triggers for libc-bin (2.40-4ubuntu1) ... 231s Processing triggers for systemd (257.2-3ubuntu1) ... 231s Processing triggers for man-db (2.13.0-1) ... 233s Processing triggers for install-info (7.1.1-1) ... 233s Processing triggers for sgml-base (1.31) ... 233s Setting up docutils-common (0.21.2+dfsg-2) ... 233s Processing triggers for sgml-base (1.31) ... 233s Setting up python3-docutils (0.21.2+dfsg-2) ... 234s Setting up python3-sphinx (8.1.3-5) ... 235s Setting up python3-sphinx-design (0.6.1-1) ... 235s Setting up python3-breathe (4.35.0-3) ... 235s Setting up python3-numpydoc (1.8.0-1) ... 235s Setting up python3-pydata-sphinx-theme (0.16.1+dfsg-1) ... 236s autopkgtest: DBG: testbed command exited with code 0 236s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-numpy'], kind short, sout pipe, serr pipe, env [] 236s autopkgtest: DBG: testbed command exited with code 0 236s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-numpy-doc'], kind short, sout pipe, serr pipe, env [] 236s autopkgtest: DBG: testbed command exited with code 0 236s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 236s autopkgtest: DBG: testbed command exited with code 0 236s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-packages.all /tmp/autopkgtest-work.wws_kge9/out/pybuild-autopkgtest-packages.all 237s autopkgtest: DBG: got reply from testbed: ok 237s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TgRL59/build.FUQ/src'], kind short, sout raw, serr raw, env [] 237s autopkgtest: DBG: testbed command exited with code 0 237s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.TgRL59/build.FUQ/src already exists 237s autopkgtest [12:23:36]: test pybuild-autopkgtest: pybuild-autopkgtest 237s autopkgtest [12:23:36]: test pybuild-autopkgtest: [----------------------- 237s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.TgRL59/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TgRL59/pybuild-autopkgtest-artifacts --chdir=/tmp/autopkgtest.TgRL59/build.FUQ/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=4 --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.TgRL59/pybuild-autopkgtest-stderr --stdout=/tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stdout --tmp=/tmp/autopkgtest.TgRL59/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec pybuild-autopkgtest'], kind test, sout raw, serr raw, env [] 237s /tmp/autopkgtest.TgRL59/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-artifacts 237s /tmp/autopkgtest.TgRL59/wrapper.sh: changing to directory: /tmp/autopkgtest.TgRL59/build.FUQ/src 237s /tmp/autopkgtest.TgRL59/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 237s /tmp/autopkgtest.TgRL59/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 237s /tmp/autopkgtest.TgRL59/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 237s /tmp/autopkgtest.TgRL59/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 237s /tmp/autopkgtest.TgRL59/wrapper.sh: setting environment: LANG=C.UTF-8 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LANGUAGE 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_ADDRESS 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_ALL 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_COLLATE 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_CTYPE 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_IDENTIFICATION 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_MEASUREMENT 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_MESSAGES 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_MONETARY 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_NAME 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_NUMERIC 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_PAPER 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_TELEPHONE 237s /tmp/autopkgtest.TgRL59/wrapper.sh: unsetting environment: LC_TIME 237s /tmp/autopkgtest.TgRL59/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 237s /tmp/autopkgtest.TgRL59/wrapper.sh: pretending to be a login shell 237s /tmp/autopkgtest.TgRL59/wrapper.sh: will write standard error to /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stderr 237s /tmp/autopkgtest.TgRL59/wrapper.sh: will write stdout to /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stdout 237s /tmp/autopkgtest.TgRL59/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TgRL59/autopkgtest_tmp 237s /tmp/autopkgtest.TgRL59/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 237s /tmp/autopkgtest.TgRL59/wrapper.sh: command to run: bash -ec pybuild-autopkgtest 237s /tmp/autopkgtest.TgRL59/wrapper.sh: copying /tmp/tmp.iEiNj9Pvca/out to stdout and file: /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stdout 237s /tmp/autopkgtest.TgRL59/wrapper.sh: copying /tmp/tmp.iEiNj9Pvca/err to standard error and file: /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stdout 237s /tmp/autopkgtest.TgRL59/wrapper.sh: writing script pid 4779 to /tmp/autopkgtest_script_pid 238s pybuild-autopkgtest 238s I: pybuild base:311: cd /tmp/autopkgtest.TgRL59/autopkgtest_tmp/build; python3.12 /tmp/autopkgtest.TgRL59/build.FUQ/src/runtests.py --no-build --verbose --pythonpath /tmp/autopkgtest.TgRL59/autopkgtest_tmp/build -- -k 'not (cython or test_all_modules_are_expected or test_impossible_feature_enable or test_deprecate_help_indentation or test_deprecate_preserve_whitespace or f2py or test_linear_interpolation_formula_symmetric)' 247s NumPy version 1.26.4 247s NumPy relaxed strides checking option: True 247s NumPy CPU features: VX* VXE* VXE2* 247s ============================= test session starts ============================== 247s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 247s rootdir: /tmp/autopkgtest.TgRL59/build.FUQ/src 247s configfile: pytest.ini 247s plugins: xdist-3.6.1, hypothesis-6.125.2, typeguard-4.4.1 247s collected 37279 items / 2189 deselected / 35090 selected 247s 249s ../../array_api/tests/test_array_object.py ........................ [ 0%] 249s ../../array_api/tests/test_creation_functions.py .............. [ 0%] 249s ../../array_api/tests/test_data_type_functions.py ..... [ 0%] 249s ../../array_api/tests/test_elementwise_functions.py .. [ 0%] 249s ../../array_api/tests/test_indexing_functions.py .... [ 0%] 249s ../../array_api/tests/test_manipulation_functions.py ... [ 0%] 249s ../../array_api/tests/test_set_functions.py .. [ 0%] 249s ../../array_api/tests/test_sorting_functions.py .... [ 0%] 249s ../../array_api/tests/test_validation.py ... [ 0%] 249s ../../compat/tests/test_compat.py . [ 0%] 249s ../../core/tests/test__exceptions.py ........... [ 0%] 249s ../../core/tests/test_abc.py ..... [ 0%] 249s ../../core/tests/test_api.py ........................................... [ 0%] 249s ................. [ 0%] 249s ../../core/tests/test_argparse.py ..... [ 0%] 249s ../../core/tests/test_array_coercion.py ................................ [ 0%] 249s .............................x.......................................... [ 0%] 250s ........................................................................ [ 0%] 250s ................................ [ 1%] 250s ../../core/tests/test_arraymethod.py ................................... [ 1%] 250s ..... [ 1%] 250s ../../core/tests/test_arrayprint.py ..x................................. [ 1%] 250s ........................... [ 1%] 250s ../../core/tests/test_casting_floatingpoint_errors.py .................. [ 1%] 250s ........................................................................ [ 1%] 250s ........................................................................ [ 1%] 250s ..................... [ 1%] 250s ../../core/tests/test_casting_unittests.py ............................. [ 1%] 250s ........................................................................ [ 2%] 251s ........................................................................ [ 2%] 251s ........................................................................ [ 2%] 251s ...................................................................... [ 2%] 251s ../../core/tests/test_conversion_utils.py ........................... [ 2%] 251s ../../core/tests/test_cpu_dispatcher.py . [ 2%] 252s ../../core/tests/test_cpu_features.py .....sss.s [ 2%] 252s ../../core/tests/test_custom_dtypes.py ................................. [ 2%] 252s .. [ 2%] 252s ../../core/tests/test_datetime.py ...................................... [ 3%] 252s ........................................................................ [ 3%] 252s ........................................................................ [ 3%] 252s .................................................x..........x..x........ [ 3%] 252s ..x.... [ 3%] 252s ../../core/tests/test_defchararray.py .................................. [ 3%] 252s ....................................................... [ 3%] 252s ../../core/tests/test_deprecations.py .................................. [ 4%] 253s ........................................................................ [ 4%] 253s ................. [ 4%] 253s ../../core/tests/test_dlpack.py ........................................ [ 4%] 253s ................... [ 4%] 253s ../../core/tests/test_dtype.py ......................................... [ 4%] 253s ......................................................ssssssssssssssssss [ 4%] 253s ssssssssssssssssss...................................................... [ 4%] 253s ........................................................................ [ 5%] 253s ........................................................................ [ 5%] 253s ........................................................................ [ 5%] 253s ........................................................................ [ 5%] 253s ........................................................................ [ 5%] 253s ........................................................................ [ 6%] 253s ........................................................................ [ 6%] 253s ........................................................................ [ 6%] 253s ........................................................................ [ 6%] 253s ........................................................................ [ 7%] 253s ........................................................................ [ 7%] 253s ....................................................... [ 7%] 254s ../../core/tests/test_einsum.py ........................................ [ 7%] 254s ........................... [ 7%] 254s ../../core/tests/test_errstate.py .... [ 7%] 255s ../../core/tests/test_extint128.py ............ [ 7%] 255s ../../core/tests/test_function_base.py ................................. [ 7%] 255s .... [ 7%] 255s ../../core/tests/test_getlimits.py ................ [ 7%] 255s ../../core/tests/test_half.py ..................................... [ 7%] 255s ../../core/tests/test_hashtable.py ......... [ 7%] 255s ../../core/tests/test_indexerrors.py ........ [ 7%] 255s ../../core/tests/test_indexing.py ...................................... [ 8%] 256s ............................................. [ 8%] 256s ../../core/tests/test_item_selection.py ................................ [ 8%] 256s ........................................................................ [ 8%] 256s ........................................................................ [ 8%] 256s ........................................................................ [ 8%] 256s .................. [ 8%] 257s ../../core/tests/test_limited_api.py . [ 8%] 257s ../../core/tests/test_longdouble.py ....................ssssssssss....s. [ 9%] 257s [ 9%] 257s ../../core/tests/test_machar.py . [ 9%] 258s ../../core/tests/test_mem_overlap.py .................. [ 9%] 259s ../../core/tests/test_mem_policy.py ssssssssss [ 9%] 259s ../../core/tests/test_memmap.py ................... [ 9%] 259s ../../core/tests/test_multiarray.py .................................... [ 9%] 259s ........................................................................ [ 9%] 260s .............................xx......................................... [ 9%] 260s ........................................................................ [ 9%] 260s ........................................................................ [ 10%] 261s .................................................s...................... [ 10%] 261s ........................................................................ [ 10%] 261s ........................................................................ [ 10%] 262s ........................................................................ [ 10%] 262s ........................................................................ [ 11%] 263s ........................................................................ [ 11%] 263s ........................................................................ [ 11%] 263s ...........s.s.s.s.s.s.....s.s.....s.s.s.s.......s.s.s.s................ [ 11%] 263s ........................................................................ [ 11%] 264s ........................................................................ [ 12%] 264s ........................................................................ [ 12%] 264s ........................................................................ [ 12%] 264s ........................................................................ [ 12%] 264s ........................................................................ [ 12%] 267s ........................................................................ [ 13%] 268s ........................................................................ [ 13%] 268s ........................................................................ [ 13%] 268s ........................................................................ [ 13%] 268s ........................................................................ [ 13%] 268s ........................................................................ [ 14%] 269s ........................................................................ [ 14%] 269s ........................................................................ [ 14%] 269s ........................................................................ [ 14%] 269s ........................................................................ [ 15%] 269s ........................................................................ [ 15%] 269s ........................................................................ [ 15%] 269s ........................................................................ [ 15%] 269s ........................................................................ [ 15%] 269s ........................................................................ [ 16%] 269s ........................................................................ [ 16%] 269s ........................................................................ [ 16%] 269s ........................................................................ [ 16%] 269s ........................................................................ [ 16%] 270s ........................................................................ [ 17%] 270s ........................................................................ [ 17%] 270s ........................................................................ [ 17%] 270s ........................................................................ [ 17%] 270s ........................................................................ [ 17%] 270s ........................................................................ [ 18%] 270s ........................................................................ [ 18%] 270s ........................................................................ [ 18%] 270s ........................................................................ [ 18%] 270s ........................................................................ [ 18%] 270s ........................................................................ [ 19%] 270s ........................................................................ [ 19%] 270s ........................................................................ [ 19%] 270s ........................................................................ [ 19%] 271s ........................................................................ [ 19%] 271s ........................................................................ [ 20%] 271s ........................................................................ [ 20%] 271s ........................................................................ [ 20%] 271s ........................................................................ [ 20%] 271s ........................................................................ [ 20%] 271s ........................................................................ [ 21%] 271s ........................................................................ [ 21%] 271s ........................................................................ [ 21%] 271s ........................................................................ [ 21%] 271s ........................................................................ [ 21%] 271s ........................................................................ [ 22%] 271s ........................................................................ [ 22%] 271s ........................................................................ [ 22%] 271s ........................................................................ [ 22%] 271s ........................................................................ [ 23%] 271s ........................................................................ [ 23%] 272s ........................................................................ [ 23%] 272s ........................................................................ [ 23%] 272s ........................................................................ [ 23%] 272s ........................................................................ [ 24%] 272s ........................................................................ [ 24%] 272s ........................................................................ [ 24%] 272s ........................................................................ [ 24%] 272s ........................................................................ [ 24%] 272s ........................................................................ [ 25%] 272s ........................................................................ [ 25%] 272s ........................................................................ [ 25%] 272s ........................................................................ [ 25%] 272s ........................................................................ [ 25%] 272s ........................................................................ [ 26%] 272s ........................................................................ [ 26%] 272s ........................................................................ [ 26%] 272s ........................................................................ [ 26%] 273s ........................................................................ [ 26%] 273s ........................................................................ [ 27%] 273s ........................................................................ [ 27%] 273s ........................................................................ [ 27%] 273s ........................................................................ [ 27%] 273s ........................................................................ [ 27%] 273s ........................................................................ [ 28%] 273s ........................................................................ [ 28%] 273s ........................................................................ [ 28%] 273s ........................................................................ [ 28%] 273s ........................................................................ [ 28%] 273s ........................................................................ [ 29%] 274s ........................................................................ [ 29%] 274s ........................................................................ [ 29%] 274s ........................................................................ [ 29%] 274s ........................................................................ [ 29%] 274s ........................................................................ [ 30%] 274s ........................................................................ [ 30%] 274s ........................................................................ [ 30%] 274s ........................................................................ [ 30%] 274s ........................................................................ [ 31%] 274s ........................................................................ [ 31%] 274s ........................................................................ [ 31%] 275s ........................................................................ [ 31%] 275s ........................................................................ [ 31%] 275s ........................................................................ [ 32%] 275s ........................................................................ [ 32%] 275s ........................................................................ [ 32%] 275s ........................................................................ [ 32%] 275s ........................................................................ [ 32%] 275s ........................................................................ [ 33%] 275s ........................................................................ [ 33%] 275s ........................................................................ [ 33%] 275s ........................................................................ [ 33%] 275s ........................................................................ [ 33%] 276s ........................................................................ [ 34%] 276s ........................................................................ [ 34%] 276s ........................................................................ [ 34%] 276s ........................................................................ [ 34%] 276s ........................................................................ [ 34%] 276s ........................................................................ [ 35%] 276s ........................................................................ [ 35%] 276s ...................................... [ 35%] 276s ../../core/tests/test_nditer.py ........................................ [ 35%] 276s ........................................................................ [ 35%] 276s ........................................................................ [ 35%] 276s ........................................................................ [ 36%] 276s ........................................................................ [ 36%] 276s ........................................................................ [ 36%] 277s ........................................................................ [ 36%] 277s ........................................................................ [ 36%] 277s ........................................................................ [ 37%] 277s ........................................................................ [ 37%] 277s ........................................................................ [ 37%] 277s .......................................... [ 37%] 277s ../../core/tests/test_nep50_promotions.py ................s............. [ 37%] 277s .. [ 37%] 278s ../../core/tests/test_numeric.py ..............................x...x.... [ 37%] 278s ........................................................................ [ 38%] 278s ........................................................................ [ 38%] 278s .................................................................X...... [ 38%] 279s ........................................................................ [ 38%] 279s .......................... [ 38%] 279s ../../core/tests/test_numerictypes.py .................................. [ 38%] 279s ........................................................................ [ 39%] 279s ............ [ 39%] 279s ../../core/tests/test_numpy_2_0_compat.py ... [ 39%] 279s ../../core/tests/test_overrides.py ..................................... [ 39%] 279s ........................................................................ [ 39%] 279s ............................. [ 39%] 279s ../../core/tests/test_print.py ...................sss [ 39%] 279s ../../core/tests/test_protocols.py .. [ 39%] 279s ../../core/tests/test_records.py ....................................... [ 39%] 279s .. [ 39%] 279s ../../core/tests/test_regression.py .................................... [ 39%] 279s ........................................................................ [ 40%] 279s ......................................................s................. [ 40%] 282s ........................................................................ [ 40%] 282s ...............s........................................................ [ 40%] 282s ........................................................................ [ 40%] 282s ................... [ 40%] 282s ../../core/tests/test_scalar_ctors.py .................................. [ 41%] 282s ........................................................................ [ 41%] 282s ........................................................ [ 41%] 282s ../../core/tests/test_scalar_methods.py ................................ [ 41%] 282s ........................................................................ [ 41%] 282s ....... [ 41%] 282s ../../core/tests/test_scalarbuffer.py .................................. [ 41%] 282s ............................................ [ 41%] 282s ../../core/tests/test_scalarinherit.py ..... [ 41%] 283s ../../core/tests/test_scalarmath.py .........................s.......... [ 42%] 283s ........................................................................ [ 42%] 283s ........................................................................ [ 42%] 283s ............................ssssss...................................... [ 42%] 283s ........................................................................ [ 42%] 283s ............ [ 42%] 283s ../../core/tests/test_scalarprint.py .....s [ 42%] 283s ../../core/tests/test_shape_base.py .................................... [ 43%] 284s ........................................................................ [ 43%] 284s ........................................................................ [ 43%] 284s .............................. [ 43%] 284s ../../core/tests/test_simd.py .......................................... [ 43%] 284s ..................................................................ssssss [ 43%] 284s ssssssssssssssssssssssssssssssssssss.................................... [ 44%] 284s ......s................................................................. [ 44%] 284s ........................................................................ [ 44%] 284s ........................................................................ [ 44%] 284s ........................................................................ [ 44%] 284s ........................................................................ [ 45%] 284s ........................................................ssssssssssssssss [ 45%] 284s sssssssssssssssssssssssssssssssssss..................................... [ 45%] 285s ........................................................................ [ 45%] 285s ........................................................................ [ 45%] 285s ........................................................................ [ 46%] 285s ........................................................................ [ 46%] 285s ........................................................................ [ 46%] 285s ........................................................................ [ 46%] 285s ........................................................................ [ 46%] 285s ........................................................................ [ 47%] 285s ........................................................................ [ 47%] 285s ........................................................................ [ 47%] 286s ........................................................................ [ 47%] 286s ........................................................................ [ 47%] 286s ........................................................................ [ 48%] 286s ........................................................................ [ 48%] 286s ........................................................................ [ 48%] 286s ........................................................................ [ 48%] 286s ........................................................................ [ 48%] 286s ........................................................................ [ 49%] 286s ........................................................................ [ 49%] 286s ......................................................ssssssssssssssssss [ 49%] 286s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 49%] 286s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 49%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 51%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 51%] 287s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 51%] 287s ssssssssssssssssssssssssssssssssssssss [ 51%] 287s ../../core/tests/test_simd_module.py ..................................s [ 51%] 287s . [ 51%] 289s ../../core/tests/test_strings.py ....................................... [ 51%] 293s ........................................................................ [ 51%] 293s ....................... [ 52%] 293s ../../core/tests/test_ufunc.py ......................................... [ 52%] 293s ........................................................................ [ 52%] 295s ........................................................................ [ 52%] 296s ........................................................................ [ 52%] 296s ........................................................................ [ 52%] 296s ........................................................................ [ 53%] 296s ........................................................................ [ 53%] 296s ........................................................................ [ 53%] 296s ........................................................................ [ 53%] 296s ........................................................................ [ 53%] 297s .....xxxxxxx.............. [ 54%] 297s ../../core/tests/test_umath.py ......................................... [ 54%] 297s ........................................................................ [ 54%] 297s ........................................................................ [ 54%] 297s ........................................................................ [ 54%] 297s ........................................................................ [ 54%] 298s ........................................................................ [ 55%] 298s ........................................................................ [ 55%] 298s ........................................................................ [ 55%] 298s ........................................................................ [ 55%] 298s ........................................................................ [ 56%] 298s ........................................................................ [ 56%] 298s ........................................................................ [ 56%] 298s ........................................................................ [ 56%] 298s ........................................................................ [ 56%] 298s ........................................................................ [ 57%] 298s ........................................................................ [ 57%] 298s ........................................................................ [ 57%] 298s ........................................................................ [ 57%] 299s ........................................................................ [ 57%] 299s ........................................................................ [ 58%] 299s ........................................................................ [ 58%] 299s ........................................................................ [ 58%] 299s ........................................................................ [ 58%] 299s ........................................................................ [ 58%] 299s ........................................................................ [ 59%] 299s ........................................................................ [ 59%] 299s ........................................................................ [ 59%] 299s ........................................................................ [ 59%] 299s ........................................................................ [ 59%] 299s ........................................................................ [ 60%] 299s ........................................................................ [ 60%] 299s ........................................................................ [ 60%] 299s ........................................................................ [ 60%] 299s ........................................................................ [ 60%] 299s ........................................................................ [ 61%] 299s ........................................................................ [ 61%] 299s ........................................................................ [ 61%] 299s ........................................................................ [ 61%] 300s ........................................................................ [ 61%] 300s ........................................................................ [ 62%] 300s ........................................................................ [ 62%] 300s ........................................................................ [ 62%] 300s ........................................................................ [ 62%] 300s ........................................................................ [ 62%] 300s ........................................................................ [ 63%] 300s ........................................................................ [ 63%] 300s ........................................................................ [ 63%] 300s ........................................................................ [ 63%] 300s ........................................................................ [ 64%] 300s ........................................................................ [ 64%] 300s ........................................................................ [ 64%] 300s ........................................................................ [ 64%] 300s ........................................................................ [ 64%] 300s ........................................................................ [ 65%] 300s ........................................................................ [ 65%] 301s ........................................................................ [ 65%] 301s ........................................................................ [ 65%] 302s ........................................................................ [ 65%] 302s ........................................................................ [ 66%] 302s ..................................s..................................... [ 66%] 302s ........................................................................ [ 66%] 302s .......................................................................s [ 66%] 302s sssssssssssss........................................................... [ 66%] 303s ..................................................................... [ 67%] 303s ../../core/tests/test_umath_accuracy.py s............................... [ 67%] 303s ......... [ 67%] 303s ../../core/tests/test_umath_complex.py ..s............s................. [ 67%] 303s ........................................................................ [ 67%] 303s ........................................................................ [ 67%] 303s ........................................................................ [ 67%] 303s ........................................................................ [ 68%] 303s ............ [ 68%] 303s ../../core/tests/test_unicode.py ....................................... [ 68%] 303s ..................................... [ 68%] 303s ../../fft/tests/test_helper.py ........ [ 68%] 303s ../../fft/tests/test_pocketfft.py ...................................... [ 68%] 304s .......................................... [ 68%] 304s ../../lib/tests/test__datasource.py .......................... [ 68%] 304s ../../lib/tests/test__iotools.py ........................ [ 68%] 304s ../../lib/tests/test__version.py ........ [ 68%] 304s ../../lib/tests/test_arraypad.py ....................................... [ 68%] 304s ........................................x............................... [ 69%] 304s ........................................................................ [ 69%] 304s ........................................................................ [ 69%] 304s ........................................................................ [ 69%] 304s ........................................................................ [ 69%] 304s ........................................................................ [ 70%] 304s ........................................................................ [ 70%] 304s .......................................... [ 70%] 304s ../../lib/tests/test_arraysetops.py .................................... [ 70%] 304s ...................................... [ 70%] 304s ../../lib/tests/test_arrayterator.py . [ 70%] 304s ../../lib/tests/test_financial_expired.py . [ 70%] 306s ../../lib/tests/test_format.py ...........s............................. [ 70%] 306s [ 70%] 306s ../../lib/tests/test_function_base.py .................................. [ 70%] 306s ........................................................................ [ 71%] 310s ............................................................x........... [ 71%] 310s ........................................................................ [ 71%] 310s ........................................................................ [ 71%] 310s ........................................................................ [ 71%] 310s ........................................................................ [ 72%] 310s ........................................................................ [ 72%] 310s ........................................................................ [ 72%] 310s ........................................................................ [ 72%] 310s ........................................................................ [ 72%] 311s ........................................................................ [ 73%] 311s ........................................................................ [ 73%] 311s ........................... [ 73%] 311s ../../lib/tests/test_histograms.py .........................s........... [ 73%] 311s ...................... [ 73%] 311s ../../lib/tests/test_index_tricks.py ................................... [ 73%] 311s ............ [ 73%] 311s ../../lib/tests/test_io.py ............................................. [ 73%] 312s ........................................................................ [ 74%] 312s ........................................................................ [ 74%] 313s ..................... [ 74%] 313s ../../lib/tests/test_loadtxt.py ........................................ [ 74%] 314s ........................................................................ [ 74%] 314s ........................................................................ [ 74%] 314s ..............................x...x.............s.....x................. [ 75%] 314s ......................... [ 75%] 314s ../../lib/tests/test_mixins.py ........... [ 75%] 314s ../../lib/tests/test_nanfunctions.py .....................ss.ss.ss.ss.ss [ 75%] 314s .ss.ss..........................................ss.ss.ss.ss.ss.ss.ss.... [ 75%] 314s ........................................................................ [ 75%] 314s ........................................................................ [ 75%] 314s ........................................................................ [ 76%] 314s ........................................................................ [ 76%] 314s ........................................................................ [ 76%] 314s ........................................................................ [ 76%] 315s ........................................................................ [ 76%] 315s ........................................................................ [ 77%] 315s ........................................................................ [ 77%] 315s ....................................ss.ss.ss.ss.ss.ss.ss................ [ 77%] 315s ...........................ss.ss.ss.ss.ss.ss.ss......................... [ 77%] 315s ..............ss.ss.ss.ss.ss.ss.ss...................................... [ 77%] 315s ........................................................................ [ 78%] 315s .........ss.ss.ss.ss.....................ss.ss.ss.ss................. [ 78%] 316s ../../lib/tests/test_packbits.py ....................................... [ 78%] 316s ........................................................................ [ 78%] 316s ........................................................................ [ 78%] 316s ........................................................................ [ 79%] 316s ......................... [ 79%] 316s ../../lib/tests/test_polynomial.py ..................................... [ 79%] 316s [ 79%] 316s ../../lib/tests/test_recfunctions.py ................................... [ 79%] 316s ................ [ 79%] 316s ../../lib/tests/test_regression.py ........................... [ 79%] 316s ../../lib/tests/test_shape_base.py ..................................... [ 79%] 316s ....................................... [ 79%] 316s ../../lib/tests/test_stride_tricks.py .......................... [ 79%] 316s ../../lib/tests/test_twodim_base.py .................................... [ 79%] 317s . [ 79%] 317s ../../lib/tests/test_type_check.py ..................................... [ 79%] 317s ............... [ 79%] 317s ../../lib/tests/test_ufunclike.py ..... [ 80%] 317s ../../lib/tests/test_utils.py ................. [ 80%] 317s ../../linalg/tests/test_deprecations.py . [ 80%] 317s ../../linalg/tests/test_linalg.py ...................................... [ 80%] 318s ........x............................................................... [ 80%] 318s ........................................................................ [ 80%] 318s ........................................................................ [ 80%] 318s ........................................................................ [ 80%] 319s ...........................s........................sx [ 81%] 319s ../../linalg/tests/test_regression.py ......... [ 81%] 319s ../../ma/tests/test_core.py ............................................ [ 81%] 319s ........................................................................ [ 81%] 319s ........................................................................ [ 81%] 319s ........................................................................ [ 81%] 319s ........................................................................ [ 82%] 319s ........................................................................ [ 82%] 320s ........................................................................ [ 82%] 320s ........................................................................ [ 82%] 320s ........................................................................ [ 82%] 320s ........................................................................ [ 83%] 320s ........................................................................ [ 83%] 320s ........................................................................ [ 83%] 320s ........................................................................ [ 83%] 320s ........................................................................ [ 83%] 320s ........................................................................ [ 84%] 321s ........................................................................ [ 84%] 321s ........................................................................ [ 84%] 321s ........................................................................ [ 84%] 321s ........................................................................ [ 84%] 321s ........................................................................ [ 85%] 321s ........................................................................ [ 85%] 321s ........................................................................ [ 85%] 321s ........................................................................ [ 85%] 322s ........................................................................ [ 86%] 322s ........................................................................ [ 86%] 322s ........................................................................ [ 86%] 322s ........................................................................ [ 86%] 322s ........................................................................ [ 86%] 322s ........................................................................ [ 87%] 322s ........................................................................ [ 87%] 322s ........................................................................ [ 87%] 322s ........................................................................ [ 87%] 323s ........................................................................ [ 87%] 323s ........................................................................ [ 88%] 323s ........................................................................ [ 88%] 323s ........................................................................ [ 88%] 323s ........................................................................ [ 88%] 323s ........................................................................ [ 88%] 323s ........................................................................ [ 89%] 323s ........................................................................ [ 89%] 324s ........................................................................ [ 89%] 324s ........................................................................ [ 89%] 324s ........................................................................ [ 89%] 324s ........................................................................ [ 90%] 324s ........................................................................ [ 90%] 324s ........................................................................ [ 90%] 324s ........................................................................ [ 90%] 324s ........................................................................ [ 90%] 324s ........................................................................ [ 91%] 324s ........................................................................ [ 91%] 325s ........................................................................ [ 91%] 325s ........................................................................ [ 91%] 325s ................................................................xx...... [ 91%] 326s ........................................................................ [ 92%] 326s ........................................................................ [ 92%] 326s ........................................................................ [ 92%] 326s ........................................................................ [ 92%] 326s ............. [ 92%] 326s ../../ma/tests/test_deprecations.py ..... [ 92%] 326s ../../ma/tests/test_extras.py .......................................... [ 92%] 326s ......................................................... [ 93%] 326s ../../ma/tests/test_mrecords.py ........................ [ 93%] 326s ../../ma/tests/test_old_ma.py ......................................... [ 93%] 326s ../../ma/tests/test_regression.py .............. [ 93%] 326s ../../ma/tests/test_subclassing.py ................ [ 93%] 326s ../../matrixlib/tests/test_defmatrix.py ................................ [ 93%] 326s ........... [ 93%] 326s ../../matrixlib/tests/test_interaction.py ....................... [ 93%] 326s ../../matrixlib/tests/test_masked_matrix.py .............. [ 93%] 326s ../../matrixlib/tests/test_matrix_linalg.py ............................ [ 93%] 327s ........................................................................ [ 93%] 327s .. [ 93%] 327s ../../matrixlib/tests/test_multiarray.py .. [ 93%] 327s ../../matrixlib/tests/test_numeric.py .. [ 93%] 327s ../../matrixlib/tests/test_regression.py .... [ 93%] 327s ../../polynomial/tests/test_chebyshev.py ............................... [ 94%] 327s .......... [ 94%] 327s ../../polynomial/tests/test_classes.py ................................. [ 94%] 327s ........................................................................ [ 94%] 327s ........................................................................ [ 94%] 327s ............................................................ [ 94%] 327s ../../polynomial/tests/test_hermite.py ................................. [ 94%] 327s . [ 94%] 327s ../../polynomial/tests/test_hermite_e.py ............................... [ 94%] 327s ... [ 94%] 327s ../../polynomial/tests/test_laguerre.py ................................ [ 95%] 327s .. [ 95%] 327s ../../polynomial/tests/test_legendre.py ................................ [ 95%] 327s ...... [ 95%] 327s ../../polynomial/tests/test_polynomial.py .............................. [ 95%] 327s ..... [ 95%] 327s ../../polynomial/tests/test_polyutils.py ......... [ 95%] 327s ../../polynomial/tests/test_printing.py ................................ [ 95%] 327s ........................................... [ 95%] 327s ../../polynomial/tests/test_symbol.py .................................. [ 95%] 327s .................. [ 95%] 327s ../../random/tests/test_direct.py ................s................s.... [ 95%] 328s .............s.................s.................s.... [ 95%] 328s ../../random/tests/test_extending.py ss [ 95%] 328s ../../random/tests/test_generator_mt19937.py ........................... [ 95%] 328s ........................................................................ [ 96%] 328s ........................................................................ [ 96%] 328s ........................................................................ [ 96%] 328s .................................................................... [ 96%] 330s ../../random/tests/test_generator_mt19937_regressions.py ............... [ 96%] 330s [ 96%] 330s ../../random/tests/test_random.py ...................................... [ 96%] 330s ........................................................................ [ 97%] 330s ................................ [ 97%] 330s ../../random/tests/test_randomstate.py ................................. [ 97%] 330s ........................................................................ [ 97%] 332s ........................................................................ [ 97%] 332s ... [ 97%] 333s ../../random/tests/test_randomstate_regression.py ................... [ 97%] 334s ../../random/tests/test_regression.py ........... [ 97%] 334s ../../random/tests/test_seed_sequence.py .. [ 97%] 334s ../../random/tests/test_smoke.py .s..................................... [ 97%] 334s ........................................................................ [ 98%] 334s ........................................................................ [ 98%] 334s ........................................................................ [ 98%] 334s .....................................ss................................. [ 98%] 334s ........................................................................ [ 98%] 334s ........................................................................ [ 99%] 334s ........................................................................ [ 99%] 334s ..... [ 99%] 335s ../../testing/tests/test_utils.py ...................................... [ 99%] 335s ........................................................................ [ 99%] 340s ............................ [ 99%] 340s ../../tests/test__all__.py . [ 99%] 342s ../../tests/test_ctypeslib.py ....................... [ 99%] 342s ../../tests/test_lazyloading.py . [ 99%] 342s ../../tests/test_matlib.py ........ [ 99%] 342s ../../tests/test_numpy_config.py .... [ 99%] 342s ../../tests/test_numpy_version.py .. [ 99%] 342s ../../tests/test_public_api.py ............. [ 99%] 342s ../../tests/test_reloading.py ... [ 99%] 343s ../../tests/test_scripts.py . [ 99%] 343s ../../typing/tests/test_isfile.py . [ 99%] 343s ../../typing/tests/test_runtime.py .....................x... [100%] 343s 343s = 34052 passed, 1010 skipped, 2189 deselected, 27 xfailed, 1 xpassed in 104.63s (0:01:44) = 344s I: pybuild base:311: cd /tmp/autopkgtest.TgRL59/autopkgtest_tmp/build; python3.13 /tmp/autopkgtest.TgRL59/build.FUQ/src/runtests.py --no-build --verbose --pythonpath /tmp/autopkgtest.TgRL59/autopkgtest_tmp/build -- -k 'not (cython or test_all_modules_are_expected or test_impossible_feature_enable or test_deprecate_help_indentation or test_deprecate_preserve_whitespace or f2py or test_linear_interpolation_formula_symmetric)' 352s NumPy version 1.26.4 352s NumPy relaxed strides checking option: True 352s NumPy CPU features: VX* VXE* VXE2* 352s ============================= test session starts ============================== 352s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 352s rootdir: /tmp/autopkgtest.TgRL59/build.FUQ/src 352s configfile: pytest.ini 352s plugins: xdist-3.6.1, hypothesis-6.125.2, typeguard-4.4.1 352s collected 37279 items / 2189 deselected / 35090 selected 352s 354s ../../array_api/tests/test_array_object.py ........................ [ 0%] 354s ../../array_api/tests/test_creation_functions.py .............. [ 0%] 354s ../../array_api/tests/test_data_type_functions.py ..... [ 0%] 354s ../../array_api/tests/test_elementwise_functions.py .. [ 0%] 354s ../../array_api/tests/test_indexing_functions.py .... [ 0%] 354s ../../array_api/tests/test_manipulation_functions.py ... [ 0%] 354s ../../array_api/tests/test_set_functions.py .. [ 0%] 354s ../../array_api/tests/test_sorting_functions.py .... [ 0%] 354s ../../array_api/tests/test_validation.py ... [ 0%] 354s ../../compat/tests/test_compat.py . [ 0%] 354s ../../core/tests/test__exceptions.py ........... [ 0%] 354s ../../core/tests/test_abc.py ..... [ 0%] 354s ../../core/tests/test_api.py ........................................... [ 0%] 354s ................. [ 0%] 354s ../../core/tests/test_argparse.py ..... [ 0%] 354s ../../core/tests/test_array_coercion.py ................................ [ 0%] 355s .............................x.......................................... [ 0%] 355s ........................................................................ [ 0%] 355s ................................ [ 1%] 355s ../../core/tests/test_arraymethod.py ................................... [ 1%] 355s ..... [ 1%] 355s ../../core/tests/test_arrayprint.py ..x................................. [ 1%] 355s ........................... [ 1%] 355s ../../core/tests/test_casting_floatingpoint_errors.py .................. [ 1%] 355s ........................................................................ [ 1%] 355s ........................................................................ [ 1%] 355s ..................... [ 1%] 355s ../../core/tests/test_casting_unittests.py ............................. [ 1%] 356s ........................................................................ [ 2%] 356s ........................................................................ [ 2%] 356s ........................................................................ [ 2%] 356s ...................................................................... [ 2%] 356s ../../core/tests/test_conversion_utils.py ........................... [ 2%] 356s ../../core/tests/test_cpu_dispatcher.py . [ 2%] 356s ../../core/tests/test_cpu_features.py .....sss.s [ 2%] 356s ../../core/tests/test_custom_dtypes.py ................................. [ 2%] 356s .. [ 2%] 356s ../../core/tests/test_datetime.py ...................................... [ 3%] 356s ........................................................................ [ 3%] 357s ........................................................................ [ 3%] 357s .................................................x..........x..x........ [ 3%] 357s ..x.... [ 3%] 357s ../../core/tests/test_defchararray.py .................................. [ 3%] 357s ....................................................... [ 3%] 357s ../../core/tests/test_deprecations.py .................................. [ 4%] 357s ........................................................................ [ 4%] 357s ................. [ 4%] 357s ../../core/tests/test_dlpack.py ........................................ [ 4%] 357s ................... [ 4%] 357s ../../core/tests/test_dtype.py ......................................... [ 4%] 357s ......................................................ssssssssssssssssss [ 4%] 357s ssssssssssssssssss...................................................... [ 4%] 357s ........................................................................ [ 5%] 357s ........................................................................ [ 5%] 357s ........................................................................ [ 5%] 357s ........................................................................ [ 5%] 357s ........................................................................ [ 5%] 358s ........................................................................ [ 6%] 358s ........................................................................ [ 6%] 358s ........................................................................ [ 6%] 358s ........................................................................ [ 6%] 358s ........................................................................ [ 7%] 358s ........................................................................ [ 7%] 358s ....................................................... [ 7%] 359s ../../core/tests/test_einsum.py ........................................ [ 7%] 359s ........................... [ 7%] 359s ../../core/tests/test_errstate.py .... [ 7%] 359s ../../core/tests/test_extint128.py ............ [ 7%] 359s ../../core/tests/test_function_base.py ................................. [ 7%] 359s .... [ 7%] 360s ../../core/tests/test_getlimits.py ................ [ 7%] 360s ../../core/tests/test_half.py ..................................... [ 7%] 360s ../../core/tests/test_hashtable.py ......... [ 7%] 360s ../../core/tests/test_indexerrors.py ........ [ 7%] 360s ../../core/tests/test_indexing.py ...................................... [ 8%] 360s ............................................. [ 8%] 360s ../../core/tests/test_item_selection.py ................................ [ 8%] 360s ........................................................................ [ 8%] 360s ........................................................................ [ 8%] 360s ........................................................................ [ 8%] 360s .................. [ 8%] 361s ../../core/tests/test_limited_api.py . [ 8%] 361s ../../core/tests/test_longdouble.py ....................ssssssssss....s. [ 9%] 361s [ 9%] 361s ../../core/tests/test_machar.py . [ 9%] 363s ../../core/tests/test_mem_overlap.py .................. [ 9%] 363s ../../core/tests/test_mem_policy.py ssssssssss [ 9%] 363s ../../core/tests/test_memmap.py ................... [ 9%] 363s ../../core/tests/test_multiarray.py .................................... [ 9%] 363s ........................................................................ [ 9%] 364s .............................xx......................................... [ 9%] 364s ........................................................................ [ 9%] 364s ........................................................................ [ 10%] 366s .................................................s...................... [ 10%] 366s ........................................................................ [ 10%] 366s ........................................................................ [ 10%] 366s ........................................................................ [ 10%] 366s ........................................................................ [ 11%] 367s ........................................................................ [ 11%] 367s ........................................................................ [ 11%] 367s ...........s.s.s.s.s.s.....s.s.....s.s.s.s.......s.s.s.s................ [ 11%] 368s ........................................................................ [ 11%] 368s ........................................................................ [ 12%] 368s ........................................................................ [ 12%] 368s ........................................................................ [ 12%] 368s ........................................................................ [ 12%] 368s ........................................................................ [ 12%] 371s ........................................................................ [ 13%] 372s ........................................................................ [ 13%] 372s ........................................................................ [ 13%] 372s ........................................................................ [ 13%] 372s ........................................................................ [ 13%] 373s ........................................................................ [ 14%] 373s ........................................................................ [ 14%] 373s ........................................................................ [ 14%] 373s ........................................................................ [ 14%] 373s ........................................................................ [ 15%] 373s ........................................................................ [ 15%] 373s ........................................................................ [ 15%] 373s ........................................................................ [ 15%] 373s ........................................................................ [ 15%] 373s ........................................................................ [ 16%] 373s ........................................................................ [ 16%] 373s ........................................................................ [ 16%] 373s ........................................................................ [ 16%] 373s ........................................................................ [ 16%] 373s ........................................................................ [ 17%] 374s ........................................................................ [ 17%] 374s ........................................................................ [ 17%] 374s ........................................................................ [ 17%] 374s ........................................................................ [ 17%] 374s ........................................................................ [ 18%] 374s ........................................................................ [ 18%] 374s ........................................................................ [ 18%] 374s ........................................................................ [ 18%] 374s ........................................................................ [ 18%] 374s ........................................................................ [ 19%] 374s ........................................................................ [ 19%] 374s ........................................................................ [ 19%] 374s ........................................................................ [ 19%] 374s ........................................................................ [ 19%] 374s ........................................................................ [ 20%] 374s ........................................................................ [ 20%] 374s ........................................................................ [ 20%] 374s ........................................................................ [ 20%] 375s ........................................................................ [ 20%] 375s ........................................................................ [ 21%] 375s ........................................................................ [ 21%] 375s ........................................................................ [ 21%] 375s ........................................................................ [ 21%] 375s ........................................................................ [ 21%] 375s ........................................................................ [ 22%] 375s ........................................................................ [ 22%] 375s ........................................................................ [ 22%] 375s ........................................................................ [ 22%] 375s ........................................................................ [ 23%] 375s ........................................................................ [ 23%] 375s ........................................................................ [ 23%] 375s ........................................................................ [ 23%] 375s ........................................................................ [ 23%] 375s ........................................................................ [ 24%] 375s ........................................................................ [ 24%] 375s ........................................................................ [ 24%] 375s ........................................................................ [ 24%] 376s ........................................................................ [ 24%] 376s ........................................................................ [ 25%] 376s ........................................................................ [ 25%] 376s ........................................................................ [ 25%] 376s ........................................................................ [ 25%] 376s ........................................................................ [ 25%] 376s ........................................................................ [ 26%] 376s ........................................................................ [ 26%] 376s ........................................................................ [ 26%] 376s ........................................................................ [ 26%] 376s ........................................................................ [ 26%] 376s ........................................................................ [ 27%] 376s ........................................................................ [ 27%] 376s ........................................................................ [ 27%] 376s ........................................................................ [ 27%] 376s ........................................................................ [ 27%] 377s ........................................................................ [ 28%] 377s ........................................................................ [ 28%] 377s ........................................................................ [ 28%] 377s ........................................................................ [ 28%] 377s ........................................................................ [ 28%] 377s ........................................................................ [ 29%] 377s ........................................................................ [ 29%] 377s ........................................................................ [ 29%] 377s ........................................................................ [ 29%] 377s ........................................................................ [ 29%] 377s ........................................................................ [ 30%] 377s ........................................................................ [ 30%] 377s ........................................................................ [ 30%] 378s ........................................................................ [ 30%] 378s ........................................................................ [ 31%] 378s ........................................................................ [ 31%] 378s ........................................................................ [ 31%] 378s ........................................................................ [ 31%] 378s ........................................................................ [ 31%] 378s ........................................................................ [ 32%] 378s ........................................................................ [ 32%] 378s ........................................................................ [ 32%] 378s ........................................................................ [ 32%] 378s ........................................................................ [ 32%] 378s ........................................................................ [ 33%] 378s ........................................................................ [ 33%] 379s ........................................................................ [ 33%] 379s ........................................................................ [ 33%] 379s ........................................................................ [ 33%] 379s ........................................................................ [ 34%] 379s ........................................................................ [ 34%] 379s ........................................................................ [ 34%] 379s ........................................................................ [ 34%] 379s ........................................................................ [ 34%] 379s ........................................................................ [ 35%] 379s ........................................................................ [ 35%] 379s ...................................... [ 35%] 379s ../../core/tests/test_nditer.py ........................................ [ 35%] 379s ........................................................................ [ 35%] 380s ........................................................................ [ 35%] 380s ........................................................................ [ 36%] 380s ........................................................................ [ 36%] 380s ........................................................................ [ 36%] 380s ........................................................................ [ 36%] 380s ........................................................................ [ 36%] 380s ........................................................................ [ 37%] 380s ........................................................................ [ 37%] 380s ........................................................................ [ 37%] 381s .......................................... [ 37%] 381s ../../core/tests/test_nep50_promotions.py ................s............. [ 37%] 381s .. [ 37%] 381s ../../core/tests/test_numeric.py ..............................x...x.... [ 37%] 381s ........................................................................ [ 38%] 381s ........................................................................ [ 38%] 381s .................................................................X...... [ 38%] 382s ........................................................................ [ 38%] 382s .......................... [ 38%] 382s ../../core/tests/test_numerictypes.py .................................. [ 38%] 382s ........................................................................ [ 39%] 382s ............ [ 39%] 382s ../../core/tests/test_numpy_2_0_compat.py ... [ 39%] 382s ../../core/tests/test_overrides.py ..................................... [ 39%] 382s ........................................................................ [ 39%] 382s ............................. [ 39%] 382s ../../core/tests/test_print.py ...................sss [ 39%] 382s ../../core/tests/test_protocols.py .. [ 39%] 382s ../../core/tests/test_records.py ....................................... [ 39%] 382s .. [ 39%] 382s ../../core/tests/test_regression.py .................................... [ 39%] 382s ........................................................................ [ 40%] 382s ......................................................s................. [ 40%] 384s ........................................................................ [ 40%] 384s ...............s........................................................ [ 40%] 384s ........................................................................ [ 40%] 384s ................... [ 40%] 384s ../../core/tests/test_scalar_ctors.py .................................. [ 41%] 384s ........................................................................ [ 41%] 384s ........................................................ [ 41%] 384s ../../core/tests/test_scalar_methods.py ................................ [ 41%] 384s ........................................................................ [ 41%] 384s ....... [ 41%] 384s ../../core/tests/test_scalarbuffer.py .................................. [ 41%] 384s ............................................ [ 41%] 384s ../../core/tests/test_scalarinherit.py ..... [ 41%] 385s ../../core/tests/test_scalarmath.py .........................s.......... [ 42%] 386s ........................................................................ [ 42%] 386s ........................................................................ [ 42%] 386s ............................ssssss...................................... [ 42%] 386s ........................................................................ [ 42%] 386s ............ [ 42%] 386s ../../core/tests/test_scalarprint.py .....s [ 42%] 386s ../../core/tests/test_shape_base.py .................................... [ 43%] 386s ........................................................................ [ 43%] 386s ........................................................................ [ 43%] 386s .............................. [ 43%] 386s ../../core/tests/test_simd.py .......................................... [ 43%] 386s ..................................................................ssssss [ 43%] 386s ssssssssssssssssssssssssssssssssssss.................................... [ 44%] 386s ......s................................................................. [ 44%] 386s ........................................................................ [ 44%] 386s ........................................................................ [ 44%] 386s ........................................................................ [ 44%] 387s ........................................................................ [ 45%] 387s ........................................................ssssssssssssssss [ 45%] 387s sssssssssssssssssssssssssssssssssss..................................... [ 45%] 387s ........................................................................ [ 45%] 387s ........................................................................ [ 45%] 387s ........................................................................ [ 46%] 387s ........................................................................ [ 46%] 387s ........................................................................ [ 46%] 387s ........................................................................ [ 46%] 387s ........................................................................ [ 46%] 387s ........................................................................ [ 47%] 388s ........................................................................ [ 47%] 388s ........................................................................ [ 47%] 388s ........................................................................ [ 47%] 388s ........................................................................ [ 47%] 388s ........................................................................ [ 48%] 388s ........................................................................ [ 48%] 388s ........................................................................ [ 48%] 388s ........................................................................ [ 48%] 388s ........................................................................ [ 48%] 388s ........................................................................ [ 49%] 388s ........................................................................ [ 49%] 389s ......................................................ssssssssssssssssss [ 49%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 49%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 49%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 50%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 51%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 51%] 389s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 51%] 389s ssssssssssssssssssssssssssssssssssssss [ 51%] 389s ../../core/tests/test_simd_module.py ..................................s [ 51%] 389s . [ 51%] 391s ../../core/tests/test_strings.py ....................................... [ 51%] 394s ........................................................................ [ 51%] 394s ....................... [ 52%] 395s ../../core/tests/test_ufunc.py ......................................... [ 52%] 395s ........................................................................ [ 52%] 397s ........................................................................ [ 52%] 397s ........................................................................ [ 52%] 397s ........................................................................ [ 52%] 397s ........................................................................ [ 53%] 397s ........................................................................ [ 53%] 397s ........................................................................ [ 53%] 397s ........................................................................ [ 53%] 398s ........................................................................ [ 53%] 398s .....xxxxxxx.............. [ 54%] 398s ../../core/tests/test_umath.py ......................................... [ 54%] 398s ........................................................................ [ 54%] 398s ........................................................................ [ 54%] 398s ........................................................................ [ 54%] 399s ........................................................................ [ 54%] 399s ........................................................................ [ 55%] 399s ........................................................................ [ 55%] 399s ........................................................................ [ 55%] 399s ........................................................................ [ 55%] 399s ........................................................................ [ 56%] 400s ........................................................................ [ 56%] 400s ........................................................................ [ 56%] 400s ........................................................................ [ 56%] 400s ........................................................................ [ 56%] 400s ........................................................................ [ 57%] 400s ........................................................................ [ 57%] 400s ........................................................................ [ 57%] 400s ........................................................................ [ 57%] 400s ........................................................................ [ 57%] 400s ........................................................................ [ 58%] 400s ........................................................................ [ 58%] 400s ........................................................................ [ 58%] 400s ........................................................................ [ 58%] 400s ........................................................................ [ 58%] 400s ........................................................................ [ 59%] 400s ........................................................................ [ 59%] 400s ........................................................................ [ 59%] 400s ........................................................................ [ 59%] 401s ........................................................................ [ 59%] 401s ........................................................................ [ 60%] 401s ........................................................................ [ 60%] 401s ........................................................................ [ 60%] 401s ........................................................................ [ 60%] 401s ........................................................................ [ 60%] 401s ........................................................................ [ 61%] 401s ........................................................................ [ 61%] 401s ........................................................................ [ 61%] 401s ........................................................................ [ 61%] 401s ........................................................................ [ 61%] 401s ........................................................................ [ 62%] 401s ........................................................................ [ 62%] 401s ........................................................................ [ 62%] 401s ........................................................................ [ 62%] 401s ........................................................................ [ 62%] 401s ........................................................................ [ 63%] 401s ........................................................................ [ 63%] 401s ........................................................................ [ 63%] 402s ........................................................................ [ 63%] 402s ........................................................................ [ 64%] 402s ........................................................................ [ 64%] 402s ........................................................................ [ 64%] 402s ........................................................................ [ 64%] 402s ........................................................................ [ 64%] 402s ........................................................................ [ 65%] 402s ........................................................................ [ 65%] 402s ........................................................................ [ 65%] 403s ........................................................................ [ 65%] 403s ........................................................................ [ 65%] 403s ........................................................................ [ 66%] 404s ..................................s..................................... [ 66%] 404s ........................................................................ [ 66%] 404s .......................................................................s [ 66%] 404s sssssssssssss........................................................... [ 66%] 404s ..................................................................... [ 67%] 404s ../../core/tests/test_umath_accuracy.py s............................... [ 67%] 404s ......... [ 67%] 404s ../../core/tests/test_umath_complex.py ..s............s................. [ 67%] 404s ........................................................................ [ 67%] 404s ........................................................................ [ 67%] 405s ........................................................................ [ 67%] 405s ........................................................................ [ 68%] 405s ............ [ 68%] 405s ../../core/tests/test_unicode.py ....................................... [ 68%] 405s ..................................... [ 68%] 405s ../../fft/tests/test_helper.py ........ [ 68%] 405s ../../fft/tests/test_pocketfft.py ...................................... [ 68%] 405s .......................................... [ 68%] 405s ../../lib/tests/test__datasource.py .......................... [ 68%] 405s ../../lib/tests/test__iotools.py ........................ [ 68%] 405s ../../lib/tests/test__version.py ........ [ 68%] 405s ../../lib/tests/test_arraypad.py ....................................... [ 68%] 405s ........................................x............................... [ 69%] 405s ........................................................................ [ 69%] 406s ........................................................................ [ 69%] 406s ........................................................................ [ 69%] 406s ........................................................................ [ 69%] 406s ........................................................................ [ 70%] 406s ........................................................................ [ 70%] 406s .......................................... [ 70%] 406s ../../lib/tests/test_arraysetops.py .................................... [ 70%] 406s ...................................... [ 70%] 406s ../../lib/tests/test_arrayterator.py . [ 70%] 406s ../../lib/tests/test_financial_expired.py . [ 70%] 408s ../../lib/tests/test_format.py ...........s............................. [ 70%] 408s [ 70%] 408s ../../lib/tests/test_function_base.py .................................. [ 70%] 408s ........................................................................ [ 71%] 413s ............................................................x........... [ 71%] 413s ........................................................................ [ 71%] 413s ........................................................................ [ 71%] 413s ........................................................................ [ 71%] 413s ........................................................................ [ 72%] 413s ........................................................................ [ 72%] 413s ........................................................................ [ 72%] 413s ........................................................................ [ 72%] 413s ........................................................................ [ 72%] 414s ........................................................................ [ 73%] 414s ........................................................................ [ 73%] 414s ........................... [ 73%] 414s ../../lib/tests/test_histograms.py .........................s........... [ 73%] 414s ...................... [ 73%] 414s ../../lib/tests/test_index_tricks.py ................................... [ 73%] 414s ............ [ 73%] 415s ../../lib/tests/test_io.py ............................................. [ 73%] 415s ........................................................................ [ 74%] 415s ........................................................................ [ 74%] 417s ..................... [ 74%] 417s ../../lib/tests/test_loadtxt.py ........................................ [ 74%] 417s ........................................................................ [ 74%] 417s ........................................................................ [ 74%] 417s ..............................x...x.............s.....x................. [ 75%] 418s ......................... [ 75%] 418s ../../lib/tests/test_mixins.py ........... [ 75%] 418s ../../lib/tests/test_nanfunctions.py .....................ss.ss.ss.ss.ss [ 75%] 418s .ss.ss..........................................ss.ss.ss.ss.ss.ss.ss.... [ 75%] 418s ........................................................................ [ 75%] 418s ........................................................................ [ 75%] 418s ........................................................................ [ 76%] 418s ........................................................................ [ 76%] 418s ........................................................................ [ 76%] 418s ........................................................................ [ 76%] 418s ........................................................................ [ 76%] 418s ........................................................................ [ 77%] 418s ........................................................................ [ 77%] 418s ....................................ss.ss.ss.ss.ss.ss.ss................ [ 77%] 418s ...........................ss.ss.ss.ss.ss.ss.ss......................... [ 77%] 419s ..............ss.ss.ss.ss.ss.ss.ss...................................... [ 77%] 419s ........................................................................ [ 78%] 419s .........ss.ss.ss.ss.....................ss.ss.ss.ss................. [ 78%] 420s ../../lib/tests/test_packbits.py ....................................... [ 78%] 420s ........................................................................ [ 78%] 420s ........................................................................ [ 78%] 420s ........................................................................ [ 79%] 420s ......................... [ 79%] 420s ../../lib/tests/test_polynomial.py ..................................... [ 79%] 420s [ 79%] 420s ../../lib/tests/test_recfunctions.py ................................... [ 79%] 420s ................ [ 79%] 420s ../../lib/tests/test_regression.py ........................... [ 79%] 420s ../../lib/tests/test_shape_base.py ..................................... [ 79%] 420s ....................................... [ 79%] 420s ../../lib/tests/test_stride_tricks.py .......................... [ 79%] 420s ../../lib/tests/test_twodim_base.py .................................... [ 79%] 420s . [ 79%] 420s ../../lib/tests/test_type_check.py ..................................... [ 79%] 420s ............... [ 79%] 420s ../../lib/tests/test_ufunclike.py ..... [ 80%] 421s ../../lib/tests/test_utils.py ................. [ 80%] 421s ../../linalg/tests/test_deprecations.py . [ 80%] 421s ../../linalg/tests/test_linalg.py ...................................... [ 80%] 422s ........x............................................................... [ 80%] 422s ........................................................................ [ 80%] 422s ........................................................................ [ 80%] 422s ........................................................................ [ 80%] 422s ...........................s........................sx [ 81%] 422s ../../linalg/tests/test_regression.py ......... [ 81%] 422s ../../ma/tests/test_core.py ............................................ [ 81%] 423s ........................................................................ [ 81%] 423s ........................................................................ [ 81%] 423s ........................................................................ [ 81%] 423s ........................................................................ [ 82%] 423s ........................................................................ [ 82%] 423s ........................................................................ [ 82%] 423s ........................................................................ [ 82%] 423s ........................................................................ [ 82%] 424s ........................................................................ [ 83%] 424s ........................................................................ [ 83%] 424s ........................................................................ [ 83%] 424s ........................................................................ [ 83%] 424s ........................................................................ [ 83%] 424s ........................................................................ [ 84%] 424s ........................................................................ [ 84%] 424s ........................................................................ [ 84%] 424s ........................................................................ [ 84%] 424s ........................................................................ [ 84%] 425s ........................................................................ [ 85%] 425s ........................................................................ [ 85%] 425s ........................................................................ [ 85%] 425s ........................................................................ [ 85%] 425s ........................................................................ [ 86%] 425s ........................................................................ [ 86%] 425s ........................................................................ [ 86%] 425s ........................................................................ [ 86%] 425s ........................................................................ [ 86%] 426s ........................................................................ [ 87%] 426s ........................................................................ [ 87%] 426s ........................................................................ [ 87%] 426s ........................................................................ [ 87%] 426s ........................................................................ [ 87%] 426s ........................................................................ [ 88%] 426s ........................................................................ [ 88%] 430s ........................................................................ [ 88%] 430s ........................................................................ [ 88%] 430s ........................................................................ [ 88%] 430s ........................................................................ [ 89%] 430s ........................................................................ [ 89%] 430s ........................................................................ [ 89%] 430s ........................................................................ [ 89%] 430s ........................................................................ [ 89%] 430s ........................................................................ [ 90%] 430s ........................................................................ [ 90%] 430s ........................................................................ [ 90%] 430s ........................................................................ [ 90%] 430s ........................................................................ [ 90%] 430s ........................................................................ [ 91%] 430s ........................................................................ [ 91%] 430s ........................................................................ [ 91%] 430s ........................................................................ [ 91%] 430s ................................................................xx...... [ 91%] 430s ........................................................................ [ 92%] 430s ........................................................................ [ 92%] 430s ........................................................................ [ 92%] 430s ........................................................................ [ 92%] 430s ............. [ 92%] 430s ../../ma/tests/test_deprecations.py ..... [ 92%] 430s ../../ma/tests/test_extras.py .......................................... [ 92%] 430s ......................................................... [ 93%] 430s ../../ma/tests/test_mrecords.py ........................ [ 93%] 430s ../../ma/tests/test_old_ma.py ......................................... [ 93%] 430s ../../ma/tests/test_regression.py .............. [ 93%] 430s ../../ma/tests/test_subclassing.py ................ [ 93%] 430s ../../matrixlib/tests/test_defmatrix.py ................................ [ 93%] 430s ........... [ 93%] 430s ../../matrixlib/tests/test_interaction.py ....................... [ 93%] 430s ../../matrixlib/tests/test_masked_matrix.py .............. [ 93%] 430s ../../matrixlib/tests/test_matrix_linalg.py ............................ [ 93%] 430s ........................................................................ [ 93%] 430s .. [ 93%] 430s ../../matrixlib/tests/test_multiarray.py .. [ 93%] 430s ../../matrixlib/tests/test_numeric.py .. [ 93%] 430s ../../matrixlib/tests/test_regression.py .... [ 93%] 430s ../../polynomial/tests/test_chebyshev.py ............................... [ 94%] 430s .......... [ 94%] 430s ../../polynomial/tests/test_classes.py ................................. [ 94%] 430s ........................................................................ [ 94%] 430s ........................................................................ [ 94%] 430s ............................................................ [ 94%] 430s ../../polynomial/tests/test_hermite.py ................................. [ 94%] 430s . [ 94%] 430s ../../polynomial/tests/test_hermite_e.py ............................... [ 94%] 430s ... [ 94%] 430s ../../polynomial/tests/test_laguerre.py ................................ [ 95%] 430s .. [ 95%] 430s ../../polynomial/tests/test_legendre.py ................................ [ 95%] 431s ...... [ 95%] 431s ../../polynomial/tests/test_polynomial.py .............................. [ 95%] 431s ..... [ 95%] 431s ../../polynomial/tests/test_polyutils.py ......... [ 95%] 431s ../../polynomial/tests/test_printing.py ................................ [ 95%] 431s ........................................... [ 95%] 431s ../../polynomial/tests/test_symbol.py .................................. [ 95%] 431s .................. [ 95%] 431s ../../random/tests/test_direct.py ................s................s.... [ 95%] 431s .............s.................s.................s.... [ 95%] 431s ../../random/tests/test_extending.py ss [ 95%] 431s ../../random/tests/test_generator_mt19937.py ........................... [ 95%] 431s ........................................................................ [ 96%] 431s ........................................................................ [ 96%] 432s ........................................................................ [ 96%] 432s .................................................................... [ 96%] 433s ../../random/tests/test_generator_mt19937_regressions.py ............... [ 96%] 433s [ 96%] 433s ../../random/tests/test_random.py ...................................... [ 96%] 433s ........................................................................ [ 97%] 433s ................................ [ 97%] 433s ../../random/tests/test_randomstate.py ................................. [ 97%] 433s ........................................................................ [ 97%] 435s ........................................................................ [ 97%] 435s ... [ 97%] 436s ../../random/tests/test_randomstate_regression.py ................... [ 97%] 437s ../../random/tests/test_regression.py ........... [ 97%] 437s ../../random/tests/test_seed_sequence.py .. [ 97%] 437s ../../random/tests/test_smoke.py .s..................................... [ 97%] 437s ........................................................................ [ 98%] 437s ........................................................................ [ 98%] 438s ........................................................................ [ 98%] 438s .....................................ss................................. [ 98%] 438s ........................................................................ [ 98%] 438s ........................................................................ [ 99%] 438s ........................................................................ [ 99%] 438s ..... [ 99%] 438s ../../testing/tests/test_utils.py ...................................... [ 99%] 438s ........................................................................ [ 99%] 444s ............................ [ 99%] 444s ../../tests/test__all__.py . [ 99%] 446s ../../tests/test_ctypeslib.py ....................... [ 99%] 446s ../../tests/test_lazyloading.py . [ 99%] 446s ../../tests/test_matlib.py ........ [ 99%] 446s ../../tests/test_numpy_config.py .... [ 99%] 446s ../../tests/test_numpy_version.py .. [ 99%] 446s ../../tests/test_public_api.py ............. [ 99%] 446s ../../tests/test_reloading.py ... [ 99%] 447s ../../tests/test_scripts.py . [ 99%] 447s ../../typing/tests/test_isfile.py . [ 99%] 447s ../../typing/tests/test_runtime.py .....................x... [100%] 447s 447s = 34052 passed, 1010 skipped, 2189 deselected, 27 xfailed, 1 xpassed in 102.02s (0:01:42) = 449s /tmp/autopkgtest.TgRL59/wrapper.sh: checking for leaked background processes... 449s /tmp/autopkgtest.TgRL59/wrapper.sh: waiting for tee/cat subprocesses... 449s /tmp/autopkgtest.TgRL59/wrapper.sh: cleaning up... 449s /tmp/autopkgtest.TgRL59/wrapper.sh: Exit status: 0 449s autopkgtest: DBG: testbed command exited with code 0 449s autopkgtest [12:27:08]: test pybuild-autopkgtest: -----------------------] 449s autopkgtest: DBG: testbed executing test finished with exit status 0 449s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stdout /tmp/autopkgtest-work.wws_kge9/out/pybuild-autopkgtest-stdout 450s autopkgtest: DBG: got reply from testbed: ok 450s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-stderr /tmp/autopkgtest-work.wws_kge9/out/pybuild-autopkgtest-stderr 450s autopkgtest: DBG: got reply from testbed: ok 450s pybuild-autopkgtest PASS 450s autopkgtest [12:27:09]: test pybuild-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 450s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TgRL59/pybuild-autopkgtest-artifacts/ /tmp/autopkgtest-work.wws_kge9/out/artifacts/ 450s autopkgtest: DBG: got reply from testbed: ok 450s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TgRL59/pybuild-autopkgtest-artifacts', '/tmp/autopkgtest.TgRL59/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 450s autopkgtest [12:27:09]: @@@@@@@@@@@@@@@@@@@@ summary 450s pybuild-autopkgtest PASS 450s autopkgtest: DBG: testbed stop 450s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.TgRL59 450s autopkgtest: DBG: sending command to testbed: close 467s autopkgtest: DBG: got reply from testbed: ok 467s autopkgtest: DBG: sending command to testbed: quit 467s nova [W] Using flock in prodstack6-s390x 467s flock: timeout while waiting to get lock 467s Creating nova instance adt-plucky-s390x-numpy-20250219-121939-juju-7f2275-prod-proposed-migration-environment-15-8d723ae9-b18c-440a-aabd-b1c30764ae32 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 467s nova [W] Timed out waiting for 3a7898f5-eefc-4fe2-ad40-791cd013c2c6 to get deleted.