0s autopkgtest: DBG: testbed init 0s autopkgtest [08:10:01]: starting date and time: 2025-02-19 08:10:01+0000 0s autopkgtest [08:10:01]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [08:10:01]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.6nmnu1s5/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:numpy --apt-upgrade scipy --debug --timeout-short=300 --timeout-copy=20000 --timeout-test=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-big-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-17.secgroup --name adt-plucky-s390x-scipy-20250219-081001-juju-7f2275-prod-proposed-migration-environment-15-4e78de0b-a588-44f7-8d55-c868ce18e50c --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/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.3LpQ7v 96s autopkgtest: DBG: sending command to testbed: print-execute-command 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.dj2ltg85/runcmd 96s autopkgtest: DBG: sending command to testbed: capabilities 96s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine suggested-normal-user=ubuntu reboot revert-full-system root-on-testbed 96s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.3LpQ7v/wrapper.sh 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/wrapper.sh'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [08:11:38]: testbed dpkg architecture: s390x 97s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [08:11:38]: testbed apt version: 2.9.30 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed has eatmydata 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [08:11:38]: @@@@@@@@@@@@@@@@@@@@ test bed setup 97s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [08:11:39]: testbed release detected to be: None 98s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT source: Types: deb deb-src 98s URIs: http://ftpmaster.internal/ubuntu/ 98s Suites: plucky-proposed 98s Components: main restricted universe multiverse 98s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 98s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 98s Package: * 98s Pin: release plucky-proposed 98s Pin-Priority: 500 98s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [08:11:39]: updating testbed package index (apt update) 98s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 99s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 99s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 99s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 99s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 99s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 99s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 99s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 99s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 99s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 99s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 99s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 99s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 99s Fetched 1651 kB in 1s (1523 kB/s) 100s Reading package lists... 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 100s Package: * 100s Pin: release plucky-proposed 100s Pin-Priority: 100 100s 100s Package: src:glibc:any src:numpy:any 100s Pin: release plucky-proposed 100s Pin-Priority: 995 100s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:numpy:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s 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.3LpQ7v/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 101s + lsb_release --codename --short 101s + RELEASE=plucky 101s + cat 101s + [ plucky != trusty ] 101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s Calculating upgrade... 101s The following packages were automatically installed and are no longer required: 101s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 101s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 101s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 101s linux-tools-6.11.0-8-generic 101s Use 'sudo apt autoremove' to remove them. 101s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 101s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 101s + /usr/lib/apt/apt-helper analyze-pattern ?true 101s + uname -r 101s + sed s/\./\\./g 101s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 101s + apt list ?obsolete 101s + tail -n+2 101s + cut -d/ -f1 101s + grep -v ^linux-.*6\.12\.0-15-generic.* 101s + true 101s + obsolete_pkgs= 101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s The following packages will be REMOVED: 101s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 101s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 101s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 101s linux-tools-6.11.0-8-generic* 102s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 102s After this operation, 167 MB disk space will be freed. 102s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 102s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 102s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 102s Removing libpython3.12t64:s390x (3.12.9-1) ... 102s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 102s Removing libnsl2:s390x (1.3.0-3build3) ... 102s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 102s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 102s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 103s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 103s Processing triggers for libc-bin (2.40-4ubuntu1) ... 103s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 103s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 103s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 103s + grep -q trusty /etc/lsb-release 103s + [ ! -d /usr/share/doc/unattended-upgrades ] 103s + [ ! -d /usr/share/doc/lxd ] 103s + [ ! -d /usr/share/doc/lxd-client ] 103s + [ ! -d /usr/share/doc/snapd ] 103s + type iptables 103s + cat 103s + chmod 755 /etc/rc.local 103s + . /etc/rc.local 103s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 103s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 103s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 103s + uname -m 103s + [ s390x = ppc64le ] 103s + [ -d /run/systemd/system ] 103s + systemd-detect-virt --quiet --vm 103s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 103s + cat 103s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 103s + echo COMPRESS=lz4 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [08:11:44]: upgrading testbed (apt dist-upgrade and autopurge) 103s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 103s Reading package lists... 103s Building dependency tree... 103s Reading state information... 103s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 103s Starting 2 pkgProblemResolver with broken count: 0 103s Done 104s Entering ResolveByKeep 104s 104s The following packages will be upgraded: 104s libc-bin libc-dev-bin libc6 libc6-dev locales 104s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 104s Need to get 9512 kB of archives. 104s After this operation, 288 kB of additional disk space will be used. 104s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 104s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 104s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 105s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 105s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 105s Preconfiguring packages ... 105s Fetched 9512 kB in 1s (9511 kB/s) 105s (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 ... 55928 files and directories currently installed.) 105s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 105s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 105s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 105s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 105s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 105s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 105s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 105s Checking for services that may need to be restarted... 105s Checking init scripts... 105s Checking for services that may need to be restarted... 105s Checking init scripts... 105s Stopping some services possibly affected by the upgrade (will be restarted later): 105s cron: stopping...done. 105s 105s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 106s Setting up libc6:s390x (2.41-1ubuntu1) ... 106s Checking for services that may need to be restarted... 106s Checking init scripts... 106s Restarting services possibly affected by the upgrade: 106s cron: restarting...done. 106s 106s Services restarted successfully. 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 106s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 106s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 106s Setting up libc-bin (2.41-1ubuntu1) ... 106s Setting up locales (2.41-1ubuntu1) ... 106s Installing new version of config file /etc/locale.alias ... 106s Generating locales (this might take a while)... 107s en_US.UTF-8... done 107s Generation complete. 107s Setting up libc-dev-bin (2.41-1ubuntu1) ... 107s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 107s Processing triggers for man-db (2.13.0-1) ... 108s Processing triggers for systemd (257.2-3ubuntu1) ... 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 109s Reading package lists... 109s Building dependency tree... 109s Reading state information... 109s Starting pkgProblemResolver with broken count: 0 109s Starting 2 pkgProblemResolver with broken count: 0 109s Done 109s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 109s autopkgtest: DBG: testbed command exited with code 0 109s 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.3LpQ7v/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 109s autopkgtest: DBG: testbed command exited with code 1 109s autopkgtest [08:11:50]: rebooting testbed after setup commands that affected boot 109s autopkgtest: DBG: sending command to testbed: reboot 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 126s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 127s autopkgtest: DBG: got reply from testbed: ok 127s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 128s autopkgtest: DBG: got reply from testbed: ok 128s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest [08:12:09]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 128s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/testbed-packages"], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/testbed-packages /tmp/autopkgtest-work.6nmnu1s5/out/testbed-packages 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 130s autopkgtest: DBG: got reply from testbed: ok 130s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: Binaries: initialising 130s autopkgtest [08:12:11]: @@@@@@@@@@@@@@@@@@@@ apt-source scipy 130s autopkgtest: DBG: blame += scipy 130s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 130s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'scipy'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-scipy$'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-scipy=1.14.1-4ubuntu1'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-scipy-doc$'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-scipy-doc=1.14.1-4ubuntu1'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: install_deps: deps_new=[] 131s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s 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.3LpQ7v/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source scipy=1.14.1-4ubuntu1 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 scipy_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1'] 132s + cd / 132s + mktemp -d /tmp/autopkgtest.3LpQ7v/build.XXX 132s + builddir=/tmp/autopkgtest.3LpQ7v/build.Ce6 132s + cd /tmp/autopkgtest.3LpQ7v/build.Ce6 132s + apt-get source -d -q --only-source scipy=1.14.1-4ubuntu1 135s + OUT=Reading package lists... 135s NOTICE: 'scipy' packaging is maintained in the 'Git' version control system at: 135s https://salsa.debian.org/python-team/packages/scipy.git 135s Please use: 135s git clone https://salsa.debian.org/python-team/packages/scipy.git 135s to retrieve the latest (possibly unreleased) updates to the package. 135s Need to get 59.7 MB of source archives. 135s Get:1 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (dsc) [3503 B] 135s Get:2 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (tar) [33.1 MB] 135s Get:3 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (tar) [26.5 MB] 135s Get:4 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (diff) [113 kB] 135s Fetched 59.7 MB in 3s (17.7 MB/s) 135s Download complete and in download only mode 135s + [ -n ] 135s + echo Reading package lists... 135s NOTICE: 'scipy' packaging is maintained in the 'Git' version control system at: 135s https://salsa.debian.org/python-team/packages/scipy.git 135s Please use: 135s git clone https://salsa.debian.org/python-team/packages/scipy.git 135s to retrieve the latest (possibly unreleased) updates to the package. 135s Need to get 59.7 MB of source archives. 135s Get:1 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (dsc) [3503 B] 135s Get:2 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (tar) [33.1 MB] 135s Get:3 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (tar) [26.5 MB] 135s Get:4 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (diff) [113 kB] 135s Fetched 59.7 MB in 3s (17.7 MB/s) 135s Download complete and in download only mode 135s + grep ^Get: 135s Get:1 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (dsc) [3503 B] 135s Get:2 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (tar) [33.1 MB] 135s Get:3 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (tar) [26.5 MB] 135s Get:4 http://ftpmaster.internal/ubuntu plucky/universe scipy 1.14.1-4ubuntu1 (diff) [113 kB] 135s + dpkg-source -x scipy_1.14.1-4ubuntu1.dsc src 135s gpgv: Signature made Wed Feb 5 13:13:12 2025 UTC 135s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 135s gpgv: Can't check signature: No public key 135s dpkg-source: warning: cannot verify inline signature for ./scipy_1.14.1-4ubuntu1.dsc: no acceptable signature found 137s + chmod -R a+rX . 137s + cd src/. 137s + pwd 137s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [08:12:18]: testing package scipy version 1.14.1-4ubuntu1 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/ /tmp/autopkgtest-work.6nmnu1s5/out/pkg/debian/ 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: processing dependency build-essential 137s autopkgtest: DBG: processing dependency python3-scipy 137s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 137s autopkgtest: DBG: processing dependency python3-pytest 137s autopkgtest: DBG: processing dependency python3-all 137s autopkgtest: DBG: processing dependency python3-all-dev 137s autopkgtest: DBG: processing dependency python3-doit 137s autopkgtest: DBG: processing dependency python3-pil 137s autopkgtest: DBG: processing dependency python3-pooch 137s autopkgtest: DBG: processing dependency python3-hypothesis 137s autopkgtest: DBG: Test defined: name python3 path debian/tests/python3 command "None" restrictions [] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency python3-scipy 138s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency python3-pytest 138s autopkgtest: DBG: processing dependency python3-all 138s autopkgtest: DBG: processing dependency python3-all-dev 138s autopkgtest: DBG: processing dependency python3-doit 138s autopkgtest: DBG: processing dependency python3-pil 138s autopkgtest: DBG: processing dependency python3-pooch 138s autopkgtest: DBG: processing dependency python3-hypothesis 138s autopkgtest: DBG: Test defined: name python3-network path debian/tests/python3-network command "None" restrictions ['needs-internet'] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 138s autopkgtest: DBG: processing dependency python3-scipy 138s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency python3-pytest 138s autopkgtest: DBG: processing dependency python3-all 138s autopkgtest: DBG: processing dependency python3-doit 138s autopkgtest: DBG: processing dependency python3-hypothesis 138s autopkgtest: DBG: Test defined: name python3-smoke path debian/tests/python3-smoke command "None" restrictions [] features [] depends ['python3-scipy', 'python3-pytest', 'python3-all', 'python3-doit', 'python3-hypothesis'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency python3-scipy 138s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency python3-pytest 138s autopkgtest: DBG: processing dependency python3 138s autopkgtest: DBG: processing dependency python3-doit 138s autopkgtest: DBG: processing dependency python3-hypothesis 138s autopkgtest: DBG: processing dependency libopenblas-dev 138s autopkgtest: DBG: Test defined: name openblas path debian/tests/openblas command "None" restrictions ['needs-root'] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libopenblas-dev'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency python3-scipy 138s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency python3-pytest 138s autopkgtest: DBG: processing dependency python3 138s autopkgtest: DBG: processing dependency python3-doit 138s autopkgtest: DBG: processing dependency python3-hypothesis 138s autopkgtest: DBG: processing dependency libblis-dev 138s autopkgtest: DBG: Test defined: name blis path debian/tests/blis command "None" restrictions ['needs-root'] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libblis-dev'] 138s autopkgtest [08:12:19]: build not needed 138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/build.Ce6/src/ /tmp/autopkgtest-work.6nmnu1s5/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency python3-scipy 146s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-all-dev 146s autopkgtest: DBG: processing dependency python3-doit 146s autopkgtest: DBG: processing dependency python3-pil 146s autopkgtest: DBG: processing dependency python3-pooch 146s autopkgtest: DBG: processing dependency python3-hypothesis 146s autopkgtest: DBG: Test defined: name python3 path debian/tests/python3 command "None" restrictions [] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency python3-scipy 146s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-all-dev 146s autopkgtest: DBG: processing dependency python3-doit 146s autopkgtest: DBG: processing dependency python3-pil 146s autopkgtest: DBG: processing dependency python3-pooch 146s autopkgtest: DBG: processing dependency python3-hypothesis 146s autopkgtest: DBG: Test defined: name python3-network path debian/tests/python3-network command "None" restrictions ['needs-internet'] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 146s autopkgtest: DBG: processing dependency python3-scipy 146s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-doit 146s autopkgtest: DBG: processing dependency python3-hypothesis 146s autopkgtest: DBG: Test defined: name python3-smoke path debian/tests/python3-smoke command "None" restrictions [] features [] depends ['python3-scipy', 'python3-pytest', 'python3-all', 'python3-doit', 'python3-hypothesis'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency python3-scipy 146s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: processing dependency python3 146s autopkgtest: DBG: processing dependency python3-doit 146s autopkgtest: DBG: processing dependency python3-hypothesis 146s autopkgtest: DBG: processing dependency libopenblas-dev 146s autopkgtest: DBG: Test defined: name openblas path debian/tests/openblas command "None" restrictions ['needs-root'] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libopenblas-dev'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency python3-scipy 146s autopkgtest: DBG: marked alternatives ['python3-scipy'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: processing dependency python3 146s autopkgtest: DBG: processing dependency python3-doit 146s autopkgtest: DBG: processing dependency python3-hypothesis 146s autopkgtest: DBG: processing dependency libblis-dev 146s autopkgtest: DBG: Test defined: name blis path debian/tests/blis command "None" restrictions ['needs-root'] features [] depends ['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libblis-dev'] 146s autopkgtest [08:12:27]: test python3: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 146s autopkgtest: DBG: install-deps: satisfying build-essential, python3-scipy, python3-pytest, python3-all, python3-all-dev, python3-doit, python3-pil, python3-pooch, python3-hypothesis 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', 'build-essential, python3-scipy, python3-pytest, python3-all, python3-all-dev, python3-doit, python3-pil, python3-pooch, python3-hypothesis'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 147s Starting pkgProblemResolver with broken count: 0 147s Starting 2 pkgProblemResolver with broken count: 0 147s Done 147s The following NEW packages will be installed: 147s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 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 libasan8 libblas3 libcc1-0 147s libdeflate0 libexpat1-dev libfreetype6 libgcc-14-dev libgfortran5 libgomp1 147s libgraphite2-3 libharfbuzz0b libimagequant0 libisl23 libitm1 libjbig0 147s libjpeg-turbo8 libjpeg8 libjs-jquery libjs-sphinxdoc libjs-underscore 147s liblapack3 liblbfgsb0 liblcms2-2 libmpc3 libnsl2 libopenjp2-7 147s libpython3-all-dev libpython3-dev libpython3.12-dev libpython3.12-minimal 147s libpython3.12-stdlib libpython3.12t64 libpython3.13-dev libraqm0 147s libsharpyuv0 libstdc++-14-dev libtiff6 libubsan1 libwebp7 libwebpdemux2 147s libwebpmux3 python3-all python3-all-dev python3-cloudpickle python3-dateutil 147s python3-decorator python3-dev python3-doit python3-hypothesis 147s python3-importlib-metadata python3-iniconfig python3-numpy python3-numpy-dev 147s python3-packaging python3-pil python3-platformdirs python3-pluggy 147s python3-pooch python3-pytest python3-scipy python3-sortedcontainers 147s python3.12 python3.12-dev python3.12-minimal python3.13-dev zlib1g-dev 147s 0 upgraded, 79 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 105 MB of archives. 147s After this operation, 418 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] 148s 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 libnsl2 s390x 1.3.0-3build3 [44.1 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 149s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 149s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 149s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 149s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 149s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 149s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 149s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 149s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 149s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 150s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 150s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 150s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 150s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 150s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 150s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 150s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 150s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 151s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 151s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 151s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 151s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 151s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 151s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 151s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-dev s390x 3.12.9-1 [5849 kB] 151s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-all-dev s390x 3.13.1-1~exp2 [922 B] 151s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 151s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 151s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 151s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 151s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 151s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 151s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 151s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 151s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 151s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 151s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-dev s390x 3.12.9-1 [504 kB] 151s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all-dev s390x 3.13.1-1~exp2 [918 B] 151s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cloudpickle all 3.1.1-1 [22.4 kB] 151s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 151s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-doit all 0.36.0-4 [70.2 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 152s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 152s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 152s Get:70 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy-dev s390x 1:2.2.3+ds-1 [146 kB] 152s Get:71 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy s390x 1:2.2.3+ds-1 [5031 kB] 152s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 152s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 152s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 152s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 152s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 152s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pooch all 1.8.2-1 [49.9 kB] 152s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 152s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 153s Fetched 105 MB in 6s (17.8 MB/s) 153s Selecting previously unselected package libpython3.12-minimal:s390x. 153s (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.) 153s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 153s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 154s Selecting previously unselected package python3.12-minimal. 154s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 154s Unpacking python3.12-minimal (3.12.9-1) ... 154s Selecting previously unselected package libnsl2:s390x. 154s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 154s Unpacking libnsl2:s390x (1.3.0-3build3) ... 154s Selecting previously unselected package libpython3.12-stdlib:s390x. 154s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 154s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 154s Selecting previously unselected package python3.12. 154s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 154s Unpacking python3.12 (3.12.9-1) ... 154s Selecting previously unselected package libisl23:s390x. 154s Preparing to unpack .../05-libisl23_0.27-1_s390x.deb ... 154s Unpacking libisl23:s390x (0.27-1) ... 154s Selecting previously unselected package libmpc3:s390x. 154s Preparing to unpack .../06-libmpc3_1.3.1-1build2_s390x.deb ... 154s Unpacking libmpc3:s390x (1.3.1-1build2) ... 154s Selecting previously unselected package cpp-14-s390x-linux-gnu. 154s Preparing to unpack .../07-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package cpp-14. 154s Preparing to unpack .../08-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package cpp-s390x-linux-gnu. 154s Preparing to unpack .../09-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package cpp. 154s Preparing to unpack .../10-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking cpp (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package libcc1-0:s390x. 154s Preparing to unpack .../11-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libgomp1:s390x. 154s Preparing to unpack .../12-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libitm1:s390x. 154s Preparing to unpack .../13-libitm1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libasan8:s390x. 154s Preparing to unpack .../14-libasan8_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libubsan1:s390x. 154s Preparing to unpack .../15-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libgcc-14-dev:s390x. 154s Preparing to unpack .../16-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package gcc-14-s390x-linux-gnu. 154s Preparing to unpack .../17-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package gcc-14. 154s Preparing to unpack .../18-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package gcc-s390x-linux-gnu. 154s Preparing to unpack .../19-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package gcc. 154s Preparing to unpack .../20-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking gcc (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package libstdc++-14-dev:s390x. 154s Preparing to unpack .../21-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package g++-14-s390x-linux-gnu. 154s Preparing to unpack .../22-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package g++-14. 155s Preparing to unpack .../23-g++-14_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking g++-14 (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package g++-s390x-linux-gnu. 155s Preparing to unpack .../24-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 155s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 155s Selecting previously unselected package g++. 155s Preparing to unpack .../25-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 155s Unpacking g++ (4:14.2.0-1ubuntu1) ... 155s Selecting previously unselected package build-essential. 155s Preparing to unpack .../26-build-essential_12.10ubuntu1_s390x.deb ... 155s Unpacking build-essential (12.10ubuntu1) ... 155s Selecting previously unselected package libblas3:s390x. 155s Preparing to unpack .../27-libblas3_3.12.1-2_s390x.deb ... 155s Unpacking libblas3:s390x (3.12.1-2) ... 155s Selecting previously unselected package libdeflate0:s390x. 155s Preparing to unpack .../28-libdeflate0_1.23-1_s390x.deb ... 155s Unpacking libdeflate0:s390x (1.23-1) ... 155s Selecting previously unselected package libexpat1-dev:s390x. 155s Preparing to unpack .../29-libexpat1-dev_2.6.4-1_s390x.deb ... 155s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 155s Selecting previously unselected package libfreetype6:s390x. 155s Preparing to unpack .../30-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 155s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 155s Selecting previously unselected package libgfortran5:s390x. 155s Preparing to unpack .../31-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libgraphite2-3:s390x. 155s Preparing to unpack .../32-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 155s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 155s Selecting previously unselected package libharfbuzz0b:s390x. 155s Preparing to unpack .../33-libharfbuzz0b_10.2.0-1_s390x.deb ... 155s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 155s Selecting previously unselected package libimagequant0:s390x. 155s Preparing to unpack .../34-libimagequant0_2.18.0-1build1_s390x.deb ... 155s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 155s Selecting previously unselected package libjpeg-turbo8:s390x. 155s Preparing to unpack .../35-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 155s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 155s Selecting previously unselected package libjpeg8:s390x. 155s Preparing to unpack .../36-libjpeg8_8c-2ubuntu11_s390x.deb ... 155s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 155s Selecting previously unselected package libjs-jquery. 155s Preparing to unpack .../37-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 155s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 155s Selecting previously unselected package libjs-underscore. 155s Preparing to unpack .../38-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 155s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 155s Selecting previously unselected package libjs-sphinxdoc. 155s Preparing to unpack .../39-libjs-sphinxdoc_8.1.3-4_all.deb ... 155s Unpacking libjs-sphinxdoc (8.1.3-4) ... 155s Selecting previously unselected package liblapack3:s390x. 155s Preparing to unpack .../40-liblapack3_3.12.1-2_s390x.deb ... 155s Unpacking liblapack3:s390x (3.12.1-2) ... 155s Selecting previously unselected package liblbfgsb0:s390x. 155s Preparing to unpack .../41-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 155s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 155s Selecting previously unselected package liblcms2-2:s390x. 155s Preparing to unpack .../42-liblcms2-2_2.16-2_s390x.deb ... 155s Unpacking liblcms2-2:s390x (2.16-2) ... 155s Selecting previously unselected package zlib1g-dev:s390x. 155s Preparing to unpack .../43-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 155s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 155s Selecting previously unselected package libpython3.13-dev:s390x. 155s Preparing to unpack .../44-libpython3.13-dev_3.13.2-1_s390x.deb ... 155s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 155s Selecting previously unselected package libpython3-dev:s390x. 155s Preparing to unpack .../45-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 155s Selecting previously unselected package libpython3.12t64:s390x. 155s Preparing to unpack .../46-libpython3.12t64_3.12.9-1_s390x.deb ... 155s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 155s Selecting previously unselected package libpython3.12-dev:s390x. 155s Preparing to unpack .../47-libpython3.12-dev_3.12.9-1_s390x.deb ... 155s Unpacking libpython3.12-dev:s390x (3.12.9-1) ... 155s Selecting previously unselected package libpython3-all-dev:s390x. 155s Preparing to unpack .../48-libpython3-all-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking libpython3-all-dev:s390x (3.13.1-1~exp2) ... 155s Selecting previously unselected package libraqm0:s390x. 155s Preparing to unpack .../49-libraqm0_0.10.2-1_s390x.deb ... 155s Unpacking libraqm0:s390x (0.10.2-1) ... 155s Selecting previously unselected package libsharpyuv0:s390x. 155s Preparing to unpack .../50-libsharpyuv0_1.5.0-0.1_s390x.deb ... 155s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libjbig0:s390x. 155s Preparing to unpack .../51-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 155s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 155s Selecting previously unselected package libwebp7:s390x. 155s Preparing to unpack .../52-libwebp7_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebp7:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libtiff6:s390x. 155s Preparing to unpack .../53-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 155s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 155s Selecting previously unselected package libwebpdemux2:s390x. 155s Preparing to unpack .../54-libwebpdemux2_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libwebpmux3:s390x. 155s Preparing to unpack .../55-libwebpmux3_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package python3-all. 155s Preparing to unpack .../56-python3-all_3.13.1-1~exp2_s390x.deb ... 155s Unpacking python3-all (3.13.1-1~exp2) ... 155s Selecting previously unselected package python3.13-dev. 155s Preparing to unpack .../57-python3.13-dev_3.13.2-1_s390x.deb ... 155s Unpacking python3.13-dev (3.13.2-1) ... 155s Selecting previously unselected package python3-dev. 155s Preparing to unpack .../58-python3-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking python3-dev (3.13.1-1~exp2) ... 155s Selecting previously unselected package python3.12-dev. 155s Preparing to unpack .../59-python3.12-dev_3.12.9-1_s390x.deb ... 155s Unpacking python3.12-dev (3.12.9-1) ... 155s Selecting previously unselected package python3-all-dev. 155s Preparing to unpack .../60-python3-all-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking python3-all-dev (3.13.1-1~exp2) ... 155s Selecting previously unselected package python3-cloudpickle. 155s Preparing to unpack .../61-python3-cloudpickle_3.1.1-1_all.deb ... 155s Unpacking python3-cloudpickle (3.1.1-1) ... 155s Selecting previously unselected package python3-dateutil. 155s Preparing to unpack .../62-python3-dateutil_2.9.0-3_all.deb ... 155s Unpacking python3-dateutil (2.9.0-3) ... 155s Selecting previously unselected package python3-decorator. 155s Preparing to unpack .../63-python3-decorator_5.1.1-5_all.deb ... 155s Unpacking python3-decorator (5.1.1-5) ... 155s Selecting previously unselected package python3-importlib-metadata. 155s Preparing to unpack .../64-python3-importlib-metadata_8.6.1-1_all.deb ... 155s Unpacking python3-importlib-metadata (8.6.1-1) ... 155s Selecting previously unselected package python3-doit. 155s Preparing to unpack .../65-python3-doit_0.36.0-4_all.deb ... 155s Unpacking python3-doit (0.36.0-4) ... 155s Selecting previously unselected package python3-sortedcontainers. 155s Preparing to unpack .../66-python3-sortedcontainers_2.4.0-2_all.deb ... 155s Unpacking python3-sortedcontainers (2.4.0-2) ... 155s Selecting previously unselected package python3-hypothesis. 155s Preparing to unpack .../67-python3-hypothesis_6.125.2-1_all.deb ... 155s Unpacking python3-hypothesis (6.125.2-1) ... 155s Selecting previously unselected package python3-iniconfig. 155s Preparing to unpack .../68-python3-iniconfig_1.1.1-2_all.deb ... 155s Unpacking python3-iniconfig (1.1.1-2) ... 155s Selecting previously unselected package python3-numpy-dev:s390x. 155s Preparing to unpack .../69-python3-numpy-dev_1%3a2.2.3+ds-1_s390x.deb ... 155s Unpacking python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 155s Selecting previously unselected package python3-numpy. 155s Preparing to unpack .../70-python3-numpy_1%3a2.2.3+ds-1_s390x.deb ... 155s Unpacking python3-numpy (1:2.2.3+ds-1) ... 156s Selecting previously unselected package python3-packaging. 156s Preparing to unpack .../71-python3-packaging_24.2-1_all.deb ... 156s Unpacking python3-packaging (24.2-1) ... 156s Selecting previously unselected package libopenjp2-7:s390x. 156s Preparing to unpack .../72-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 156s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 156s Selecting previously unselected package python3-pil:s390x. 156s Preparing to unpack .../73-python3-pil_11.1.0-5_s390x.deb ... 156s Unpacking python3-pil:s390x (11.1.0-5) ... 156s Selecting previously unselected package python3-platformdirs. 156s Preparing to unpack .../74-python3-platformdirs_4.3.6-1_all.deb ... 156s Unpacking python3-platformdirs (4.3.6-1) ... 156s Selecting previously unselected package python3-pluggy. 156s Preparing to unpack .../75-python3-pluggy_1.5.0-1_all.deb ... 156s Unpacking python3-pluggy (1.5.0-1) ... 156s Selecting previously unselected package python3-pooch. 156s Preparing to unpack .../76-python3-pooch_1.8.2-1_all.deb ... 156s Unpacking python3-pooch (1.8.2-1) ... 156s Selecting previously unselected package python3-pytest. 156s Preparing to unpack .../77-python3-pytest_8.3.4-1_all.deb ... 156s Unpacking python3-pytest (8.3.4-1) ... 156s Selecting previously unselected package python3-scipy. 156s Preparing to unpack .../78-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 156s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 156s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 156s Setting up liblcms2-2:s390x (2.16-2) ... 156s Setting up python3-iniconfig (1.1.1-2) ... 156s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 156s Setting up python3-importlib-metadata (8.6.1-1) ... 156s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 156s Setting up libdeflate0:s390x (1.23-1) ... 156s Setting up python3-sortedcontainers (2.4.0-2) ... 157s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 157s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 157s Setting up python3-platformdirs (4.3.6-1) ... 157s Setting up python3-cloudpickle (3.1.1-1) ... 157s Setting up python3-decorator (5.1.1-5) ... 157s Setting up libblas3:s390x (3.12.1-2) ... 157s 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 157s Setting up python3-packaging (24.2-1) ... 157s Setting up libexpat1-dev:s390x (2.6.4-1) ... 157s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 157s Setting up python3-pooch (1.8.2-1) ... 157s Setting up libimagequant0:s390x (2.18.0-1build1) ... 157s Setting up libmpc3:s390x (1.3.1-1build2) ... 157s Setting up python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 157s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 157s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 157s Setting up python3-pluggy (1.5.0-1) ... 157s Setting up libwebp7:s390x (1.5.0-0.1) ... 157s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 157s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 157s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 157s Setting up libnsl2:s390x (1.3.0-3build3) ... 157s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 157s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 157s Setting up python3-dateutil (2.9.0-3) ... 157s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 157s Setting up libisl23:s390x (0.27-1) ... 157s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 157s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 157s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 157s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 157s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 157s Setting up python3.12-minimal (3.12.9-1) ... 158s Setting up liblapack3:s390x (3.12.1-2) ... 158s 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 158s Setting up python3-doit (0.36.0-4) ... 158s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 158s Setting up python3-pytest (8.3.4-1) ... 159s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 159s Setting up python3.12 (3.12.9-1) ... 160s Setting up python3-hypothesis (6.125.2-1) ... 160s Setting up python3-all (3.13.1-1~exp2) ... 160s Setting up libpython3.12t64:s390x (3.12.9-1) ... 160s Setting up libraqm0:s390x (0.10.2-1) ... 160s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 160s Setting up python3-numpy (1:2.2.3+ds-1) ... 164s Setting up libjs-sphinxdoc (8.1.3-4) ... 164s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 164s Setting up cpp-14 (14.2.0-17ubuntu1) ... 164s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 164s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 164s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 164s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 164s Setting up python3-scipy (1.14.1-4ubuntu1) ... 169s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 169s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 169s Setting up python3.13-dev (3.13.2-1) ... 169s Setting up libpython3.12-dev:s390x (3.12.9-1) ... 169s Setting up python3-pil:s390x (11.1.0-5) ... 170s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 170s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 170s Setting up libpython3-all-dev:s390x (3.13.1-1~exp2) ... 170s Setting up python3-dev (3.13.1-1~exp2) ... 170s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 170s Setting up python3.12-dev (3.12.9-1) ... 170s Setting up cpp (4:14.2.0-1ubuntu1) ... 170s Setting up python3-all-dev (3.13.1-1~exp2) ... 170s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 170s Setting up gcc-14 (14.2.0-17ubuntu1) ... 170s Setting up g++-14 (14.2.0-17ubuntu1) ... 170s Setting up gcc (4:14.2.0-1ubuntu1) ... 170s Setting up g++ (4:14.2.0-1ubuntu1) ... 170s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 170s Setting up build-essential (12.10ubuntu1) ... 170s Processing triggers for systemd (257.2-3ubuntu1) ... 170s Processing triggers for man-db (2.13.0-1) ... 171s Processing triggers for libc-bin (2.41-1ubuntu1) ... 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-scipy'], kind short, sout pipe, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/python3-packages.all"], kind short, sout raw, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-packages.all /tmp/autopkgtest-work.6nmnu1s5/out/python3-packages.all 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.3LpQ7v/build.Ce6/src already exists 172s autopkgtest [08:12:53]: test python3: [----------------------- 172s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.3LpQ7v/wrapper.sh --debug --artifacts=/tmp/autopkgtest.3LpQ7v/python3-artifacts --chdir=/tmp/autopkgtest.3LpQ7v/build.Ce6/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.3LpQ7v/python3-stderr --stdout=/tmp/autopkgtest.3LpQ7v/python3-stdout --tmp=/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1' --make-executable=/tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3 -- /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3"], kind test, sout raw, serr raw, env [] 172s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 172s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 172s === Testing: python3.12 === 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.3LpQ7v/python3-artifacts 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: changing to directory: /tmp/autopkgtest.3LpQ7v/build.Ce6/src 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: LANG=C.UTF-8 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LANGUAGE 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ADDRESS 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ALL 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_COLLATE 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_CTYPE 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_IDENTIFICATION 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MEASUREMENT 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MESSAGES 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MONETARY 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NAME 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NUMERIC 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_PAPER 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TELEPHONE 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TIME 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: pretending to be a login shell 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write standard error to /tmp/autopkgtest.3LpQ7v/python3-stderr 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write stdout to /tmp/autopkgtest.3LpQ7v/python3-stdout 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: marking as executable: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: command to run: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.rTklrgCdOW/out to stdout and file: /tmp/autopkgtest.3LpQ7v/python3-stdout 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.rTklrgCdOW/err to standard error and file: /tmp/autopkgtest.3LpQ7v/python3-stdout 172s /tmp/autopkgtest.3LpQ7v/wrapper.sh: writing script pid 2303 to /tmp/autopkgtest_script_pid 187s ============================= test session starts ============================== 187s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 187s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 187s plugins: hypothesis-6.125.2, typeguard-4.4.1 187s collected 64307 items / 11809 deselected / 52498 selected 187s 187s _lib/tests/test__gcutils.py ...... [ 0%] 187s _lib/tests/test__pep440.py ......... [ 0%] 187s _lib/tests/test__testutils.py .. [ 0%] 187s _lib/tests/test__threadsafety.py .. [ 0%] 188s _lib/tests/test__util.py ........................ [ 0%] 188s _lib/tests/test_array_api.py ssssssssssssss [ 0%] 188s _lib/tests/test_bunch.py ............................ [ 0%] 188s _lib/tests/test_ccallback.py ss.. [ 0%] 188s _lib/tests/test_deprecation.py . [ 0%] 188s _lib/tests/test_public_api.py .......................................... [ 0%] 188s ........................................................... [ 0%] 188s _lib/tests/test_scipy_version.py . [ 0%] 188s _lib/tests/test_tmpdirs.py ... [ 0%] 188s cluster/tests/test_disjoint_set.py ..................... [ 0%] 188s cluster/tests/test_hierarchy.py ........................................ [ 0%] 188s .........................................sss.......... [ 0%] 189s cluster/tests/test_vq.py ............................... [ 0%] 189s constants/tests/test_codata.py ....... [ 0%] 189s constants/tests/test_constants.py ....... [ 0%] 189s datasets/tests/test_data.py . [ 0%] 189s fft/_pocketfft/tests/test_basic.py ..................................... [ 0%] 189s ........................................................................ [ 0%] 189s ........................................................................ [ 1%] 190s ........................................................................ [ 1%] 190s ........................................................................ [ 1%] 190s ........................................................................ [ 1%] 191s .............................................................. [ 1%] 191s fft/_pocketfft/tests/test_real_transforms.py ........................... [ 1%] 191s ........................................................................ [ 1%] 191s ........................................................................ [ 1%] 191s ........................................................................ [ 2%] 191s ........................................................................ [ 2%] 192s ........................................................................ [ 2%] 192s ........................................................................ [ 2%] 192s ........................................................................ [ 2%] 192s ........................................................................ [ 2%] 192s ........................................................................ [ 2%] 192s ........................................................................ [ 2%] 193s ........................................................................ [ 3%] 193s ........................................................................ [ 3%] 193s ........................................................................ [ 3%] 194s ........................................................................ [ 3%] 194s ........................................................................ [ 3%] 194s ........................................................................ [ 3%] 194s ........................................................................ [ 3%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 4%] 194s ........................................................................ [ 5%] 194s ........................................................................ [ 5%] 194s ................................................. [ 5%] 194s fft/tests/test_backend.py .............................................. [ 5%] 194s [ 5%] 195s fft/tests/test_basic.py ................................................ [ 5%] 195s ........................................................................ [ 5%] 195s ..................................... [ 5%] 195s fft/tests/test_fftlog.py .......................................... [ 5%] 195s fft/tests/test_helper.py ............................... [ 5%] 196s fft/tests/test_multithreading.py ....................................... [ 5%] 196s ................ [ 5%] 196s fft/tests/test_real_transforms.py ...................................... [ 5%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 6%] 196s ........................................................................ [ 7%] 196s ........................................................................ [ 7%] 197s ........................................................................ [ 7%] 197s ........................................................................ [ 7%] 197s ........................................................................ [ 7%] 197s ........................................................................ [ 7%] 197s ........................................................................ [ 7%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 8%] 197s ........................................................................ [ 9%] 197s ........................................................................ [ 9%] 198s ........................................................................ [ 9%] 198s ........................................................................ [ 9%] 198s ........................................................................ [ 9%] 198s ........................................................................ [ 9%] 198s ........................................................................ [ 9%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 10%] 198s ........................................................................ [ 11%] 198s ........................................................................ [ 11%] 199s ........................................................................ [ 11%] 199s ........................................................................ [ 11%] 199s ........................................................................ [ 11%] 199s .................................................................. [ 11%] 199s fftpack/tests/test_basic.py ......x..................................... [ 11%] 199s ........................................................................ [ 11%] 199s ........................................................................ [ 12%] 199s ........................................................................ [ 12%] 200s .................................... [ 12%] 200s fftpack/tests/test_helper.py .... [ 12%] 200s fftpack/tests/test_pseudo_diffs.py ............................. [ 12%] 200s fftpack/tests/test_real_transforms.py .................................. [ 12%] 201s ........................................................................ [ 12%] 201s ........................................................................ [ 12%] 201s .............................................. [ 12%] 202s integrate/_ivp/tests/test_ivp.py ....................................... [ 12%] 203s ............... [ 12%] 203s integrate/_ivp/tests/test_rk.py .......... [ 12%] 203s integrate/tests/test__quad_vec.py .......................... [ 12%] 203s integrate/tests/test_banded_ode_solvers.py . [ 12%] 204s integrate/tests/test_bvp.py ................ [ 12%] 204s integrate/tests/test_integrate.py ...................................... [ 13%] 204s ......... [ 13%] 204s integrate/tests/test_odeint_jac.py .. [ 13%] 204s integrate/tests/test_quadpack.py ....................................... [ 13%] 205s ..sssssssssssssssssssssssssssssssssssssssssss........... [ 13%] 205s integrate/tests/test_quadrature.py ..................................... [ 13%] 205s ........................................................................ [ 13%] 206s ........................................................................ [ 13%] 206s ........................................................................ [ 13%] 206s ................ [ 13%] 206s integrate/tests/test_tanhsinh.py ....................................... [ 13%] 206s .........ssss........................................................... [ 13%] 207s .............................ss..ss......ss............................. [ 14%] 207s .................................ss..................................... [ 14%] 207s ........................................ [ 14%] 207s interpolate/tests/test_bsplines.py ..................................... [ 14%] 207s ........................................................................ [ 14%] 208s ......................x................................................. [ 14%] 208s ............................. [ 14%] 208s interpolate/tests/test_fitpack.py .....................................s [ 14%] 208s ....s.. [ 14%] 208s interpolate/tests/test_fitpack2.py ..................................... [ 14%] 209s ................................ [ 14%] 209s interpolate/tests/test_gil.py s [ 14%] 209s interpolate/tests/test_interpnd.py ..................... [ 14%] 209s interpolate/tests/test_interpolate.py .................................. [ 15%] 210s ........................................................................ [ 15%] 210s ....................... [ 15%] 210s interpolate/tests/test_ndgriddata.py .................... [ 15%] 210s interpolate/tests/test_pade.py .... [ 15%] 211s interpolate/tests/test_polyint.py ...................................... [ 15%] 211s ........................................................................ [ 15%] 211s ................. [ 15%] 211s interpolate/tests/test_rbf.py .......... [ 15%] 211s interpolate/tests/test_rbfinterp.py .................................... [ 15%] 211s ........................................................................ [ 15%] 212s ........................................................................ [ 15%] 212s ..... [ 15%] 212s interpolate/tests/test_rgi.py ....................s..................... [ 15%] 215s ..................................ss.......ss..................s.......s [ 16%] 217s s.......ss............................................s.......ss........ [ 16%] 217s ..s......................... [ 16%] 217s io/_harwell_boeing/tests/test_fortran_format.py ........... [ 16%] 217s io/_harwell_boeing/tests/test_hb.py .. [ 16%] 217s io/arff/tests/test_arffread.py .......s................... [ 16%] 217s io/matlab/tests/test_byteordercodes.py .. [ 16%] 217s io/matlab/tests/test_mio.py ............................................ [ 16%] 217s ............................ [ 16%] 217s io/matlab/tests/test_mio5_utils.py ...... [ 16%] 217s io/matlab/tests/test_mio_funcs.py . [ 16%] 217s io/matlab/tests/test_mio_utils.py .. [ 16%] 217s io/matlab/tests/test_miobase.py . [ 16%] 217s io/matlab/tests/test_pathological.py .. [ 16%] 218s io/matlab/tests/test_streams.py ........... [ 16%] 218s io/tests/test_fortran.py ........... [ 16%] 218s io/tests/test_idl.py ................................................... [ 16%] 218s ................ [ 16%] 218s io/tests/test_mmio.py .................................................. [ 16%] 218s .........................s.............................................. [ 16%] 218s .............................s [ 16%] 218s io/tests/test_netcdf.py ......................... [ 17%] 218s io/tests/test_paths.py ........... [ 17%] 219s io/tests/test_wavfile.py ................s.............................. [ 17%] 219s ........................................................................ [ 17%] 219s ........................................................................ [ 17%] 219s ........................................................................ [ 17%] 219s .......................... [ 17%] 219s linalg/tests/test_basic.py ............................................. [ 17%] 219s ................................................................s....... [ 17%] 219s ........................................................................ [ 17%] 221s ........................................................................ [ 18%] 223s ........................................................................ [ 18%] 223s ........................................s............................... [ 18%] 223s ........................... [ 18%] 223s linalg/tests/test_blas.py .............................................. [ 18%] 223s .....x. [ 18%] 223s linalg/tests/test_cython_blas.py ...... [ 18%] 223s linalg/tests/test_cython_lapack.py ... [ 18%] 223s linalg/tests/test_cythonized_array_utils.py ............................ [ 18%] 223s ...................... [ 18%] 223s linalg/tests/test_decomp.py ............................................ [ 18%] 223s ........................................................................ [ 18%] 223s ........................................................................ [ 19%] 225s ........................................................................ [ 19%] 225s ........................................................................ [ 19%] 225s ........................................................................ [ 19%] 226s ..............................................x......................... [ 19%] 226s ................ [ 19%] 226s linalg/tests/test_decomp_cholesky.py .....s............................. [ 19%] 226s .................................... [ 19%] 227s linalg/tests/test_decomp_cossin.py ..................................... [ 19%] 227s ...................................................... [ 19%] 227s linalg/tests/test_decomp_ldl.py ............ [ 19%] 227s linalg/tests/test_decomp_lu.py ......................................... [ 19%] 227s ................................................... [ 20%] 227s linalg/tests/test_decomp_polar.py .. [ 20%] 227s linalg/tests/test_decomp_update.py ..................................... [ 20%] 227s ........................................................................ [ 20%] 228s ........................................................................ [ 20%] 228s ........................................................................ [ 20%] 228s ........................................................................ [ 20%] 228s ........................................................................ [ 20%] 228s ........................................................................ [ 20%] 229s ........................................................................ [ 21%] 229s ........................................................................ [ 21%] 229s .................................................... [ 21%] 229s linalg/tests/test_extending.py s [ 21%] 229s linalg/tests/test_fblas.py ............................................. [ 21%] 229s ........................................................................ [ 21%] 229s ............ [ 21%] 231s linalg/tests/test_interpolative.py ..................................... [ 21%] 231s ........... [ 21%] 231s linalg/tests/test_lapack.py ............................................ [ 21%] 231s ....................................................................s... [ 21%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 22%] 231s ........................................................................ [ 23%] 231s ........................................................................ [ 23%] 232s ........................................................................ [ 23%] 232s ........................................................................ [ 23%] 232s ........................................................................ [ 23%] 232s ........................................................................ [ 23%] 232s ........................................................................ [ 23%] 232s ........................................................................ [ 23%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 24%] 232s ........................................................................ [ 25%] 233s ........................................................................ [ 25%] 233s ........................................................................ [ 25%] 233s ........... [ 25%] 233s linalg/tests/test_matfuncs.py ................xxxxx..............X...... [ 25%] 237s .............X........................ [ 25%] 237s linalg/tests/test_matmul_toeplitz.py .... [ 25%] 237s linalg/tests/test_procrustes.py ........... [ 25%] 237s linalg/tests/test_sketches.py ..... [ 25%] 237s linalg/tests/test_solve_toeplitz.py ......X......................... [ 25%] 237s linalg/tests/test_solvers.py ........x....x....x.xx..................... [ 25%] 237s .... [ 25%] 237s linalg/tests/test_special_matrices.py .................................. [ 25%] 238s ........................................................................ [ 25%] 238s ...... [ 25%] 238s misc/tests/test_config.py .... [ 25%] 238s misc/tests/test_doccer.py ..... [ 25%] 238s ndimage/tests/test_c_api.py ... [ 25%] 238s ndimage/tests/test_datatypes.py .X [ 25%] 238s ndimage/tests/test_filters.py .......................................... [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 26%] 238s ........................................................................ [ 27%] 238s ........................................................................ [ 27%] 238s ........................................................................ [ 27%] 238s ........................................................................ [ 27%] 239s ........................................................................ [ 27%] 239s ........................................................................ [ 27%] 239s ........................................................................ [ 27%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 28%] 239s ........................................................................ [ 29%] 239s ........................................................................ [ 29%] 239s ........................................................................ [ 29%] 239s ........................................................................ [ 29%] 239s ........................................................................ [ 29%] 240s ......................................................... [ 29%] 240s ndimage/tests/test_fourier.py .......................................... [ 29%] 240s .................................. [ 29%] 240s ndimage/tests/test_interpolation.py .................................... [ 29%] 240s ........................................................................ [ 30%] 240s ........................................................................ [ 30%] 240s ........................................................................ [ 30%] 240s ........................................................................ [ 30%] 240s ........................................................................ [ 30%] 241s ........................................................................ [ 30%] 241s ........................................................................ [ 30%] 241s ........................................................................ [ 31%] 241s ........................................................................ [ 31%] 241s ........................................................................ [ 31%] 241s ........................................................................ [ 31%] 241s ........................................................................ [ 31%] 241s ........................................................................ [ 31%] 241s ................ [ 31%] 241s ndimage/tests/test_measurements.py ..................................... [ 31%] 241s ........................................................................ [ 31%] 241s ................ [ 31%] 241s ndimage/tests/test_morphology.py ....................................... [ 32%] 241s ........................................................................ [ 32%] 241s ........................................................................ [ 32%] 241s ........................................................................ [ 32%] 242s ........................................................................ [ 32%] 242s ........................................................................ [ 32%] 242s ........................................................................ [ 32%] 242s ........................................................................ [ 33%] 242s ........................................................................ [ 33%] 242s ........................................................................ [ 33%] 242s ........................................................................ [ 33%] 242s ........................................................................ [ 33%] 242s ..... [ 33%] 242s ndimage/tests/test_ni_support.py .......... [ 33%] 242s ndimage/tests/test_splines.py .................. [ 33%] 242s odr/tests/test_odr.py ................s....... [ 33%] 242s optimize/_trustregion_constr/tests/test_canonical_constraint.py ...... [ 33%] 242s optimize/_trustregion_constr/tests/test_projections.py .......... [ 33%] 242s optimize/_trustregion_constr/tests/test_qp_subproblem.py ............... [ 33%] 242s ........ [ 33%] 242s optimize/_trustregion_constr/tests/test_report.py .s [ 33%] 245s optimize/tests/test__basinhopping.py ................................. [ 33%] 246s optimize/tests/test__differential_evolution.py ......................... [ 33%] 253s .............................s....... [ 33%] 257s optimize/tests/test__dual_annealing.py ................................. [ 33%] 259s ............. [ 34%] 259s optimize/tests/test__linprog_clean_inputs.py ............. [ 34%] 260s optimize/tests/test__numdiff.py ................................ [ 34%] 260s optimize/tests/test__remove_redundancy.py .............................. [ 34%] 260s ...................................... [ 34%] 260s optimize/tests/test__root.py ............... [ 34%] 262s optimize/tests/test__shgo.py ..................ss...................s... [ 34%] 263s ............................ [ 34%] 263s optimize/tests/test__spectral.py .... [ 34%] 263s optimize/tests/test_bracket.py ......................................... [ 34%] 263s ........................................................................ [ 34%] 263s ........................................................................ [ 34%] 263s ........................................................................ [ 34%] 263s ........................................................................ [ 35%] 264s ........................................................................ [ 35%] 264s ................................................................... [ 35%] 265s optimize/tests/test_chandrupatla.py .................................... [ 35%] 265s ........................................................................ [ 35%] 265s ........................... [ 35%] 265s optimize/tests/test_cobyla.py s..... [ 35%] 266s optimize/tests/test_cobyqa.py ........ [ 35%] 267s optimize/tests/test_constraint_conversion.py ........ [ 35%] 267s optimize/tests/test_constraints.py ................ [ 35%] 267s optimize/tests/test_cython_optimize.py ..... [ 35%] 267s optimize/tests/test_differentiable_functions.py ..............x. [ 35%] 268s optimize/tests/test_differentiate.py ................................... [ 35%] 268s ........................................................................ [ 35%] 268s ...............................................XX................... [ 35%] 269s optimize/tests/test_direct.py ....................................ss.... [ 36%] 269s ..................... [ 36%] 269s optimize/tests/test_extending.py s [ 36%] 269s optimize/tests/test_hessian_update_strategy.py ..... [ 36%] 269s optimize/tests/test_isotonic_regression.py ............................. [ 36%] 269s ................ [ 36%] 269s optimize/tests/test_lbfgsb_hessinv.py .. [ 36%] 269s optimize/tests/test_lbfgsb_setulb.py .. [ 36%] 270s optimize/tests/test_least_squares.py ................................... [ 36%] 272s ........................................................................ [ 36%] 272s ........... [ 36%] 272s optimize/tests/test_linear_assignment.py ...................... [ 36%] 272s optimize/tests/test_linesearch.py ........... [ 36%] 272s optimize/tests/test_linprog.py ......................................... [ 36%] 273s .........................................ss............................. [ 36%] 273s .................................................s...................... [ 36%] 274s ........................................................s.ss............ [ 36%] 274s ................................................................s....... [ 37%] 274s .....................................................................s.X [ 37%] 275s ........................................................................ [ 37%] 275s ....s.sX................................................................ [ 37%] 275s ...............ssss..................................................... [ 37%] 276s ............................sss..............................x.......... [ 37%] 276s ........................................................................ [ 37%] 278s ........x............................................................... [ 38%] 278s .s........................... [ 38%] 279s optimize/tests/test_lsq_common.py .......... [ 38%] 280s optimize/tests/test_lsq_linear.py ..........s........s... [ 38%] 281s optimize/tests/test_milp.py .x.........s [ 38%] 281s optimize/tests/test_minimize_constrained.py .....................s...... [ 38%] 282s ..........s.............................ssssssssssssssssssssssssssssssss [ 38%] 283s ss.....................s................s............................... [ 38%] 285s ..s.......x........s.................................s.......x........s. [ 38%] 286s .....................x........X [ 38%] 286s optimize/tests/test_minpack.py ......................................... [ 38%] 286s .................................................... [ 38%] 286s optimize/tests/test_nnls.py ....... [ 38%] 286s optimize/tests/test_nonlin.py ....................................... [ 39%] 287s optimize/tests/test_optimize.py .........................x.............. [ 39%] 288s ...........x.........................x.........................x........ [ 39%] 290s ................s....................................x.................. [ 39%] 291s ........................................................................ [ 39%] 291s ........................................................................ [ 39%] 297s ......................................................s.ss.ss.ss.ss.ss.s [ 39%] 297s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s [ 39%] 297s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s.................................... [ 40%] 297s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s [ 40%] 298s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s.................. [ 40%] 298s .... [ 40%] 298s optimize/tests/test_quadratic_assignment.py .............. [ 40%] 298s optimize/tests/test_regression.py ... [ 40%] 298s optimize/tests/test_slsqp.py ..................................... [ 40%] 298s optimize/tests/test_tnc.py .................... [ 40%] 298s optimize/tests/test_trustregion.py ........ [ 40%] 299s optimize/tests/test_trustregion_exact.py .......... [ 40%] 299s optimize/tests/test_trustregion_krylov.py ..... [ 40%] 299s optimize/tests/test_zeros.py ........................................... [ 40%] 299s ........................................................................ [ 40%] 299s ...................... [ 40%] 299s signal/tests/test_array_tools.py ...... [ 40%] 299s signal/tests/test_bsplines.py ........... [ 40%] 299s signal/tests/test_cont2discrete.py ........................ [ 40%] 299s signal/tests/test_czt.py ............................................... [ 40%] 299s ........................................................................ [ 41%] 300s .......................................... [ 41%] 300s signal/tests/test_dltisys.py ................................ [ 41%] 300s signal/tests/test_filter_design.py ..................................... [ 41%] 300s ....................................................s................... [ 41%] 301s ........................................................................ [ 41%] 302s .............................................................. [ 41%] 302s signal/tests/test_fir_filter_design.py ................................. [ 41%] 302s .... [ 41%] 302s signal/tests/test_ltisys.py ............................................ [ 41%] 302s ..................................... [ 41%] 302s signal/tests/test_max_len_seq.py .. [ 41%] 302s signal/tests/test_peak_finding.py ...................................... [ 41%] 302s ............... [ 42%] 302s signal/tests/test_result_type.py ..... [ 42%] 303s signal/tests/test_savitzky_golay.py .............. [ 42%] 303s signal/tests/test_short_time_fft.py .................................... [ 42%] 303s ........................................................................ [ 42%] 304s ........................................ [ 42%] 304s signal/tests/test_signaltools.py ....................................... [ 42%] 304s ........................................................................ [ 42%] 304s ........................................................................ [ 42%] 304s ........................................................................ [ 42%] 304s ........................................................................ [ 42%] 304s ........................................................................ [ 43%] 304s ........................................................................ [ 43%] 305s ........................................................................ [ 43%] 305s ........................................................................ [ 43%] 305s ........................................................................ [ 43%] 305s ........................................................................ [ 43%] 305s ........................................................................ [ 43%] 305s ........................................................................ [ 44%] 305s ........................................................................ [ 44%] 305s ........................................................................ [ 44%] 306s ........................................................................ [ 44%] 306s ........................................................................ [ 44%] 306s ........................................................................ [ 44%] 306s .....s.................................................................. [ 44%] 306s ........................................................................ [ 45%] 306s ........................................................................ [ 45%] 306s ........................................................................ [ 45%] 306s ........................................................................ [ 45%] 306s ........................................................................ [ 45%] 306s ........................................................................ [ 45%] 307s ........................................................................ [ 45%] 309s .......ss............................................................... [ 45%] 309s ......................................... [ 46%] 309s signal/tests/test_spectral.py .......................................... [ 46%] 309s ........................................................................ [ 46%] 309s ... [ 46%] 310s signal/tests/test_upfirdn.py ........................................... [ 46%] 310s ........................................................................ [ 46%] 310s ........................................................................ [ 46%] 310s ........................................................................ [ 46%] 310s .................................. [ 46%] 310s signal/tests/test_waveforms.py .................................. [ 46%] 310s signal/tests/test_wavelets.py ....... [ 46%] 310s signal/tests/test_windows.py ........................................... [ 46%] 310s ...... [ 47%] 310s sparse/csgraph/tests/test_connected_components.py ........ [ 47%] 310s sparse/csgraph/tests/test_conversions.py ... [ 47%] 311s sparse/csgraph/tests/test_flow.py ...................................... [ 47%] 311s ..... [ 47%] 311s sparse/csgraph/tests/test_graph_laplacian.py ........................... [ 47%] 311s ........................................................................ [ 47%] 311s ........................................................................ [ 47%] 311s ........................................................................ [ 47%] 311s ........................................................................ [ 47%] 311s ........................................................................ [ 47%] 311s ........................................................................ [ 47%] 311s ........................................................................ [ 48%] 311s ........................................................................ [ 48%] 312s ........................................................................ [ 48%] 312s ........................................................................ [ 48%] 312s ........................................................................ [ 48%] 312s ........................................................................ [ 48%] 312s ........................................................................ [ 48%] 312s ........................................................................ [ 49%] 312s ........................................................................ [ 49%] 312s ................... [ 49%] 312s sparse/csgraph/tests/test_matching.py ......................s [ 49%] 312s sparse/csgraph/tests/test_pydata_sparse.py sssssssssssssssssssssssssssss [ 49%] 312s sssss [ 49%] 312s sparse/csgraph/tests/test_reordering.py ... [ 49%] 312s sparse/csgraph/tests/test_shortest_path.py ............................. [ 49%] 312s ........... [ 49%] 312s sparse/csgraph/tests/test_spanning_tree.py . [ 49%] 312s sparse/csgraph/tests/test_traversal.py ........ [ 49%] 312s sparse/linalg/_dsolve/tests/test_linsolve.py .s.s.s.s.ss..........s..... [ 49%] 313s ........................ [ 49%] 314s sparse/linalg/_eigen/arpack/tests/test_arpack.py ................... [ 49%] 314s sparse/linalg/_eigen/lobpcg/tests/test_lobpcg.py ....................... [ 49%] 314s ........................................................................ [ 49%] 315s ........................................................................ [ 49%] 315s ........................................................................ [ 50%] 315s ........................................................................ [ 50%] 315s .... [ 50%] 315s sparse/linalg/_eigen/tests/test_svds.py ................................ [ 50%] 315s ..........................................s.ss..s.ssss....s.ss..s.ssss.. [ 50%] 317s ..s.ss..s.ssss....s.ss..s.ssss....s.ss..s.ssss....s.ss..s.ssss.......... [ 50%] 317s .............s.......................................................... [ 50%] 318s ......................................s.ss....s.ss....s.ss....s.ss....s. [ 50%] 320s ss....s.ss....s.ss....s.ss....s.ss....s.ss....s.ss....s.ss.............. [ 50%] 320s ........................................................................ [ 51%] 320s ........................s.......s.......s.......s.......s.......s....... [ 51%] 320s s.......s.......s.......s.......s.......s...........ssssssss............ [ 51%] 320s xx [ 51%] 320s sparse/linalg/_isolve/tests/test_gcrotmk.py ....... [ 51%] 320s sparse/linalg/_isolve/tests/test_iterative.py .......................... [ 51%] 321s ........................................................................ [ 51%] 322s ........................................................................ [ 51%] 322s ........................................................................ [ 51%] 322s ........................................................................ [ 51%] 322s ........................................................................ [ 52%] 322s ........................................................................ [ 52%] 322s ........................................................................ [ 52%] 335s ...................s.ss.ss.s............s.ss.s.......................... [ 52%] 336s ........................s...sss.......s...............s........s........ [ 52%] 336s s.......s........s........s........s........s.......s.......s........s.. [ 52%] 336s ......s.........s........s.......s.......s.......s.......s........s..... [ 52%] 337s ...ss...............s.......................................... [ 53%] 337s sparse/linalg/_isolve/tests/test_lgmres.py ........ [ 53%] 337s sparse/linalg/_isolve/tests/test_lsmr.py ............... [ 53%] 337s sparse/linalg/_isolve/tests/test_lsqr.py ..... [ 53%] 337s sparse/linalg/_isolve/tests/test_minres.py ....... [ 53%] 337s sparse/linalg/_isolve/tests/test_utils.py . [ 53%] 339s sparse/linalg/tests/test_expm_multiply.py .............................. [ 53%] 341s ........................................................................ [ 53%] 343s ........................................................................ [ 53%] 343s ..... [ 53%] 343s sparse/linalg/tests/test_interface.py ............... [ 53%] 344s sparse/linalg/tests/test_matfuncs.py .................................. [ 53%] 344s sparse/linalg/tests/test_norm.py ........ [ 53%] 344s sparse/linalg/tests/test_onenormest.py ss.s.. [ 53%] 345s sparse/linalg/tests/test_propack.py ........................ssss........ [ 53%] 345s .... [ 53%] 345s sparse/linalg/tests/test_pydata_sparse.py ssssssssssssssssssssssssssssss [ 53%] 345s sssssssssssssssssssssss [ 53%] 345s sparse/linalg/tests/test_special_sparse_arrays.py ...................... [ 53%] 345s ........................................................................ [ 53%] 345s ........................................................................ [ 54%] 345s ........................................................................ [ 54%] 346s ................................................ [ 54%] 346s sparse/tests/test_arithmetic1d.py .................................... [ 54%] 346s sparse/tests/test_array_api.py ......................................... [ 54%] 346s ........................................................................ [ 54%] 346s ........................................................................ [ 54%] 346s ........................................................................ [ 54%] 346s ....................................................... [ 54%] 346s sparse/tests/test_base.py .............................................. [ 55%] 347s ........................................................................ [ 55%] 347s .......................s................................................ [ 55%] 348s ........................................................................ [ 55%] 349s ........................................s..............sssss.s.......... [ 55%] 349s ........................................s.ssssss........................ [ 55%] 350s ....................................................s.........ssss.s.... [ 55%] 350s ................................................ssssss.................. [ 56%] 351s ..........................................................s............. [ 56%] 351s .....ssssssssssssssssssssssssssssssssssssss.......sssss..ssssss......... [ 56%] 351s ..................................................................s..... [ 56%] 352s ..x.......ssss.sssssssssssssssssssssssssssssssssssssss.......sssss..ssss [ 56%] 352s ss...................................................................... [ 56%] 353s ....s...x.s....s......ssssssssssssssssssssssssssssssssssssss.......sssss [ 56%] 354s ........................................................................ [ 56%] 354s ..........s.............xx.x............................................ [ 57%] 355s ........................................................................ [ 57%] 356s ....................s...................sss..xx......................... [ 57%] 357s ........................................................................ [ 57%] 358s ......................................s..............sss..xx......ssssss [ 57%] 359s ssssssssssssssssssssssssssssssss.......sssss............................ [ 57%] 360s ..................................................s.............xx.x.sss [ 57%] 360s xx......ssssssssssssssssssssssssssssssssssssss.......sssss.ssssss....... [ 58%] 361s ...................................................................s.... [ 58%] 361s ...x.......sss..........ss..ss...................sss......s...ssssssssss [ 58%] 362s sssssss.....sss.ss.....s..s.x..............s......ss..................ss [ 58%] 362s sssxxs..sssss.s.s.............s.......ss..ss...............sss.....s..ss [ 58%] 363s ssssssssssssssss....ssss.s..s...s..s.xsss............s....s.ss.......... [ 58%] 363s ........ssss..s..sssss.s.s.................s............................ [ 58%] 364s .............s....................................s..................... [ 59%] 364s ......................s..............s.................s................ [ 59%] 365s ...........ss................s......................................s... [ 59%] 366s ........................................s..............s................ [ 59%] 366s .s......s.ss..ss............sss....s..ssssssssssssssssss....ssss.ss.s... [ 59%] 367s s..s.xss.........ssss...ss.ss.................ssss...s..sssss.s.s....... [ 59%] 367s ....s...s......s.........s....................ss....................s... [ 59%] 368s ..s.s......s..ss.........sss.....ss...................................s. [ 59%] 368s ...............s.....s............................ss.................... [ 60%] 369s .s.......s.......s..s...s.........sss....ss............................. [ 60%] 369s ........s................s.......ss..ss...................sss......s...s [ 60%] 370s ssssssssssssssss.....sss.ss.....s..s.x..............s......ss........... [ 60%] 371s .......sssssxxs..sssss.s.s.............s.......ss..ss...............sss. [ 60%] 371s ....s..ssssssssssssssssss....ssss.s..s...s..s.xsss............s....s.ss. [ 60%] 372s .................ssss..s..sssss.s.s.................s................... [ 60%] 372s ......................s....................................s............ [ 61%] 373s ...............................s..............s.................s....... [ 61%] 373s ....................ss................s................................. [ 61%] 374s .....s...........................................s..............s....... [ 61%] 375s ..........s......s.ss..ss............sss....s..ssssssssssssssssss....sss [ 61%] 375s s.ss.s...s..s.xss.........ssss...ss.ss.................ssss...s..sssss.s [ 61%] 376s .s...........s...s......s.........s....................ss............... [ 61%] 376s .....s.....s.s......s..ss.........sss.....ss............................ [ 62%] 377s .......s................s.....s............................ss........... [ 62%] 377s ..........s.......s.......s..s...s.........sss....ss.................... [ 62%] 378s .................s................s.......ss..ss...................sss.. [ 62%] 379s ....s...sssssssssssssssss.....sss.ss.....s..s.x..............s......ss.. [ 62%] 379s ................sssssxxs..sssss.s.s.............s.......ss..ss.......... [ 62%] 380s .....sss.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss............s [ 62%] 380s ....s.ss..................ssss..s..sssss.s.s.................s.......... [ 63%] 380s ...............................s....................................s... [ 63%] 381s ........................................s..............s................ [ 63%] 382s .s...........................ss................s........................ [ 63%] 382s ..............s...........................................s............. [ 63%] 383s .s.................s......s.ss..ss............sss....s..ssssssssssssssss [ 63%] 383s ss....ssss.ss.s...s..s.xss.........ssss...ss.ss.................ssss...s [ 63%] 384s ..sssss.s.s...........s...s......s.........s....................ss...... [ 63%] 384s ..............s.....s.s......s..ss.........sss.....ss................... [ 64%] 385s ................s................s.....s............................ss.. [ 64%] 385s ...................s.......s.......s..s...s.........sss....ss........... [ 64%] 386s ..........................s................s.......ss..ss............... [ 64%] 387s ....sss......s...sssssssssssssssss.....sss.ss.....s..s.x..............s. [ 64%] 387s .....ss..................sssssxxs..sssss.s.s.............s.......ss..ss. [ 64%] 387s ..............sss.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss.... [ 64%] 388s ........s....s.ss..................ssss..s..sssss.s.s.................s. [ 65%] 388s ........................................s............................... [ 65%] 389s .....s...........................................s..............s....... [ 65%] 389s ..........s...........................ss................s............... [ 65%] 390s .......................s...........................................s.... [ 65%] 391s ..........s.................s......s.ss..ss............sss....s..sssssss [ 65%] 391s sssssssssss....ssss.ss.s...s..s.xss.........ssss...ss.ss................ [ 65%] 392s .ssss...s..sssss.s.s...........s...s......s.........s................... [ 66%] 392s .ss....................s.....s.s......s..ss.........sss.....ss.......... [ 66%] 393s .........................s................s.....s....................... [ 66%] 393s .....ss.....................s.......s.......s..s...s.........sss....ss.. [ 66%] 394s ...................................s................s.......ss..ss...... [ 66%] 395s .............sss......s...sssssssssssssssss.....sss.ss.....s..s.x....... [ 66%] 396s .......s......ss..................sssssxxs..sssss.s.s.............s..... [ 66%] 396s ..ss..ss...............sss.....s..ssssssssssssssssss....ssss.s..s...s..s [ 66%] 397s .xsss............s....s.ss..................ssss..s..sssss.s.s.......... [ 67%] 397s .......s.........................................s...................... [ 67%] 399s ..............s...........................................s............. [ 67%] 399s .s.................s...........................ss................s...... [ 67%] 400s ................................s....................................... [ 67%] 401s ....s..............s.................s......s.ss..ss............sss....s [ 67%] 402s ..ssssssssssssssssss....ssss.ss.s...s..s.xss.........ssss...ss.ss....... [ 67%] 402s ..........ssss...s..sssss.s.s...........s...s......s.........s.......... [ 68%] 403s ..........ss....................s.....s.s......s..ss.........sss.....ss. [ 68%] 404s ..................................s................s.....s.............. [ 68%] 404s ..............ss.....................s.......s.......s..s...s.........ss [ 68%] 405s s....ss.....................................s................s. [ 68%] 405s sparse/tests/test_common1d.py .......................................... [ 68%] 405s ........................................................ [ 68%] 405s sparse/tests/test_construct.py ......................................... [ 68%] 406s ............... [ 68%] 406s sparse/tests/test_coo.py ................................... [ 68%] 406s sparse/tests/test_csc.py ........... [ 68%] 406s sparse/tests/test_csr.py ............. [ 69%] 406s sparse/tests/test_dok.py ............................................... [ 69%] 406s .......... [ 69%] 406s sparse/tests/test_extract.py .... [ 69%] 406s sparse/tests/test_matrix_io.py ....... [ 69%] 406s sparse/tests/test_minmax1d.py ............ [ 69%] 408s sparse/tests/test_sparsetools.py ....s.. [ 69%] 408s sparse/tests/test_spfuncs.py ... [ 69%] 408s sparse/tests/test_sputils.py ............. [ 69%] 408s spatial/tests/test__plotutils.py sssss [ 69%] 408s spatial/tests/test__procrustes.py ...... [ 69%] 408s spatial/tests/test_distance.py ......................................... [ 69%] 408s ........................................................................ [ 69%] 409s ..................................................ss.................... [ 69%] 409s ........ss..........................................................ss.. [ 69%] 409s ........................................................................ [ 69%] 410s ........................................................................ [ 70%] 410s ................................................................ [ 70%] 410s spatial/tests/test_hausdorff.py ..............s [ 70%] 410s spatial/tests/test_kdtree.py ........................................... [ 70%] 412s ........................................................................ [ 70%] 413s ........................................................................ [ 70%] 417s ................................................ [ 70%] 418s spatial/tests/test_qhull.py ............................................ [ 70%] 418s ........................................................................ [ 70%] 420s ............................................................... [ 70%] 420s spatial/tests/test_slerp.py ............................................ [ 71%] 420s ....................................... [ 71%] 420s spatial/tests/test_spherical_voronoi.py ................................ [ 71%] 420s ........................................................................ [ 71%] 420s ............... [ 71%] 420s spatial/transform/tests/test_rotation.py ............................... [ 71%] 420s ........................................................................ [ 71%] 420s ........................................................................ [ 71%] 420s ... [ 71%] 420s spatial/transform/tests/test_rotation_groups.py ........................ [ 71%] 420s ........................................................................ [ 71%] 421s ........................................................................ [ 71%] 421s ................................................................ [ 72%] 421s spatial/transform/tests/test_rotation_spline.py ....... [ 72%] 421s special/tests/test_basic.py ............................................ [ 72%] 421s ...x...X................................................................ [ 72%] 421s ........................................................................ [ 72%] 421s ........................................................................ [ 72%] 422s ................................X....................................... [ 72%] 422s ........................................................................ [ 72%] 422s ........................................................................ [ 73%] 422s ........................................................................ [ 73%] 422s ........................................................................ [ 73%] 422s s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s... [ 73%] 422s s...s................................................................... [ 73%] 422s ........................................................................ [ 73%] 422s ....s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s... [ 73%] 422s s...s...s............................................................... [ 73%] 422s ........................................................................ [ 74%] 422s ........................................................................ [ 74%] 422s ........................................................................ [ 74%] 422s ..................s...s...s...s...s...s...s...s...s...s...s...s...s...s. [ 74%] 422s ..s...s...s...s...s...s................................................. [ 74%] 422s ........................................................................ [ 74%] 423s ........................................................................ [ 74%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 75%] 423s ........................................................................ [ 76%] 423s ........................................................................ [ 76%] 423s ........................................................................ [ 76%] 423s ........................................................................ [ 76%] 423s .............. [ 76%] 423s special/tests/test_bdtr.py ........................ [ 76%] 423s special/tests/test_boost_ufuncs.py ........ [ 76%] 423s special/tests/test_boxcox.py .......... [ 76%] 423s special/tests/test_cdflib.py .................................... [ 76%] 423s special/tests/test_cdft_asymptotic.py ... [ 76%] 423s special/tests/test_cephes_intp_cast.py .................. [ 76%] 423s special/tests/test_cosine_distr.py ............................... [ 76%] 423s special/tests/test_cython_special.py ................................... [ 76%] 427s ........................xxxxx..xx..xx................................... [ 76%] 427s ........................................................................ [ 77%] 427s ...xxxx............xxxx.................................... [ 77%] 427s special/tests/test_data.py ............................................. [ 77%] 427s ........................................................................ [ 77%] 428s x.x...............................................x..x...x.............. [ 77%] 428s ........................... [ 77%] 428s special/tests/test_dd.py ..... [ 77%] 428s special/tests/test_digamma.py ... [ 77%] 428s special/tests/test_ellip_harm.py ..... [ 77%] 428s special/tests/test_erfinv.py ............. [ 77%] 428s special/tests/test_exponential_integrals.py ........................... [ 77%] 428s special/tests/test_extending.py s [ 77%] 428s special/tests/test_faddeeva.py ................. [ 77%] 428s special/tests/test_gamma.py .. [ 77%] 428s special/tests/test_gammainc.py ............................. [ 77%] 428s special/tests/test_hyp2f1.py ........................................... [ 77%] 428s ...x.......................................x............................ [ 78%] 428s ....x.........x............................x..................x......... [ 78%] 428s ....................................... [ 78%] 428s special/tests/test_hypergeometric.py ................................... [ 78%] 428s .................................xx.... [ 78%] 428s special/tests/test_iv_ratio.py ......................................... [ 78%] 428s ........... [ 78%] 428s special/tests/test_kolmogorov.py ..................................... [ 78%] 428s special/tests/test_lambertw.py ...... [ 78%] 428s special/tests/test_log_softmax.py .......... [ 78%] 428s special/tests/test_loggamma.py ...... [ 78%] 428s special/tests/test_logit.py .......... [ 78%] 429s special/tests/test_logsumexp.py ........... [ 78%] 429s special/tests/test_mpmath.py sssssssssssssssssss [ 78%] 429s special/tests/test_nan_inputs.py ....................................... [ 78%] 429s ........................................................................ [ 78%] 429s ........................................................................ [ 78%] 1654s ................................................... [ 79%] 1654s special/tests/test_ndtr.py ........ [ 79%] 1654s special/tests/test_ndtri_exp.py ............ [ 79%] 1655s special/tests/test_orthogonal.py ............................... [ 79%] 1655s special/tests/test_orthogonal_eval.py .................................. [ 79%] 1655s ............................................................. [ 79%] 1655s special/tests/test_owens_t.py .... [ 79%] 1655s special/tests/test_pcf.py .. [ 79%] 1655s special/tests/test_pdtr.py .......... [ 79%] 1655s special/tests/test_powm1.py .............................. [ 79%] 1655s special/tests/test_precompute_expn_asy.py s [ 79%] 1655s special/tests/test_precompute_gammainc.py ssss [ 79%] 1655s special/tests/test_round.py .. [ 79%] 1655s special/tests/test_sf_error.py .......... [ 79%] 1655s special/tests/test_sici.py .. [ 79%] 1655s special/tests/test_specfun.py .... [ 79%] 1655s special/tests/test_spence.py .. [ 79%] 1655s special/tests/test_spfun_stats.py .... [ 79%] 1655s special/tests/test_sph_harm.py .. [ 79%] 1655s special/tests/test_spherical_bessel.py ................................. [ 79%] 1655s .... [ 79%] 1658s special/tests/test_support_alternative_backends.py ssss................. [ 79%] 1658s . [ 79%] 1658s special/tests/test_trig.py ..s. [ 79%] 1658s special/tests/test_ufunc_signatures.py ................................. [ 79%] 1658s ........................................................................ [ 79%] 1658s ........................................................................ [ 79%] 1658s ........................................................................ [ 80%] 1658s ........................................................................ [ 80%] 1658s .... [ 80%] 1658s special/tests/test_wright_bessel.py .................................... [ 80%] 1658s ........................................................................ [ 80%] 1658s ........................................................................ [ 80%] 1658s ........................................................................ [ 80%] 1658s ......................................................xxxxxxxxxxxxxxx... [ 80%] 1659s ........................................................................ [ 81%] 1659s .................... [ 81%] 1659s special/tests/test_wrightomega.py .......... [ 81%] 1659s special/tests/test_zeta.py ..... [ 81%] 1659s stats/tests/test_axis_nan_policy.py s................................... [ 81%] 1662s ........s..............s...........................................s.... [ 81%] 1663s ..........s...........................................s................. [ 81%] 1663s ........................................................................ [ 81%] 1663s ........................................................................ [ 81%] 1663s ........................................................................ [ 81%] 1663s ........................................................................ [ 81%] 1663s ........................................................................ [ 82%] 1663s ........................................................................ [ 82%] 1664s ........................................................................ [ 82%] 1664s ........................................................................ [ 82%] 1664s ........................................................................ [ 82%] 1664s ........................................................................ [ 82%] 1664s ...............................sss...................................... [ 82%] 1664s .................................................. [ 83%] 1665s stats/tests/test_binned_statistic.py ................................... [ 83%] 1665s .......................... [ 83%] 1665s stats/tests/test_censored_data.py ............ [ 83%] 1665s stats/tests/test_contingency.py ............. [ 83%] 1669s stats/tests/test_continuous_basic.py ..........................s........ [ 83%] 1674s ..................ssss.ss...................s......s.s....s...........ss [ 83%] 1677s ...........ss..........ss..ss..ss..ss..ss..ss..ss............ss......... [ 83%] 1680s ...........ssss..ss......ss..ss........ssssss..ss..ss..ss..ssss..ss..... [ 83%] 1682s .....ss..ss......ss..........ss..............ss........ssss..ssss..sssss [ 83%] 1683s sssss..ssssssssss..ss..........ss..ssssss..........ss......ss......ss... [ 83%] 1686s .....ssss..ssssss......ss..ss............ss..ss........ssss....ss....... [ 84%] 1687s ...ss....ssss..ssssss......ss..ss..ssssssssss..ssss......ssssss......... [ 84%] 1688s .....ss..........................................s...................... [ 84%] 1688s ....ssss.ss...................s......s.s....s...........ss.............. [ 84%] 1689s ......................s................................................. [ 84%] 1689s .....................s.................................................. [ 84%] 1689s ........................................................................ [ 84%] 1689s ........................................................................ [ 85%] 1689s ........................................................................ [ 85%] 1689s ........................................................................ [ 85%] 1689s ........................................................................ [ 85%] 1690s ........................................................................ [ 85%] 1690s ........................................................................ [ 85%] 1690s ........................................................................ [ 85%] 1690s ........................................................................ [ 85%] 1690s ........................................................................ [ 86%] 1690s ........................................................................ [ 86%] 1690s ........................................................................ [ 86%] 1690s ....................................s...................... [ 86%] 1692s stats/tests/test_continuous_fit_censored.py .................. [ 86%] 1692s stats/tests/test_crosstab.py ............. [ 86%] 1692s stats/tests/test_discrete_basic.py ..................................... [ 86%] 1693s ........................................................................ [ 86%] 1693s ........................................................................ [ 86%] 1693s ........................................................................ [ 87%] 1693s ........................................................................ [ 87%] 1693s ............................................................... [ 87%] 1693s stats/tests/test_discrete_distns.py .................................... [ 87%] 1693s ..................................... [ 87%] 1693s stats/tests/test_distributions.py ...................................... [ 87%] 1693s ssssssssssssssssssssssss................................................ [ 87%] 1694s ........................................................................ [ 87%] 1695s ........................................................................ [ 87%] 1695s ................................................................s....... [ 88%] 1695s ........................................................................ [ 88%] 1695s ........................................................................ [ 88%] 1696s ........................................................................ [ 88%] 1696s ........................................................................ [ 88%] 1697s ........................................................................ [ 88%] 1698s ........................................................................ [ 88%] 1699s ........................................................................ [ 89%] 1700s ........................................................................ [ 89%] 1700s ........................................................................ [ 89%] 1701s ........................................................................ [ 89%] 1701s ........................................................................ [ 89%] 1702s ........................................................................ [ 89%] 1702s ........................................................................ [ 89%] 1702s ........................................................................ [ 89%] 1702s ........................................................................ [ 90%] 1702s ........................................................................ [ 90%] 1703s .....................................ss.xxxx....s....................... [ 90%] 1705s ..xxxxxxxxxx.....................s................................s..... [ 90%] 1705s ........................s............................s.............ss... [ 90%] 1705s ........................................................................ [ 90%] 1705s ..............................................s......................... [ 90%] 1706s ........................................................................ [ 91%] 1707s ...............................................ssssss.....ss............ [ 91%] 1707s ........................................................................ [ 91%] 1707s ........................................................................ [ 91%] 1711s ..............................................xxxxxxxxxxxxxxxxxxxxxxxxxx [ 91%] 1712s x....................................................................... [ 91%] 1712s ...........................................s...................s........ [ 91%] 1712s .................ss.................................. [ 92%] 1713s stats/tests/test_entropy.py .................................... [ 92%] 1713s stats/tests/test_fast_gen_inversion.py ................................. [ 92%] 1714s .......................................s................................ [ 92%] 1715s ................................. [ 92%] 1715s stats/tests/test_fit.py ................................................ [ 92%] 1716s ....................................................................ss.. [ 92%] 1720s .sss...s.s.ss.ssss.....sssssss........ssss....s..s..sss.s.ss..sss.sssss. [ 92%] 1725s .......ss......s.ssssss..s.sssssss.......ssssssss...s.ss.ssss.ssss.ssss. [ 92%] 1728s ssssssss..........s..........s.....sss... [ 92%] 1729s stats/tests/test_hypotests.py .......................................... [ 93%] 1729s ........................................................................ [ 93%] 1731s .....................................................s.................. [ 93%] 1732s .......................... [ 93%] 1732s stats/tests/test_kdeoth.py ..ss........s.......s.....ssssssss..s.......s [ 93%] 1732s .......s.........s.s..... [ 93%] 1732s stats/tests/test_mgc.py .........ssssssssss [ 93%] 1732s stats/tests/test_morestats.py ....................................s..... [ 93%] 1732s ........................................................................ [ 93%] 1732s .................................s...................................... [ 93%] 1733s .s..............................................................s....... [ 93%] 1734s ........................................................................ [ 94%] 1734s .................................................................... [ 94%] 1734s stats/tests/test_mstats_basic.py ......s..s...............s............. [ 94%] 1734s ........................................................................ [ 94%] 1735s ................................. [ 94%] 1735s stats/tests/test_mstats_extras.py .......... [ 94%] 1736s stats/tests/test_multicomp.py .......................................... [ 94%] 1737s ...... [ 94%] 1737s stats/tests/test_multivariate.py ......s.s..ss..ss............ssss....ss [ 94%] 1737s ss........ssssssss........ssssssss...................................... [ 94%] 1737s ........................................................................ [ 94%] 1738s ........................................................................ [ 95%] 1739s ........................................................................ [ 95%] 1741s ..............ssssssssssssssssssss...................................... [ 95%] 1742s ........................................................................ [ 95%] 1742s ........................................................................ [ 95%] 1742s .... [ 95%] 1742s stats/tests/test_odds_ratio.py ......................................... [ 95%] 1742s ............................................................. [ 95%] 1743s stats/tests/test_qmc.py ........x....................................... [ 95%] 1744s ..................sss..........................................s.s.s.s.s [ 96%] 1744s .s.s...ssss............................ [ 96%] 1745s stats/tests/test_rank.py ............................................. [ 96%] 1745s stats/tests/test_relative_risk.py ............... [ 96%] 1746s stats/tests/test_resampling.py ......................................... [ 96%] 1748s ....................................s................................... [ 96%] 1751s .........sssss............................................ss.......ssss. [ 96%] 1751s ......... [ 96%] 1751s stats/tests/test_sampling.py ........................................... [ 96%] 1752s ........................................................................ [ 96%] 1753s ........................................................................ [ 97%] 1753s ...........s..ss...ssssssssss..s............................ssssssssssss [ 97%] 1753s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 97%] 1754s ssssssssssssssssssssssssssssssss........................................ [ 97%] 1754s ............ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 97%] 1754s ssssssssssssssssssssssssssssssssssssssssssssssssssssssss................ [ 97%] 1755s ............s..ss...ssssssssss..s................................ [ 97%] 1755s stats/tests/test_sensitivity_analysis.py .s...... [ 97%] 1755s stats/tests/test_stats.py .............................................. [ 97%] 1760s ........................................................................ [ 98%] 1760s ........................................................................ [ 98%] 1761s ........................................................................ [ 98%] 1761s ........................................................................ [ 98%] 1761s ........................................................................ [ 98%] 1761s ................................ss...................................... [ 98%] 1761s ........................................................................ [ 98%] 1762s .................ss....s......................................ssssss.... [ 99%] 1763s ........................xxx.....................................ss...... [ 99%] 1763s ........................................................................ [ 99%] 1763s ........................................................................ [ 99%] 1764s ........................................................................ [ 99%] 1764s ........................................................................ [ 99%] 1765s ........................................................................ [ 99%] 1765s ................s [ 99%] 1765s stats/tests/test_survival.py ....................... [ 99%] 1765s stats/tests/test_tukeylambda_stats.py ... [ 99%] 1765s stats/tests/test_variation.py .............................. [100%] 1765s 1765s =============================== warnings summary =============================== 1765s integrate/tests/test__quad_vec.py: 24 warnings 1765s optimize/tests/test__differential_evolution.py: 2 warnings 1765s optimize/tests/test__shgo.py: 4 warnings 1765s optimize/tests/test_optimize.py: 2 warnings 1765s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=2334) is multi-threaded, use of fork() may lead to deadlocks in the child. 1765s self.pid = os.fork() 1765s 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-gmean-args6-kwds6-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-gmean-args6-kwds6-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-gmean-args6-kwds6-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-hmean-args7-kwds7-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-hmean-args7-kwds7-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-hmean-args7-kwds7-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-pmean-args8-kwds8-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-pmean-args8-kwds8-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-pmean-args8-kwds8-1-1-False-] 1765s /usr/lib/python3/dist-packages/numpy/lib/_function_base_impl.py:552: RuntimeWarning: Mean of empty slice. 1765s avg = a.mean(axis, **keepdims_kw) 1765s 1765s stats/tests/test_axis_nan_policy.py: 93 warnings 1765s /usr/lib/python3/dist-packages/numpy/_core/fromnumeric.py:3860: RuntimeWarning: Mean of empty slice. 1765s return _methods._mean(a, axis=axis, dtype=dtype, 1765s 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-tmean-args47-kwds47-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-tmean-args47-kwds47-1-1-False-] 1765s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-tmean-args47-kwds47-1-1-False-] 1765s /usr/lib/python3/dist-packages/scipy/stats/_stats_py.py:616: RuntimeWarning: Mean of empty slice 1765s return np.nanmean(a, axis=axis) 1765s 1765s stats/tests/test_qmc.py::TestUtils::test_geometric_discrepancy_mst_with_zero_distances 1765s /usr/lib/python3/dist-packages/scipy/stats/tests/test_qmc.py:232: UserWarning: Sample contains duplicate points. 1765s assert_allclose(qmc.geometric_discrepancy(sample, method='mst'), 0.5) 1765s 1765s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 1765s ============================= slowest 20 durations ============================= 1765s 1225.32s call special/tests/test_nan_inputs.py::test_nan_inputs[sph_harm] 1765s 13.01s call sparse/linalg/_isolve/tests/test_iterative.py::test_precond_inverse[poisson2d] 1765s 3.41s call optimize/tests/test_optimize.py::test_cobyla_threadsafe 1765s 2.56s call linalg/tests/test_matfuncs.py::TestExpM::test_gh18086 1765s 2.23s call special/tests/test_cython_special.py::test_cython_api[elliprj] 1765s 2.02s call optimize/tests/test_optimize.py::TestOptimizeSimple::test_minimize_callback_copies_array[fmin] 1765s 1.92s call optimize/tests/test__basinhopping.py::TestBasinHopping::test_all_nograd_minimizers 1765s 1.70s call optimize/tests/test_lsq_linear.py::TestTRF::test_sparse_bounds 1765s 1.66s call interpolate/tests/test_rgi.py::TestRegularGridInterpolator::test_descending_points_nd[5--slinear] 1765s 1.46s call linalg/tests/test_decomp.py::test_svd_gesdd_nofegfault 1765s 1.36s call signal/tests/test_signaltools.py::test_filtfilt_gust 1765s 1.29s call optimize/tests/test_constraint_conversion.py::TestNewToOld::test_individual_constraint_objects 1765s 1.29s call optimize/tests/test_linprog.py::TestLinprogHiGHSMIP::test_mip1 1765s 1.19s call sparse/tests/test_sparsetools.py::TestInt32Overflow::test_coo_todense 1765s 1.08s call spatial/tests/test_kdtree.py::test_kdtree_box[cKDTree] 1765s 1.08s call spatial/tests/test_kdtree.py::test_kdtree_box[KDTree] 1765s 1.05s call signal/tests/test_filter_design.py::TestBessel::test_fs_param 1765s 1.04s call optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_strategy_fn 1765s 0.93s call linalg/tests/test_decomp.py::TestOrdQZWorkspaceSize::test_decompose 1765s 0.90s call cluster/tests/test_vq.py::TestKMean::test_krandinit[numpy] 1765s = 49586 passed, 2742 skipped, 11809 deselected, 159 xfailed, 11 xpassed, 138 warnings in 1593.39s (0:26:33) = 1768s === Done: python3.12 === 1768s === Testing: python3.13 === 1780s ============================= test session starts ============================== 1780s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 1780s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 1780s plugins: hypothesis-6.125.2, typeguard-4.4.1 1780s collected 64307 items / 11809 deselected / 52498 selected 1780s 1780s _lib/tests/test__gcutils.py ...... [ 0%] 1781s _lib/tests/test__pep440.py ......... [ 0%] 1781s _lib/tests/test__testutils.py .. [ 0%] 1781s _lib/tests/test__threadsafety.py .. [ 0%] 1782s _lib/tests/test__util.py ........................ [ 0%] 1782s _lib/tests/test_array_api.py ssssssssssssss [ 0%] 1782s _lib/tests/test_bunch.py ............................ [ 0%] 1782s _lib/tests/test_ccallback.py ss.. [ 0%] 1782s _lib/tests/test_deprecation.py . [ 0%] 1782s _lib/tests/test_public_api.py .......................................... [ 0%] 1782s ........................................................... [ 0%] 1782s _lib/tests/test_scipy_version.py . [ 0%] 1782s _lib/tests/test_tmpdirs.py ... [ 0%] 1782s cluster/tests/test_disjoint_set.py ..................... [ 0%] 1782s cluster/tests/test_hierarchy.py ........................................ [ 0%] 1782s .........................................sss.......... [ 0%] 1783s cluster/tests/test_vq.py ............................... [ 0%] 1783s constants/tests/test_codata.py ....... [ 0%] 1783s constants/tests/test_constants.py ....... [ 0%] 1783s datasets/tests/test_data.py . [ 0%] 1783s fft/_pocketfft/tests/test_basic.py ..................................... [ 0%] 1783s ........................................................................ [ 0%] 1783s ........................................................................ [ 1%] 1783s ........................................................................ [ 1%] 1783s ........................................................................ [ 1%] 1784s ........................................................................ [ 1%] 1784s .............................................................. [ 1%] 1785s fft/_pocketfft/tests/test_real_transforms.py ........................... [ 1%] 1785s ........................................................................ [ 1%] 1785s ........................................................................ [ 1%] 1785s ........................................................................ [ 2%] 1785s ........................................................................ [ 2%] 1785s ........................................................................ [ 2%] 1786s ........................................................................ [ 2%] 1786s ........................................................................ [ 2%] 1786s ........................................................................ [ 2%] 1786s ........................................................................ [ 2%] 1786s ........................................................................ [ 2%] 1786s ........................................................................ [ 3%] 1786s ........................................................................ [ 3%] 1787s ........................................................................ [ 3%] 1787s ........................................................................ [ 3%] 1787s ........................................................................ [ 3%] 1787s ........................................................................ [ 3%] 1787s ........................................................................ [ 3%] 1787s ........................................................................ [ 4%] 1787s ........................................................................ [ 4%] 1787s ........................................................................ [ 4%] 1787s ........................................................................ [ 4%] 1788s ........................................................................ [ 4%] 1788s ........................................................................ [ 4%] 1788s ........................................................................ [ 4%] 1788s ........................................................................ [ 5%] 1788s ........................................................................ [ 5%] 1788s ................................................. [ 5%] 1788s fft/tests/test_backend.py .............................................. [ 5%] 1788s [ 5%] 1788s fft/tests/test_basic.py ................................................ [ 5%] 1788s ........................................................................ [ 5%] 1789s ..................................... [ 5%] 1789s fft/tests/test_fftlog.py .......................................... [ 5%] 1789s fft/tests/test_helper.py ............................... [ 5%] 1789s fft/tests/test_multithreading.py ....................................... [ 5%] 1789s ................ [ 5%] 1789s fft/tests/test_real_transforms.py ...................................... [ 5%] 1789s ........................................................................ [ 6%] 1789s ........................................................................ [ 6%] 1789s ........................................................................ [ 6%] 1789s ........................................................................ [ 6%] 1789s ........................................................................ [ 6%] 1790s ........................................................................ [ 6%] 1790s ........................................................................ [ 6%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 7%] 1790s ........................................................................ [ 8%] 1790s ........................................................................ [ 8%] 1790s ........................................................................ [ 8%] 1790s ........................................................................ [ 8%] 1790s ........................................................................ [ 8%] 1791s ........................................................................ [ 8%] 1791s ........................................................................ [ 8%] 1791s ........................................................................ [ 8%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 9%] 1791s ........................................................................ [ 10%] 1791s ........................................................................ [ 10%] 1791s ........................................................................ [ 10%] 1791s ........................................................................ [ 10%] 1791s ........................................................................ [ 10%] 1791s ........................................................................ [ 10%] 1792s ........................................................................ [ 10%] 1792s ........................................................................ [ 11%] 1792s ........................................................................ [ 11%] 1792s ........................................................................ [ 11%] 1792s ........................................................................ [ 11%] 1792s ........................................................................ [ 11%] 1792s .................................................................. [ 11%] 1792s fftpack/tests/test_basic.py ......x..................................... [ 11%] 1792s ........................................................................ [ 11%] 1792s ........................................................................ [ 12%] 1792s ........................................................................ [ 12%] 1793s .................................... [ 12%] 1793s fftpack/tests/test_helper.py .... [ 12%] 1793s fftpack/tests/test_pseudo_diffs.py ............................. [ 12%] 1793s fftpack/tests/test_real_transforms.py .................................. [ 12%] 1794s ........................................................................ [ 12%] 1794s ........................................................................ [ 12%] 1794s .............................................. [ 12%] 1795s integrate/_ivp/tests/test_ivp.py ....................................... [ 12%] 1796s ............... [ 12%] 1796s integrate/_ivp/tests/test_rk.py .......... [ 12%] 1796s integrate/tests/test__quad_vec.py .......................... [ 12%] 1796s integrate/tests/test_banded_ode_solvers.py . [ 12%] 1797s integrate/tests/test_bvp.py ................ [ 12%] 1797s integrate/tests/test_integrate.py ...................................... [ 13%] 1797s ......... [ 13%] 1797s integrate/tests/test_odeint_jac.py .. [ 13%] 1797s integrate/tests/test_quadpack.py ....................................... [ 13%] 1798s ..sssssssssssssssssssssssssssssssssssssssssss........... [ 13%] 1798s integrate/tests/test_quadrature.py ..................................... [ 13%] 1798s ........................................................................ [ 13%] 1798s ........................................................................ [ 13%] 1798s ........................................................................ [ 13%] 1799s ................ [ 13%] 1799s integrate/tests/test_tanhsinh.py ....................................... [ 13%] 1799s .........ssss........................................................... [ 13%] 1799s .............................ss..ss......ss............................. [ 14%] 1799s .................................ss..................................... [ 14%] 1800s ........................................ [ 14%] 1800s interpolate/tests/test_bsplines.py ..................................... [ 14%] 1800s ........................................................................ [ 14%] 1800s ......................x................................................. [ 14%] 1800s ............................. [ 14%] 1801s interpolate/tests/test_fitpack.py .....................................s [ 14%] 1801s ....s.. [ 14%] 1801s interpolate/tests/test_fitpack2.py ..................................... [ 14%] 1801s ................................ [ 14%] 1801s interpolate/tests/test_gil.py s [ 14%] 1801s interpolate/tests/test_interpnd.py ..................... [ 14%] 1801s interpolate/tests/test_interpolate.py .................................. [ 15%] 1802s ........................................................................ [ 15%] 1803s ....................... [ 15%] 1803s interpolate/tests/test_ndgriddata.py .................... [ 15%] 1803s interpolate/tests/test_pade.py .... [ 15%] 1803s interpolate/tests/test_polyint.py ...................................... [ 15%] 1803s ........................................................................ [ 15%] 1803s ................. [ 15%] 1803s interpolate/tests/test_rbf.py .......... [ 15%] 1803s interpolate/tests/test_rbfinterp.py .................................... [ 15%] 1804s ........................................................................ [ 15%] 1804s ........................................................................ [ 15%] 1804s ..... [ 15%] 1805s interpolate/tests/test_rgi.py ....................s..................... [ 15%] 1807s ..................................ss.......ss..................s.......s [ 16%] 1809s s.......ss............................................s.......ss........ [ 16%] 1809s ..s......................... [ 16%] 1809s io/_harwell_boeing/tests/test_fortran_format.py ........... [ 16%] 1809s io/_harwell_boeing/tests/test_hb.py .. [ 16%] 1809s io/arff/tests/test_arffread.py .......s................... [ 16%] 1809s io/matlab/tests/test_byteordercodes.py .. [ 16%] 1809s io/matlab/tests/test_mio.py ............................................ [ 16%] 1809s ............................ [ 16%] 1809s io/matlab/tests/test_mio5_utils.py ...... [ 16%] 1809s io/matlab/tests/test_mio_funcs.py . [ 16%] 1809s io/matlab/tests/test_mio_utils.py .. [ 16%] 1809s io/matlab/tests/test_miobase.py . [ 16%] 1809s io/matlab/tests/test_pathological.py .. [ 16%] 1810s io/matlab/tests/test_streams.py ........... [ 16%] 1810s io/tests/test_fortran.py ........... [ 16%] 1810s io/tests/test_idl.py ................................................... [ 16%] 1810s ................ [ 16%] 1810s io/tests/test_mmio.py .................................................. [ 16%] 1810s .........................s.............................................. [ 16%] 1810s .............................s [ 16%] 1810s io/tests/test_netcdf.py ......................... [ 17%] 1810s io/tests/test_paths.py ........... [ 17%] 1810s io/tests/test_wavfile.py ................s.............................. [ 17%] 1810s ........................................................................ [ 17%] 1810s ........................................................................ [ 17%] 1810s ........................................................................ [ 17%] 1810s .......................... [ 17%] 1811s linalg/tests/test_basic.py ............................................. [ 17%] 1811s ................................................................s....... [ 17%] 1811s ........................................................................ [ 17%] 1812s ........................................................................ [ 18%] 1814s ........................................................................ [ 18%] 1814s ........................................s............................... [ 18%] 1814s ........................... [ 18%] 1814s linalg/tests/test_blas.py .............................................. [ 18%] 1814s .....x. [ 18%] 1814s linalg/tests/test_cython_blas.py ...... [ 18%] 1814s linalg/tests/test_cython_lapack.py ... [ 18%] 1814s linalg/tests/test_cythonized_array_utils.py ............................ [ 18%] 1814s ...................... [ 18%] 1814s linalg/tests/test_decomp.py ............................................ [ 18%] 1815s ........................................................................ [ 18%] 1815s ........................................................................ [ 19%] 1816s ........................................................................ [ 19%] 1816s ........................................................................ [ 19%] 1816s ........................................................................ [ 19%] 1817s ..............................................x......................... [ 19%] 1817s ................ [ 19%] 1817s linalg/tests/test_decomp_cholesky.py .....s............................. [ 19%] 1817s .................................... [ 19%] 1817s linalg/tests/test_decomp_cossin.py ..................................... [ 19%] 1818s ...................................................... [ 19%] 1818s linalg/tests/test_decomp_ldl.py ............ [ 19%] 1818s linalg/tests/test_decomp_lu.py ......................................... [ 19%] 1818s ................................................... [ 20%] 1818s linalg/tests/test_decomp_polar.py .. [ 20%] 1818s linalg/tests/test_decomp_update.py ..................................... [ 20%] 1818s ........................................................................ [ 20%] 1818s ........................................................................ [ 20%] 1819s ........................................................................ [ 20%] 1819s ........................................................................ [ 20%] 1819s ........................................................................ [ 20%] 1819s ........................................................................ [ 20%] 1819s ........................................................................ [ 21%] 1820s ........................................................................ [ 21%] 1820s .................................................... [ 21%] 1820s linalg/tests/test_extending.py s [ 21%] 1820s linalg/tests/test_fblas.py ............................................. [ 21%] 1820s ........................................................................ [ 21%] 1820s ............ [ 21%] 1821s linalg/tests/test_interpolative.py ..................................... [ 21%] 1821s ........... [ 21%] 1821s linalg/tests/test_lapack.py ............................................ [ 21%] 1821s ....................................................................s... [ 21%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 22%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1822s ........................................................................ [ 23%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 24%] 1823s ........................................................................ [ 25%] 1823s ........................................................................ [ 25%] 1823s ........................................................................ [ 25%] 1824s ........... [ 25%] 1824s linalg/tests/test_matfuncs.py ................xxxxx..............X...... [ 25%] 1827s .............X........................ [ 25%] 1827s linalg/tests/test_matmul_toeplitz.py .... [ 25%] 1827s linalg/tests/test_procrustes.py ........... [ 25%] 1827s linalg/tests/test_sketches.py ..... [ 25%] 1827s linalg/tests/test_solve_toeplitz.py ......X......................... [ 25%] 1828s linalg/tests/test_solvers.py ........x....x....x.xx..................... [ 25%] 1828s .... [ 25%] 1828s linalg/tests/test_special_matrices.py .................................. [ 25%] 1828s ........................................................................ [ 25%] 1828s ...... [ 25%] 1828s misc/tests/test_config.py .... [ 25%] 1828s misc/tests/test_doccer.py ..... [ 25%] 1828s ndimage/tests/test_c_api.py ... [ 25%] 1828s ndimage/tests/test_datatypes.py .X [ 25%] 1828s ndimage/tests/test_filters.py .......................................... [ 26%] 1828s ........................................................................ [ 26%] 1828s ........................................................................ [ 26%] 1828s ........................................................................ [ 26%] 1828s ........................................................................ [ 26%] 1828s ........................................................................ [ 26%] 1828s ........................................................................ [ 26%] 1828s ........................................................................ [ 26%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 27%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 28%] 1829s ........................................................................ [ 29%] 1829s ........................................................................ [ 29%] 1830s ........................................................................ [ 29%] 1830s ........................................................................ [ 29%] 1830s ........................................................................ [ 29%] 1830s ......................................................... [ 29%] 1830s ndimage/tests/test_fourier.py .......................................... [ 29%] 1830s .................................. [ 29%] 1830s ndimage/tests/test_interpolation.py .................................... [ 29%] 1830s ........................................................................ [ 30%] 1830s ........................................................................ [ 30%] 1830s ........................................................................ [ 30%] 1830s ........................................................................ [ 30%] 1831s ........................................................................ [ 30%] 1831s ........................................................................ [ 30%] 1831s ........................................................................ [ 30%] 1831s ........................................................................ [ 31%] 1831s ........................................................................ [ 31%] 1831s ........................................................................ [ 31%] 1831s ........................................................................ [ 31%] 1831s ........................................................................ [ 31%] 1831s ........................................................................ [ 31%] 1831s ................ [ 31%] 1831s ndimage/tests/test_measurements.py ..................................... [ 31%] 1831s ........................................................................ [ 31%] 1831s ................ [ 31%] 1831s ndimage/tests/test_morphology.py ....................................... [ 32%] 1831s ........................................................................ [ 32%] 1832s ........................................................................ [ 32%] 1832s ........................................................................ [ 32%] 1832s ........................................................................ [ 32%] 1832s ........................................................................ [ 32%] 1832s ........................................................................ [ 32%] 1832s ........................................................................ [ 33%] 1832s ........................................................................ [ 33%] 1832s ........................................................................ [ 33%] 1832s ........................................................................ [ 33%] 1832s ........................................................................ [ 33%] 1832s ..... [ 33%] 1832s ndimage/tests/test_ni_support.py .......... [ 33%] 1832s ndimage/tests/test_splines.py .................. [ 33%] 1832s odr/tests/test_odr.py ................s....... [ 33%] 1832s optimize/_trustregion_constr/tests/test_canonical_constraint.py ...... [ 33%] 1832s optimize/_trustregion_constr/tests/test_projections.py .......... [ 33%] 1832s optimize/_trustregion_constr/tests/test_qp_subproblem.py ............... [ 33%] 1832s ........ [ 33%] 1832s optimize/_trustregion_constr/tests/test_report.py .s [ 33%] 1835s optimize/tests/test__basinhopping.py ................................. [ 33%] 1836s optimize/tests/test__differential_evolution.py ......................... [ 33%] 1843s .............................s....... [ 33%] 1847s optimize/tests/test__dual_annealing.py ................................. [ 33%] 1849s ............. [ 34%] 1849s optimize/tests/test__linprog_clean_inputs.py ............. [ 34%] 1849s optimize/tests/test__numdiff.py ................................ [ 34%] 1850s optimize/tests/test__remove_redundancy.py .............................. [ 34%] 1850s ...................................... [ 34%] 1850s optimize/tests/test__root.py ............... [ 34%] 1851s optimize/tests/test__shgo.py ..................ss...................s... [ 34%] 1852s ............................ [ 34%] 1853s optimize/tests/test__spectral.py .... [ 34%] 1853s optimize/tests/test_bracket.py ......................................... [ 34%] 1853s ........................................................................ [ 34%] 1853s ........................................................................ [ 34%] 1853s ........................................................................ [ 34%] 1853s ........................................................................ [ 35%] 1854s ........................................................................ [ 35%] 1854s ................................................................... [ 35%] 1854s optimize/tests/test_chandrupatla.py .................................... [ 35%] 1855s ........................................................................ [ 35%] 1855s ........................... [ 35%] 1855s optimize/tests/test_cobyla.py s..... [ 35%] 1855s optimize/tests/test_cobyqa.py ........ [ 35%] 1857s optimize/tests/test_constraint_conversion.py ........ [ 35%] 1857s optimize/tests/test_constraints.py ................ [ 35%] 1857s optimize/tests/test_cython_optimize.py ..... [ 35%] 1857s optimize/tests/test_differentiable_functions.py ..............x. [ 35%] 1857s optimize/tests/test_differentiate.py ................................... [ 35%] 1858s ........................................................................ [ 35%] 1858s ...............................................XX................... [ 35%] 1858s optimize/tests/test_direct.py ....................................ss.... [ 36%] 1858s ..................... [ 36%] 1858s optimize/tests/test_extending.py s [ 36%] 1858s optimize/tests/test_hessian_update_strategy.py ..... [ 36%] 1858s optimize/tests/test_isotonic_regression.py ............................. [ 36%] 1858s ................ [ 36%] 1859s optimize/tests/test_lbfgsb_hessinv.py .. [ 36%] 1859s optimize/tests/test_lbfgsb_setulb.py .. [ 36%] 1859s optimize/tests/test_least_squares.py ................................... [ 36%] 1862s ........................................................................ [ 36%] 1862s ........... [ 36%] 1862s optimize/tests/test_linear_assignment.py ...................... [ 36%] 1862s optimize/tests/test_linesearch.py ........... [ 36%] 1862s optimize/tests/test_linprog.py ......................................... [ 36%] 1862s .........................................ss............................. [ 36%] 1863s .................................................s...................... [ 36%] 1863s ........................................................s.ss............ [ 36%] 1864s ................................................................s....... [ 37%] 1864s .....................................................................s.X [ 37%] 1865s ........................................................................ [ 37%] 1865s ....s.sX................................................................ [ 37%] 1865s ...............ssss..................................................... [ 37%] 1865s ............................sss..............................x.......... [ 37%] 1866s ........................................................................ [ 37%] 1868s ........x............................................................... [ 38%] 1868s .s........................... [ 38%] 1868s optimize/tests/test_lsq_common.py .......... [ 38%] 1870s optimize/tests/test_lsq_linear.py ..........s........s... [ 38%] 1870s optimize/tests/test_milp.py .x.........s [ 38%] 1870s optimize/tests/test_minimize_constrained.py .....................s...... [ 38%] 1871s ..........s.............................ssssssssssssssssssssssssssssssss [ 38%] 1873s ss.....................s................s............................... [ 38%] 1874s ..s.......x........s.................................s.......x........s. [ 38%] 1875s .....................x........X [ 38%] 1875s optimize/tests/test_minpack.py ......................................... [ 38%] 1875s .................................................... [ 38%] 1875s optimize/tests/test_nnls.py ....... [ 38%] 1875s optimize/tests/test_nonlin.py ....................................... [ 39%] 1876s optimize/tests/test_optimize.py .........................x.............. [ 39%] 1877s ...........x.........................x.........................x........ [ 39%] 1879s ................s....................................x.................. [ 39%] 1880s ........................................................................ [ 39%] 1880s ........................................................................ [ 39%] 1885s ......................................................s.ss.ss.ss.ss.ss.s [ 39%] 1886s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s [ 39%] 1886s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s.................................... [ 40%] 1886s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s [ 40%] 1887s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s.................. [ 40%] 1887s .... [ 40%] 1887s optimize/tests/test_quadratic_assignment.py .............. [ 40%] 1887s optimize/tests/test_regression.py ... [ 40%] 1887s optimize/tests/test_slsqp.py ..................................... [ 40%] 1887s optimize/tests/test_tnc.py .................... [ 40%] 1887s optimize/tests/test_trustregion.py ........ [ 40%] 1888s optimize/tests/test_trustregion_exact.py .......... [ 40%] 1888s optimize/tests/test_trustregion_krylov.py ..... [ 40%] 1888s optimize/tests/test_zeros.py ........................................... [ 40%] 1888s ........................................................................ [ 40%] 1888s ...................... [ 40%] 1888s signal/tests/test_array_tools.py ...... [ 40%] 1888s signal/tests/test_bsplines.py ........... [ 40%] 1888s signal/tests/test_cont2discrete.py ........................ [ 40%] 1888s signal/tests/test_czt.py ............................................... [ 40%] 1888s ........................................................................ [ 41%] 1888s .......................................... [ 41%] 1888s signal/tests/test_dltisys.py ................................ [ 41%] 1889s signal/tests/test_filter_design.py ..................................... [ 41%] 1889s ....................................................s................... [ 41%] 1890s ........................................................................ [ 41%] 1890s .............................................................. [ 41%] 1890s signal/tests/test_fir_filter_design.py ................................. [ 41%] 1891s .... [ 41%] 1891s signal/tests/test_ltisys.py ............................................ [ 41%] 1891s ..................................... [ 41%] 1891s signal/tests/test_max_len_seq.py .. [ 41%] 1891s signal/tests/test_peak_finding.py ...................................... [ 41%] 1891s ............... [ 42%] 1891s signal/tests/test_result_type.py ..... [ 42%] 1891s signal/tests/test_savitzky_golay.py .............. [ 42%] 1891s signal/tests/test_short_time_fft.py .................................... [ 42%] 1891s ........................................................................ [ 42%] 1892s ........................................ [ 42%] 1892s signal/tests/test_signaltools.py ....................................... [ 42%] 1892s ........................................................................ [ 42%] 1893s ........................................................................ [ 42%] 1893s ........................................................................ [ 42%] 1893s ........................................................................ [ 42%] 1893s ........................................................................ [ 43%] 1893s ........................................................................ [ 43%] 1893s ........................................................................ [ 43%] 1893s ........................................................................ [ 43%] 1893s ........................................................................ [ 43%] 1893s ........................................................................ [ 43%] 1894s ........................................................................ [ 43%] 1894s ........................................................................ [ 44%] 1894s ........................................................................ [ 44%] 1894s ........................................................................ [ 44%] 1894s ........................................................................ [ 44%] 1894s ........................................................................ [ 44%] 1894s ........................................................................ [ 44%] 1894s .....s.................................................................. [ 44%] 1894s ........................................................................ [ 45%] 1895s ........................................................................ [ 45%] 1895s ........................................................................ [ 45%] 1895s ........................................................................ [ 45%] 1895s ........................................................................ [ 45%] 1895s ........................................................................ [ 45%] 1895s ........................................................................ [ 45%] 1897s .......ss............................................................... [ 45%] 1897s ......................................... [ 46%] 1897s signal/tests/test_spectral.py .......................................... [ 46%] 1898s ........................................................................ [ 46%] 1898s ... [ 46%] 1898s signal/tests/test_upfirdn.py ........................................... [ 46%] 1898s ........................................................................ [ 46%] 1898s ........................................................................ [ 46%] 1899s ........................................................................ [ 46%] 1899s .................................. [ 46%] 1899s signal/tests/test_waveforms.py .................................. [ 46%] 1899s signal/tests/test_wavelets.py ....... [ 46%] 1899s signal/tests/test_windows.py ........................................... [ 46%] 1899s ...... [ 47%] 1899s sparse/csgraph/tests/test_connected_components.py ........ [ 47%] 1899s sparse/csgraph/tests/test_conversions.py ... [ 47%] 1899s sparse/csgraph/tests/test_flow.py ...................................... [ 47%] 1899s ..... [ 47%] 1899s sparse/csgraph/tests/test_graph_laplacian.py ........................... [ 47%] 1899s ........................................................................ [ 47%] 1899s ........................................................................ [ 47%] 1899s ........................................................................ [ 47%] 1899s ........................................................................ [ 47%] 1899s ........................................................................ [ 47%] 1899s ........................................................................ [ 47%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 48%] 1900s ........................................................................ [ 49%] 1900s ........................................................................ [ 49%] 1900s ................... [ 49%] 1900s sparse/csgraph/tests/test_matching.py ......................s [ 49%] 1900s sparse/csgraph/tests/test_pydata_sparse.py sssssssssssssssssssssssssssss [ 49%] 1900s sssss [ 49%] 1900s sparse/csgraph/tests/test_reordering.py ... [ 49%] 1901s sparse/csgraph/tests/test_shortest_path.py ............................. [ 49%] 1901s ........... [ 49%] 1901s sparse/csgraph/tests/test_spanning_tree.py . [ 49%] 1901s sparse/csgraph/tests/test_traversal.py ........ [ 49%] 1901s sparse/linalg/_dsolve/tests/test_linsolve.py .s.s.s.s.ss..........s..... [ 49%] 1901s ........................ [ 49%] 1902s sparse/linalg/_eigen/arpack/tests/test_arpack.py ................... [ 49%] 1902s sparse/linalg/_eigen/lobpcg/tests/test_lobpcg.py ....................... [ 49%] 1903s ........................................................................ [ 49%] 1903s ........................................................................ [ 49%] 1903s ........................................................................ [ 50%] 1903s ........................................................................ [ 50%] 1903s .... [ 50%] 1903s sparse/linalg/_eigen/tests/test_svds.py ................................ [ 50%] 1903s ..........................................s.ss..s.ssss....s.ss..s.ssss.. [ 50%] 1905s ..s.ss..s.ssss....s.ss..s.ssss....s.ss..s.ssss....s.ss..s.ssss.......... [ 50%] 1905s .............s.......................................................... [ 50%] 1906s ......................................s.ss....s.ss....s.ss....s.ss....s. [ 50%] 1908s ss....s.ss....s.ss....s.ss....s.ss....s.ss....s.ss....s.ss.............. [ 50%] 1908s ........................................................................ [ 51%] 1908s ........................s.......s.......s.......s.......s.......s....... [ 51%] 1908s s.......s.......s.......s.......s.......s...........ssssssss............ [ 51%] 1908s xx [ 51%] 1908s sparse/linalg/_isolve/tests/test_gcrotmk.py ....... [ 51%] 1908s sparse/linalg/_isolve/tests/test_iterative.py .......................... [ 51%] 1909s ........................................................................ [ 51%] 1910s ........................................................................ [ 51%] 1910s ........................................................................ [ 51%] 1910s ........................................................................ [ 51%] 1910s ........................................................................ [ 52%] 1910s ........................................................................ [ 52%] 1910s ........................................................................ [ 52%] 1923s ...................s.ss.ss.s............s.ss.s.......................... [ 52%] 1924s ........................s...sss.......s...............s........s........ [ 52%] 1924s s.......s........s........s........s........s.......s.......s........s.. [ 52%] 1924s ......s.........s........s.......s.......s.......s.......s........s..... [ 52%] 1925s ...ss...............s.......................................... [ 53%] 1925s sparse/linalg/_isolve/tests/test_lgmres.py ........ [ 53%] 1925s sparse/linalg/_isolve/tests/test_lsmr.py ............... [ 53%] 1925s sparse/linalg/_isolve/tests/test_lsqr.py ..... [ 53%] 1925s sparse/linalg/_isolve/tests/test_minres.py ....... [ 53%] 1925s sparse/linalg/_isolve/tests/test_utils.py . [ 53%] 1927s sparse/linalg/tests/test_expm_multiply.py .............................. [ 53%] 1929s ........................................................................ [ 53%] 1931s ........................................................................ [ 53%] 1931s ..... [ 53%] 1931s sparse/linalg/tests/test_interface.py ............... [ 53%] 1932s sparse/linalg/tests/test_matfuncs.py .................................. [ 53%] 1932s sparse/linalg/tests/test_norm.py ........ [ 53%] 1932s sparse/linalg/tests/test_onenormest.py ss.s.. [ 53%] 1932s sparse/linalg/tests/test_propack.py ........................ssss........ [ 53%] 1933s .... [ 53%] 1933s sparse/linalg/tests/test_pydata_sparse.py ssssssssssssssssssssssssssssss [ 53%] 1933s sssssssssssssssssssssss [ 53%] 1933s sparse/linalg/tests/test_special_sparse_arrays.py ...................... [ 53%] 1933s ........................................................................ [ 53%] 1933s ........................................................................ [ 54%] 1933s ........................................................................ [ 54%] 1934s ................................................ [ 54%] 1934s sparse/tests/test_arithmetic1d.py .................................... [ 54%] 1934s sparse/tests/test_array_api.py ......................................... [ 54%] 1934s ........................................................................ [ 54%] 1934s ........................................................................ [ 54%] 1934s ........................................................................ [ 54%] 1934s ....................................................... [ 54%] 1934s sparse/tests/test_base.py .............................................. [ 55%] 1935s ........................................................................ [ 55%] 1935s .......................s................................................ [ 55%] 1936s ........................................................................ [ 55%] 1936s ........................................s..............sssss.s.......... [ 55%] 1937s ........................................s.ssssss........................ [ 55%] 1937s ....................................................s.........ssss.s.... [ 55%] 1938s ................................................ssssss.................. [ 56%] 1938s ..........................................................s............. [ 56%] 1939s .....ssssssssssssssssssssssssssssssssssssss.......sssss..ssssss......... [ 56%] 1939s ..................................................................s..... [ 56%] 1939s ..x.......ssss.sssssssssssssssssssssssssssssssssssssss.......sssss..ssss [ 56%] 1940s ss...................................................................... [ 56%] 1940s ....s...x.s....s......ssssssssssssssssssssssssssssssssssssss.......sssss [ 56%] 1941s ........................................................................ [ 56%] 1942s ..........s.............xx.x............................................ [ 57%] 1943s ........................................................................ [ 57%] 1943s ....................s...................sss..xx......................... [ 57%] 1944s ........................................................................ [ 57%] 1945s ......................................s..............sss..xx......ssssss [ 57%] 1946s ssssssssssssssssssssssssssssssss.......sssss............................ [ 57%] 1947s ..................................................s.............xx.x.sss [ 57%] 1947s xx......ssssssssssssssssssssssssssssssssssssss.......sssss.ssssss....... [ 58%] 1948s ...................................................................s.... [ 58%] 1948s ...x.......sss..........ss..ss...................sss......s...ssssssssss [ 58%] 1949s sssssss.....sss.ss.....s..s.x..............s......ss..................ss [ 58%] 1949s sssxxs..sssss.s.s.............s.......ss..ss...............sss.....s..ss [ 58%] 1949s ssssssssssssssss....ssss.s..s...s..s.xsss............s....s.ss.......... [ 58%] 1950s ........ssss..s..sssss.s.s.................s............................ [ 58%] 1950s .............s....................................s..................... [ 59%] 1951s ......................s..............s.................s................ [ 59%] 1951s ...........ss................s......................................s... [ 59%] 1952s ........................................s..............s................ [ 59%] 1953s .s......s.ss..ss............sss....s..ssssssssssssssssss....ssss.ss.s... [ 59%] 1953s s..s.xss.........ssss...ss.ss.................ssss...s..sssss.s.s....... [ 59%] 1954s ....s...s......s.........s....................ss....................s... [ 59%] 1954s ..s.s......s..ss.........sss.....ss...................................s. [ 59%] 1955s ...............s.....s............................ss.................... [ 60%] 1955s .s.......s.......s..s...s.........sss....ss............................. [ 60%] 1956s ........s................s.......ss..ss...................sss......s...s [ 60%] 1956s ssssssssssssssss.....sss.ss.....s..s.x..............s......ss........... [ 60%] 1957s .......sssssxxs..sssss.s.s.............s.......ss..ss...............sss. [ 60%] 1957s ....s..ssssssssssssssssss....ssss.s..s...s..s.xsss............s....s.ss. [ 60%] 1958s .................ssss..s..sssss.s.s.................s................... [ 60%] 1958s ......................s....................................s............ [ 61%] 1959s ...............................s..............s.................s....... [ 61%] 1959s ....................ss................s................................. [ 61%] 1960s .....s...........................................s..............s....... [ 61%] 1961s ..........s......s.ss..ss............sss....s..ssssssssssssssssss....sss [ 61%] 1961s s.ss.s...s..s.xss.........ssss...ss.ss.................ssss...s..sssss.s [ 61%] 1962s .s...........s...s......s.........s....................ss............... [ 61%] 1962s .....s.....s.s......s..ss.........sss.....ss............................ [ 62%] 1963s .......s................s.....s............................ss........... [ 62%] 1963s ..........s.......s.......s..s...s.........sss....ss.................... [ 62%] 1964s .................s................s.......ss..ss...................sss.. [ 62%] 1964s ....s...sssssssssssssssss.....sss.ss.....s..s.x..............s......ss.. [ 62%] 1965s ................sssssxxs..sssss.s.s.............s.......ss..ss.......... [ 62%] 1965s .....sss.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss............s [ 62%] 1966s ....s.ss..................ssss..s..sssss.s.s.................s.......... [ 63%] 1966s ...............................s....................................s... [ 63%] 1967s ........................................s..............s................ [ 63%] 1967s .s...........................ss................s........................ [ 63%] 1968s ..............s...........................................s............. [ 63%] 1968s .s.................s......s.ss..ss............sss....s..ssssssssssssssss [ 63%] 1969s ss....ssss.ss.s...s..s.xss.........ssss...ss.ss.................ssss...s [ 63%] 1969s ..sssss.s.s...........s...s......s.........s....................ss...... [ 63%] 1969s ..............s.....s.s......s..ss.........sss.....ss................... [ 64%] 1970s ................s................s.....s............................ss.. [ 64%] 1970s ...................s.......s.......s..s...s.........sss....ss........... [ 64%] 1971s ..........................s................s.......ss..ss............... [ 64%] 1972s ....sss......s...sssssssssssssssss.....sss.ss.....s..s.x..............s. [ 64%] 1972s .....ss..................sssssxxs..sssss.s.s.............s.......ss..ss. [ 64%] 1972s ..............sss.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss.... [ 64%] 1973s ........s....s.ss..................ssss..s..sssss.s.s.................s. [ 65%] 1973s ........................................s............................... [ 65%] 1974s .....s...........................................s..............s....... [ 65%] 1974s ..........s...........................ss................s............... [ 65%] 1975s .......................s...........................................s.... [ 65%] 1975s ..........s.................s......s.ss..ss............sss....s..sssssss [ 65%] 1976s sssssssssss....ssss.ss.s...s..s.xss.........ssss...ss.ss................ [ 65%] 1976s .ssss...s..sssss.s.s...........s...s......s.........s................... [ 66%] 1976s .ss....................s.....s.s......s..ss.........sss.....ss.......... [ 66%] 1977s .........................s................s.....s....................... [ 66%] 1978s .....ss.....................s.......s.......s..s...s.........sss....ss.. [ 66%] 1979s ...................................s................s.......ss..ss...... [ 66%] 1979s .............sss......s...sssssssssssssssss.....sss.ss.....s..s.x....... [ 66%] 1980s .......s......ss..................sssssxxs..sssss.s.s.............s..... [ 66%] 1980s ..ss..ss...............sss.....s..ssssssssssssssssss....ssss.s..s...s..s [ 66%] 1981s .xsss............s....s.ss..................ssss..s..sssss.s.s.......... [ 67%] 1981s .......s.........................................s...................... [ 67%] 1982s ..............s...........................................s............. [ 67%] 1983s .s.................s...........................ss................s...... [ 67%] 1984s ................................s....................................... [ 67%] 1985s ....s..............s.................s......s.ss..ss............sss....s [ 67%] 1985s ..ssssssssssssssssss....ssss.ss.s...s..s.xss.........ssss...ss.ss....... [ 67%] 1986s ..........ssss...s..sssss.s.s...........s...s......s.........s.......... [ 68%] 1986s ..........ss....................s.....s.s......s..ss.........sss.....ss. [ 68%] 1987s ..................................s................s.....s.............. [ 68%] 1988s ..............ss.....................s.......s.......s..s...s.........ss [ 68%] 1988s s....ss.....................................s................s. [ 68%] 1989s sparse/tests/test_common1d.py .......................................... [ 68%] 1989s ........................................................ [ 68%] 1989s sparse/tests/test_construct.py ......................................... [ 68%] 1989s ............... [ 68%] 1989s sparse/tests/test_coo.py ................................... [ 68%] 1989s sparse/tests/test_csc.py ........... [ 68%] 1989s sparse/tests/test_csr.py ............. [ 69%] 1989s sparse/tests/test_dok.py ............................................... [ 69%] 1989s .......... [ 69%] 1989s sparse/tests/test_extract.py .... [ 69%] 1989s sparse/tests/test_matrix_io.py ....... [ 69%] 1989s sparse/tests/test_minmax1d.py ............ [ 69%] 1991s sparse/tests/test_sparsetools.py ....s.. [ 69%] 1991s sparse/tests/test_spfuncs.py ... [ 69%] 1991s sparse/tests/test_sputils.py ............. [ 69%] 1991s spatial/tests/test__plotutils.py sssss [ 69%] 1991s spatial/tests/test__procrustes.py ...... [ 69%] 1991s spatial/tests/test_distance.py ......................................... [ 69%] 1991s ........................................................................ [ 69%] 1992s ..................................................ss.................... [ 69%] 1992s ........ss..........................................................ss.. [ 69%] 1992s ........................................................................ [ 69%] 1993s ........................................................................ [ 70%] 1993s ................................................................ [ 70%] 1993s spatial/tests/test_hausdorff.py ..............s [ 70%] 1993s spatial/tests/test_kdtree.py ........................................... [ 70%] 1995s ........................................................................ [ 70%] 1996s ........................................................................ [ 70%] 2000s ................................................ [ 70%] 2000s spatial/tests/test_qhull.py ............................................ [ 70%] 2000s ........................................................................ [ 70%] 2002s ............................................................... [ 70%] 2002s spatial/tests/test_slerp.py ............................................ [ 71%] 2002s ....................................... [ 71%] 2002s spatial/tests/test_spherical_voronoi.py ................................ [ 71%] 2002s ........................................................................ [ 71%] 2002s ............... [ 71%] 2003s spatial/transform/tests/test_rotation.py ............................... [ 71%] 2003s ........................................................................ [ 71%] 2003s ........................................................................ [ 71%] 2003s ... [ 71%] 2003s spatial/transform/tests/test_rotation_groups.py ........................ [ 71%] 2003s ........................................................................ [ 71%] 2003s ........................................................................ [ 71%] 2003s ................................................................ [ 72%] 2003s spatial/transform/tests/test_rotation_spline.py ....... [ 72%] 2003s special/tests/test_basic.py ............................................ [ 72%] 2003s ...x...X................................................................ [ 72%] 2003s ........................................................................ [ 72%] 2004s ........................................................................ [ 72%] 2004s ................................X....................................... [ 72%] 2004s ........................................................................ [ 72%] 2004s ........................................................................ [ 73%] 2004s ........................................................................ [ 73%] 2004s ........................................................................ [ 73%] 2004s s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s... [ 73%] 2004s s...s................................................................... [ 73%] 2004s ........................................................................ [ 73%] 2004s ....s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s... [ 73%] 2005s s...s...s............................................................... [ 73%] 2005s ........................................................................ [ 74%] 2005s ........................................................................ [ 74%] 2005s ........................................................................ [ 74%] 2005s ..................s...s...s...s...s...s...s...s...s...s...s...s...s...s. [ 74%] 2005s ..s...s...s...s...s...s................................................. [ 74%] 2005s ........................................................................ [ 74%] 2005s ........................................................................ [ 74%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 75%] 2005s ........................................................................ [ 76%] 2005s ........................................................................ [ 76%] 2006s ........................................................................ [ 76%] 2006s ........................................................................ [ 76%] 2006s .............. [ 76%] 2006s special/tests/test_bdtr.py ........................ [ 76%] 2006s special/tests/test_boost_ufuncs.py ........ [ 76%] 2006s special/tests/test_boxcox.py .......... [ 76%] 2006s special/tests/test_cdflib.py .................................... [ 76%] 2006s special/tests/test_cdft_asymptotic.py ... [ 76%] 2006s special/tests/test_cephes_intp_cast.py .................. [ 76%] 2006s special/tests/test_cosine_distr.py ............................... [ 76%] 2006s special/tests/test_cython_special.py ................................... [ 76%] 2009s ........................xxxxx..xx..xx................................... [ 76%] 2009s ........................................................................ [ 77%] 2010s ...xxxx............xxxx.................................... [ 77%] 2010s special/tests/test_data.py ............................................. [ 77%] 2010s ........................................................................ [ 77%] 2010s x.x...............................................x..x...x.............. [ 77%] 2010s ........................... [ 77%] 2010s special/tests/test_dd.py ..... [ 77%] 2010s special/tests/test_digamma.py ... [ 77%] 2010s special/tests/test_ellip_harm.py ..... [ 77%] 2010s special/tests/test_erfinv.py ............. [ 77%] 2010s special/tests/test_exponential_integrals.py ........................... [ 77%] 2010s special/tests/test_extending.py s [ 77%] 2010s special/tests/test_faddeeva.py ................. [ 77%] 2010s special/tests/test_gamma.py .. [ 77%] 2010s special/tests/test_gammainc.py ............................. [ 77%] 2010s special/tests/test_hyp2f1.py ........................................... [ 77%] 2010s ...x.......................................x............................ [ 78%] 2010s ....x.........x............................x..................x......... [ 78%] 2010s ....................................... [ 78%] 2010s special/tests/test_hypergeometric.py ................................... [ 78%] 2011s .................................xx.... [ 78%] 2011s special/tests/test_iv_ratio.py ......................................... [ 78%] 2011s ........... [ 78%] 2011s special/tests/test_kolmogorov.py ..................................... [ 78%] 2011s special/tests/test_lambertw.py ...... [ 78%] 2011s special/tests/test_log_softmax.py .......... [ 78%] 2011s special/tests/test_loggamma.py ...... [ 78%] 2011s special/tests/test_logit.py .......... [ 78%] 2011s special/tests/test_logsumexp.py ........... [ 78%] 2011s special/tests/test_mpmath.py sssssssssssssssssss [ 78%] 2011s special/tests/test_nan_inputs.py ....................................... [ 78%] 2011s ........................................................................ [ 78%] 2011s ........................................................................ [ 78%] 3236s ................................................... [ 79%] 3236s special/tests/test_ndtr.py ........ [ 79%] 3236s special/tests/test_ndtri_exp.py ............ [ 79%] 3236s special/tests/test_orthogonal.py ............................... [ 79%] 3236s special/tests/test_orthogonal_eval.py .................................. [ 79%] 3236s ............................................................. [ 79%] 3236s special/tests/test_owens_t.py .... [ 79%] 3236s special/tests/test_pcf.py .. [ 79%] 3236s special/tests/test_pdtr.py .......... [ 79%] 3236s special/tests/test_powm1.py .............................. [ 79%] 3236s special/tests/test_precompute_expn_asy.py s [ 79%] 3236s special/tests/test_precompute_gammainc.py ssss [ 79%] 3236s special/tests/test_round.py .. [ 79%] 3236s special/tests/test_sf_error.py .......... [ 79%] 3236s special/tests/test_sici.py .. [ 79%] 3236s special/tests/test_specfun.py .... [ 79%] 3236s special/tests/test_spence.py .. [ 79%] 3236s special/tests/test_spfun_stats.py .... [ 79%] 3236s special/tests/test_sph_harm.py .. [ 79%] 3236s special/tests/test_spherical_bessel.py ................................. [ 79%] 3236s .... [ 79%] 3239s special/tests/test_support_alternative_backends.py ssss................. [ 79%] 3239s . [ 79%] 3239s special/tests/test_trig.py ..s. [ 79%] 3239s special/tests/test_ufunc_signatures.py ................................. [ 79%] 3239s ........................................................................ [ 79%] 3239s ........................................................................ [ 79%] 3239s ........................................................................ [ 80%] 3240s ........................................................................ [ 80%] 3240s .... [ 80%] 3240s special/tests/test_wright_bessel.py .................................... [ 80%] 3240s ........................................................................ [ 80%] 3240s ........................................................................ [ 80%] 3240s ........................................................................ [ 80%] 3240s ......................................................xxxxxxxxxxxxxxx... [ 80%] 3240s ........................................................................ [ 81%] 3240s .................... [ 81%] 3240s special/tests/test_wrightomega.py .......... [ 81%] 3240s special/tests/test_zeta.py ..... [ 81%] 3241s stats/tests/test_axis_nan_policy.py s................................... [ 81%] 3243s ........s..............s...........................................s.... [ 81%] 3244s ..........s...........................................s................. [ 81%] 3244s ........................................................................ [ 81%] 3244s ........................................................................ [ 81%] 3244s ........................................................................ [ 81%] 3244s ........................................................................ [ 81%] 3244s ........................................................................ [ 82%] 3245s ........................................................................ [ 82%] 3245s ........................................................................ [ 82%] 3245s ........................................................................ [ 82%] 3245s ........................................................................ [ 82%] 3245s ........................................................................ [ 82%] 3245s ...............................sss...................................... [ 82%] 3246s .................................................. [ 83%] 3246s stats/tests/test_binned_statistic.py ................................... [ 83%] 3246s .......................... [ 83%] 3246s stats/tests/test_censored_data.py ............ [ 83%] 3246s stats/tests/test_contingency.py ............. [ 83%] 3250s stats/tests/test_continuous_basic.py ..........................s........ [ 83%] 3255s ..................ssss.ss...................s......s.s....s...........ss [ 83%] 3258s ...........ss..........ss..ss..ss..ss..ss..ss..ss............ss......... [ 83%] 3261s ...........ssss..ss......ss..ss........ssssss..ss..ss..ss..ssss..ss..... [ 83%] 3262s .....ss..ss......ss..........ss..............ss........ssss..ssss..sssss [ 83%] 3264s sssss..ssssssssss..ss..........ss..ssssss..........ss......ss......ss... [ 83%] 3266s .....ssss..ssssss......ss..ss............ss..ss........ssss....ss....... [ 84%] 3268s ...ss....ssss..ssssss......ss..ss..ssssssssss..ssss......ssssss......... [ 84%] 3269s .....ss..........................................s...................... [ 84%] 3269s ....ssss.ss...................s......s.s....s...........ss.............. [ 84%] 3269s ......................s................................................. [ 84%] 3270s .....................s.................................................. [ 84%] 3270s ........................................................................ [ 84%] 3270s ........................................................................ [ 85%] 3270s ........................................................................ [ 85%] 3270s ........................................................................ [ 85%] 3270s ........................................................................ [ 85%] 3270s ........................................................................ [ 85%] 3270s ........................................................................ [ 85%] 3271s ........................................................................ [ 85%] 3271s ........................................................................ [ 85%] 3271s ........................................................................ [ 86%] 3271s ........................................................................ [ 86%] 3271s ........................................................................ [ 86%] 3271s ....................................s...................... [ 86%] 3272s stats/tests/test_continuous_fit_censored.py .................. [ 86%] 3272s stats/tests/test_crosstab.py ............. [ 86%] 3273s stats/tests/test_discrete_basic.py ..................................... [ 86%] 3273s ........................................................................ [ 86%] 3273s ........................................................................ [ 86%] 3273s ........................................................................ [ 87%] 3274s ........................................................................ [ 87%] 3274s ............................................................... [ 87%] 3274s stats/tests/test_discrete_distns.py .................................... [ 87%] 3274s ..................................... [ 87%] 3274s stats/tests/test_distributions.py ...................................... [ 87%] 3274s ssssssssssssssssssssssss................................................ [ 87%] 3275s ........................................................................ [ 87%] 3275s ........................................................................ [ 87%] 3275s ................................................................s....... [ 88%] 3275s ........................................................................ [ 88%] 3276s ........................................................................ [ 88%] 3276s ........................................................................ [ 88%] 3277s ........................................................................ [ 88%] 3277s ........................................................................ [ 88%] 3278s ........................................................................ [ 88%] 3279s ........................................................................ [ 89%] 3280s ........................................................................ [ 89%] 3280s ........................................................................ [ 89%] 3281s ........................................................................ [ 89%] 3282s ........................................................................ [ 89%] 3282s ........................................................................ [ 89%] 3282s ........................................................................ [ 89%] 3282s ........................................................................ [ 89%] 3282s ........................................................................ [ 90%] 3282s ........................................................................ [ 90%] 3283s .....................................ss.xxxx....s....................... [ 90%] 3284s ..xxxxxxxxxx.....................s................................s..... [ 90%] 3284s ........................s............................s.............ss... [ 90%] 3285s ........................................................................ [ 90%] 3285s ..............................................s......................... [ 90%] 3286s ........................................................................ [ 91%] 3286s ...............................................ssssss.....ss............ [ 91%] 3286s ........................................................................ [ 91%] 3287s ........................................................................ [ 91%] 3290s ..............................................xxxxxxxxxxxxxxxxxxxxxxxxxx [ 91%] 3290s x....................................................................... [ 91%] 3290s ...........................................s...................s........ [ 91%] 3291s .................ss.................................. [ 92%] 3291s stats/tests/test_entropy.py .................................... [ 92%] 3292s stats/tests/test_fast_gen_inversion.py ................................. [ 92%] 3293s .......................................s................................ [ 92%] 3293s ................................. [ 92%] 3293s stats/tests/test_fit.py ................................................ [ 92%] 3295s ....................................................................ss.. [ 92%] 3298s .sss...s.s.ss.ssss.....sssssss........ssss....s..s..sss.s.ss..sss.sssss. [ 92%] 3304s .......ss......s.ssssss..s.sssssss.......ssssssss...s.ss.ssss.ssss.ssss. [ 92%] 3307s ssssssss..........s..........s.....sss... [ 92%] 3307s stats/tests/test_hypotests.py .......................................... [ 93%] 3307s ........................................................................ [ 93%] 3310s .....................................................s.................. [ 93%] 3310s .......................... [ 93%] 3310s stats/tests/test_kdeoth.py ..ss........s.......s.....ssssssss..s.......s [ 93%] 3310s .......s.........s.s..... [ 93%] 3310s stats/tests/test_mgc.py .........ssssssssss [ 93%] 3310s stats/tests/test_morestats.py ....................................s..... [ 93%] 3310s ........................................................................ [ 93%] 3311s .................................s...................................... [ 93%] 3312s .s..............................................................s....... [ 93%] 3312s ........................................................................ [ 94%] 3312s .................................................................... [ 94%] 3312s stats/tests/test_mstats_basic.py ......s..s...............s............. [ 94%] 3312s ........................................................................ [ 94%] 3313s ................................. [ 94%] 3313s stats/tests/test_mstats_extras.py .......... [ 94%] 3315s stats/tests/test_multicomp.py .......................................... [ 94%] 3315s ...... [ 94%] 3315s stats/tests/test_multivariate.py ......s.s..ss..ss............ssss....ss [ 94%] 3315s ss........ssssssss........ssssssss...................................... [ 94%] 3316s ........................................................................ [ 94%] 3316s ........................................................................ [ 95%] 3318s ........................................................................ [ 95%] 3319s ..............ssssssssssssssssssss...................................... [ 95%] 3320s ........................................................................ [ 95%] 3320s ........................................................................ [ 95%] 3320s .... [ 95%] 3320s stats/tests/test_odds_ratio.py ......................................... [ 95%] 3320s ............................................................. [ 95%] 3321s stats/tests/test_qmc.py ........x....................................... [ 95%] 3322s ..................sss..........................................s.s.s.s.s [ 96%] 3322s .s.s...ssss............................ [ 96%] 3323s stats/tests/test_rank.py ............................................. [ 96%] 3323s stats/tests/test_relative_risk.py ............... [ 96%] 3324s stats/tests/test_resampling.py ......................................... [ 96%] 3326s ....................................s................................... [ 96%] 3328s .........sssss............................................ss.......ssss. [ 96%] 3329s ......... [ 96%] 3329s stats/tests/test_sampling.py ........................................... [ 96%] 3330s ........................................................................ [ 96%] 3330s ........................................................................ [ 97%] 3331s ...........s..ss...ssssssssss..s............................ssssssssssss [ 97%] 3331s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 97%] 3331s ssssssssssssssssssssssssssssssss........................................ [ 97%] 3332s ............ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 97%] 3332s ssssssssssssssssssssssssssssssssssssssssssssssssssssssss................ [ 97%] 3333s ............s..ss...ssssssssss..s................................ [ 97%] 3333s stats/tests/test_sensitivity_analysis.py .s...... [ 97%] 3333s stats/tests/test_stats.py .............................................. [ 97%] 3337s ........................................................................ [ 98%] 3337s ........................................................................ [ 98%] 3338s ........................................................................ [ 98%] 3339s ........................................................................ [ 98%] 3339s ........................................................................ [ 98%] 3339s ................................ss...................................... [ 98%] 3339s ........................................................................ [ 98%] 3339s .................ss....s......................................ssssss.... [ 99%] 3340s ........................xxx.....................................ss...... [ 99%] 3340s ........................................................................ [ 99%] 3341s ........................................................................ [ 99%] 3341s ........................................................................ [ 99%] 3342s ........................................................................ [ 99%] 3342s ........................................................................ [ 99%] 3342s ................s [ 99%] 3342s stats/tests/test_survival.py ....................... [ 99%] 3342s stats/tests/test_tukeylambda_stats.py ... [ 99%] 3342s stats/tests/test_variation.py .............................. [100%] 3342s 3342s =============================== warnings summary =============================== 3342s integrate/tests/test__quad_vec.py: 24 warnings 3342s optimize/tests/test__differential_evolution.py: 2 warnings 3342s optimize/tests/test__shgo.py: 4 warnings 3342s optimize/tests/test_optimize.py: 2 warnings 3342s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=5220) is multi-threaded, use of fork() may lead to deadlocks in the child. 3342s self.pid = os.fork() 3342s 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-gmean-args6-kwds6-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-gmean-args6-kwds6-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-gmean-args6-kwds6-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-hmean-args7-kwds7-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-hmean-args7-kwds7-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-hmean-args7-kwds7-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-pmean-args8-kwds8-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-pmean-args8-kwds8-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-pmean-args8-kwds8-1-1-False-] 3342s /usr/lib/python3/dist-packages/numpy/lib/_function_base_impl.py:552: RuntimeWarning: Mean of empty slice. 3342s avg = a.mean(axis, **keepdims_kw) 3342s 3342s stats/tests/test_axis_nan_policy.py: 93 warnings 3342s /usr/lib/python3/dist-packages/numpy/_core/fromnumeric.py:3860: RuntimeWarning: Mean of empty slice. 3342s return _methods._mean(a, axis=axis, dtype=dtype, 3342s 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-tmean-args47-kwds47-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-tmean-args47-kwds47-1-1-False-] 3342s stats/tests/test_axis_nan_policy.py::test_axis_nan_policy_fast[mixed-1-omit-tmean-args47-kwds47-1-1-False-] 3342s /usr/lib/python3/dist-packages/scipy/stats/_stats_py.py:616: RuntimeWarning: Mean of empty slice 3342s return np.nanmean(a, axis=axis) 3342s 3342s stats/tests/test_qmc.py::TestUtils::test_geometric_discrepancy_mst_with_zero_distances 3342s /usr/lib/python3/dist-packages/scipy/stats/tests/test_qmc.py:232: UserWarning: Sample contains duplicate points. 3342s assert_allclose(qmc.geometric_discrepancy(sample, method='mst'), 0.5) 3342s 3342s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 3342s ============================= slowest 20 durations ============================= 3342s 1224.63s call special/tests/test_nan_inputs.py::test_nan_inputs[sph_harm] 3342s 13.09s call sparse/linalg/_isolve/tests/test_iterative.py::test_precond_inverse[poisson2d] 3342s 3.41s call optimize/tests/test_optimize.py::test_cobyla_threadsafe 3342s 2.51s call linalg/tests/test_matfuncs.py::TestExpM::test_gh18086 3342s 2.24s call special/tests/test_cython_special.py::test_cython_api[elliprj] 3342s 1.87s call optimize/tests/test_optimize.py::TestOptimizeSimple::test_minimize_callback_copies_array[fmin] 3342s 1.85s call optimize/tests/test__basinhopping.py::TestBasinHopping::test_all_nograd_minimizers 3342s 1.67s call optimize/tests/test_lsq_linear.py::TestTRF::test_sparse_bounds 3342s 1.40s call interpolate/tests/test_rgi.py::TestRegularGridInterpolator::test_descending_points_nd[5--slinear] 3342s 1.31s call optimize/tests/test_constraint_conversion.py::TestNewToOld::test_individual_constraint_objects 3342s 1.29s call optimize/tests/test_linprog.py::TestLinprogHiGHSMIP::test_mip1 3342s 1.29s call signal/tests/test_signaltools.py::test_filtfilt_gust 3342s 1.07s call spatial/tests/test_kdtree.py::test_kdtree_box[KDTree] 3342s 1.07s call spatial/tests/test_kdtree.py::test_kdtree_box[cKDTree] 3342s 1.05s call signal/tests/test_filter_design.py::TestBessel::test_fs_param 3342s 1.03s call optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_strategy_fn 3342s 0.96s call sparse/tests/test_sparsetools.py::TestInt32Overflow::test_coo_todense 3342s 0.91s call linalg/tests/test_decomp.py::TestOrdQZWorkspaceSize::test_decompose 3342s 0.87s call optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_integrality 3342s 0.85s call optimize/tests/test_linprog.py::TestLinprogHiGHSIPM::test_marginals 3342s = 49586 passed, 2742 skipped, 11809 deselected, 159 xfailed, 11 xpassed, 138 warnings in 1574.17s (0:26:14) = 3345s /tmp/autopkgtest.3LpQ7v/wrapper.sh: checking for leaked background processes... 3345s === Done: python3.13 === 3345s /tmp/autopkgtest.3LpQ7v/wrapper.sh: waiting for tee/cat subprocesses... 3345s /tmp/autopkgtest.3LpQ7v/wrapper.sh: cleaning up... 3345s /tmp/autopkgtest.3LpQ7v/wrapper.sh: Exit status: 0 3345s autopkgtest: DBG: testbed command exited with code 0 3345s autopkgtest [09:05:46]: test python3: -----------------------] 3345s autopkgtest: DBG: testbed executing test finished with exit status 0 3345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-stdout /tmp/autopkgtest-work.6nmnu1s5/out/python3-stdout 3345s autopkgtest: DBG: got reply from testbed: ok 3345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-stderr /tmp/autopkgtest-work.6nmnu1s5/out/python3-stderr 3346s autopkgtest: DBG: got reply from testbed: ok 3346s autopkgtest [09:05:47]: test python3: - - - - - - - - - - results - - - - - - - - - - 3346s python3 PASS 3346s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-artifacts/ /tmp/autopkgtest-work.6nmnu1s5/out/artifacts/ 3346s autopkgtest: DBG: got reply from testbed: ok 3346s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.3LpQ7v/python3-artifacts', '/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3346s autopkgtest: DBG: testbed command exited with code 0 3346s autopkgtest [09:05:47]: test python3-network: preparing testbed 3346s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'], deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 3346s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3346s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'] 3346s autopkgtest: DBG: install-deps: satisfying build-essential, python3-scipy, python3-pytest, python3-all, python3-all-dev, python3-doit, python3-pil, python3-pooch, python3-hypothesis 3346s autopkgtest: DBG: can use apt-get on testbed: True 3346s 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', 'build-essential, python3-scipy, python3-pytest, python3-all, python3-all-dev, python3-doit, python3-pil, python3-pooch, python3-hypothesis'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3346s Reading package lists... 3346s Building dependency tree... 3346s Reading state information... 3346s Starting pkgProblemResolver with broken count: 0 3346s Starting 2 pkgProblemResolver with broken count: 0 3346s Done 3347s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3347s autopkgtest: DBG: testbed command exited with code 0 3347s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-scipy'], kind short, sout pipe, serr pipe, env [] 3347s autopkgtest: DBG: testbed command exited with code 0 3347s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/python3-network-packages.all"], kind short, sout raw, serr pipe, env [] 3347s autopkgtest: DBG: testbed command exited with code 0 3347s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-network-packages.all /tmp/autopkgtest-work.6nmnu1s5/out/python3-network-packages.all 3347s autopkgtest: DBG: got reply from testbed: ok 3347s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr raw, env [] 3347s autopkgtest: DBG: testbed command exited with code 0 3347s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.3LpQ7v/build.Ce6/src already exists 3347s autopkgtest [09:05:48]: test python3-network: [----------------------- 3347s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.3LpQ7v/wrapper.sh --debug --artifacts=/tmp/autopkgtest.3LpQ7v/python3-network-artifacts --chdir=/tmp/autopkgtest.3LpQ7v/build.Ce6/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.3LpQ7v/python3-network-stderr --stdout=/tmp/autopkgtest.3LpQ7v/python3-network-stdout --tmp=/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1' --make-executable=/tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-network -- /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-network"], kind test, sout raw, serr raw, env [] 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.3LpQ7v/python3-network-artifacts 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: changing to directory: /tmp/autopkgtest.3LpQ7v/build.Ce6/src 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: LANG=C.UTF-8 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LANGUAGE 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ADDRESS 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ALL 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_COLLATE 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_CTYPE 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MEASUREMENT 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MESSAGES 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MONETARY 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NAME 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NUMERIC 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_PAPER 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TELEPHONE 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TIME 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: pretending to be a login shell 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write standard error to /tmp/autopkgtest.3LpQ7v/python3-network-stderr 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write stdout to /tmp/autopkgtest.3LpQ7v/python3-network-stdout 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: marking as executable: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-network 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: command to run: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-network 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.c2jkDgPYC6/out to stdout and file: /tmp/autopkgtest.3LpQ7v/python3-network-stdout 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.c2jkDgPYC6/err to standard error and file: /tmp/autopkgtest.3LpQ7v/python3-network-stdout 3347s /tmp/autopkgtest.3LpQ7v/wrapper.sh: writing script pid 8187 to /tmp/autopkgtest_script_pid 3347s === testing python3-network === 3348s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 3348s Controlling tests with "test_existence_all or test_ascent or test_face or test_electrocardiogram and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 3348s === Testing: python3.12 === 3361s ============================= test session starts ============================== 3361s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 3361s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3361s plugins: hypothesis-6.125.2, typeguard-4.4.1 3361s collected 64307 items / 64300 deselected / 7 selected 3361s 3364s datasets/tests/test_data.py .... [ 57%] 3364s misc/tests/test_common.py ... [100%] 3364s 3364s ============================= slowest 20 durations ============================= 3364s 2.90s setup datasets/tests/test_data.py::TestDatasets::test_existence_all 3364s 0.11s call datasets/tests/test_data.py::TestDatasets::test_face 3364s 0.11s call misc/tests/test_common.py::test_face 3364s 0.02s call misc/tests/test_common.py::test_ascent 3364s 3364s (16 durations < 0.005s hidden. Use -vv to show these durations.) 3364s ===================== 7 passed, 64300 deselected in 16.30s ===================== 3365s === Done: python3.12 === 3365s === Testing: python3.13 === 3377s ============================= test session starts ============================== 3377s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 3377s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3377s plugins: hypothesis-6.125.2, typeguard-4.4.1 3377s collected 64307 items / 64300 deselected / 7 selected 3377s 3377s datasets/tests/test_data.py .... [ 57%] 3377s misc/tests/test_common.py ... [100%] 3377s 3377s ============================= slowest 20 durations ============================= 3377s 0.11s call datasets/tests/test_data.py::TestDatasets::test_face 3377s 0.11s call misc/tests/test_common.py::test_face 3377s 0.01s call misc/tests/test_common.py::test_ascent 3377s 3377s (17 durations < 0.005s hidden. Use -vv to show these durations.) 3377s ===================== 7 passed, 64300 deselected in 11.69s ===================== 3378s === Done: python3.13 === 3378s /tmp/autopkgtest.3LpQ7v/wrapper.sh: checking for leaked background processes... 3378s /tmp/autopkgtest.3LpQ7v/wrapper.sh: waiting for tee/cat subprocesses... 3378s /tmp/autopkgtest.3LpQ7v/wrapper.sh: cleaning up... 3378s /tmp/autopkgtest.3LpQ7v/wrapper.sh: Exit status: 0 3378s autopkgtest: DBG: testbed command exited with code 0 3378s autopkgtest [09:06:19]: test python3-network: -----------------------] 3378s autopkgtest: DBG: testbed executing test finished with exit status 0 3378s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-network-stdout /tmp/autopkgtest-work.6nmnu1s5/out/python3-network-stdout 3378s autopkgtest: DBG: got reply from testbed: ok 3378s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-network-stderr /tmp/autopkgtest-work.6nmnu1s5/out/python3-network-stderr 3378s autopkgtest: DBG: got reply from testbed: ok 3379s python3-network PASS 3379s autopkgtest [09:06:20]: test python3-network: - - - - - - - - - - results - - - - - - - - - - 3379s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-network-artifacts/ /tmp/autopkgtest-work.6nmnu1s5/out/artifacts/ 3379s autopkgtest: DBG: got reply from testbed: ok 3379s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.3LpQ7v/python3-network-artifacts', '/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3379s autopkgtest: DBG: testbed command exited with code 0 3379s autopkgtest [09:06:20]: test python3-smoke: preparing testbed 3379s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'python3-scipy', 'python3-pytest', 'python3-all', 'python3-all-dev', 'python3-doit', 'python3-pil', 'python3-pooch', 'python3-hypothesis'], deps_new=['python3-scipy', 'python3-pytest', 'python3-all', 'python3-doit', 'python3-hypothesis'] 3379s autopkgtest: DBG: testbed reset 3379s autopkgtest: DBG: sending command to testbed: revert 3457s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.3LpQ7v 3457s autopkgtest: DBG: sending command to testbed: print-execute-command 3457s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.dj2ltg85/runcmd 3457s autopkgtest: DBG: sending command to testbed: capabilities 3457s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine suggested-normal-user=ubuntu ok root-on-testbed reboot revert-full-system 3457s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'root-on-testbed', 'reboot', 'revert-full-system', 'has_internet'] 3457s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3457s autopkgtest: DBG: testbed command exited with code 0 3457s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.3LpQ7v/wrapper.sh 3457s autopkgtest: DBG: got reply from testbed: ok 3457s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3457s autopkgtest: DBG: testbed command exited with code 0 3457s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3458s autopkgtest: DBG: testbed command exited with code 0 3458s autopkgtest [09:07:39]: testbed dpkg architecture: s390x 3458s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3458s autopkgtest: DBG: testbed command exited with code 0 3458s autopkgtest [09:07:39]: testbed apt version: 2.9.30 3458s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3458s autopkgtest: DBG: testbed command exited with code 0 3458s autopkgtest: DBG: testbed has eatmydata 3458s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3458s autopkgtest: DBG: testbed command exited with code 0 3458s autopkgtest [09:07:39]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3458s 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 [] 3458s autopkgtest: DBG: testbed command exited with code 0 3458s autopkgtest [09:07:39]: testbed release detected to be: plucky 3458s 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 [] 3458s autopkgtest: DBG: testbed command exited with code 0 3458s 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 [] 3459s autopkgtest: DBG: testbed command exited with code 0 3459s autopkgtest: DBG: adding APT source: Types: deb deb-src 3459s URIs: http://ftpmaster.internal/ubuntu/ 3459s Suites: plucky-proposed 3459s Components: main restricted universe multiverse 3459s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3459s 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 [] 3459s autopkgtest: DBG: testbed command exited with code 0 3459s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3459s Package: * 3459s Pin: release plucky-proposed 3459s Pin-Priority: 500 3459s 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 [] 3459s autopkgtest: DBG: testbed command exited with code 0 3459s autopkgtest [09:07:40]: updating testbed package index (apt update) 3459s 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'] 3459s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3460s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3460s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3460s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3460s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 3460s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3460s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 3460s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 3460s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 3460s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3460s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 3460s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 3460s Fetched 1651 kB in 1s (1495 kB/s) 3461s Reading package lists... 3461s autopkgtest: DBG: testbed command exited with code 0 3461s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3461s Package: * 3461s Pin: release plucky-proposed 3461s Pin-Priority: 100 3461s 3461s Package: src:glibc:any src:numpy:any 3461s Pin: release plucky-proposed 3461s Pin-Priority: 995 3461s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:numpy:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 3461s autopkgtest: DBG: testbed command exited with code 0 3461s 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.3LpQ7v/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3461s autopkgtest: DBG: testbed command exited with code 0 3461s 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'] 3461s + lsb_release --codename --short 3461s + RELEASE=plucky 3461s + cat 3461s + [ plucky != trusty ] 3461s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3461s Reading package lists... 3461s Building dependency tree... 3461s Reading state information... 3462s Calculating upgrade... 3462s The following packages were automatically installed and are no longer required: 3462s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3462s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3462s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3462s linux-tools-6.11.0-8-generic 3462s Use 'sudo apt autoremove' to remove them. 3462s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3462s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3462s + /usr/lib/apt/apt-helper analyze-pattern ?true 3462s + uname -r 3462s + sed s/\./\\./g 3462s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3462s + apt list ?obsolete 3462s + tail -n+2 3462s + cut -d/ -f1 3462s + grep -v ^linux-.*6\.12\.0-15-generic.* 3462s + true 3462s + obsolete_pkgs= 3462s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3462s Reading package lists... 3462s Building dependency tree... 3462s Reading state information... 3462s The following packages will be REMOVED: 3462s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3462s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3462s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3462s linux-tools-6.11.0-8-generic* 3462s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 3462s After this operation, 167 MB disk space will be freed. 3462s (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.) 3462s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3462s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3462s Removing libpython3.12t64:s390x (3.12.9-1) ... 3462s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3462s Removing libnsl2:s390x (1.3.0-3build3) ... 3462s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3462s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3463s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3463s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3463s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3463s (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 ... 55930 files and directories currently installed.) 3463s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3463s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3464s + grep -q trusty /etc/lsb-release 3464s + [ ! -d /usr/share/doc/unattended-upgrades ] 3464s + [ ! -d /usr/share/doc/lxd ] 3464s + [ ! -d /usr/share/doc/lxd-client ] 3464s + [ ! -d /usr/share/doc/snapd ] 3464s + type iptables 3464s + cat 3464s + chmod 755 /etc/rc.local 3464s + . /etc/rc.local 3464s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3464s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3464s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3464s + uname -m 3464s + [ s390x = ppc64le ] 3464s + [ -d /run/systemd/system ] 3464s + systemd-detect-virt --quiet --vm 3464s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3464s + cat 3464s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3464s + echo COMPRESS=lz4 3464s autopkgtest: DBG: testbed command exited with code 0 3464s autopkgtest [09:07:45]: upgrading testbed (apt dist-upgrade and autopurge) 3464s 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'] 3464s Reading package lists... 3464s Building dependency tree... 3464s Reading state information... 3464s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3464s Starting 2 pkgProblemResolver with broken count: 0 3464s Done 3464s Entering ResolveByKeep 3464s 3464s The following packages will be upgraded: 3464s libc-bin libc-dev-bin libc6 libc6-dev locales 3465s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3465s Need to get 9512 kB of archives. 3465s After this operation, 288 kB of additional disk space will be used. 3465s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 3465s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 3465s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 3466s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 3466s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 3467s Preconfiguring packages ... 3467s Fetched 9512 kB in 2s (4782 kB/s) 3467s (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 ... 55928 files and directories currently installed.) 3467s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 3467s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3467s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 3467s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3467s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 3467s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3467s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 3467s Checking for services that may need to be restarted... 3467s Checking init scripts... 3467s Checking for services that may need to be restarted... 3467s Checking init scripts... 3467s Stopping some services possibly affected by the upgrade (will be restarted later): 3467s cron: stopping...done. 3467s 3467s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3467s Setting up libc6:s390x (2.41-1ubuntu1) ... 3467s Checking for services that may need to be restarted... 3467s Checking init scripts... 3467s Restarting services possibly affected by the upgrade: 3467s cron: restarting...done. 3467s 3467s Services restarted successfully. 3467s (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.) 3467s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 3467s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3467s Setting up libc-bin (2.41-1ubuntu1) ... 3467s Setting up locales (2.41-1ubuntu1) ... 3467s Installing new version of config file /etc/locale.alias ... 3468s Generating locales (this might take a while)... 3468s en_US.UTF-8... done 3468s Generation complete. 3468s Setting up libc-dev-bin (2.41-1ubuntu1) ... 3468s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 3468s Processing triggers for man-db (2.13.0-1) ... 3469s Processing triggers for systemd (257.2-3ubuntu1) ... 3470s autopkgtest: DBG: testbed command exited with code 0 3470s 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'] 3470s Reading package lists... 3470s Building dependency tree... 3470s Reading state information... 3470s Starting pkgProblemResolver with broken count: 0 3470s Starting 2 pkgProblemResolver with broken count: 0 3470s Done 3470s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3470s autopkgtest: DBG: testbed command exited with code 0 3470s 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.3LpQ7v/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3471s autopkgtest: DBG: testbed command exited with code 1 3471s autopkgtest [09:07:52]: rebooting testbed after setup commands that affected boot 3471s autopkgtest: DBG: sending command to testbed: reboot 3487s autopkgtest: DBG: got reply from testbed: ok 3487s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3487s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3487s autopkgtest: DBG: testbed command exited with code 0 3487s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 3487s autopkgtest: DBG: got reply from testbed: ok 3487s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3488s autopkgtest: DBG: testbed command exited with code 0 3488s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3488s autopkgtest: DBG: testbed command exited with code 0 3488s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3488s autopkgtest: DBG: testbed command exited with code 0 3488s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3488s autopkgtest: DBG: testbed command exited with code 0 3488s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 3488s autopkgtest: DBG: got reply from testbed: ok 3488s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3488s autopkgtest: DBG: testbed command exited with code 0 3488s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/testbed-packages"], kind short, sout raw, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/testbed-packages /tmp/autopkgtest-work.6nmnu1s5/out/testbed-packages 3489s autopkgtest: DBG: got reply from testbed: ok 3489s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3489s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 3489s autopkgtest: DBG: got reply from testbed: ok 3489s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3490s autopkgtest: DBG: testbed command exited with code 0 3490s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3490s autopkgtest: DBG: testbed command exited with code 0 3490s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3490s autopkgtest: DBG: testbed command exited with code 0 3490s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3490s autopkgtest: DBG: testbed command exited with code 0 3490s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 3490s autopkgtest: DBG: got reply from testbed: ok 3490s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3490s autopkgtest: DBG: testbed command exited with code 0 3490s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3491s autopkgtest: DBG: testbed command exited with code 0 3491s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3491s autopkgtest: DBG: testbed command exited with code 0 3491s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3491s autopkgtest: DBG: install_deps: deps_new=['python3-scipy', 'python3-pytest', 'python3-all', 'python3-doit', 'python3-hypothesis'] 3491s autopkgtest: DBG: install-deps: satisfying python3-scipy, python3-pytest, python3-all, python3-doit, python3-hypothesis 3491s autopkgtest: DBG: can use apt-get on testbed: True 3491s 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-scipy, python3-pytest, python3-all, python3-doit, python3-hypothesis'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3491s Reading package lists... 3491s Building dependency tree... 3491s Reading state information... 3491s Starting pkgProblemResolver with broken count: 0 3491s Starting 2 pkgProblemResolver with broken count: 0 3491s Done 3492s The following NEW packages will be installed: 3492s libblas3 libgfortran5 liblapack3 liblbfgsb0 libnsl2 libpython3.12-minimal 3492s libpython3.12-stdlib python3-all python3-cloudpickle python3-dateutil 3492s python3-decorator python3-doit python3-hypothesis python3-importlib-metadata 3492s python3-iniconfig python3-numpy python3-numpy-dev python3-packaging 3492s python3-pluggy python3-pytest python3-scipy python3-sortedcontainers 3492s python3.12 python3.12-minimal 3492s 0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded. 3492s Need to get 37.1 MB of archives. 3492s After this operation, 184 MB of additional disk space will be used. 3492s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 3492s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 3493s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 3493s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 3493s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 3493s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 3493s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 3493s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 3493s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 3493s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 3493s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cloudpickle all 3.1.1-1 [22.4 kB] 3493s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 3493s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 3493s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 3493s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-doit all 0.36.0-4 [70.2 kB] 3493s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 3493s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 3493s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 3494s Get:19 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy-dev s390x 1:2.2.3+ds-1 [146 kB] 3494s Get:20 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy s390x 1:2.2.3+ds-1 [5031 kB] 3494s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 3494s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 3494s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 3494s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 3495s Fetched 37.1 MB in 3s (10.6 MB/s) 3495s Selecting previously unselected package libpython3.12-minimal:s390x. 3495s (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.) 3495s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 3495s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 3495s Selecting previously unselected package python3.12-minimal. 3495s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 3495s Unpacking python3.12-minimal (3.12.9-1) ... 3495s Selecting previously unselected package libnsl2:s390x. 3495s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 3495s Unpacking libnsl2:s390x (1.3.0-3build3) ... 3495s Selecting previously unselected package libpython3.12-stdlib:s390x. 3495s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 3495s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 3496s Selecting previously unselected package python3.12. 3496s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 3496s Unpacking python3.12 (3.12.9-1) ... 3496s Selecting previously unselected package libblas3:s390x. 3496s Preparing to unpack .../05-libblas3_3.12.1-2_s390x.deb ... 3496s Unpacking libblas3:s390x (3.12.1-2) ... 3496s Selecting previously unselected package libgfortran5:s390x. 3496s Preparing to unpack .../06-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 3496s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 3496s Selecting previously unselected package liblapack3:s390x. 3496s Preparing to unpack .../07-liblapack3_3.12.1-2_s390x.deb ... 3496s Unpacking liblapack3:s390x (3.12.1-2) ... 3496s Selecting previously unselected package liblbfgsb0:s390x. 3496s Preparing to unpack .../08-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 3496s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 3496s Selecting previously unselected package python3-all. 3496s Preparing to unpack .../09-python3-all_3.13.1-1~exp2_s390x.deb ... 3496s Unpacking python3-all (3.13.1-1~exp2) ... 3496s Selecting previously unselected package python3-cloudpickle. 3496s Preparing to unpack .../10-python3-cloudpickle_3.1.1-1_all.deb ... 3496s Unpacking python3-cloudpickle (3.1.1-1) ... 3496s Selecting previously unselected package python3-dateutil. 3496s Preparing to unpack .../11-python3-dateutil_2.9.0-3_all.deb ... 3496s Unpacking python3-dateutil (2.9.0-3) ... 3496s Selecting previously unselected package python3-decorator. 3496s Preparing to unpack .../12-python3-decorator_5.1.1-5_all.deb ... 3496s Unpacking python3-decorator (5.1.1-5) ... 3496s Selecting previously unselected package python3-importlib-metadata. 3496s Preparing to unpack .../13-python3-importlib-metadata_8.6.1-1_all.deb ... 3496s Unpacking python3-importlib-metadata (8.6.1-1) ... 3496s Selecting previously unselected package python3-doit. 3496s Preparing to unpack .../14-python3-doit_0.36.0-4_all.deb ... 3496s Unpacking python3-doit (0.36.0-4) ... 3496s Selecting previously unselected package python3-sortedcontainers. 3496s Preparing to unpack .../15-python3-sortedcontainers_2.4.0-2_all.deb ... 3496s Unpacking python3-sortedcontainers (2.4.0-2) ... 3496s Selecting previously unselected package python3-hypothesis. 3496s Preparing to unpack .../16-python3-hypothesis_6.125.2-1_all.deb ... 3496s Unpacking python3-hypothesis (6.125.2-1) ... 3496s Selecting previously unselected package python3-iniconfig. 3496s Preparing to unpack .../17-python3-iniconfig_1.1.1-2_all.deb ... 3496s Unpacking python3-iniconfig (1.1.1-2) ... 3496s Selecting previously unselected package python3-numpy-dev:s390x. 3496s Preparing to unpack .../18-python3-numpy-dev_1%3a2.2.3+ds-1_s390x.deb ... 3496s Unpacking python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 3496s Selecting previously unselected package python3-numpy. 3496s Preparing to unpack .../19-python3-numpy_1%3a2.2.3+ds-1_s390x.deb ... 3496s Unpacking python3-numpy (1:2.2.3+ds-1) ... 3496s Selecting previously unselected package python3-packaging. 3496s Preparing to unpack .../20-python3-packaging_24.2-1_all.deb ... 3496s Unpacking python3-packaging (24.2-1) ... 3496s Selecting previously unselected package python3-pluggy. 3496s Preparing to unpack .../21-python3-pluggy_1.5.0-1_all.deb ... 3496s Unpacking python3-pluggy (1.5.0-1) ... 3496s Selecting previously unselected package python3-pytest. 3496s Preparing to unpack .../22-python3-pytest_8.3.4-1_all.deb ... 3496s Unpacking python3-pytest (8.3.4-1) ... 3496s Selecting previously unselected package python3-scipy. 3496s Preparing to unpack .../23-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 3496s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 3496s Setting up python3-iniconfig (1.1.1-2) ... 3497s Setting up python3-importlib-metadata (8.6.1-1) ... 3497s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 3497s Setting up python3-sortedcontainers (2.4.0-2) ... 3497s Setting up python3-cloudpickle (3.1.1-1) ... 3497s Setting up python3-decorator (5.1.1-5) ... 3497s Setting up libblas3:s390x (3.12.1-2) ... 3497s 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 3497s Setting up python3-packaging (24.2-1) ... 3497s Setting up python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 3497s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 3497s Setting up python3-pluggy (1.5.0-1) ... 3497s Setting up libnsl2:s390x (1.3.0-3build3) ... 3497s Setting up python3-dateutil (2.9.0-3) ... 3497s Setting up python3.12-minimal (3.12.9-1) ... 3498s Setting up liblapack3:s390x (3.12.1-2) ... 3498s 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 3498s Setting up python3-doit (0.36.0-4) ... 3498s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 3498s Setting up python3-pytest (8.3.4-1) ... 3499s Setting up python3.12 (3.12.9-1) ... 3500s Setting up python3-hypothesis (6.125.2-1) ... 3500s Setting up python3-all (3.13.1-1~exp2) ... 3500s Setting up python3-numpy (1:2.2.3+ds-1) ... 3504s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 3504s Setting up python3-scipy (1.14.1-4ubuntu1) ... 3509s Processing triggers for systemd (257.2-3ubuntu1) ... 3509s Processing triggers for man-db (2.13.0-1) ... 3510s Processing triggers for libc-bin (2.41-1ubuntu1) ... 3510s autopkgtest: DBG: testbed command exited with code 0 3510s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-scipy'], kind short, sout pipe, serr pipe, env [] 3510s autopkgtest: DBG: testbed command exited with code 0 3510s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/python3-smoke-packages.all"], kind short, sout raw, serr pipe, env [] 3510s autopkgtest: DBG: testbed command exited with code 0 3510s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-smoke-packages.all /tmp/autopkgtest-work.6nmnu1s5/out/python3-smoke-packages.all 3511s autopkgtest: DBG: got reply from testbed: ok 3511s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr raw, env [] 3511s autopkgtest: DBG: testbed command exited with code 1 3511s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v/build.Ce6'], kind short, sout raw, serr pipe, env [] 3511s autopkgtest: DBG: testbed command exited with code 0 3511s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.6nmnu1s5/out/tests-tree/ /tmp/autopkgtest.3LpQ7v/build.Ce6/src/ 3540s autopkgtest: DBG: got reply from testbed: ok 3540s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr pipe, env [] 3540s autopkgtest: DBG: testbed command exited with code 0 3540s autopkgtest [09:09:01]: test python3-smoke: [----------------------- 3540s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.3LpQ7v/wrapper.sh --debug --artifacts=/tmp/autopkgtest.3LpQ7v/python3-smoke-artifacts --chdir=/tmp/autopkgtest.3LpQ7v/build.Ce6/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.3LpQ7v/python3-smoke-stderr --stdout=/tmp/autopkgtest.3LpQ7v/python3-smoke-stdout --tmp=/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1' --make-executable=/tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-smoke -- /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-smoke"], kind test, sout raw, serr raw, env [] 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.3LpQ7v/python3-smoke-artifacts 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: changing to directory: /tmp/autopkgtest.3LpQ7v/build.Ce6/src 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: LANG=C.UTF-8 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LANGUAGE 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ADDRESS 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ALL 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_COLLATE 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_CTYPE 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MEASUREMENT 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MESSAGES 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MONETARY 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NAME 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NUMERIC 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_PAPER 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TELEPHONE 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TIME 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: pretending to be a login shell 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write standard error to /tmp/autopkgtest.3LpQ7v/python3-smoke-stderr 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write stdout to /tmp/autopkgtest.3LpQ7v/python3-smoke-stdout 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: marking as executable: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-smoke 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: command to run: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/python3-smoke 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.GagcvQWyEh/out to stdout and file: /tmp/autopkgtest.3LpQ7v/python3-smoke-stdout 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.GagcvQWyEh/err to standard error and file: /tmp/autopkgtest.3LpQ7v/python3-smoke-stdout 3540s /tmp/autopkgtest.3LpQ7v/wrapper.sh: writing script pid 1616 to /tmp/autopkgtest_script_pid 3540s === testing python3-smoke === 3540s === Testing: python3.12 scipy === 3541s ============================= test session starts ============================== 3541s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 3541s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3541s plugins: hypothesis-6.125.2, typeguard-4.4.1 3541s collected 1039 items / 4 deselected / 1035 selected 3541s 3541s tests/test_bsplines.py ................................................. [ 4%] 3541s ........................................................................ [ 11%] 3542s ..........x............................................................. [ 18%] 3542s ................. [ 20%] 3542s tests/test_fitpack.py .....................................s....s.. [ 24%] 3543s tests/test_fitpack2.py ................................................. [ 29%] 3543s .................... [ 31%] 3543s tests/test_gil.py s [ 31%] 3543s tests/test_interpnd.py ..................... [ 33%] 3543s tests/test_interpolate.py .............................................. [ 37%] 3544s ........................................................................ [ 44%] 3544s ........... [ 45%] 3544s tests/test_ndgriddata.py .................... [ 47%] 3544s tests/test_pade.py .... [ 48%] 3545s tests/test_polyint.py .................................................. [ 53%] 3545s ........................................................................ [ 60%] 3545s ..... [ 60%] 3545s tests/test_rbf.py .......... [ 61%] 3545s tests/test_rbfinterp.py ................................................ [ 66%] 3545s ........................................................................ [ 73%] 3546s ................................................................. [ 79%] 3547s tests/test_rgi.py ....................s................................. [ 84%] 3549s ......................ss.......ss..................s.......ss.......ss.. [ 91%] 3551s ..........................................s.......ss..........s......... [ 98%] 3551s ................ [100%] 3551s 3551s ========== 1017 passed, 17 skipped, 4 deselected, 1 xfailed in 9.96s =========== 3551s === Done: python3.12 scipy === 3551s === Testing: python3.13 scipy === 3552s ============================= test session starts ============================== 3552s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 3552s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3552s plugins: hypothesis-6.125.2, typeguard-4.4.1 3552s collected 1039 items / 4 deselected / 1035 selected 3552s 3552s tests/test_bsplines.py ................................................. [ 4%] 3552s ........................................................................ [ 11%] 3552s ..........x............................................................. [ 18%] 3552s ................. [ 20%] 3552s tests/test_fitpack.py .....................................s....s.. [ 24%] 3553s tests/test_fitpack2.py ................................................. [ 29%] 3553s .................... [ 31%] 3553s tests/test_gil.py s [ 31%] 3553s tests/test_interpnd.py ..................... [ 33%] 3553s tests/test_interpolate.py .............................................. [ 37%] 3554s ........................................................................ [ 44%] 3554s ........... [ 45%] 3554s tests/test_ndgriddata.py .................... [ 47%] 3554s tests/test_pade.py .... [ 48%] 3555s tests/test_polyint.py .................................................. [ 53%] 3555s ........................................................................ [ 60%] 3555s ..... [ 60%] 3555s tests/test_rbf.py .......... [ 61%] 3555s tests/test_rbfinterp.py ................................................ [ 66%] 3556s ........................................................................ [ 73%] 3556s ................................................................. [ 79%] 3557s tests/test_rgi.py ....................s................................. [ 84%] 3559s ......................ss.......ss..................s.......ss.......ss.. [ 91%] 3561s ..........................................s.......ss..........s......... [ 98%] 3561s ................ [100%] 3561s 3561s ========== 1017 passed, 17 skipped, 4 deselected, 1 xfailed in 9.47s =========== 3561s /tmp/autopkgtest.3LpQ7v/wrapper.sh: checking for leaked background processes... 3561s === Done: python3.13 scipy === 3561s /tmp/autopkgtest.3LpQ7v/wrapper.sh: waiting for tee/cat subprocesses... 3561s /tmp/autopkgtest.3LpQ7v/wrapper.sh: cleaning up... 3561s /tmp/autopkgtest.3LpQ7v/wrapper.sh: Exit status: 0 3561s autopkgtest: DBG: testbed command exited with code 0 3561s autopkgtest [09:09:22]: test python3-smoke: -----------------------] 3561s autopkgtest: DBG: testbed executing test finished with exit status 0 3561s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-smoke-stdout /tmp/autopkgtest-work.6nmnu1s5/out/python3-smoke-stdout 3561s autopkgtest: DBG: got reply from testbed: ok 3561s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-smoke-stderr /tmp/autopkgtest-work.6nmnu1s5/out/python3-smoke-stderr 3561s autopkgtest: DBG: got reply from testbed: ok 3561s python3-smoke PASS 3561s autopkgtest [09:09:22]: test python3-smoke: - - - - - - - - - - results - - - - - - - - - - 3561s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/python3-smoke-artifacts/ /tmp/autopkgtest-work.6nmnu1s5/out/artifacts/ 3562s autopkgtest: DBG: got reply from testbed: ok 3562s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.3LpQ7v/python3-smoke-artifacts', '/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3562s autopkgtest: DBG: testbed command exited with code 0 3562s autopkgtest [09:09:23]: test openblas: preparing testbed 3562s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-scipy', 'python3-pytest', 'python3-all', 'python3-doit', 'python3-hypothesis'], deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libopenblas-dev'] 3562s autopkgtest: DBG: testbed reset 3562s autopkgtest: DBG: sending command to testbed: revert 3653s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.3LpQ7v 3653s autopkgtest: DBG: sending command to testbed: print-execute-command 3653s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.dj2ltg85/runcmd 3653s autopkgtest: DBG: sending command to testbed: capabilities 3653s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine suggested-normal-user=ubuntu ok root-on-testbed reboot revert-full-system 3653s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'root-on-testbed', 'reboot', 'revert-full-system', 'has_internet'] 3653s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3653s autopkgtest: DBG: testbed command exited with code 0 3653s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.3LpQ7v/wrapper.sh 3653s autopkgtest: DBG: got reply from testbed: ok 3653s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3654s autopkgtest: DBG: testbed command exited with code 0 3654s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3654s autopkgtest: DBG: testbed command exited with code 0 3654s autopkgtest [09:10:55]: testbed dpkg architecture: s390x 3654s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3654s autopkgtest: DBG: testbed command exited with code 0 3654s autopkgtest [09:10:55]: testbed apt version: 2.9.30 3654s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3654s autopkgtest: DBG: testbed command exited with code 0 3654s autopkgtest: DBG: testbed has eatmydata 3654s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3654s autopkgtest: DBG: testbed command exited with code 0 3654s autopkgtest [09:10:55]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3654s 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 [] 3654s autopkgtest: DBG: testbed command exited with code 0 3654s autopkgtest [09:10:55]: testbed release detected to be: plucky 3654s 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 [] 3655s autopkgtest: DBG: testbed command exited with code 0 3655s 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 [] 3655s autopkgtest: DBG: testbed command exited with code 0 3655s autopkgtest: DBG: adding APT source: Types: deb deb-src 3655s URIs: http://ftpmaster.internal/ubuntu/ 3655s Suites: plucky-proposed 3655s Components: main restricted universe multiverse 3655s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3655s 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 [] 3655s autopkgtest: DBG: testbed command exited with code 0 3655s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3655s Package: * 3655s Pin: release plucky-proposed 3655s Pin-Priority: 500 3655s 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 [] 3655s autopkgtest: DBG: testbed command exited with code 0 3655s autopkgtest [09:10:56]: updating testbed package index (apt update) 3655s 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'] 3655s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3656s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3656s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3656s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3656s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 3656s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 3656s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 3656s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3656s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 3656s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3656s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 3656s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 3656s Fetched 1651 kB in 1s (1831 kB/s) 3657s Reading package lists... 3657s autopkgtest: DBG: testbed command exited with code 0 3657s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3657s Package: * 3657s Pin: release plucky-proposed 3657s Pin-Priority: 100 3657s 3657s Package: src:glibc:any src:numpy:any 3657s Pin: release plucky-proposed 3657s Pin-Priority: 995 3657s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:numpy:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 3657s autopkgtest: DBG: testbed command exited with code 0 3657s 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.3LpQ7v/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3657s autopkgtest: DBG: testbed command exited with code 0 3657s 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'] 3657s + lsb_release --codename --short 3657s + RELEASE=plucky 3657s + cat 3657s + [ plucky != trusty ] 3657s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3657s Reading package lists... 3657s Building dependency tree... 3657s Reading state information... 3658s Calculating upgrade... 3658s The following packages were automatically installed and are no longer required: 3658s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3658s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3658s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3658s linux-tools-6.11.0-8-generic 3658s Use 'sudo apt autoremove' to remove them. 3658s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3658s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3658s + /usr/lib/apt/apt-helper analyze-pattern ?true 3658s + uname -r 3658s + sed s/\./\\./g 3658s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3658s + apt list ?obsolete 3658s + tail -n+2 3658s + cut -d/ -f1 3658s + grep -v ^linux-.*6\.12\.0-15-generic.* 3658s + true 3658s + obsolete_pkgs= 3658s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3658s Reading package lists... 3658s Building dependency tree... 3658s Reading state information... 3658s The following packages will be REMOVED: 3658s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3658s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3658s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3658s linux-tools-6.11.0-8-generic* 3658s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 3658s After this operation, 167 MB disk space will be freed. 3658s (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.) 3658s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3658s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3658s Removing libpython3.12t64:s390x (3.12.9-1) ... 3658s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3658s Removing libnsl2:s390x (1.3.0-3build3) ... 3658s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3658s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3658s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3659s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3659s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3659s (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 ... 55930 files and directories currently installed.) 3659s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3659s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3660s + grep -q trusty /etc/lsb-release 3660s + [ ! -d /usr/share/doc/unattended-upgrades ] 3660s + [ ! -d /usr/share/doc/lxd ] 3660s + [ ! -d /usr/share/doc/lxd-client ] 3660s + [ ! -d /usr/share/doc/snapd ] 3660s + type iptables 3660s + cat 3660s + chmod 755 /etc/rc.local 3660s + . /etc/rc.local 3660s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3660s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3660s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3660s + uname -m 3660s + [ s390x = ppc64le ] 3660s + [ -d /run/systemd/system ] 3660s + systemd-detect-virt --quiet --vm 3660s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3660s + cat 3660s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3660s + echo COMPRESS=lz4 3660s autopkgtest: DBG: testbed command exited with code 0 3660s autopkgtest [09:11:01]: upgrading testbed (apt dist-upgrade and autopurge) 3660s 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'] 3660s Reading package lists... 3660s Building dependency tree... 3660s Reading state information... 3660s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3660s Starting 2 pkgProblemResolver with broken count: 0 3660s Done 3660s Entering ResolveByKeep 3660s 3660s The following packages will be upgraded: 3660s libc-bin libc-dev-bin libc6 libc6-dev locales 3661s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3661s Need to get 9512 kB of archives. 3661s After this operation, 288 kB of additional disk space will be used. 3661s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 3661s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 3661s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 3661s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 3661s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 3662s Preconfiguring packages ... 3662s Fetched 9512 kB in 1s (9300 kB/s) 3662s (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 ... 55928 files and directories currently installed.) 3662s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 3662s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3662s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 3662s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3662s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 3662s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3662s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 3662s Checking for services that may need to be restarted... 3662s Checking init scripts... 3662s Checking for services that may need to be restarted... 3662s Checking init scripts... 3662s Stopping some services possibly affected by the upgrade (will be restarted later): 3662s cron: stopping...done. 3662s 3662s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3662s Setting up libc6:s390x (2.41-1ubuntu1) ... 3662s Checking for services that may need to be restarted... 3662s Checking init scripts... 3662s Restarting services possibly affected by the upgrade: 3662s cron: restarting...done. 3662s 3662s Services restarted successfully. 3662s (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.) 3662s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 3662s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3662s Setting up libc-bin (2.41-1ubuntu1) ... 3662s Setting up locales (2.41-1ubuntu1) ... 3662s Installing new version of config file /etc/locale.alias ... 3663s Generating locales (this might take a while)... 3664s en_US.UTF-8... done 3664s Generation complete. 3664s Setting up libc-dev-bin (2.41-1ubuntu1) ... 3664s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 3664s Processing triggers for man-db (2.13.0-1) ... 3664s Processing triggers for systemd (257.2-3ubuntu1) ... 3665s autopkgtest: DBG: testbed command exited with code 0 3665s 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'] 3665s Reading package lists... 3665s Building dependency tree... 3665s Reading state information... 3665s Starting pkgProblemResolver with broken count: 0 3665s Starting 2 pkgProblemResolver with broken count: 0 3665s Done 3666s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3666s autopkgtest: DBG: testbed command exited with code 0 3666s 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.3LpQ7v/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3666s autopkgtest: DBG: testbed command exited with code 1 3666s autopkgtest [09:11:07]: rebooting testbed after setup commands that affected boot 3666s autopkgtest: DBG: sending command to testbed: reboot 3674s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 3683s autopkgtest: DBG: got reply from testbed: ok 3683s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3683s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3683s autopkgtest: DBG: testbed command exited with code 0 3683s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 3683s autopkgtest: DBG: got reply from testbed: ok 3683s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3683s autopkgtest: DBG: testbed command exited with code 0 3683s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3683s autopkgtest: DBG: testbed command exited with code 0 3683s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3683s autopkgtest: DBG: testbed command exited with code 0 3683s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3684s autopkgtest: DBG: testbed command exited with code 0 3684s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 3684s autopkgtest: DBG: got reply from testbed: ok 3684s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3684s autopkgtest: DBG: testbed command exited with code 0 3684s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3684s autopkgtest: DBG: testbed command exited with code 0 3684s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3684s autopkgtest: DBG: testbed command exited with code 0 3684s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/testbed-packages"], kind short, sout raw, serr pipe, env [] 3684s autopkgtest: DBG: testbed command exited with code 0 3684s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/testbed-packages /tmp/autopkgtest-work.6nmnu1s5/out/testbed-packages 3685s autopkgtest: DBG: got reply from testbed: ok 3685s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3685s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3685s autopkgtest: DBG: testbed command exited with code 0 3685s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 3685s autopkgtest: DBG: got reply from testbed: ok 3685s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3685s autopkgtest: DBG: testbed command exited with code 0 3685s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3685s autopkgtest: DBG: testbed command exited with code 0 3685s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3685s autopkgtest: DBG: testbed command exited with code 0 3685s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3686s autopkgtest: DBG: testbed command exited with code 0 3686s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 3686s autopkgtest: DBG: got reply from testbed: ok 3686s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3686s autopkgtest: DBG: testbed command exited with code 0 3686s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3686s autopkgtest: DBG: testbed command exited with code 0 3686s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3686s autopkgtest: DBG: testbed command exited with code 0 3686s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3686s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libopenblas-dev'] 3686s autopkgtest: DBG: install-deps: satisfying build-essential, python3-scipy, python3-pytest, python3, python3-doit, python3-hypothesis, libopenblas-dev 3686s autopkgtest: DBG: can use apt-get on testbed: True 3686s 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', 'build-essential, python3-scipy, python3-pytest, python3, python3-doit, python3-hypothesis, libopenblas-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3686s Reading package lists... 3687s Building dependency tree... 3687s Reading state information... 3687s Starting pkgProblemResolver with broken count: 0 3687s Starting 2 pkgProblemResolver with broken count: 0 3687s Done 3687s The following NEW packages will be installed: 3687s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ 3687s g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 3687s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libblas3 libcc1-0 3687s libgcc-14-dev libgfortran5 libgomp1 libisl23 libitm1 liblapack3 liblbfgsb0 3687s libmpc3 libopenblas-dev libopenblas-pthread-dev libopenblas0 3687s libopenblas0-pthread libstdc++-14-dev libubsan1 python3-cloudpickle 3687s python3-dateutil python3-decorator python3-doit python3-hypothesis 3687s python3-importlib-metadata python3-iniconfig python3-numpy python3-numpy-dev 3687s python3-packaging python3-pluggy python3-pytest python3-scipy 3687s python3-sortedcontainers 3687s 0 upgraded, 44 newly installed, 0 to remove and 0 not upgraded. 3687s Need to get 91.2 MB of archives. 3687s After this operation, 360 MB of additional disk space will be used. 3687s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 3688s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 3688s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 3689s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 3689s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 3689s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 3689s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 3689s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 3689s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 3689s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 3689s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 3689s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 3689s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 3691s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 3691s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 3691s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 3691s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 3691s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 3692s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 3692s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 3692s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 3692s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 3692s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 3692s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 3692s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenblas0-pthread s390x 0.3.29+ds-2 [6952 kB] 3692s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 3693s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 3693s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenblas0 s390x 0.3.29+ds-2 [6260 B] 3693s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenblas-pthread-dev s390x 0.3.29+ds-2 [4326 kB] 3693s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenblas-dev s390x 0.3.29+ds-2 [21.0 kB] 3693s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cloudpickle all 3.1.1-1 [22.4 kB] 3693s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 3693s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 3693s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 3693s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-doit all 0.36.0-4 [70.2 kB] 3693s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 3693s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 3693s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 3693s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy-dev s390x 1:2.2.3+ds-1 [146 kB] 3693s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy s390x 1:2.2.3+ds-1 [5031 kB] 3693s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 3693s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 3694s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 3694s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 3695s Fetched 91.2 MB in 8s (12.0 MB/s) 3695s Selecting previously unselected package libisl23:s390x. 3695s (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.) 3695s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 3695s Unpacking libisl23:s390x (0.27-1) ... 3695s Selecting previously unselected package libmpc3:s390x. 3695s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 3695s Unpacking libmpc3:s390x (1.3.1-1build2) ... 3695s Selecting previously unselected package cpp-14-s390x-linux-gnu. 3695s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 3695s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3695s Selecting previously unselected package cpp-14. 3695s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 3695s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 3695s Selecting previously unselected package cpp-s390x-linux-gnu. 3695s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 3695s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3695s Selecting previously unselected package cpp. 3695s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 3695s Unpacking cpp (4:14.2.0-1ubuntu1) ... 3695s Selecting previously unselected package libcc1-0:s390x. 3695s Preparing to unpack .../06-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 3695s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 3695s Selecting previously unselected package libgomp1:s390x. 3695s Preparing to unpack .../07-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 3695s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 3695s Selecting previously unselected package libitm1:s390x. 3695s Preparing to unpack .../08-libitm1_15-20250213-1ubuntu1_s390x.deb ... 3695s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 3695s Selecting previously unselected package libasan8:s390x. 3695s Preparing to unpack .../09-libasan8_15-20250213-1ubuntu1_s390x.deb ... 3695s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 3695s Selecting previously unselected package libubsan1:s390x. 3695s Preparing to unpack .../10-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 3695s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 3695s Selecting previously unselected package libgcc-14-dev:s390x. 3695s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 3695s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 3695s Selecting previously unselected package gcc-14-s390x-linux-gnu. 3695s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 3695s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3695s Selecting previously unselected package gcc-14. 3695s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 3695s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 3695s Selecting previously unselected package gcc-s390x-linux-gnu. 3695s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 3695s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3695s Selecting previously unselected package gcc. 3695s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 3695s Unpacking gcc (4:14.2.0-1ubuntu1) ... 3695s Selecting previously unselected package libstdc++-14-dev:s390x. 3696s Preparing to unpack .../16-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 3696s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 3696s Selecting previously unselected package g++-14-s390x-linux-gnu. 3696s Preparing to unpack .../17-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 3696s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3696s Selecting previously unselected package g++-14. 3696s Preparing to unpack .../18-g++-14_14.2.0-17ubuntu1_s390x.deb ... 3696s Unpacking g++-14 (14.2.0-17ubuntu1) ... 3696s Selecting previously unselected package g++-s390x-linux-gnu. 3696s Preparing to unpack .../19-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 3696s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3696s Selecting previously unselected package g++. 3696s Preparing to unpack .../20-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 3696s Unpacking g++ (4:14.2.0-1ubuntu1) ... 3696s Selecting previously unselected package build-essential. 3696s Preparing to unpack .../21-build-essential_12.10ubuntu1_s390x.deb ... 3696s Unpacking build-essential (12.10ubuntu1) ... 3696s Selecting previously unselected package libblas3:s390x. 3696s Preparing to unpack .../22-libblas3_3.12.1-2_s390x.deb ... 3696s Unpacking libblas3:s390x (3.12.1-2) ... 3696s Selecting previously unselected package libgfortran5:s390x. 3696s Preparing to unpack .../23-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 3696s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 3696s Selecting previously unselected package libopenblas0-pthread:s390x. 3696s Preparing to unpack .../24-libopenblas0-pthread_0.3.29+ds-2_s390x.deb ... 3696s Unpacking libopenblas0-pthread:s390x (0.3.29+ds-2) ... 3696s Selecting previously unselected package liblapack3:s390x. 3696s Preparing to unpack .../25-liblapack3_3.12.1-2_s390x.deb ... 3696s Unpacking liblapack3:s390x (3.12.1-2) ... 3696s Selecting previously unselected package liblbfgsb0:s390x. 3696s Preparing to unpack .../26-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 3696s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 3696s Selecting previously unselected package libopenblas0:s390x. 3696s Preparing to unpack .../27-libopenblas0_0.3.29+ds-2_s390x.deb ... 3696s Unpacking libopenblas0:s390x (0.3.29+ds-2) ... 3696s Selecting previously unselected package libopenblas-pthread-dev:s390x. 3696s Preparing to unpack .../28-libopenblas-pthread-dev_0.3.29+ds-2_s390x.deb ... 3696s Unpacking libopenblas-pthread-dev:s390x (0.3.29+ds-2) ... 3696s Selecting previously unselected package libopenblas-dev:s390x. 3696s Preparing to unpack .../29-libopenblas-dev_0.3.29+ds-2_s390x.deb ... 3696s Unpacking libopenblas-dev:s390x (0.3.29+ds-2) ... 3696s Selecting previously unselected package python3-cloudpickle. 3696s Preparing to unpack .../30-python3-cloudpickle_3.1.1-1_all.deb ... 3696s Unpacking python3-cloudpickle (3.1.1-1) ... 3696s Selecting previously unselected package python3-dateutil. 3696s Preparing to unpack .../31-python3-dateutil_2.9.0-3_all.deb ... 3696s Unpacking python3-dateutil (2.9.0-3) ... 3696s Selecting previously unselected package python3-decorator. 3696s Preparing to unpack .../32-python3-decorator_5.1.1-5_all.deb ... 3696s Unpacking python3-decorator (5.1.1-5) ... 3696s Selecting previously unselected package python3-importlib-metadata. 3696s Preparing to unpack .../33-python3-importlib-metadata_8.6.1-1_all.deb ... 3696s Unpacking python3-importlib-metadata (8.6.1-1) ... 3696s Selecting previously unselected package python3-doit. 3696s Preparing to unpack .../34-python3-doit_0.36.0-4_all.deb ... 3696s Unpacking python3-doit (0.36.0-4) ... 3696s Selecting previously unselected package python3-sortedcontainers. 3696s Preparing to unpack .../35-python3-sortedcontainers_2.4.0-2_all.deb ... 3696s Unpacking python3-sortedcontainers (2.4.0-2) ... 3696s Selecting previously unselected package python3-hypothesis. 3696s Preparing to unpack .../36-python3-hypothesis_6.125.2-1_all.deb ... 3696s Unpacking python3-hypothesis (6.125.2-1) ... 3696s Selecting previously unselected package python3-iniconfig. 3696s Preparing to unpack .../37-python3-iniconfig_1.1.1-2_all.deb ... 3696s Unpacking python3-iniconfig (1.1.1-2) ... 3696s Selecting previously unselected package python3-numpy-dev:s390x. 3696s Preparing to unpack .../38-python3-numpy-dev_1%3a2.2.3+ds-1_s390x.deb ... 3696s Unpacking python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 3696s Selecting previously unselected package python3-numpy. 3696s Preparing to unpack .../39-python3-numpy_1%3a2.2.3+ds-1_s390x.deb ... 3696s Unpacking python3-numpy (1:2.2.3+ds-1) ... 3696s Selecting previously unselected package python3-packaging. 3696s Preparing to unpack .../40-python3-packaging_24.2-1_all.deb ... 3696s Unpacking python3-packaging (24.2-1) ... 3696s Selecting previously unselected package python3-pluggy. 3696s Preparing to unpack .../41-python3-pluggy_1.5.0-1_all.deb ... 3696s Unpacking python3-pluggy (1.5.0-1) ... 3696s Selecting previously unselected package python3-pytest. 3696s Preparing to unpack .../42-python3-pytest_8.3.4-1_all.deb ... 3696s Unpacking python3-pytest (8.3.4-1) ... 3696s Selecting previously unselected package python3-scipy. 3696s Preparing to unpack .../43-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 3696s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 3697s Setting up python3-iniconfig (1.1.1-2) ... 3697s Setting up python3-importlib-metadata (8.6.1-1) ... 3697s Setting up python3-sortedcontainers (2.4.0-2) ... 3697s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 3697s Setting up python3-cloudpickle (3.1.1-1) ... 3697s Setting up python3-decorator (5.1.1-5) ... 3697s Setting up libblas3:s390x (3.12.1-2) ... 3697s 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 3697s Setting up python3-packaging (24.2-1) ... 3697s Setting up libmpc3:s390x (1.3.1-1build2) ... 3697s Setting up python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 3697s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 3697s Setting up python3-pluggy (1.5.0-1) ... 3697s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 3697s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 3697s Setting up python3-dateutil (2.9.0-3) ... 3697s Setting up libisl23:s390x (0.27-1) ... 3697s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 3697s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 3697s Setting up liblapack3:s390x (3.12.1-2) ... 3697s 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 3697s Setting up python3-doit (0.36.0-4) ... 3698s Setting up libopenblas0-pthread:s390x (0.3.29+ds-2) ... 3698s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 3698s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 3698s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/s390x-linux-gnu/libopenblas.so.0 (libopenblas.so.0-s390x-linux-gnu) in auto mode 3698s Setting up python3-pytest (8.3.4-1) ... 3698s Setting up python3-hypothesis (6.125.2-1) ... 3698s Setting up python3-numpy (1:2.2.3+ds-1) ... 3699s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3699s Setting up cpp-14 (14.2.0-17ubuntu1) ... 3699s Setting up libopenblas0:s390x (0.3.29+ds-2) ... 3699s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 3699s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 3699s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 3699s Setting up libopenblas-pthread-dev:s390x (0.3.29+ds-2) ... 3699s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode 3699s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode 3699s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/s390x-linux-gnu/libopenblas.so (libopenblas.so-s390x-linux-gnu) in auto mode 3699s Setting up python3-scipy (1.14.1-4ubuntu1) ... 3702s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3702s Setting up libopenblas-dev:s390x (0.3.29+ds-2) ... 3702s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3702s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3702s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3702s Setting up cpp (4:14.2.0-1ubuntu1) ... 3702s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3702s Setting up gcc-14 (14.2.0-17ubuntu1) ... 3702s Setting up g++-14 (14.2.0-17ubuntu1) ... 3702s Setting up gcc (4:14.2.0-1ubuntu1) ... 3702s Setting up g++ (4:14.2.0-1ubuntu1) ... 3702s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 3702s Setting up build-essential (12.10ubuntu1) ... 3702s Processing triggers for man-db (2.13.0-1) ... 3702s Processing triggers for libc-bin (2.41-1ubuntu1) ... 3702s autopkgtest: DBG: testbed command exited with code 0 3702s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-scipy'], kind short, sout pipe, serr pipe, env [] 3703s autopkgtest: DBG: testbed command exited with code 0 3703s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/openblas-packages.all"], kind short, sout raw, serr pipe, env [] 3703s autopkgtest: DBG: testbed command exited with code 0 3703s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/openblas-packages.all /tmp/autopkgtest-work.6nmnu1s5/out/openblas-packages.all 3703s autopkgtest: DBG: got reply from testbed: ok 3703s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr raw, env [] 3703s autopkgtest: DBG: testbed command exited with code 1 3703s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v/build.Ce6'], kind short, sout raw, serr pipe, env [] 3703s autopkgtest: DBG: testbed command exited with code 0 3703s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.6nmnu1s5/out/tests-tree/ /tmp/autopkgtest.3LpQ7v/build.Ce6/src/ 3714s autopkgtest: DBG: got reply from testbed: ok 3714s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr pipe, env [] 3714s autopkgtest: DBG: testbed command exited with code 0 3714s === testing openblas === 3714s autopkgtest [09:11:55]: test openblas: [----------------------- 3714s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.3LpQ7v/wrapper.sh --debug --artifacts=/tmp/autopkgtest.3LpQ7v/openblas-artifacts --chdir=/tmp/autopkgtest.3LpQ7v/build.Ce6/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.3LpQ7v/openblas-stderr --stdout=/tmp/autopkgtest.3LpQ7v/openblas-stdout --tmp=/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1' --make-executable=/tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/openblas -- /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/openblas"], kind test, sout raw, serr raw, env [] 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.3LpQ7v/openblas-artifacts 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: changing to directory: /tmp/autopkgtest.3LpQ7v/build.Ce6/src 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: LANG=C.UTF-8 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LANGUAGE 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ADDRESS 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ALL 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_COLLATE 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_CTYPE 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MEASUREMENT 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MESSAGES 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MONETARY 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NAME 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NUMERIC 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_PAPER 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TELEPHONE 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TIME 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: pretending to be a login shell 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write standard error to /tmp/autopkgtest.3LpQ7v/openblas-stderr 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write stdout to /tmp/autopkgtest.3LpQ7v/openblas-stdout 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: marking as executable: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/openblas 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: command to run: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/openblas 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.s9tGdgWpft/out to stdout and file: /tmp/autopkgtest.3LpQ7v/openblas-stdout 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.s9tGdgWpft/err to standard error and file: /tmp/autopkgtest.3LpQ7v/openblas-stdout 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: writing script pid 1756 to /tmp/autopkgtest_script_pid 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: checking for leaked background processes... 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: waiting for tee/cat subprocesses... 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: cleaning up... 3714s /tmp/autopkgtest.3LpQ7v/wrapper.sh: Exit status: 1 3714s autopkgtest: DBG: testbed command exited with code 1 3714s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 3714s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 3714s === Testing: python3.13 odr === 3714s Traceback (most recent call last): 3714s File "/usr/lib/python3/dist-packages/numpy/_core/__init__.py", line 23, in 3714s from . import multiarray 3714s File "/usr/lib/python3/dist-packages/numpy/_core/multiarray.py", line 10, in 3714s from . import overrides 3714s File "/usr/lib/python3/dist-packages/numpy/_core/overrides.py", line 7, in 3714s from numpy._core._multiarray_umath import ( 3714s add_docstring, _get_implementing_args, _ArrayFunctionDispatcher) 3714s ImportError: libopenblas.so.0: cannot enable executable stack as shared object requires: Invalid argument 3714s 3714s During handling of the above exception, another exception occurred: 3714s 3714s Traceback (most recent call last): 3714s File "/usr/lib/python3/dist-packages/numpy/__init__.py", line 114, in 3714s from numpy.__config__ import show_config 3714s File "/usr/lib/python3/dist-packages/numpy/__config__.py", line 4, in 3714s from numpy._core._multiarray_umath import ( 3714s ...<3 lines>... 3714s ) 3714s File "/usr/lib/python3/dist-packages/numpy/_core/__init__.py", line 49, in 3714s raise ImportError(msg) 3714s ImportError: 3714s 3714s IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! 3714s 3714s Importing the numpy C-extensions failed. This error can happen for 3714s many reasons, often due to issues with your setup or how NumPy was 3714s installed. 3714s 3714s We have compiled some common reasons and troubleshooting tips at: 3714s 3714s https://numpy.org/devdocs/user/troubleshooting-importerror.html 3714s 3714s Please note and check the following: 3714s 3714s * The Python version is: Python3.13 from "/usr/bin/python3.13" 3714s * The NumPy version is: "2.2.3" 3714s 3714s and make sure that they are the versions you expect. 3714s Please carefully study the documentation linked above for further help. 3714s 3714s Original error was: libopenblas.so.0: cannot enable executable stack as shared object requires: Invalid argument 3714s 3714s 3714s The above exception was the direct cause of the following exception: 3714s 3714s Traceback (most recent call last): 3714s File "", line 1, in 3714s import scipy.odr; scipy.odr.test(extra_argv=['-k', 'not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )', '--durations=20', '']) 3714s ^^^^^^^^^^^^^^^^ 3714s File "/usr/lib/python3/dist-packages/scipy/__init__.py", line 48, in 3714s from numpy import __version__ as __numpy_version__ 3714s File "/usr/lib/python3/dist-packages/numpy/__init__.py", line 119, in 3714s raise ImportError(msg) from e 3714s ImportError: Error importing numpy: you should not try to import numpy from 3714s its source directory; please exit the numpy source tree, and relaunch 3714s your python interpreter from there. 3714s autopkgtest [09:11:55]: test openblas: -----------------------] 3714s autopkgtest: DBG: testbed executing test finished with exit status 1 3714s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/openblas-stdout /tmp/autopkgtest-work.6nmnu1s5/out/openblas-stdout 3715s autopkgtest: DBG: got reply from testbed: ok 3715s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/openblas-stderr /tmp/autopkgtest-work.6nmnu1s5/out/openblas-stderr 3715s autopkgtest: DBG: got reply from testbed: ok 3715s autopkgtest [09:11:56]: test openblas: - - - - - - - - - - results - - - - - - - - - - 3715s openblas FAIL non-zero exit status 1 3715s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/openblas-artifacts/ /tmp/autopkgtest-work.6nmnu1s5/out/artifacts/ 3715s autopkgtest: DBG: got reply from testbed: ok 3715s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.3LpQ7v/openblas-artifacts', '/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3715s autopkgtest: DBG: testbed command exited with code 0 3715s autopkgtest [09:11:56]: test blis: preparing testbed 3715s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libopenblas-dev'], deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libblis-dev'] 3715s autopkgtest: DBG: testbed reset 3715s autopkgtest: DBG: sending command to testbed: revert 3779s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.3LpQ7v 3779s autopkgtest: DBG: sending command to testbed: print-execute-command 3779s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.dj2ltg85/runcmd 3779s autopkgtest: DBG: sending command to testbed: capabilities 3779s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine suggested-normal-user=ubuntu ok root-on-testbed reboot revert-full-system 3779s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'ok', 'root-on-testbed', 'reboot', 'revert-full-system', 'has_internet'] 3779s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3780s autopkgtest: DBG: testbed command exited with code 0 3780s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.3LpQ7v/wrapper.sh 3780s autopkgtest: DBG: got reply from testbed: ok 3780s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3780s autopkgtest: DBG: testbed command exited with code 0 3780s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3780s autopkgtest: DBG: testbed command exited with code 0 3780s autopkgtest [09:13:01]: testbed dpkg architecture: s390x 3780s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3780s autopkgtest: DBG: testbed command exited with code 0 3780s autopkgtest [09:13:01]: testbed apt version: 2.9.30 3780s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3780s autopkgtest: DBG: testbed command exited with code 0 3780s autopkgtest: DBG: testbed has eatmydata 3780s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3781s autopkgtest: DBG: testbed command exited with code 0 3781s autopkgtest [09:13:02]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3781s 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 [] 3781s autopkgtest: DBG: testbed command exited with code 0 3781s autopkgtest [09:13:02]: testbed release detected to be: plucky 3781s 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 [] 3781s autopkgtest: DBG: testbed command exited with code 0 3781s 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 [] 3781s autopkgtest: DBG: testbed command exited with code 0 3781s autopkgtest: DBG: adding APT source: Types: deb deb-src 3781s URIs: http://ftpmaster.internal/ubuntu/ 3781s Suites: plucky-proposed 3781s Components: main restricted universe multiverse 3781s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3781s 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 [] 3781s autopkgtest: DBG: testbed command exited with code 0 3781s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3781s Package: * 3781s Pin: release plucky-proposed 3781s Pin-Priority: 500 3781s 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 [] 3781s autopkgtest: DBG: testbed command exited with code 0 3781s autopkgtest [09:13:02]: updating testbed package index (apt update) 3781s 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'] 3782s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3782s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3782s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3782s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3782s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3782s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 3782s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 3782s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 3782s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 3782s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3782s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 3782s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 3783s Fetched 1651 kB in 1s (1689 kB/s) 3783s Reading package lists... 3783s autopkgtest: DBG: testbed command exited with code 0 3783s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3783s Package: * 3783s Pin: release plucky-proposed 3783s Pin-Priority: 100 3783s 3783s Package: src:glibc:any src:numpy:any 3783s Pin: release plucky-proposed 3783s Pin-Priority: 995 3783s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:numpy:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 3783s autopkgtest: DBG: testbed command exited with code 0 3783s 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.3LpQ7v/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3784s autopkgtest: DBG: testbed command exited with code 0 3784s 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'] 3784s + lsb_release --codename --short 3784s + RELEASE=plucky 3784s + cat 3784s + [ plucky != trusty ] 3784s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3784s Reading package lists... 3784s Building dependency tree... 3784s Reading state information... 3784s Calculating upgrade... 3784s The following packages were automatically installed and are no longer required: 3784s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3784s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3784s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3784s linux-tools-6.11.0-8-generic 3784s Use 'sudo apt autoremove' to remove them. 3784s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3784s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3784s + /usr/lib/apt/apt-helper analyze-pattern ?true 3784s + uname -r 3784s + sed s/\./\\./g 3784s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3784s + apt list ?obsolete 3784s + tail -n+2 3784s + cut -d/ -f1 3784s + grep -v ^linux-.*6\.12\.0-15-generic.* 3784s + true 3784s + obsolete_pkgs= 3784s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3784s Reading package lists... 3784s Building dependency tree... 3784s Reading state information... 3784s The following packages will be REMOVED: 3784s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3784s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3784s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3784s linux-tools-6.11.0-8-generic* 3785s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 3785s After this operation, 167 MB disk space will be freed. 3785s (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.) 3785s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3785s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3785s Removing libpython3.12t64:s390x (3.12.9-1) ... 3785s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3785s Removing libnsl2:s390x (1.3.0-3build3) ... 3785s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3785s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3785s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3786s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3786s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3786s (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 ... 55930 files and directories currently installed.) 3786s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3786s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3786s + grep -q trusty /etc/lsb-release 3786s + [ ! -d /usr/share/doc/unattended-upgrades ] 3786s + [ ! -d /usr/share/doc/lxd ] 3786s + [ ! -d /usr/share/doc/lxd-client ] 3786s + [ ! -d /usr/share/doc/snapd ] 3786s + type iptables 3786s + cat 3786s + chmod 755 /etc/rc.local 3786s + . /etc/rc.local 3786s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3786s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3786s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3786s + uname -m 3786s + [ s390x = ppc64le ] 3786s + [ -d /run/systemd/system ] 3786s + systemd-detect-virt --quiet --vm 3786s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3786s + cat 3786s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3786s + echo COMPRESS=lz4 3786s autopkgtest: DBG: testbed command exited with code 0 3786s autopkgtest [09:13:07]: upgrading testbed (apt dist-upgrade and autopurge) 3786s 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'] 3786s Reading package lists... 3786s Building dependency tree... 3786s Reading state information... 3786s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3786s Starting 2 pkgProblemResolver with broken count: 0 3786s Done 3786s Entering ResolveByKeep 3787s 3787s The following packages will be upgraded: 3787s libc-bin libc-dev-bin libc6 libc6-dev locales 3787s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3787s Need to get 9512 kB of archives. 3787s After this operation, 288 kB of additional disk space will be used. 3787s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 3787s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 3787s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 3787s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 3788s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 3788s Preconfiguring packages ... 3788s Fetched 9512 kB in 1s (11.0 MB/s) 3788s (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 ... 55928 files and directories currently installed.) 3788s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 3788s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3788s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 3788s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3788s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 3788s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3788s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 3788s Checking for services that may need to be restarted... 3788s Checking init scripts... 3788s Checking for services that may need to be restarted... 3788s Checking init scripts... 3788s Stopping some services possibly affected by the upgrade (will be restarted later): 3788s cron: stopping...done. 3788s 3788s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3788s Setting up libc6:s390x (2.41-1ubuntu1) ... 3788s Checking for services that may need to be restarted... 3788s Checking init scripts... 3788s Restarting services possibly affected by the upgrade: 3788s cron: restarting...done. 3788s 3788s Services restarted successfully. 3788s (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.) 3788s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 3788s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 3788s Setting up libc-bin (2.41-1ubuntu1) ... 3788s Setting up locales (2.41-1ubuntu1) ... 3788s Installing new version of config file /etc/locale.alias ... 3789s Generating locales (this might take a while)... 3790s en_US.UTF-8... done 3790s Generation complete. 3790s Setting up libc-dev-bin (2.41-1ubuntu1) ... 3790s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 3790s Processing triggers for man-db (2.13.0-1) ... 3790s Processing triggers for systemd (257.2-3ubuntu1) ... 3791s autopkgtest: DBG: testbed command exited with code 0 3791s 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'] 3791s Reading package lists... 3791s Building dependency tree... 3791s Reading state information... 3792s Starting pkgProblemResolver with broken count: 0 3792s Starting 2 pkgProblemResolver with broken count: 0 3792s Done 3792s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3792s autopkgtest: DBG: testbed command exited with code 0 3792s 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.3LpQ7v/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3792s autopkgtest: DBG: testbed command exited with code 1 3792s autopkgtest [09:13:13]: rebooting testbed after setup commands that affected boot 3792s autopkgtest: DBG: sending command to testbed: reboot 3805s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 3810s autopkgtest: DBG: got reply from testbed: ok 3810s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3810s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3810s autopkgtest: DBG: testbed command exited with code 0 3810s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 3810s autopkgtest: DBG: got reply from testbed: ok 3810s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3811s autopkgtest: DBG: testbed command exited with code 0 3811s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3811s autopkgtest: DBG: testbed command exited with code 0 3811s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3811s autopkgtest: DBG: testbed command exited with code 0 3811s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3811s autopkgtest: DBG: testbed command exited with code 0 3811s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 3811s autopkgtest: DBG: got reply from testbed: ok 3811s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3811s autopkgtest: DBG: testbed command exited with code 0 3811s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3812s autopkgtest: DBG: testbed command exited with code 0 3812s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3812s autopkgtest: DBG: testbed command exited with code 0 3812s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/testbed-packages"], kind short, sout raw, serr pipe, env [] 3812s autopkgtest: DBG: testbed command exited with code 0 3812s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/testbed-packages /tmp/autopkgtest-work.6nmnu1s5/out/testbed-packages 3812s autopkgtest: DBG: got reply from testbed: ok 3812s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3812s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3812s autopkgtest: DBG: testbed command exited with code 0 3812s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot 3812s autopkgtest: DBG: got reply from testbed: ok 3812s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3813s autopkgtest: DBG: testbed command exited with code 0 3813s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3813s autopkgtest: DBG: testbed command exited with code 0 3813s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3813s autopkgtest: DBG: testbed command exited with code 0 3813s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v'], kind short, sout raw, serr pipe, env [] 3813s autopkgtest: DBG: testbed command exited with code 0 3813s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare 3813s autopkgtest: DBG: got reply from testbed: ok 3813s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3813s autopkgtest: DBG: testbed command exited with code 0 3813s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.3LpQ7v/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3814s autopkgtest: DBG: testbed command exited with code 0 3814s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3814s autopkgtest: DBG: testbed command exited with code 0 3814s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3814s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'python3-scipy', 'python3-pytest', 'python3', 'python3-doit', 'python3-hypothesis', 'libblis-dev'] 3814s autopkgtest: DBG: install-deps: satisfying build-essential, python3-scipy, python3-pytest, python3, python3-doit, python3-hypothesis, libblis-dev 3814s autopkgtest: DBG: can use apt-get on testbed: True 3814s 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', 'build-essential, python3-scipy, python3-pytest, python3, python3-doit, python3-hypothesis, libblis-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3814s Reading package lists... 3814s Building dependency tree... 3814s Reading state information... 3814s Starting pkgProblemResolver with broken count: 0 3814s Starting 2 pkgProblemResolver with broken count: 0 3814s Done 3814s The following NEW packages will be installed: 3814s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ 3814s g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 3814s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libblas3 libblis-dev 3814s libblis-openmp-dev libblis4 libblis4-openmp libcc1-0 libgcc-14-dev 3814s libgfortran5 libgomp1 libisl23 libitm1 liblapack3 liblbfgsb0 libmpc3 3814s libstdc++-14-dev libubsan1 python3-cloudpickle python3-dateutil 3814s python3-decorator python3-doit python3-hypothesis python3-importlib-metadata 3814s python3-iniconfig python3-numpy python3-numpy-dev python3-packaging 3814s python3-pluggy python3-pytest python3-scipy python3-sortedcontainers 3815s 0 upgraded, 44 newly installed, 0 to remove and 0 not upgraded. 3815s Need to get 91.3 MB of archives. 3815s After this operation, 338 MB of additional disk space will be used. 3815s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 3815s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 3815s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 3815s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 3815s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 3815s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 3815s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 3815s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 3816s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 3816s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 3816s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 3816s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 3816s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 3816s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 3816s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 3816s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 3816s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 3816s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 3817s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 3817s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 3817s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 3817s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 3817s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 3817s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x libblis4-openmp s390x 1.1-2ubuntu1 [673 kB] 3817s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libblis4 s390x 1.1-2ubuntu1 [3082 B] 3817s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x libblis-openmp-dev s390x 1.1-2ubuntu1 [698 kB] 3817s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x libblis-dev s390x 1.1-2ubuntu1 [10.1 MB] 3817s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 3817s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 3817s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 3817s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cloudpickle all 3.1.1-1 [22.4 kB] 3817s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 3817s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 3817s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 3817s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-doit all 0.36.0-4 [70.2 kB] 3817s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 3817s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 3817s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 3817s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy-dev s390x 1:2.2.3+ds-1 [146 kB] 3817s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-numpy s390x 1:2.2.3+ds-1 [5031 kB] 3818s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 3818s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 3818s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 3818s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 3819s Fetched 91.3 MB in 4s (23.2 MB/s) 3819s Selecting previously unselected package libisl23:s390x. 3819s (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.) 3819s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 3819s Unpacking libisl23:s390x (0.27-1) ... 3819s Selecting previously unselected package libmpc3:s390x. 3819s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 3819s Unpacking libmpc3:s390x (1.3.1-1build2) ... 3819s Selecting previously unselected package cpp-14-s390x-linux-gnu. 3819s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3819s Selecting previously unselected package cpp-14. 3819s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 3819s Selecting previously unselected package cpp-s390x-linux-gnu. 3819s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 3819s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3819s Selecting previously unselected package cpp. 3819s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 3819s Unpacking cpp (4:14.2.0-1ubuntu1) ... 3819s Selecting previously unselected package libcc1-0:s390x. 3819s Preparing to unpack .../06-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 3819s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 3819s Selecting previously unselected package libgomp1:s390x. 3819s Preparing to unpack .../07-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 3819s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 3819s Selecting previously unselected package libitm1:s390x. 3819s Preparing to unpack .../08-libitm1_15-20250213-1ubuntu1_s390x.deb ... 3819s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 3819s Selecting previously unselected package libasan8:s390x. 3819s Preparing to unpack .../09-libasan8_15-20250213-1ubuntu1_s390x.deb ... 3819s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 3819s Selecting previously unselected package libubsan1:s390x. 3819s Preparing to unpack .../10-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 3819s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 3819s Selecting previously unselected package libgcc-14-dev:s390x. 3819s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 3819s Selecting previously unselected package gcc-14-s390x-linux-gnu. 3819s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3819s Selecting previously unselected package gcc-14. 3819s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 3819s Selecting previously unselected package gcc-s390x-linux-gnu. 3819s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 3819s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3819s Selecting previously unselected package gcc. 3819s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 3819s Unpacking gcc (4:14.2.0-1ubuntu1) ... 3819s Selecting previously unselected package libstdc++-14-dev:s390x. 3819s Preparing to unpack .../16-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 3819s Selecting previously unselected package g++-14-s390x-linux-gnu. 3819s Preparing to unpack .../17-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 3819s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3820s Selecting previously unselected package g++-14. 3820s Preparing to unpack .../18-g++-14_14.2.0-17ubuntu1_s390x.deb ... 3820s Unpacking g++-14 (14.2.0-17ubuntu1) ... 3820s Selecting previously unselected package g++-s390x-linux-gnu. 3820s Preparing to unpack .../19-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 3820s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3820s Selecting previously unselected package g++. 3820s Preparing to unpack .../20-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 3820s Unpacking g++ (4:14.2.0-1ubuntu1) ... 3820s Selecting previously unselected package build-essential. 3820s Preparing to unpack .../21-build-essential_12.10ubuntu1_s390x.deb ... 3820s Unpacking build-essential (12.10ubuntu1) ... 3820s Selecting previously unselected package libblas3:s390x. 3820s Preparing to unpack .../22-libblas3_3.12.1-2_s390x.deb ... 3820s Unpacking libblas3:s390x (3.12.1-2) ... 3820s Selecting previously unselected package libblis4-openmp:s390x. 3820s Preparing to unpack .../23-libblis4-openmp_1.1-2ubuntu1_s390x.deb ... 3820s Unpacking libblis4-openmp:s390x (1.1-2ubuntu1) ... 3820s Selecting previously unselected package libblis4:s390x. 3820s Preparing to unpack .../24-libblis4_1.1-2ubuntu1_s390x.deb ... 3820s Unpacking libblis4:s390x (1.1-2ubuntu1) ... 3820s Selecting previously unselected package libblis-openmp-dev:s390x. 3820s Preparing to unpack .../25-libblis-openmp-dev_1.1-2ubuntu1_s390x.deb ... 3820s Unpacking libblis-openmp-dev:s390x (1.1-2ubuntu1) ... 3820s Selecting previously unselected package libblis-dev:s390x. 3820s Preparing to unpack .../26-libblis-dev_1.1-2ubuntu1_s390x.deb ... 3820s Unpacking libblis-dev:s390x (1.1-2ubuntu1) ... 3820s Selecting previously unselected package libgfortran5:s390x. 3820s Preparing to unpack .../27-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 3820s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 3820s Selecting previously unselected package liblapack3:s390x. 3820s Preparing to unpack .../28-liblapack3_3.12.1-2_s390x.deb ... 3820s Unpacking liblapack3:s390x (3.12.1-2) ... 3820s Selecting previously unselected package liblbfgsb0:s390x. 3820s Preparing to unpack .../29-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 3820s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 3820s Selecting previously unselected package python3-cloudpickle. 3820s Preparing to unpack .../30-python3-cloudpickle_3.1.1-1_all.deb ... 3820s Unpacking python3-cloudpickle (3.1.1-1) ... 3820s Selecting previously unselected package python3-dateutil. 3820s Preparing to unpack .../31-python3-dateutil_2.9.0-3_all.deb ... 3820s Unpacking python3-dateutil (2.9.0-3) ... 3820s Selecting previously unselected package python3-decorator. 3820s Preparing to unpack .../32-python3-decorator_5.1.1-5_all.deb ... 3820s Unpacking python3-decorator (5.1.1-5) ... 3820s Selecting previously unselected package python3-importlib-metadata. 3820s Preparing to unpack .../33-python3-importlib-metadata_8.6.1-1_all.deb ... 3820s Unpacking python3-importlib-metadata (8.6.1-1) ... 3820s Selecting previously unselected package python3-doit. 3820s Preparing to unpack .../34-python3-doit_0.36.0-4_all.deb ... 3820s Unpacking python3-doit (0.36.0-4) ... 3820s Selecting previously unselected package python3-sortedcontainers. 3820s Preparing to unpack .../35-python3-sortedcontainers_2.4.0-2_all.deb ... 3820s Unpacking python3-sortedcontainers (2.4.0-2) ... 3820s Selecting previously unselected package python3-hypothesis. 3820s Preparing to unpack .../36-python3-hypothesis_6.125.2-1_all.deb ... 3820s Unpacking python3-hypothesis (6.125.2-1) ... 3820s Selecting previously unselected package python3-iniconfig. 3820s Preparing to unpack .../37-python3-iniconfig_1.1.1-2_all.deb ... 3820s Unpacking python3-iniconfig (1.1.1-2) ... 3820s Selecting previously unselected package python3-numpy-dev:s390x. 3820s Preparing to unpack .../38-python3-numpy-dev_1%3a2.2.3+ds-1_s390x.deb ... 3820s Unpacking python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 3820s Selecting previously unselected package python3-numpy. 3820s Preparing to unpack .../39-python3-numpy_1%3a2.2.3+ds-1_s390x.deb ... 3820s Unpacking python3-numpy (1:2.2.3+ds-1) ... 3820s Selecting previously unselected package python3-packaging. 3820s Preparing to unpack .../40-python3-packaging_24.2-1_all.deb ... 3820s Unpacking python3-packaging (24.2-1) ... 3820s Selecting previously unselected package python3-pluggy. 3820s Preparing to unpack .../41-python3-pluggy_1.5.0-1_all.deb ... 3820s Unpacking python3-pluggy (1.5.0-1) ... 3820s Selecting previously unselected package python3-pytest. 3820s Preparing to unpack .../42-python3-pytest_8.3.4-1_all.deb ... 3820s Unpacking python3-pytest (8.3.4-1) ... 3820s Selecting previously unselected package python3-scipy. 3820s Preparing to unpack .../43-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 3820s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 3821s Setting up python3-iniconfig (1.1.1-2) ... 3821s Setting up python3-importlib-metadata (8.6.1-1) ... 3821s Setting up python3-sortedcontainers (2.4.0-2) ... 3821s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 3821s Setting up python3-cloudpickle (3.1.1-1) ... 3821s Setting up python3-decorator (5.1.1-5) ... 3821s Setting up libblas3:s390x (3.12.1-2) ... 3821s 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 3821s Setting up python3-packaging (24.2-1) ... 3821s Setting up libmpc3:s390x (1.3.1-1build2) ... 3821s Setting up python3-numpy-dev:s390x (1:2.2.3+ds-1) ... 3821s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 3821s Setting up python3-pluggy (1.5.0-1) ... 3821s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 3821s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 3821s Setting up python3-dateutil (2.9.0-3) ... 3821s Setting up libblis4-openmp:s390x (1.1-2ubuntu1) ... 3821s update-alternatives: using /usr/lib/s390x-linux-gnu/blis-openmp/libblis.so.4 to provide /usr/lib/s390x-linux-gnu/libblis.so.4 (libblis.so.4-s390x-linux-gnu) in auto mode 3821s update-alternatives: using /usr/lib/s390x-linux-gnu/blis-openmp/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 3821s Setting up libisl23:s390x (0.27-1) ... 3821s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 3821s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 3821s Setting up liblapack3:s390x (3.12.1-2) ... 3821s 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 3821s Setting up python3-doit (0.36.0-4) ... 3821s Setting up libblis4:s390x (1.1-2ubuntu1) ... 3821s Setting up python3-pytest (8.3.4-1) ... 3822s Setting up python3-hypothesis (6.125.2-1) ... 3822s Setting up libblis-openmp-dev:s390x (1.1-2ubuntu1) ... 3822s update-alternatives: using /usr/lib/s390x-linux-gnu/blis-openmp/libblis.so to provide /usr/lib/s390x-linux-gnu/libblis.so (libblis.so-s390x-linux-gnu) in auto mode 3822s update-alternatives: using /usr/lib/s390x-linux-gnu/blis-openmp/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode 3822s Setting up python3-numpy (1:2.2.3+ds-1) ... 3823s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3823s Setting up cpp-14 (14.2.0-17ubuntu1) ... 3823s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 3823s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 3823s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 3823s Setting up python3-scipy (1.14.1-4ubuntu1) ... 3825s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3825s Setting up libblis-dev:s390x (1.1-2ubuntu1) ... 3825s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3825s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3825s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 3825s Setting up cpp (4:14.2.0-1ubuntu1) ... 3825s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 3825s Setting up gcc-14 (14.2.0-17ubuntu1) ... 3825s Setting up g++-14 (14.2.0-17ubuntu1) ... 3825s Setting up gcc (4:14.2.0-1ubuntu1) ... 3825s Setting up g++ (4:14.2.0-1ubuntu1) ... 3825s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 3825s Setting up build-essential (12.10ubuntu1) ... 3825s Processing triggers for man-db (2.13.0-1) ... 3826s Processing triggers for libc-bin (2.41-1ubuntu1) ... 3826s autopkgtest: DBG: testbed command exited with code 0 3826s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-scipy'], kind short, sout pipe, serr pipe, env [] 3826s autopkgtest: DBG: testbed command exited with code 0 3826s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.3LpQ7v/blis-packages.all"], kind short, sout raw, serr pipe, env [] 3826s autopkgtest: DBG: testbed command exited with code 0 3826s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/blis-packages.all /tmp/autopkgtest-work.6nmnu1s5/out/blis-packages.all 3827s autopkgtest: DBG: got reply from testbed: ok 3827s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr raw, env [] 3827s autopkgtest: DBG: testbed command exited with code 1 3827s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.3LpQ7v/build.Ce6'], kind short, sout raw, serr pipe, env [] 3827s autopkgtest: DBG: testbed command exited with code 0 3827s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.6nmnu1s5/out/tests-tree/ /tmp/autopkgtest.3LpQ7v/build.Ce6/src/ 3836s autopkgtest: DBG: got reply from testbed: ok 3836s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.3LpQ7v/build.Ce6/src'], kind short, sout raw, serr pipe, env [] 3836s autopkgtest: DBG: testbed command exited with code 0 3836s autopkgtest [09:13:57]: test blis: [----------------------- 3836s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.3LpQ7v/wrapper.sh --debug --artifacts=/tmp/autopkgtest.3LpQ7v/blis-artifacts --chdir=/tmp/autopkgtest.3LpQ7v/build.Ce6/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.3LpQ7v/blis-stderr --stdout=/tmp/autopkgtest.3LpQ7v/blis-stdout --tmp=/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1' --make-executable=/tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/blis -- /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/blis"], kind test, sout raw, serr raw, env [] 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.3LpQ7v/blis-artifacts 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: changing to directory: /tmp/autopkgtest.3LpQ7v/build.Ce6/src 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: LANG=C.UTF-8 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LANGUAGE 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ADDRESS 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_ALL 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_COLLATE 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_CTYPE 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MEASUREMENT 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MESSAGES 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_MONETARY 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NAME 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_NUMERIC 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_PAPER 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TELEPHONE 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: unsetting environment: LC_TIME 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: pretending to be a login shell 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write standard error to /tmp/autopkgtest.3LpQ7v/blis-stderr 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: will write stdout to /tmp/autopkgtest.3LpQ7v/blis-stdout 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 numpy/1:2.2.3+ds-1 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: marking as executable: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/blis 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: command to run: /tmp/autopkgtest.3LpQ7v/build.Ce6/src/debian/tests/blis 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.n49n78WXYT/out to stdout and file: /tmp/autopkgtest.3LpQ7v/blis-stdout 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: copying /tmp/tmp.n49n78WXYT/err to standard error and file: /tmp/autopkgtest.3LpQ7v/blis-stdout 3836s /tmp/autopkgtest.3LpQ7v/wrapper.sh: writing script pid 1762 to /tmp/autopkgtest_script_pid 3836s === testing blis === 3836s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 3836s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 3836s === Testing: python3.13 odr === 3836s ============================= test session starts ============================== 3836s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 3836s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3836s plugins: hypothesis-6.125.2, typeguard-4.4.1 3836s collected 24 items 3836s 3836s tests/test_odr.py ................s....... [100%] 3836s 3836s ============================= slowest 20 durations ============================= 3836s 0.03s call tests/test_odr.py::TestODR::test_work_array_del_init 3836s 0.01s call tests/test_odr.py::TestODR::test_implicit 3836s 0.01s call tests/test_odr.py::TestODR::test_ticket_11800 3836s 3836s (17 durations < 0.005s hidden. Use -vv to show these durations.) 3836s ======================== 23 passed, 1 skipped in 0.20s ========================= 3837s === Done: python3.13 odr === 3837s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 3837s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 3837s === Testing: python3.13 optimize === 3838s ============================= test session starts ============================== 3838s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 3838s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3838s plugins: hypothesis-6.125.2, typeguard-4.4.1 3838s collected 3747 items / 9 deselected / 3738 selected 3838s 3838s _trustregion_constr/tests/test_canonical_constraint.py ...... [ 0%] 3838s _trustregion_constr/tests/test_projections.py .......... [ 0%] 3838s _trustregion_constr/tests/test_qp_subproblem.py ....................... [ 1%] 3838s _trustregion_constr/tests/test_report.py .s [ 1%] 3842s tests/test__basinhopping.py ................................. [ 1%] 3843s tests/test__differential_evolution.py .................................. [ 2%] 3850s ....................s....... [ 3%] 3855s tests/test__dual_annealing.py .......................................... [ 4%] 3856s .... [ 4%] 3856s tests/test__linprog_clean_inputs.py ............. [ 5%] 3856s tests/test__numdiff.py ................................ [ 6%] 3856s tests/test__remove_redundancy.py ....................................... [ 7%] 3857s ............................. [ 7%] 3857s tests/test__root.py ............... [ 8%] 3859s tests/test__shgo.py ..................ss...................s............ [ 9%] 3859s ................... [ 10%] 3860s tests/test__spectral.py .... [ 10%] 3860s tests/test_bracket.py .................................................. [ 11%] 3860s ........................................................................ [ 13%] 3860s ........................................................................ [ 15%] 3860s ........................................................................ [ 17%] 3860s ........................................................................ [ 19%] 3861s ........................................................................ [ 21%] 3861s .......................................................... [ 22%] 3861s tests/test_chandrupatla.py ............................................. [ 24%] 3862s ........................................................................ [ 25%] 3862s .................. [ 26%] 3862s tests/test_cobyla.py s..... [ 26%] 3862s tests/test_cobyqa.py ........ [ 26%] 3864s tests/test_constraint_conversion.py ........ [ 27%] 3864s tests/test_constraints.py ................ [ 27%] 3864s tests/test_cython_optimize.py ..... [ 27%] 3864s tests/test_differentiable_functions.py ..............x. [ 28%] 3864s tests/test_differentiate.py ............................................ [ 29%] 3865s ........................................................................ [ 31%] 3865s ......................................XX................... [ 32%] 3865s tests/test_direct.py ....................................ss............. [ 34%] 3865s ............ [ 34%] 3865s tests/test_extending.py s [ 34%] 3865s tests/test_hessian_update_strategy.py ..... [ 34%] 3865s tests/test_isotonic_regression.py ...................................... [ 35%] 3865s ....... [ 35%] 3866s tests/test_lbfgsb_hessinv.py .. [ 35%] 3866s tests/test_lbfgsb_setulb.py .. [ 35%] 3867s tests/test_least_squares.py ............................................ [ 37%] 3870s ........................................................................ [ 38%] 3870s .. [ 39%] 3870s tests/test_linear_assignment.py ...................... [ 39%] 3870s tests/test_linesearch.py ........... [ 39%] 3870s tests/test_linprog.py .................................................. [ 41%] 3870s ................................ss...................................... [ 43%] 3871s ........................................s............................... [ 45%] 3871s ...............................................s.ss..................... [ 47%] 3872s .......................................................s................ [ 48%] 3872s ............................................................s.X......... [ 50%] 3873s ...................................................................s.sX. [ 52%] 3873s ........................................................................ [ 54%] 3873s ......ssss.............................................................. [ 56%] 3873s ...................sss..............................x................... [ 58%] 3874s .......................................................................x [ 60%] 3876s ................................................................s....... [ 62%] 3876s .................... [ 62%] 3876s tests/test_lsq_common.py .......... [ 63%] 3878s tests/test_lsq_linear.py ..........s........s... [ 63%] 3878s tests/test_milp.py .x.........s [ 64%] 3879s tests/test_minimize_constrained.py .....................s............... [ 65%] 3880s .s.............................ssssssssssssssssssssssssssssssssss....... [ 67%] 3881s ..............s................s.................................s...... [ 68%] 3883s .x........s.................................s.......x........s.......... [ 70%] 3884s ............x........X [ 71%] 3884s tests/test_minpack.py .................................................. [ 72%] 3884s ........................................... [ 73%] 3884s tests/test_nnls.py ....... [ 74%] 3884s tests/test_nonlin.py ....................................... [ 75%] 3885s tests/test_optimize.py .........................x....................... [ 76%] 3886s ..x.........................x.........................x................. [ 78%] 3889s .......s....................................x........................... [ 80%] 3889s ........................................................................ [ 82%] 3890s ........................................................................ [ 84%] 3894s .............................................s.ss.ss.ss.ss.ss.ss.ss.ss.s [ 86%] 3895s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s [ 88%] 3895s s.ss.ss.ss.ss.ss.ss.ss.ss.s....................................s.ss.ss.s [ 90%] 3895s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s [ 91%] 3896s s.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.ss.s...................... [ 93%] 3896s tests/test_quadratic_assignment.py .............. [ 94%] 3896s tests/test_regression.py ... [ 94%] 3896s tests/test_slsqp.py ..................................... [ 95%] 3896s tests/test_tnc.py .................... [ 95%] 3896s tests/test_trustregion.py ........ [ 95%] 3897s tests/test_trustregion_exact.py .......... [ 96%] 3897s tests/test_trustregion_krylov.py ..... [ 96%] 3897s tests/test_zeros.py .................................................... [ 97%] 3897s ........................................................................ [ 99%] 3897s ............. [100%] 3897s 3897s =============================== warnings summary =============================== 3897s tests/test_optimize.py::TestBrute::test_workers 3897s tests/test_optimize.py::TestBrute::test_workers 3897s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=1812) is multi-threaded, use of fork() may lead to deadlocks in the child. 3897s self.pid = os.fork() 3897s 3897s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 3897s ============================= slowest 20 durations ============================= 3897s 3.40s call tests/test_optimize.py::test_cobyla_threadsafe 3897s 1.97s call tests/test__basinhopping.py::TestBasinHopping::test_all_nograd_minimizers 3897s 1.81s call tests/test_optimize.py::TestOptimizeSimple::test_minimize_callback_copies_array[fmin] 3897s 1.65s call tests/test_lsq_linear.py::TestTRF::test_sparse_bounds 3897s 1.38s call tests/test_constraint_conversion.py::TestNewToOld::test_individual_constraint_objects 3897s 1.31s call tests/test_linprog.py::TestLinprogHiGHSMIP::test_mip1 3897s 1.02s call tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_strategy_fn 3897s 0.87s call tests/test__shgo.py::TestShgoSimplicialTestFunctions::test_f5_3_cons_symmetry 3897s 0.86s call tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_integrality 3897s 0.85s call tests/test_linprog.py::TestLinprogHiGHSIPM::test_marginals 3897s 0.78s call tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_L3 3897s 0.75s call tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_L1 3897s 0.75s call tests/test_optimize.py::TestIterationLimits::test_neldermead_limit 3897s 0.68s call tests/test_least_squares.py::TestTRF::test_with_bounds 3897s 0.66s call tests/test__dual_annealing.py::TestDualAnnealing::test_from_docstring 3897s 0.65s call tests/test_least_squares.py::TestTRF::test_rosenbrock_bounds 3897s 0.65s call tests/test__dual_annealing.py::TestDualAnnealing::test_bounds_class 3897s 0.60s call tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_L4 3897s 0.59s call tests/test_trustregion_exact.py::TestIterativeSubproblem::test_for_random_entries 3897s 0.58s call tests/test_lbfgsb_hessinv.py::test_1 3897s = 3480 passed, 241 skipped, 9 deselected, 12 xfailed, 5 xpassed, 2 warnings in -25.46s = 3897s === Done: python3.13 optimize === 3897s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 3897s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 3897s === Testing: python3.13 spatial === 3898s ============================= test session starts ============================== 3898s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 3898s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3898s plugins: hypothesis-6.125.2, typeguard-4.4.1 3898s collected 1544 items / 20 deselected / 1524 selected 3898s 3898s tests/test__plotutils.py sssss [ 0%] 3898s tests/test__procrustes.py ...... [ 0%] 3898s tests/test_distance.py ................................................. [ 3%] 3899s ........................................................................ [ 8%] 3899s ..........................................ss............................ [ 13%] 3899s ss..........................................................ss.......... [ 18%] 3900s ........................................................................ [ 22%] 3900s ........................................................................ [ 27%] 3901s ........................................................ [ 31%] 3901s tests/test_hausdorff.py ..............s [ 32%] 3901s tests/test_kdtree.py ................................................... [ 35%] 3903s ........................................................................ [ 40%] 3905s ........................................................................ [ 45%] 3907s ........................................ [ 47%] 3908s tests/test_qhull.py .................................................... [ 51%] 3908s ........................................................................ [ 55%] 3910s ....................................................... [ 59%] 3910s tests/test_slerp.py .................................................... [ 62%] 3910s ............................... [ 64%] 3910s tests/test_spherical_voronoi.py ........................................ [ 67%] 3911s ........................................................................ [ 72%] 3911s ....... [ 72%] 3911s transform/tests/test_rotation.py ....................................... [ 75%] 3911s ........................................................................ [ 79%] 3911s ................................................................... [ 84%] 3911s transform/tests/test_rotation_groups.py ................................ [ 86%] 3911s ........................................................................ [ 91%] 3911s ........................................................................ [ 95%] 3911s ........................................................ [ 99%] 3911s transform/tests/test_rotation_spline.py ....... [100%] 3911s 3911s ============================= slowest 20 durations ============================= 3911s 1.05s call tests/test_kdtree.py::test_kdtree_box[KDTree] 3911s 1.05s call tests/test_kdtree.py::test_kdtree_box[cKDTree] 3911s 0.81s call tests/test_kdtree.py::test_kdtree_count_neighbous_multiple_r[KDTree] 3911s 0.81s call tests/test_kdtree.py::test_kdtree_count_neighbous_multiple_r[cKDTree] 3911s 0.50s call tests/test_qhull.py::TestUtilities::test_degenerate_barycentric_transforms 3911s 0.33s call tests/test_qhull.py::TestVoronoi::test_incremental[random-3d-chunk-1] 3911s 0.32s call tests/test_qhull.py::TestVoronoi::test_incremental[random-3d-chunk-4] 3911s 0.32s call tests/test_kdtree.py::test_query_ball_point_multithreading[cKDTree] 3911s 0.32s call tests/test_qhull.py::TestVoronoi::test_incremental[random-3d-chunk-16] 3911s 0.30s call tests/test_kdtree.py::Test_random_ball_largep_issue9890_KDTree::test_found_all 3911s 0.30s call tests/test_kdtree.py::Test_random_ball_largep_issue9890_cKDTree::test_found_all 3911s 0.30s call tests/test_kdtree.py::test_query_ball_point_multithreading[KDTree] 3911s 0.24s call tests/test_kdtree.py::Test_random_ball_far_periodic_cKDTree::test_in_ball_outside 3911s 0.24s call tests/test_kdtree.py::Test_random_ball_far_periodic_KDTree::test_in_ball_outside 3911s 0.17s call tests/test_kdtree.py::test_ckdtree_memuse 3911s 0.17s call tests/test_distance.py::TestPdist::test_pdist_jensenshannon_iris_nonC 3911s 0.14s call tests/test_distance.py::TestPdist::test_pdist_seuclidean_iris_nonC 3911s 0.12s call tests/test_qhull.py::TestVoronoi::test_incremental[pathological-1-chunk-1] 3911s 0.12s call tests/test_qhull.py::TestVoronoi::test_incremental[pathological-1-chunk-4] 3911s 0.11s call tests/test_qhull.py::TestVoronoi::test_incremental[pathological-1-chunk-16] 3911s =============== 1512 passed, 12 skipped, 20 deselected in 13.87s =============== 3912s === Done: python3.13 spatial === 3912s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 3912s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 3912s === Testing: python3.13 special === 3913s ============================= test session starts ============================== 3913s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 3913s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 3913s plugins: hypothesis-6.125.2, typeguard-4.4.1 3913s collected 4889 items / 186 deselected / 4703 selected 3913s 3913s tests/test_basic.py ...............................................x...X [ 1%] 3913s ........................................................................ [ 2%] 3914s ........................................................................ [ 4%] 3914s ........................................................................ [ 5%] 3914s ........................X............................................... [ 7%] 3914s ........................................................................ [ 8%] 3914s ........................................................................ [ 10%] 3914s ........................................................................ [ 11%] 3914s ................................................................s...s... [ 13%] 3914s s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s... [ 14%] 3914s ........................................................................ [ 16%] 3914s ....................................................................s... [ 17%] 3914s s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s... [ 19%] 3914s s....................................................................... [ 21%] 3914s ........................................................................ [ 22%] 3914s ........................................................................ [ 24%] 3914s ........................................................................ [ 25%] 3914s ..........s...s...s...s...s...s...s...s...s...s...s...s...s...s...s...s. [ 27%] 3914s ..s...s...s...s......................................................... [ 28%] 3914s ........................................................................ [ 30%] 3915s ........................................................................ [ 31%] 3915s ........................................................................ [ 33%] 3915s ........................................................................ [ 34%] 3915s ........................................................................ [ 36%] 3915s ........................................................................ [ 37%] 3915s ........................................................................ [ 39%] 3915s ........................................................................ [ 40%] 3915s ........................................................................ [ 42%] 3915s ........................................................................ [ 43%] 3915s ........................................................................ [ 45%] 3915s ........................................................................ [ 47%] 3915s ........................................................................ [ 48%] 3915s ...... [ 48%] 3915s tests/test_bdtr.py ........................ [ 49%] 3915s tests/test_boost_ufuncs.py ........ [ 49%] 3915s tests/test_boxcox.py .......... [ 49%] 3915s tests/test_cdflib.py .................................... [ 50%] 3915s tests/test_cdft_asymptotic.py ... [ 50%] 3915s tests/test_cephes_intp_cast.py .................. [ 50%] 3915s tests/test_cosine_distr.py ............................... [ 51%] 3916s tests/test_cython_special.py ........................................... [ 52%] 3919s ................xxxxx..xx..xx........................................... [ 53%] 3919s ...................................................................xxxx. [ 55%] 3919s ...........xxxx.................................... [ 56%] 3919s tests/test_data.py ..................................................... [ 57%] 3919s ................................................................x.x..... [ 59%] 3920s ..........................................x..x...x...................... [ 60%] 3920s ................... [ 61%] 3920s tests/test_dd.py ..... [ 61%] 3920s tests/test_digamma.py ... [ 61%] 3920s tests/test_ellip_harm.py ..... [ 61%] 3920s tests/test_erfinv.py ............. [ 61%] 3920s tests/test_exponential_integrals.py ........................... [ 62%] 3920s tests/test_extending.py s [ 62%] 3920s tests/test_faddeeva.py ................. [ 62%] 3920s tests/test_gamma.py .. [ 62%] 3920s tests/test_gammainc.py ............................. [ 63%] 3920s tests/test_hyp2f1.py ..............................................x.... [ 64%] 3920s ...................................x................................x... [ 65%] 3920s ......x............................x..................x................. [ 67%] 3920s ............................... [ 68%] 3920s tests/test_hypergeometric.py ........................................... [ 68%] 3920s .........................xx.... [ 69%] 3920s tests/test_iv_ratio.py ................................................. [ 70%] 3920s ... [ 70%] 3920s tests/test_kolmogorov.py ..................................... [ 71%] 3920s tests/test_lambertw.py ...... [ 71%] 3920s tests/test_log_softmax.py .......... [ 71%] 3920s tests/test_loggamma.py ...... [ 72%] 3920s tests/test_logit.py .......... [ 72%] 3920s tests/test_logsumexp.py ........... [ 72%] 3920s tests/test_mpmath.py sssssssssssssssssss [ 72%] 3921s tests/test_nan_inputs.py ............................................... [ 73%] 3921s ........................................................................ [ 75%] 3921s ........................................................................ [ 76%] 5148s ........................................... [ 77%] 5148s tests/test_ndtr.py ........ [ 78%] 5148s tests/test_ndtri_exp.py ............ [ 78%] 5148s tests/test_orthogonal.py ............................... [ 78%] 5148s tests/test_orthogonal_eval.py .......................................... [ 79%] 5148s ..................................................... [ 80%] 5148s tests/test_owens_t.py .... [ 81%] 5148s tests/test_pcf.py .. [ 81%] 5148s tests/test_pdtr.py .......... [ 81%] 5148s tests/test_powm1.py .............................. [ 81%] 5148s tests/test_precompute_expn_asy.py s [ 81%] 5148s tests/test_precompute_gammainc.py ssss [ 82%] 5148s tests/test_round.py .. [ 82%] 5148s tests/test_sf_error.py .......... [ 82%] 5148s tests/test_sici.py .. [ 82%] 5148s tests/test_specfun.py .... [ 82%] 5148s tests/test_spence.py .. [ 82%] 5148s tests/test_spfun_stats.py .... [ 82%] 5148s tests/test_sph_harm.py .. [ 82%] 5148s tests/test_spherical_bessel.py ..................................... [ 83%] 5152s tests/test_support_alternative_backends.py ssss.................. [ 83%] 5152s tests/test_trig.py ..s. [ 83%] 5152s tests/test_ufunc_signatures.py ......................................... [ 84%] 5152s ........................................................................ [ 86%] 5152s ........................................................................ [ 87%] 5152s ........................................................................ [ 89%] 5152s .................................................................... [ 90%] 5152s tests/test_wright_bessel.py ............................................ [ 91%] 5152s ........................................................................ [ 93%] 5152s ........................................................................ [ 94%] 5152s ........................................................................ [ 96%] 5152s ..............................................xxxxxxxxxxxxxxx........... [ 97%] 5152s ........................................................................ [ 99%] 5152s ............ [ 99%] 5152s tests/test_wrightomega.py .......... [ 99%] 5152s tests/test_zeta.py ..... [100%] 5152s 5152s ============================= slowest 20 durations ============================= 5152s 1226.92s call tests/test_nan_inputs.py::test_nan_inputs[sph_harm] 5152s 2.29s call tests/test_cython_special.py::test_cython_api[elliprj] 5152s 0.29s call tests/test_basic.py::TestAiry::test_ai_zeros_big 5152s 0.29s call tests/test_basic.py::TestAiry::test_bi_zeros_big 5152s 0.25s call tests/test_cython_special.py::test_cython_api[elliprg] 5152s 0.24s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args10-numpy] 5152s 0.22s call tests/test_cython_special.py::test_cython_api[elliprd] 5152s 0.21s call tests/test_orthogonal.py::test_roots_hermite_asy 5152s 0.21s call tests/test_cython_special.py::test_cython_api[elliprf] 5152s 0.20s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args0-numpy] 5152s 0.20s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args17-numpy] 5152s 0.19s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args11-numpy] 5152s 0.19s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args15-numpy] 5152s 0.19s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args16-numpy] 5152s 0.18s call tests/test_orthogonal.py::test_roots_jacobi 5152s 0.16s call tests/test_ellip_harm.py::test_ellip_potential 5152s 0.16s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args6-numpy] 5152s 0.16s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args3-numpy] 5152s 0.16s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args7-numpy] 5152s 0.15s call tests/test_support_alternative_backends.py::test_support_alternative_backends[f_name_n_args5-numpy] 5152s = 4565 passed, 90 skipped, 186 deselected, 46 xfailed, 2 xpassed in 1240.24s (0:20:40) = 5152s === Done: python3.13 special === 5152s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 5152s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 5152s === Testing: python3.13 cluster === 5153s ============================= test session starts ============================== 5153s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 5153s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 5153s plugins: hypothesis-6.125.2, typeguard-4.4.1 5153s collected 146 items 5153s 5153s tests/test_disjoint_set.py ..................... [ 14%] 5153s tests/test_hierarchy.py ................................................ [ 47%] 5153s .................................sss.......... [ 78%] 5154s tests/test_vq.py ............................... [100%] 5154s 5154s ============================= slowest 20 durations ============================= 5154s 0.62s call tests/test_vq.py::TestKMean::test_krandinit[numpy] 5154s 0.05s call tests/test_disjoint_set.py::test_binary_tree[10] 5154s 0.04s call tests/test_vq.py::TestKMean::test_kmeans_and_kmeans2_random_seed[numpy] 5154s 0.04s call tests/test_disjoint_set.py::test_subsets[100] 5154s 0.02s call tests/test_vq.py::TestKMean::test_large_features[numpy] 5154s 0.02s call tests/test_hierarchy.py::TestIsIsomorphic::test_is_isomorphic_5[numpy] 5154s 0.01s call tests/test_hierarchy.py::test_cut_tree[numpy] 5154s 0.01s call tests/test_hierarchy.py::TestMaxRStat::test_maxRstat_Q_linkage[numpy] 5154s 0.01s call tests/test_vq.py::TestKMean::test_kmeans2_kpp_high_dim[numpy] 5154s 0.01s call tests/test_hierarchy.py::TestIsIsomorphic::test_is_isomorphic_6[numpy] 5154s 5154s (10 durations < 0.005s hidden. Use -vv to show these durations.) 5154s ======================== 143 passed, 3 skipped in 1.15s ======================== 5154s === Done: python3.13 cluster === 5154s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 5154s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 5154s === Testing: python3.13 integrate === 5155s ============================= test session starts ============================== 5155s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 5155s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 5155s plugins: hypothesis-6.125.2, typeguard-4.4.1 5155s collected 820 items / 5 deselected / 815 selected 5155s 5156s _ivp/tests/test_ivp.py ................................................. [ 6%] 5156s ..... [ 6%] 5156s _ivp/tests/test_rk.py .......... [ 7%] 5156s tests/test__quad_vec.py .......................... [ 11%] 5157s tests/test_banded_ode_solvers.py . [ 11%] 5157s tests/test_bvp.py ................ [ 13%] 5157s tests/test_integrate.py ............................................... [ 18%] 5157s tests/test_odeint_jac.py .. [ 19%] 5157s tests/test_quadpack.py .........................................ssssssss [ 25%] 5158s sssssssssssssssssssssssssssssssssss........... [ 30%] 5159s tests/test_quadrature.py ............................................... [ 36%] 5159s ........................................................................ [ 45%] 5159s ........................................................................ [ 54%] 5159s ........................................................................ [ 63%] 5159s ...... [ 63%] 5159s tests/test_tanhsinh.py ................................................s [ 69%] 5159s sss..................................................................... [ 78%] 5160s ...................ss..ss......ss....................................... [ 87%] 5160s .......................ss............................................... [ 96%] 5160s .............................. [100%] 5160s 5160s ============================= slowest 20 durations ============================= 5160s 0.59s call tests/test_quadpack.py::TestNQuad::test_variable_limits 5160s 0.58s call tests/test_quadpack.py::TestNQuad::test_fixed_limits 5160s 0.52s call _ivp/tests/test_ivp.py::test_integration_sparse_difference 5160s 0.26s call _ivp/tests/test_ivp.py::test_args 5160s 0.19s call tests/test_tanhsinh.py::TestTanhSinh::test_accuracy[case59-ref1] 5160s 0.17s call tests/test_bvp.py::test_big_problem_with_parameters 5160s 0.15s call tests/test__quad_vec.py::test_quad_vec_simple[trapezoid] 5160s 0.12s call tests/test__quad_vec.py::test_num_eval[trapezoid] 5160s 0.11s call tests/test_odeint_jac.py::test_odeint_full_jac 5160s 0.09s call _ivp/tests/test_ivp.py::test_integration 5160s 0.09s call tests/test__quad_vec.py::test_quad_vec_simple_inf[gk21] 5160s 0.07s call tests/test_banded_ode_solvers.py::test_banded_ode_solvers 5160s 0.07s call tests/test_tanhsinh.py::TestTanhSinh::test_accuracy[case59-0.5] 5160s 0.07s call tests/test__quad_vec.py::test_quad_vec_simple_inf[None] 5160s 0.07s call tests/test__quad_vec.py::test_quad_vec_simple_inf[gk15] 5160s 0.06s call tests/test_tanhsinh.py::TestNSum::test_status 5160s 0.05s call tests/test_integrate.py::test_odeint_banded_jacobian 5160s 0.05s call _ivp/tests/test_ivp.py::test_events 5160s 0.04s call tests/test_tanhsinh.py::TestTanhSinh::test_accuracy[case81-ref1] 5160s 0.04s call tests/test_quadpack.py::TestQuad::test_double_integral_improper[-inf-inf--inf-inf-3.141592653589793] 5160s ================ 760 passed, 55 skipped, 5 deselected in 6.08s ================= 5160s === Done: python3.13 integrate === 5160s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 5160s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 5160s === Testing: python3.13 interpolate === 5161s ============================= test session starts ============================== 5161s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 5161s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 5161s plugins: hypothesis-6.125.2, typeguard-4.4.1 5161s collected 1039 items / 4 deselected / 1035 selected 5161s 5161s tests/test_bsplines.py ................................................. [ 4%] 5161s ........................................................................ [ 11%] 5162s ..........x............................................................. [ 18%] 5162s ................. [ 20%] 5162s tests/test_fitpack.py .....................................s....s.. [ 24%] 5163s tests/test_fitpack2.py ................................................. [ 29%] 5163s .................... [ 31%] 5163s tests/test_gil.py s [ 31%] 5163s tests/test_interpnd.py ..................... [ 33%] 5163s tests/test_interpolate.py .............................................. [ 37%] 5164s ........................................................................ [ 44%] 5165s ........... [ 45%] 5165s tests/test_ndgriddata.py .................... [ 47%] 5165s tests/test_pade.py .... [ 48%] 5165s tests/test_polyint.py .................................................. [ 53%] 5165s ........................................................................ [ 60%] 5165s ..... [ 60%] 5165s tests/test_rbf.py .......... [ 61%] 5166s tests/test_rbfinterp.py ................................................ [ 66%] 5167s ........................................................................ [ 73%] 5167s ................................................................. [ 79%] 5168s tests/test_rgi.py ....................s................................. [ 84%] 5171s ......................ss.......ss..................s.......ss.......ss.. [ 91%] 5172s ..........................................s.......ss..........s......... [ 98%] 5172s ................ [100%] 5172s 5172s ============================= slowest 20 durations ============================= 5172s 1.45s call tests/test_rgi.py::TestRegularGridInterpolator::test_descending_points_nd[5--slinear] 5172s 0.77s call tests/test_interpolate.py::TestPPoly::test_roots_random 5172s 0.73s call tests/test_rgi.py::TestInterpN::test_nonscalar_values[cubic] 5172s 0.73s call tests/test_rgi.py::TestRegularGridInterpolator::test_nonscalar_values[cubic] 5172s 0.31s call tests/test_interpnd.py::TestCloughTocher2DInterpolator::test_dense 5172s 0.31s call tests/test_rgi.py::TestRegularGridInterpolator::test_complex[quintic] 5172s 0.30s call tests/test_bsplines.py::TestSmoothingSpline::test_weighted_smoothing_spline 5172s 0.24s call tests/test_fitpack2.py::TestLSQBivariateSpline::test_unequal_length_of_knots 5172s 0.19s call tests/test_rgi.py::TestRegularGridInterpolator::test_list_input[quintic] 5172s 0.18s call tests/test_interpolate.py::TestNdPPoly::test_simple_4d 5172s 0.18s call tests/test_polyint.py::test_deriv_shapes 5172s 0.16s call tests/test_interpolate.py::TestNdPPoly::test_simple_3d 5172s 0.12s call tests/test_rbfinterp.py::TestRBFInterpolatorNeighbors20::test_smoothing_misfit[linear] 5172s 0.11s call tests/test_rgi.py::TestRegularGridInterpolator::test_descending_points_nd[4--slinear] 5172s 0.10s call tests/test_polyint.py::test_shapes 5172s 0.10s call tests/test_interpolate.py::TestPPoly::test_roots_croots 5172s 0.09s call tests/test_rgi.py::TestInterpN::test_nonscalar_values[pchip] 5172s 0.09s call tests/test_rgi.py::TestRegularGridInterpolator::test_nonscalar_values[pchip] 5172s 0.09s call tests/test_interpolate.py::TestNdPPoly::test_simple_2d 5172s 0.08s call tests/test_rbfinterp.py::TestRBFInterpolatorNeighbors20::test_smoothing_misfit[thin_plate_spline] 5172s ========== 1017 passed, 17 skipped, 4 deselected, 1 xfailed in 11.39s ========== 5172s === Done: python3.13 interpolate === 5172s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 5172s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 5172s === Testing: python3.13 sparse === 5174s ============================= test session starts ============================== 5174s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 5174s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 5174s plugins: hypothesis-6.125.2, typeguard-4.4.1 5174s collected 12072 items / 405 deselected / 11667 selected 5174s 5174s csgraph/tests/test_connected_components.py ........ [ 0%] 5174s csgraph/tests/test_conversions.py ... [ 0%] 5174s csgraph/tests/test_flow.py ........................................... [ 0%] 5174s csgraph/tests/test_graph_laplacian.py .................................. [ 0%] 5174s ........................................................................ [ 1%] 5174s ........................................................................ [ 1%] 5174s ........................................................................ [ 2%] 5175s ........................................................................ [ 3%] 5175s ........................................................................ [ 3%] 5175s ........................................................................ [ 4%] 5175s ........................................................................ [ 5%] 5175s ........................................................................ [ 5%] 5175s ........................................................................ [ 6%] 5175s ........................................................................ [ 6%] 5175s ........................................................................ [ 7%] 5175s ........................................................................ [ 8%] 5175s ........................................................................ [ 8%] 5176s ........................................................................ [ 9%] 5176s ........................................................................ [ 10%] 5176s ............ [ 10%] 5176s csgraph/tests/test_matching.py ................................ [ 10%] 5176s csgraph/tests/test_pydata_sparse.py ssssssssssssssssssssssssssssssssss [ 10%] 5176s csgraph/tests/test_reordering.py ... [ 10%] 5176s csgraph/tests/test_shortest_path.py .................................... [ 11%] 5176s .... [ 11%] 5176s csgraph/tests/test_spanning_tree.py . [ 11%] 5176s csgraph/tests/test_traversal.py ........ [ 11%] 5176s linalg/_dsolve/tests/test_linsolve.py .s.s.s.s.ss..........s............ [ 11%] 5176s ................. [ 11%] 5177s linalg/_eigen/arpack/tests/test_arpack.py ................... [ 11%] 5177s linalg/_eigen/lobpcg/tests/test_lobpcg.py .............................. [ 11%] 5178s ........................................................................ [ 12%] 5178s ........................................................................ [ 13%] 5179s ........................................................................ [ 13%] 5179s ..................................................................... [ 14%] 5179s linalg/_eigen/tests/test_svds.py ....................................... [ 14%] 5179s ...................................s.ss..s.ssss....s.ss..s.ssss....s.ss. [ 15%] 5181s .s.ssss....s.ss..s.ssss....s.ss..s.ssss....s.ss..s.ssss................. [ 15%] 5181s ......s................................................................. [ 16%] 5182s ...............................s.ss....s.ss....s.ss....s.ss....s.ss....s [ 17%] 5185s .ss....s.ss....s.ss....s.ss....s.ss....s.ss....s.ss..................... [ 17%] 5185s ........................................................................ [ 18%] 5185s .................s.......s.......s.......s.......s.......s.......s...... [ 19%] 5185s .s.......s.......s.......s.......s...........ssssssss............xx [ 19%] 5186s linalg/_isolve/tests/test_gcrotmk.py ....... [ 19%] 5186s linalg/_isolve/tests/test_iterative.py ................................. [ 19%] 5186s ........................................................................ [ 20%] 5187s ........................................................................ [ 21%] 5187s ........................................................................ [ 21%] 5187s ........................................................................ [ 22%] 5187s ........................................................................ [ 23%] 5187s ........................................................................ [ 23%] 5187s ........................................................................ [ 24%] 5191s ............s.ss.ss.s............s.ss.s................................. [ 24%] 5192s .................s...sss.......s.F.............s........s........s...... [ 25%] 5192s .s........s........s........s........s.......s.......s........s........s [ 26%] 5192s .........s........s.......s.......s.......s.......s........s........ss.. [ 26%] 5193s .............s.......................................... [ 27%] 5193s linalg/_isolve/tests/test_lgmres.py ........ [ 27%] 5193s linalg/_isolve/tests/test_lsmr.py ............... [ 27%] 5193s linalg/_isolve/tests/test_lsqr.py ..... [ 27%] 5193s linalg/_isolve/tests/test_minres.py ....... [ 27%] 5193s linalg/_isolve/tests/test_utils.py . [ 27%] 5195s linalg/tests/test_expm_multiply.py ..................................... [ 27%] 5197s ........................................................................ [ 28%] 5200s ...................................................................... [ 29%] 5200s linalg/tests/test_interface.py ............... [ 29%] 5200s linalg/tests/test_matfuncs.py .................................. [ 29%] 5200s linalg/tests/test_norm.py ........ [ 29%] 5200s linalg/tests/test_onenormest.py ss.s.. [ 29%] 5201s linalg/tests/test_propack.py ........................ssss............ [ 29%] 5201s linalg/tests/test_pydata_sparse.py sssssssssssssssssssssssssssssssssssss [ 30%] 5201s ssssssssssssssss [ 30%] 5201s linalg/tests/test_special_sparse_arrays.py ............................. [ 30%] 5201s ........................................................................ [ 31%] 5201s ........................................................................ [ 31%] 5202s ........................................................................ [ 32%] 5202s ......................................... [ 32%] 5202s tests/test_arithmetic1d.py .................................... [ 33%] 5202s tests/test_array_api.py ................................................ [ 33%] 5202s ........................................................................ [ 34%] 5202s ........................................................................ [ 34%] 5202s ........................................................................ [ 35%] 5202s ................................................ [ 35%] 5203s tests/test_base.py ..................................................... [ 36%] 5203s ........................................................................ [ 36%] 5203s ................s....................................................... [ 37%] 5204s ........................................................................ [ 38%] 5204s .................................s..............sssss.s................. [ 38%] 5205s .................................s.ssssss............................... [ 39%] 5206s .............................................s.........ssss.s........... [ 40%] 5206s .........................................ssssss......................... [ 40%] 5207s ...................................................s..................ss [ 41%] 5207s ssssssssssssssssssssssssssssssssssss.......sssss..ssssss................ [ 41%] 5207s ...........................................................s.......x.... [ 42%] 5208s ...ssss.sssssssssssssssssssssssssssssssssssssss.......sssss..ssssss..... [ 43%] 5208s .....................................................................s.. [ 43%] 5209s .x.s....s......ssssssssssssssssssssssssssssssssssssss.......sssss....... [ 44%] 5209s ........................................................................ [ 44%] 5210s ...s.............xx.x................................................... [ 45%] 5211s ........................................................................ [ 46%] 5211s .............s...................sss..xx................................ [ 46%] 5213s ........................................................................ [ 47%] 5213s ...............................s..............sss..xx......sssssssssssss [ 48%] 5215s sssssssssssssssssssssssss.......sssss................................... [ 48%] 5215s ...........................................s.............xx.x.sssxx..... [ 49%] 5216s .ssssssssssssssssssssssssssssssssssssss.......sssss.ssssss.............. [ 49%] 5216s ............................................................s.......x... [ 50%] 5216s ....sss..........ss..ss...................sss......s...sssssssssssssssss [ 51%] 5217s .....sss.ss.....s..s.x..............s......ss..................sssssxxs. [ 51%] 5217s .sssss.s.s.............s.......ss..ss...............sss.....s..sssssssss [ 52%] 5218s sssssssss....ssss.s..s...s..s.xsss............s....s.ss................. [ 52%] 5218s .ssss..s..sssss.s.s.................s................................... [ 53%] 5219s ......s....................................s............................ [ 54%] 5219s ...............s..............s.................s....................... [ 54%] 5220s ....ss................s......................................s.......... [ 55%] 5220s .................................s..............s.................s..... [ 56%] 5221s .s.ss..ss............sss....s..ssssssssssssssssss....ssss.ss.s...s..s.xs [ 56%] 5221s s.........ssss...ss.ss.................ssss...s..sssss.s.s...........s.. [ 57%] 5222s .s......s.........s....................ss....................s.....s.s.. [ 57%] 5223s ....s..ss.........sss.....ss...................................s........ [ 58%] 5223s ........s.....s............................ss.....................s..... [ 59%] 5223s ..s.......s..s...s.........sss....ss.................................... [ 59%] 5224s .s................s.......ss..ss...................sss......s...ssssssss [ 60%] 5225s sssssssss.....sss.ss.....s..s.x..............s......ss.................. [ 61%] 5225s sssssxxs..sssss.s.s.............s.......ss..ss...............sss.....s.. [ 61%] 5226s ssssssssssssssssss....ssss.s..s...s..s.xsss............s....s.ss........ [ 62%] 5226s ..........ssss..s..sssss.s.s.................s.......................... [ 62%] 5227s ...............s....................................s................... [ 63%] 5227s ........................s..............s.................s.............. [ 64%] 5228s .............ss................s......................................s. [ 64%] 5229s ..........................................s..............s.............. [ 65%] 5229s ...s......s.ss..ss............sss....s..ssssssssssssssssss....ssss.ss.s. [ 65%] 5230s ..s..s.xss.........ssss...ss.ss.................ssss...s..sssss.s.s..... [ 66%] 5230s ......s...s......s.........s....................ss....................s. [ 67%] 5231s ....s.s......s..ss.........sss.....ss................................... [ 67%] 5231s s................s.....s............................ss.................. [ 68%] 5231s ...s.......s.......s..s...s.........sss....ss........................... [ 69%] 5232s ..........s................s.......ss..ss...................sss......s.. [ 69%] 5233s .sssssssssssssssss.....sss.ss.....s..s.x..............s......ss......... [ 70%] 5233s .........sssssxxs..sssss.s.s.............s.......ss..ss...............ss [ 70%] 5234s s.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss............s....s.s [ 71%] 5234s s..................ssss..s..sssss.s.s.................s................. [ 72%] 5234s ........................s....................................s.......... [ 72%] 5235s .................................s..............s.................s..... [ 73%] 5235s ......................ss................s............................... [ 73%] 5236s .......s...........................................s..............s..... [ 74%] 5237s ............s......s.ss..ss............sss....s..ssssssssssssssssss....s [ 75%] 5237s sss.ss.s...s..s.xss.........ssss...ss.ss.................ssss...s..sssss [ 75%] 5238s .s.s...........s...s......s.........s....................ss............. [ 76%] 5238s .......s.....s.s......s..ss.........sss.....ss.......................... [ 77%] 5239s .........s................s.....s............................ss......... [ 77%] 5239s ............s.......s.......s..s...s.........sss....ss.................. [ 78%] 5240s ...................s................s.......ss..ss...................sss [ 78%] 5240s ......s...sssssssssssssssss.....sss.ss.....s..s.x..............s......ss [ 79%] 5241s ..................sssssxxs..sssss.s.s.............s.......ss..ss........ [ 80%] 5241s .......sss.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss........... [ 80%] 5241s .s....s.ss..................ssss..s..sssss.s.s.................s........ [ 81%] 5242s .................................s....................................s. [ 82%] 5243s ..........................................s..............s.............. [ 82%] 5243s ...s...........................ss................s...................... [ 83%] 5243s ................s...........................................s........... [ 83%] 5244s ...s.................s......s.ss..ss............sss....s..ssssssssssssss [ 84%] 5244s ssss....ssss.ss.s...s..s.xss.........ssss...ss.ss.................ssss.. [ 85%] 5245s .s..sssss.s.s...........s...s......s.........s....................ss.... [ 85%] 5245s ................s.....s.s......s..ss.........sss.....ss................. [ 86%] 5246s ..................s................s.....s............................ss [ 86%] 5246s .....................s.......s.......s..s...s.........sss....ss......... [ 87%] 5247s ............................s................s.......ss..ss............. [ 88%] 5248s ......sss......s...sssssssssssssssss.....sss.ss.....s..s.x.............. [ 88%] 5249s s......ss..................sssssxxs..sssss.s.s.............s.......ss..s [ 89%] 5249s s...............sss.....s..ssssssssssssssssss....ssss.s..s...s..s.xsss.. [ 90%] 5250s ..........s....s.ss..................ssss..s..sssss.s.s................. [ 90%] 5250s s.........................................s............................. [ 91%] 5251s .......s...........................................s..............s..... [ 91%] 5252s ............s...........................ss................s............. [ 92%] 5252s .........................s...........................................s.. [ 93%] 5254s ............s.................s......s.ss..ss............sss....s..sssss [ 93%] 5254s sssssssssssss....ssss.ss.s...s..s.xss.........ssss...ss.ss.............. [ 94%] 5255s ...ssss...s..sssss.s.s...........s...s......s.........s................. [ 94%] 5255s ...ss....................s.....s.s......s..ss.........sss.....ss........ [ 95%] 5256s ...........................s................s.....s..................... [ 96%] 5257s .......ss.....................s.......s.......s..s...s.........sss....ss [ 96%] 5257s .....................................s................s. [ 97%] 5257s tests/test_common1d.py ................................................. [ 97%] 5257s ................................................. [ 98%] 5258s tests/test_construct.py ................................................ [ 98%] 5258s ........ [ 98%] 5258s tests/test_coo.py ................................... [ 98%] 5258s tests/test_csc.py ........... [ 99%] 5258s tests/test_csr.py ............. [ 99%] 5258s tests/test_dok.py ...................................................... [ 99%] 5258s ... [ 99%] 5258s tests/test_extract.py .... [ 99%] 5258s tests/test_matrix_io.py ....... [ 99%] 5258s tests/test_minmax1d.py ............ [ 99%] 5258s tests/test_sparsetools.py ....s.. [ 99%] 5258s tests/test_spfuncs.py ... [ 99%] 5258s tests/test_sputils.py ............. [100%] 5258s 5258s =================================== FAILURES =================================== 5258s ____________________________ test_x0_working[tfqmr] ____________________________ 5258s /usr/lib/python3/dist-packages/scipy/sparse/linalg/_isolve/tests/test_iterative.py:509: in test_x0_working 5258s assert norm(A @ x - b) <= 3e-6*norm(b) 5258s E assert np.float64(5.087062801116496e-06) <= (3e-06 * np.float64(1.240298651028214)) 5258s E + where np.float64(5.087062801116496e-06) = norm(((array([[3.68514493, 2.22433683, 2.80424149, 2.06524296, 2.82772901,\n 1.70134349, 2.98806253, 2.88379072, 1.9578..., 2.29515724, 2.77591422, 1.55001596, 1.93969785,\n 1.88091968, 2.24894423, 2.49791763, 1.66944017, 2.12310297]]) @ array([ -1.2214035 , -23.52873647, -4.72398899, -21.36849698,\n -12.6896924 , -0.96737956, 32.8587051 , -11.40288448,\n 10.99363856, 30.93077527])) - array([0.55127821, 0.22828434, 0.09135873, 0.07249963, 0.11693987,\n 0.74246847, 0.72216603, 0.1607452 , 0.15471589, 0.18022921]))) 5258s E + and np.float64(1.240298651028214) = norm(array([0.55127821, 0.22828434, 0.09135873, 0.07249963, 0.11693987,\n 0.74246847, 0.72216603, 0.1607452 , 0.15471589, 0.18022921])) 5258s A = array([[3.68514493, 2.22433683, 2.80424149, 2.06524296, 2.82772901, 5258s 1.70134349, 2.98806253, 2.88379072, 1.9578..., 2.29515724, 2.77591422, 1.55001596, 1.93969785, 5258s 1.88091968, 2.24894423, 2.49791763, 1.66944017, 2.12310297]]) 5258s b = array([0.55127821, 0.22828434, 0.09135873, 0.07249963, 0.11693987, 5258s 0.74246847, 0.72216603, 0.1607452 , 0.15471589, 0.18022921]) 5258s info = 0 5258s kw = {'atol': 0, 'rtol': 1e-06} 5258s n = 10 5258s rng = Generator(PCG64) at 0x3FF875084A0 5258s solver = 5258s x = array([ -1.2214035 , -23.52873647, -4.72398899, -21.36849698, 5258s -12.6896924 , -0.96737956, 32.8587051 , -11.40288448, 5258s 10.99363856, 30.93077527]) 5258s x0 = array([0.63685093, 0.46836296, 0.0677924 , 0.52832101, 0.49467215, 5258s 0.68333247, 0.3392967 , 0.57867322, 0.25729156, 0.60952728]) 5258s =============================== warnings summary =============================== 5258s linalg/_isolve/tests/test_iterative.py::test_show[case21] 5258s /usr/lib/python3/dist-packages/scipy/sparse/linalg/_isolve/tfqmr.py:143: RuntimeWarning: divide by zero encountered in scalar divide 5258s d = u + (theta**2 / alpha) * eta * d # [1]-(5.5) 5258s 5258s linalg/_isolve/tests/test_iterative.py::test_show[case21] 5258s /usr/lib/python3/dist-packages/scipy/sparse/linalg/_isolve/tfqmr.py:143: RuntimeWarning: invalid value encountered in scalar divide 5258s d = u + (theta**2 / alpha) * eta * d # [1]-(5.5) 5258s 5258s linalg/_isolve/tests/test_iterative.py::test_show[case21] 5258s /usr/lib/python3/dist-packages/scipy/sparse/linalg/_isolve/tfqmr.py:143: RuntimeWarning: invalid value encountered in scalar multiply 5258s d = u + (theta**2 / alpha) * eta * d # [1]-(5.5) 5258s 5258s linalg/_isolve/tests/test_iterative.py::test_show[case21] 5258s /usr/lib/python3/dist-packages/scipy/sparse/linalg/_isolve/tfqmr.py:166: RuntimeWarning: invalid value encountered in scalar divide 5258s beta = rho / rhoLast 5258s 5258s linalg/_isolve/tests/test_iterative.py::test_show[case21] 5258s /usr/lib/python3/dist-packages/scipy/sparse/linalg/_isolve/tfqmr.py:140: RuntimeWarning: invalid value encountered in scalar divide 5258s alpha = rho / vtrstar 5258s 5258s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 5258s ============================= slowest 20 durations ============================= 5258s 3.42s call linalg/_isolve/tests/test_iterative.py::test_precond_inverse[poisson2d] 5258s 0.58s call linalg/_eigen/tests/test_svds.py::Test_SVDS_LOBPCG::test_small_sigma_sparse[complex-shape0] 5258s 0.58s call linalg/_isolve/tests/test_iterative.py::TestGMRES::test_atol_legacy 5258s 0.52s call linalg/tests/test_expm_multiply.py::TestExpmActionInterval::test_sparse_expm_multiply_interval 5258s 0.51s call linalg/_eigen/tests/test_svds.py::Test_SVDS_ARPACK::test_small_sigma_sparse[complex-shape0] 5258s 0.49s call linalg/tests/test_expm_multiply.py::TestExpmActionInterval::test_expm_multiply_interval_matrix 5258s 0.48s call linalg/_eigen/tests/test_svds.py::Test_SVDS_LOBPCG::test_small_sigma_sparse[float32-shape0] 5258s 0.45s call tests/test_base.py::TestBSRNonCanonical::test_add_sub 5258s 0.42s call tests/test_base.py::Test64Bit::test_no_64[TestDIA-test_add_sub] 5258s 0.41s call tests/test_base.py::Test64Bit::test_no_64[TestCSC-test_slicing_3] 5258s 0.40s call tests/test_base.py::Test64Bit::test_no_64[TestBSR-test_add_sub] 5258s 0.37s call linalg/tests/test_expm_multiply.py::TestExpmActionInterval::test_expm_multiply_interval_vector 5258s 0.35s call tests/test_base.py::Test64Bit::test_no_64[TestDOK-test_add_sub] 5258s 0.35s call linalg/_eigen/tests/test_svds.py::Test_SVDS_ARPACK::test_small_sigma_sparse[complex-shape1] 5258s 0.34s call linalg/_eigen/tests/test_svds.py::Test_SVDS_LOBPCG::test_small_sigma_sparse[float-shape0] 5258s 0.34s call linalg/_eigen/tests/test_svds.py::Test_SVDS_LOBPCG::test_small_sigma_sparse[float-shape1] 5258s 0.34s call linalg/_eigen/tests/test_svds.py::Test_SVDS_LOBPCG::test_small_sigma_sparse[complex-shape1] 5258s 0.32s call tests/test_base.py::Test64Bit::test_no_64[TestCSR-test_slicing_3] 5258s 0.30s call tests/test_base.py::TestDIA::test_add_sub 5258s 0.30s call linalg/_eigen/tests/test_svds.py::Test_SVDS_LOBPCG::test_small_sigma_sparse[float32-shape1] 5258s =========================== short test summary info ============================ 5258s FAILED linalg/_isolve/tests/test_iterative.py::test_x0_working[tfqmr] - asser... 5258s = 1 failed, 10058 passed, 1566 skipped, 405 deselected, 42 xfailed, 5 warnings in 86.11s (0:01:26) = 5259s === Done: python3.13 sparse === 5259s skipping tests with SKIP_TEST_LIST=test_multiple_ellipsis_slicing test_maxiter_worsening test_atol[bicg] test_distance_transform_cdt05 test_cont_basic[500-200-ncf-arg74] 5259s Controlling tests with "not ( test_existence_all or test_ascent or test_face or test_electrocardiogram ) and not ( test_multiple_ellipsis_slicing or test_maxiter_worsening or test_atol[bicg] or test_distance_transform_cdt05 or test_cont_basic[500-200-ncf-arg74] )" 5259s === Testing: python3.13 linalg === 5260s ============================= test session starts ============================== 5260s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 5260s rootdir: /tmp/autopkgtest.3LpQ7v/autopkgtest_tmp 5260s plugins: hypothesis-6.125.2, typeguard-4.4.1 5260s collected 4372 items / 7 deselected / 4365 selected 5260s 5260s tests/test_basic.py .................................................... [ 1%] 5260s .........................................................s.............. [ 2%] 5260s ........................................................................ [ 4%] 5262s ........................................................................ [ 6%] 5264s ........................................................................ [ 7%] 5264s .................................s...................................... [ 9%] 5264s .................... [ 9%] 5264s tests/test_blas.py ...................................................x. [ 11%] 5264s [ 11%] 5264s tests/test_cython_blas.py ...... [ 11%] 5264s tests/test_cython_lapack.py ... [ 11%] 5264s tests/test_cythonized_array_utils.py ................................... [ 12%] 5264s ............... [ 12%] 5264s tests/test_decomp.py ................................................... [ 13%] 5264s ........................................................................ [ 15%] 5264s ........................................................................ [ 16%] 5266s ........................................................................ [ 18%] 5266s ........................................................................ [ 20%] 5266s ........................................................................ [ 21%] 5267s .......................................x................................ [ 23%] 5267s ......... [ 23%] 5268s tests/test_decomp_cholesky.py .....s.................................... [ 24%] 5268s ............................. [ 25%] 5268s tests/test_decomp_cossin.py ............................................ [ 26%] 5268s ............................................... [ 27%] 5268s tests/test_decomp_ldl.py ............ [ 27%] 5268s tests/test_decomp_lu.py ................................................ [ 28%] 5268s ............................................ [ 29%] 5268s tests/test_decomp_polar.py .. [ 29%] 5268s tests/test_decomp_update.py ............................................ [ 30%] 5269s ........................................................................ [ 32%] 5269s ........................................................................ [ 34%] 5269s ........................................................................ [ 35%] 5269s ........................................................................ [ 37%] 5269s ........................................................................ [ 39%] 5270s ........................................................................ [ 40%] 5270s ........................................................................ [ 42%] 5270s ........................................................................ [ 44%] 5270s ............................................. [ 45%] 5270s tests/test_extending.py s [ 45%] 5270s tests/test_fblas.py .................................................... [ 46%] 5270s ........................................................................ [ 47%] 5270s ..... [ 48%] 5271s tests/test_interpolative.py ............................................ [ 49%] 5271s .... [ 49%] 5271s tests/test_lapack.py ................................................... [ 50%] 5271s .............................................................s.......... [ 52%] 5272s ........................................................................ [ 53%] 5272s ........................................................................ [ 55%] 5272s ........................................................................ [ 56%] 5272s ........................................................................ [ 58%] 5272s ........................................................................ [ 60%] 5272s ........................................................................ [ 61%] 5272s ........................................................................ [ 63%] 5272s ........................................................................ [ 65%] 5272s ........................................................................ [ 66%] 5272s ........................................................................ [ 68%] 5272s ........................................................................ [ 70%] 5272s ........................................................................ [ 71%] 5272s ........................................................................ [ 73%] 5272s ........................................................................ [ 75%] 5272s ........................................................................ [ 76%] 5273s ........................................................................ [ 78%] 5273s ........................................................................ [ 80%] 5273s ........................................................................ [ 81%] 5273s ........................................................................ [ 83%] 5273s ........................................................................ [ 84%] 5273s ........................................................................ [ 86%] 5273s ........................................................................ [ 88%] 5273s ........................................................................ [ 89%] 5273s ........................................................................ [ 91%] 5273s ........................................................................ [ 93%] 5273s .... [ 93%] 5274s tests/test_matfuncs.py ................xxxxx..............X............. [ 94%] 5275s ......X........................ [ 95%] 5275s tests/test_matmul_toeplitz.py .... [ 95%] 5275s tests/test_procrustes.py ........... [ 95%] 5276s tests/test_sketches.py ..... [ 95%] 5276s tests/test_solve_toeplitz.py ......X......................... [ 96%] 5276s tests/test_solvers.py ........x....x....x.xx......................... [ 97%] 5276s tests/test_special_matrices.py ......................................... [ 98%] 5277s ....................................................................... [100%] 5277s 5277s ============================= slowest 20 durations ============================= 5277s 1.35s call tests/test_decomp.py::test_svd_gesdd_nofegfault 5277s 1.02s call tests/test_decomp.py::TestOrdQZWorkspaceSize::test_decompose 5277s 0.70s call tests/test_matfuncs.py::TestExpM::test_gh18086 5277s 0.35s call tests/test_solvers.py::TestSolveDiscreteAre::test_solve_discrete_are[18-case18] 5277s 0.21s call tests/test_basic.py::TestLstsq::test_random_complex_exact[False-gelss-200-complex64] 5277s 0.21s call tests/test_basic.py::TestLstsq::test_random_complex_exact[True-gelss-200-complex64] 5277s 0.19s call tests/test_sketches.py::TestClarksonWoodruffTransform::test_seed_returns_identical_transform_matrix 5277s 0.17s call tests/test_lapack.py::test_orcsd_uncsd[complex64] 5277s 0.13s call tests/test_basic.py::TestLstsq::test_random_complex_exact[True-gelss-200-clongdouble] 5277s 0.13s call tests/test_basic.py::TestLstsq::test_random_complex_exact[False-gelss-200-clongdouble] 5277s 0.13s call tests/test_solvers.py::TestSolveContinuousAre::test_solve_continuous_are[17-case17] 5277s 0.13s call tests/test_basic.py::TestLstsq::test_random_complex_exact[False-gelss-200-complex128] 5277s 0.13s call tests/test_basic.py::TestLstsq::test_random_complex_exact[True-gelss-200-complex128] 5277s 0.12s call tests/test_decomp.py::TestEig::test_bad_geneig 5277s 0.12s call tests/test_matfuncs.py::TestFractionalMatrixPower::test_larger_abs_fractional_matrix_powers 5277s 0.11s call tests/test_basic.py::TestLstsq::test_random_exact[True-gelss-200-float32] 5277s 0.11s call tests/test_matfuncs.py::TestFractionalMatrixPower::test_round_trip_random_complex 5277s 0.11s call tests/test_matfuncs.py::TestFractionalMatrixPower::test_round_trip_random_float 5277s 0.11s call tests/test_basic.py::TestLstsq::test_random_exact[False-gelss-200-float32] 5277s 0.11s call tests/test_basic.py::TestLstsq::test_random_exact[False-gelss-200-longdouble] 5277s ==== 4345 passed, 5 skipped, 7 deselected, 12 xfailed, 3 xpassed in 17.56s ===== 5277s === Done: python3.13 linalg === 5277s /tmp/autopkgtest.3LpQ7v/wrapper.sh: checking for leaked background processes... 5277s /tmp/autopkgtest.3LpQ7v/wrapper.sh: waiting for tee/cat subprocesses... 5277s /tmp/autopkgtest.3LpQ7v/wrapper.sh: cleaning up... 5277s /tmp/autopkgtest.3LpQ7v/wrapper.sh: Exit status: 0 5277s autopkgtest: DBG: testbed command exited with code 0 5277s autopkgtest [09:37:58]: test blis: -----------------------] 5277s autopkgtest: DBG: testbed executing test finished with exit status 0 5277s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/blis-stdout /tmp/autopkgtest-work.6nmnu1s5/out/blis-stdout 5277s autopkgtest: DBG: got reply from testbed: ok 5277s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/blis-stderr /tmp/autopkgtest-work.6nmnu1s5/out/blis-stderr 5277s autopkgtest: DBG: got reply from testbed: ok 5277s blis PASS 5277s autopkgtest [09:37:58]: test blis: - - - - - - - - - - results - - - - - - - - - - 5277s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.3LpQ7v/blis-artifacts/ /tmp/autopkgtest-work.6nmnu1s5/out/artifacts/ 5278s autopkgtest: DBG: got reply from testbed: ok 5278s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.3LpQ7v/blis-artifacts', '/tmp/autopkgtest.3LpQ7v/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 5278s autopkgtest: DBG: testbed command exited with code 0 5278s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 5278s autopkgtest [09:37:59]: @@@@@@@@@@@@@@@@@@@@ summary 5278s python3 PASS 5278s python3-network PASS 5278s python3-smoke PASS 5278s openblas FAIL non-zero exit status 1 5278s blis PASS 5278s autopkgtest: DBG: testbed stop 5278s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.3LpQ7v 5278s autopkgtest: DBG: sending command to testbed: close 5294s autopkgtest: DBG: got reply from testbed: ok 5294s autopkgtest: DBG: sending command to testbed: quit 5294s nova [W] Using flock in prodstack6-s390x 5294s Creating nova instance adt-plucky-s390x-scipy-20250219-081001-juju-7f2275-prod-proposed-migration-environment-15-4e78de0b-a588-44f7-8d55-c868ce18e50c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 5294s nova [W] Timed out waiting for c2725376-1b25-4be6-aee6-d10018daa6b5 to get deleted. 5294s nova [W] Using flock in prodstack6-s390x 5294s Creating nova instance adt-plucky-s390x-scipy-20250219-081001-juju-7f2275-prod-proposed-migration-environment-15-4e78de0b-a588-44f7-8d55-c868ce18e50c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 5294s nova [W] Timed out waiting for 57129753-167e-42a9-b992-ea9c6aee2bbf to get deleted. 5294s nova [W] Using flock in prodstack6-s390x 5294s Creating nova instance adt-plucky-s390x-scipy-20250219-081001-juju-7f2275-prod-proposed-migration-environment-15-4e78de0b-a588-44f7-8d55-c868ce18e50c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 5294s nova [W] Timed out waiting for efcda40a-579c-4649-a0d4-d2eccf9b90a6 to get deleted. 5294s nova [W] Using flock in prodstack6-s390x 5294s Creating nova instance adt-plucky-s390x-scipy-20250219-081001-juju-7f2275-prod-proposed-migration-environment-15-4e78de0b-a588-44f7-8d55-c868ce18e50c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 5294s nova [W] Timed out waiting for d5bf4579-370b-4a3e-a3d8-d635c7f4e6c2 to get deleted.