0s autopkgtest: DBG: testbed init 0s autopkgtest [12:12:00]: starting date and time: 2025-02-19 12:12:00+0000 0s autopkgtest [12:12:00]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:12:00]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.rbol1xbw/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade jsonpickle --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-17.secgroup --name adt-plucky-s390x-jsonpickle-20250219-121159-juju-7f2275-prod-proposed-migration-environment-15-6aa56a59-1cb9-45c8-b547-88506d774e24 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 107s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.c3yVOP 107s autopkgtest: DBG: sending command to testbed: print-execute-command 107s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.hzlyzyg9/runcmd 107s autopkgtest: DBG: sending command to testbed: capabilities 107s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu isolation-machine revert-full-system revert root-on-testbed 107s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'revert', 'root-on-testbed', 'has_internet'] 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.c3yVOP'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.c3yVOP/wrapper.sh 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.c3yVOP/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [12:13:47]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [12:13:48]: testbed apt version: 2.9.30 108s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed has eatmydata 108s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [12:13:48]: @@@@@@@@@@@@@@@@@@@@ test bed setup 108s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [12:13:48]: testbed release detected to be: None 108s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 109s Package: * 109s Pin: release plucky-proposed 109s Pin-Priority: 500 109s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:13:49]: updating testbed package index (apt update) 109s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 109s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 109s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 109s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 110s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 110s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 110s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 110s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 110s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 110s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 110s Fetched 1700 kB in 1s (1242 kB/s) 111s Reading package lists... 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 111s Package: * 111s Pin: release plucky-proposed 111s Pin-Priority: 100 111s 111s Package: src:sphinx:any 111s Pin: release plucky-proposed 111s Pin-Priority: 995 111s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.c3yVOP/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 111s + lsb_release --codename --short 111s + RELEASE=plucky 111s + cat 111s + [ plucky != trusty ] 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s Calculating upgrade... 112s The following packages were automatically installed and are no longer required: 112s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 112s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 112s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 112s linux-tools-6.11.0-8-generic 112s Use 'sudo apt autoremove' to remove them. 112s The following packages will be upgraded: 112s iproute2 liblsof0 libp11-kit0 lsof 112s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 1791 kB of archives. 112s After this operation, 17.4 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 113s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 113s Preconfiguring packages ... 113s Fetched 1791 kB in 1s (1789 kB/s) 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 113s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 113s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 113s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 113s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 113s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 113s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 113s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 113s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 113s Setting up liblsof0 (4.99.4+dfsg-1) ... 113s Setting up iproute2 (6.13.0-1ubuntu1) ... 114s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 114s Setting up lsof (4.99.4+dfsg-1) ... 114s Processing triggers for man-db (2.13.0-1) ... 114s Processing triggers for libc-bin (2.40-4ubuntu1) ... 114s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 114s + /usr/lib/apt/apt-helper analyze-pattern ?true 114s + uname -r 114s + sed s/\./\\./g 114s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 114s + apt list ?obsolete 114s + tail -n+2 114s + cut -d/ -f1 114s + grep -v ^linux-.*6\.12\.0-15-generic.* 114s + true 114s + obsolete_pkgs= 114s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 114s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s The following packages will be REMOVED: 115s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 115s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 115s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 115s linux-tools-6.11.0-8-generic* 115s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 115s After this operation, 167 MB disk space will be freed. 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 115s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 115s Removing libpython3.12t64:s390x (3.12.9-1) ... 115s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 115s Removing libnsl2:s390x (1.3.0-3build3) ... 115s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 115s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 116s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s Processing triggers for libc-bin (2.40-4ubuntu1) ... 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 116s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 116s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s + grep -q trusty /etc/lsb-release 116s + [ ! -d /usr/share/doc/unattended-upgrades ] 116s + [ ! -d /usr/share/doc/lxd ] 116s + [ ! -d /usr/share/doc/lxd-client ] 116s + [ ! -d /usr/share/doc/snapd ] 116s + type iptables 116s + cat 116s + chmod 755 /etc/rc.local 116s + . /etc/rc.local 116s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 116s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 116s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 116s + uname -m 116s + [ s390x = ppc64le ] 116s + [ -d /run/systemd/system ] 116s + systemd-detect-virt --quiet --vm 116s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 116s + cat 116s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 116s + echo COMPRESS=lz4 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [12:13:56]: upgrading testbed (apt dist-upgrade and autopurge) 116s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 117s Starting 2 pkgProblemResolver with broken count: 0 117s Done 117s Entering ResolveByKeep 117s 117s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 117s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 118s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.c3yVOP/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 1 118s autopkgtest [12:13:58]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 131s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.c3yVOP'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.c3yVOP/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.c3yVOP'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.c3yVOP/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest [12:14:20]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 140s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.c3yVOP/testbed-packages"], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.c3yVOP/testbed-packages /tmp/autopkgtest-work.rbol1xbw/out/testbed-packages 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.c3yVOP'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.c3yVOP/autopkgtest-reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.c3yVOP'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.c3yVOP/autopkgtest-reboot-prepare 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.c3yVOP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: Binaries: initialising 142s autopkgtest [12:14:22]: @@@@@@@@@@@@@@@@@@@@ apt-source jsonpickle 142s autopkgtest: DBG: blame += jsonpickle 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 142s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'jsonpickle'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-jsonpickle-doc$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-jsonpickle-doc=4.0.1+dfsg-1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-jsonpickle$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-jsonpickle=4.0.1+dfsg-1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: install_deps: deps_new=[] 143s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s 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.c3yVOP/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source jsonpickle=4.0.1+dfsg-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x jsonpickle_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 144s + cd / 144s + mktemp -d /tmp/autopkgtest.c3yVOP/build.XXX 144s + builddir=/tmp/autopkgtest.c3yVOP/build.nMu 144s + cd /tmp/autopkgtest.c3yVOP/build.nMu 144s + apt-get source -d -q --only-source jsonpickle=4.0.1+dfsg-1 144s + OUT=Reading package lists... 144s NOTICE: 'jsonpickle' packaging is maintained in the 'Git' version control system at: 144s https://salsa.debian.org/python-team/packages/jsonpickle.git 144s Please use: 144s git clone https://salsa.debian.org/python-team/packages/jsonpickle.git 144s to retrieve the latest (possibly unreleased) updates to the package. 144s Need to get 182 kB of source archives. 144s Get:1 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (dsc) [2702 B] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (tar) [174 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (diff) [6172 B] 144s Fetched 182 kB in 0s (417 kB/s) 144s Download complete and in download only mode 144s + [ -n ] 144s + echo Reading package lists... 144s NOTICE: 'jsonpickle' packaging is maintained in the 'Git' version control system at: 144s https://salsa.debian.org/python-team/packages/jsonpickle.git 144s Please use: 144s git clone https://salsa.debian.org/python-team/packages/jsonpickle.git 144s to retrieve the latest (possibly unreleased) updates to the package. 144s Need to get 182 kB of source archives. 144s Get:1 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (dsc) [2702 B] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (tar) [174 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (diff) [6172 B] 144s Fetched 182 kB in 0s (417 kB/s) 144s Download complete and in download only mode 144s + grep ^Get: 144s Get:1 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (dsc) [2702 B] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (tar) [174 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/universe jsonpickle 4.0.1+dfsg-1 (diff) [6172 B] 144s + dpkg-source -x jsonpickle_4.0.1+dfsg-1.dsc src 144s gpgv: Signature made Sun Dec 15 09:01:23 2024 UTC 144s gpgv: using RSA key AC0A4FF12611B6FCCF01C111393587D97D86500B 144s gpgv: Can't check signature: No public key 144s dpkg-source: warning: cannot verify inline signature for ./jsonpickle_4.0.1+dfsg-1.dsc: no acceptable signature found 144s + chmod -R a+rX . 144s + cd src/. 144s + pwd 144s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [12:14:24]: testing package jsonpickle version 4.0.1+dfsg-1 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.c3yVOP/build.nMu/src/debian/ /tmp/autopkgtest-work.rbol1xbw/out/pkg/debian/ 144s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: autodep8 generated control: ----- 145s Test-Command: pybuild-autopkgtest 145s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 145s Restrictions: allow-stderr, skippable, 145s Features: test-name=pybuild-autopkgtest 145s 145s ------- 145s autopkgtest: DBG: processing dependency @ 145s autopkgtest: DBG: synthesised dependency python3-jsonpickle 145s autopkgtest: DBG: synthesised dependency python-jsonpickle-doc 145s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 145s autopkgtest: DBG: processing dependency @builddeps@ 145s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 145s autopkgtest: DBG: synthesised dependency dh-sequence-python3 145s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 145s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 145s autopkgtest: DBG: synthesised dependency python3-all 145s autopkgtest: DBG: synthesised dependency python3-bson 145s autopkgtest: DBG: synthesised dependency python3-ecdsa 145s autopkgtest: DBG: synthesised dependency python3-feedparser 145s autopkgtest: DBG: synthesised dependency python3-gmpy2 145s autopkgtest: DBG: synthesised dependency python3-numpy 145s autopkgtest: DBG: synthesised dependency python3-pandas 145s autopkgtest: DBG: synthesised dependency python3-pytest 145s autopkgtest: DBG: synthesised dependency python3-setuptools 145s autopkgtest: DBG: synthesised dependency python3-setuptools-scm 145s autopkgtest: DBG: synthesised dependency python3-sklearn 145s autopkgtest: DBG: synthesised dependency python3-simplejson 145s autopkgtest: DBG: synthesised dependency python3-sphinx 145s autopkgtest: DBG: synthesised dependency python3-sqlalchemy 145s autopkgtest: DBG: synthesised dependency python3-ujson 145s autopkgtest: DBG: synthesised dependency build-essential 145s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-jsonpickle', 'python-jsonpickle-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'pybuild-plugin-pyproject', 'python3-all', 'python3-bson ', 'python3-ecdsa ', 'python3-feedparser ', 'python3-gmpy2 ', 'python3-numpy ', 'python3-pandas ', 'python3-pytest ', 'python3-setuptools', 'python3-setuptools-scm', 'python3-sklearn ', 'python3-simplejson ', 'python3-sphinx', 'python3-sqlalchemy ', 'python3-ujson ', 'build-essential'] 145s autopkgtest [12:14:25]: build not needed 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.c3yVOP/build.nMu/src/ /tmp/autopkgtest-work.rbol1xbw/out/tests-tree/ 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: autodep8 generated control: ----- 145s Test-Command: pybuild-autopkgtest 145s Depends: @, pybuild-plugin-autopkgtest, @builddeps@, 145s Restrictions: allow-stderr, skippable, 145s Features: test-name=pybuild-autopkgtest 145s 145s ------- 145s autopkgtest: DBG: processing dependency @ 145s autopkgtest: DBG: synthesised dependency python3-jsonpickle 145s autopkgtest: DBG: synthesised dependency python-jsonpickle-doc 145s autopkgtest: DBG: processing dependency pybuild-plugin-autopkgtest 145s autopkgtest: DBG: processing dependency @builddeps@ 145s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 145s autopkgtest: DBG: synthesised dependency dh-sequence-python3 145s autopkgtest: DBG: synthesised dependency dh-sequence-sphinxdoc 145s autopkgtest: DBG: synthesised dependency pybuild-plugin-pyproject 145s autopkgtest: DBG: synthesised dependency python3-all 145s autopkgtest: DBG: synthesised dependency python3-bson 145s autopkgtest: DBG: synthesised dependency python3-ecdsa 145s autopkgtest: DBG: synthesised dependency python3-feedparser 145s autopkgtest: DBG: synthesised dependency python3-gmpy2 145s autopkgtest: DBG: synthesised dependency python3-numpy 145s autopkgtest: DBG: synthesised dependency python3-pandas 145s autopkgtest: DBG: synthesised dependency python3-pytest 145s autopkgtest: DBG: synthesised dependency python3-setuptools 145s autopkgtest: DBG: synthesised dependency python3-setuptools-scm 145s autopkgtest: DBG: synthesised dependency python3-sklearn 145s autopkgtest: DBG: synthesised dependency python3-simplejson 145s autopkgtest: DBG: synthesised dependency python3-sphinx 145s autopkgtest: DBG: synthesised dependency python3-sqlalchemy 145s autopkgtest: DBG: synthesised dependency python3-ujson 145s autopkgtest: DBG: synthesised dependency build-essential 145s autopkgtest: DBG: Test defined: name pybuild-autopkgtest path None command "pybuild-autopkgtest" restrictions ['allow-stderr', 'skippable'] features ['test-name=pybuild-autopkgtest'] depends ['python3-jsonpickle', 'python-jsonpickle-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'pybuild-plugin-pyproject', 'python3-all', 'python3-bson ', 'python3-ecdsa ', 'python3-feedparser ', 'python3-gmpy2 ', 'python3-numpy ', 'python3-pandas ', 'python3-pytest ', 'python3-setuptools', 'python3-setuptools-scm', 'python3-sklearn ', 'python3-simplejson ', 'python3-sphinx', 'python3-sqlalchemy ', 'python3-ujson ', 'build-essential'] 145s autopkgtest [12:14:25]: test pybuild-autopkgtest: preparing testbed 145s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-jsonpickle', 'python-jsonpickle-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'pybuild-plugin-pyproject', 'python3-all', 'python3-bson ', 'python3-ecdsa ', 'python3-feedparser ', 'python3-gmpy2 ', 'python3-numpy ', 'python3-pandas ', 'python3-pytest ', 'python3-setuptools', 'python3-setuptools-scm', 'python3-sklearn ', 'python3-simplejson ', 'python3-sphinx', 'python3-sqlalchemy ', 'python3-ujson ', 'build-essential'] 145s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 145s autopkgtest: DBG: install_deps: deps_new=['python3-jsonpickle', 'python-jsonpickle-doc', 'pybuild-plugin-autopkgtest', 'debhelper-compat (= 13)', 'dh-sequence-python3', 'dh-sequence-sphinxdoc', 'pybuild-plugin-pyproject', 'python3-all', 'python3-bson ', 'python3-ecdsa ', 'python3-feedparser ', 'python3-gmpy2 ', 'python3-numpy ', 'python3-pandas ', 'python3-pytest ', 'python3-setuptools', 'python3-setuptools-scm', 'python3-sklearn ', 'python3-simplejson ', 'python3-sphinx', 'python3-sqlalchemy ', 'python3-ujson ', 'build-essential'] 145s autopkgtest: DBG: install-deps: satisfying python3-jsonpickle, python-jsonpickle-doc, pybuild-plugin-autopkgtest, debhelper-compat (= 13), dh-sequence-python3, dh-sequence-sphinxdoc, pybuild-plugin-pyproject, python3-all, python3-bson , python3-ecdsa , python3-feedparser , python3-gmpy2 , python3-numpy , python3-pandas , python3-pytest , python3-setuptools, python3-setuptools-scm, python3-sklearn , python3-simplejson , python3-sphinx, python3-sqlalchemy , python3-ujson , build-essential 145s autopkgtest: DBG: can use apt-get on testbed: True 145s 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-jsonpickle, python-jsonpickle-doc, pybuild-plugin-autopkgtest, debhelper-compat (= 13), dh-sequence-python3, dh-sequence-sphinxdoc, pybuild-plugin-pyproject, python3-all, python3-bson , python3-ecdsa , python3-feedparser , python3-gmpy2 , python3-numpy , python3-pandas , python3-pytest , python3-setuptools, python3-setuptools-scm, python3-sklearn , python3-simplejson , python3-sphinx, python3-sqlalchemy , python3-ujson , build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 145s Reading package lists... 145s Building dependency tree... 145s Reading state information... 146s Starting pkgProblemResolver with broken count: 0 146s Starting 2 pkgProblemResolver with broken count: 0 146s Done 146s The following NEW packages will be installed: 146s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 146s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 146s dh-python dh-strip-nondeterminism docutils-common dwz g++ g++-14 146s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 146s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 146s libblas3 libcc1-0 libdebhelper-perl libdouble-conversion3 146s libfile-stripnondeterminism-perl libgcc-14-dev libgfortran5 libgomp1 146s libisl23 libitm1 libjs-jquery libjs-sphinxdoc libjs-underscore libjson-perl 146s liblapack3 liblbfgsb0 libmpc3 libnsl2 libpython3.12-minimal 146s libpython3.12-stdlib libstdc++-14-dev libtool libubsan1 m4 po-debconf 146s pybuild-plugin-autopkgtest pybuild-plugin-pyproject python-gmpy2-common 146s python-jsonpickle-doc python3-alabaster python3-all python3-bson 146s python3-build python3-dateutil python3-decorator python3-defusedxml 146s python3-docutils python3-ecdsa python3-feedparser python3-gmpy2 146s python3-greenlet python3-imagesize python3-iniconfig python3-installer 146s python3-joblib python3-jsonpickle python3-numpy python3-packaging 146s python3-pandas python3-pandas-lib python3-pluggy python3-pyproject-hooks 146s python3-pytest python3-pytz python3-roman python3-scipy 146s python3-setuptools-scm python3-sgmllib3k python3-simplejson python3-sklearn 146s python3-sklearn-lib python3-snowballstemmer python3-sphinx 146s python3-sqlalchemy python3-threadpoolctl python3-toml python3-tz 146s python3-ujson python3-wheel python3.12 python3.12-minimal sgml-base 146s sphinx-common xml-core 146s 0 upgraded, 102 newly installed, 0 to remove and 0 not upgraded. 146s Need to get 115 MB of archives. 146s After this operation, 498 MB of additional disk space will be used. 146s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 147s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 147s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 149s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 149s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 149s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 149s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 149s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 149s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 151s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 151s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 151s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 151s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 151s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 151s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 151s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 151s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 151s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 151s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 151s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 151s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 151s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 151s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 151s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 151s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 151s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 151s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 151s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 151s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 151s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 151s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 151s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 151s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 151s Get:54 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 151s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 151s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 151s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 151s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-autopkgtest all 6.20250108 [1744 B] 151s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 151s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyproject-hooks all 1.2.0-1 [10.2 kB] 151s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-toml all 0.10.2-1 [16.5 kB] 151s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 151s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-build all 1.2.2-1 [31.0 kB] 151s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-installer all 0.7.0+dfsg1-3 [17.4 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x pybuild-plugin-pyproject all 6.20250108 [1726 B] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python-gmpy2-common all 2.2.1-2build1 [32.8 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 151s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-bson all 4.10.1-5 [42.8 kB] 151s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 151s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 151s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 151s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 151s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 151s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ecdsa all 0.19.0-2 [120 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sgmllib3k all 1.0.0-5 [8722 B] 151s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-feedparser all 6.0.11-2 [45.2 kB] 151s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-gmpy2 s390x 2.2.1-2build1 [214 kB] 151s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-joblib all 1.4.2-2 [205 kB] 151s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jsonpickle all 4.0.1+dfsg-1 [39.9 kB] 151s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 151s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 151s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 151s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandas-lib s390x 2.2.3+dfsg-8 [8022 kB] 152s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandas all 2.2.3+dfsg-8 [3112 kB] 152s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 152s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 152s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-setuptools-scm all 8.1.0-1 [32.2 kB] 152s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x python3-simplejson s390x 3.19.3-1build1 [55.6 kB] 152s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 152s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-threadpoolctl all 3.1.0-1 [21.3 kB] 152s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sklearn-lib s390x 1.4.2+dfsg-7build1 [6976 kB] 153s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sklearn all 1.4.2+dfsg-7build1 [2258 kB] 153s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 153s Get:96 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 153s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 153s Get:98 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 153s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB] 153s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy all 2.0.38+ds1-0ubuntu1 [1215 kB] 153s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ujson s390x 5.10.0-1build1 [27.2 kB] 153s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x python-jsonpickle-doc all 4.0.1+dfsg-1 [59.2 kB] 154s Fetched 115 MB in 7s (15.8 MB/s) 154s Selecting previously unselected package libpython3.12-minimal:s390x. 154s (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.) 154s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 154s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 154s Selecting previously unselected package python3.12-minimal. 154s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 154s Unpacking python3.12-minimal (3.12.9-1) ... 154s Selecting previously unselected package sgml-base. 154s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 154s Unpacking sgml-base (1.31) ... 154s Selecting previously unselected package libnsl2:s390x. 154s Preparing to unpack .../003-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 .../004-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 .../005-python3.12_3.12.9-1_s390x.deb ... 154s Unpacking python3.12 (3.12.9-1) ... 154s Selecting previously unselected package m4. 154s Preparing to unpack .../006-m4_1.4.19-5_s390x.deb ... 154s Unpacking m4 (1.4.19-5) ... 154s Selecting previously unselected package autoconf. 154s Preparing to unpack .../007-autoconf_2.72-3_all.deb ... 154s Unpacking autoconf (2.72-3) ... 154s Selecting previously unselected package autotools-dev. 154s Preparing to unpack .../008-autotools-dev_20220109.1_all.deb ... 154s Unpacking autotools-dev (20220109.1) ... 154s Selecting previously unselected package automake. 154s Preparing to unpack .../009-automake_1%3a1.17-3_all.deb ... 154s Unpacking automake (1:1.17-3) ... 154s Selecting previously unselected package autopoint. 154s Preparing to unpack .../010-autopoint_0.23.1-1_all.deb ... 154s Unpacking autopoint (0.23.1-1) ... 154s Selecting previously unselected package libisl23:s390x. 154s Preparing to unpack .../011-libisl23_0.27-1_s390x.deb ... 154s Unpacking libisl23:s390x (0.27-1) ... 154s Selecting previously unselected package libmpc3:s390x. 154s Preparing to unpack .../012-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 .../013-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 .../014-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 .../015-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 .../016-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 .../017-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 .../018-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libitm1:s390x. 154s Preparing to unpack .../019-libitm1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libasan8:s390x. 154s Preparing to unpack .../020-libasan8_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libubsan1:s390x. 154s Preparing to unpack .../021-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 .../022-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 .../023-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 .../024-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 .../025-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 .../026-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 .../027-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package g++-14-s390x-linux-gnu. 155s Preparing to unpack .../028-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package g++-14. 155s Preparing to unpack .../029-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 .../030-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 .../031-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 .../032-build-essential_12.10ubuntu1_s390x.deb ... 155s Unpacking build-essential (12.10ubuntu1) ... 155s Selecting previously unselected package libdebhelper-perl. 155s Preparing to unpack .../033-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 155s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 155s Selecting previously unselected package libtool. 155s Preparing to unpack .../034-libtool_2.5.4-3build1_all.deb ... 155s Unpacking libtool (2.5.4-3build1) ... 155s Selecting previously unselected package dh-autoreconf. 155s Preparing to unpack .../035-dh-autoreconf_20_all.deb ... 155s Unpacking dh-autoreconf (20) ... 155s Selecting previously unselected package libarchive-zip-perl. 155s Preparing to unpack .../036-libarchive-zip-perl_1.68-1_all.deb ... 155s Unpacking libarchive-zip-perl (1.68-1) ... 155s Selecting previously unselected package libfile-stripnondeterminism-perl. 155s Preparing to unpack .../037-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 155s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 155s Selecting previously unselected package dh-strip-nondeterminism. 155s Preparing to unpack .../038-dh-strip-nondeterminism_1.14.1-2_all.deb ... 155s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 155s Selecting previously unselected package debugedit. 155s Preparing to unpack .../039-debugedit_1%3a5.1-2_s390x.deb ... 155s Unpacking debugedit (1:5.1-2) ... 155s Selecting previously unselected package dwz. 155s Preparing to unpack .../040-dwz_0.15-1build6_s390x.deb ... 155s Unpacking dwz (0.15-1build6) ... 155s Selecting previously unselected package gettext. 155s Preparing to unpack .../041-gettext_0.23.1-1_s390x.deb ... 155s Unpacking gettext (0.23.1-1) ... 155s Selecting previously unselected package intltool-debian. 155s Preparing to unpack .../042-intltool-debian_0.35.0+20060710.6_all.deb ... 155s Unpacking intltool-debian (0.35.0+20060710.6) ... 155s Selecting previously unselected package po-debconf. 155s Preparing to unpack .../043-po-debconf_1.0.21+nmu1_all.deb ... 155s Unpacking po-debconf (1.0.21+nmu1) ... 155s Selecting previously unselected package debhelper. 155s Preparing to unpack .../044-debhelper_13.24.1ubuntu2_all.deb ... 155s Unpacking debhelper (13.24.1ubuntu2) ... 155s Selecting previously unselected package dh-python. 155s Preparing to unpack .../045-dh-python_6.20250108_all.deb ... 155s Unpacking dh-python (6.20250108) ... 155s Selecting previously unselected package xml-core. 155s Preparing to unpack .../046-xml-core_0.19_all.deb ... 155s Unpacking xml-core (0.19) ... 155s Selecting previously unselected package docutils-common. 155s Preparing to unpack .../047-docutils-common_0.21.2+dfsg-2_all.deb ... 155s Unpacking docutils-common (0.21.2+dfsg-2) ... 155s Selecting previously unselected package libblas3:s390x. 155s Preparing to unpack .../048-libblas3_3.12.1-2_s390x.deb ... 155s Unpacking libblas3:s390x (3.12.1-2) ... 155s Selecting previously unselected package libdouble-conversion3:s390x. 155s Preparing to unpack .../049-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 155s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 155s Selecting previously unselected package libgfortran5:s390x. 155s Preparing to unpack .../050-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 155s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 155s Selecting previously unselected package libjs-jquery. 155s Preparing to unpack .../051-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 .../052-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 .../053-libjs-sphinxdoc_8.1.3-5_all.deb ... 155s Unpacking libjs-sphinxdoc (8.1.3-5) ... 155s Selecting previously unselected package libjson-perl. 155s Preparing to unpack .../054-libjson-perl_4.10000-1_all.deb ... 155s Unpacking libjson-perl (4.10000-1) ... 155s Selecting previously unselected package liblapack3:s390x. 155s Preparing to unpack .../055-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 .../056-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 155s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 155s Selecting previously unselected package pybuild-plugin-autopkgtest. 155s Preparing to unpack .../057-pybuild-plugin-autopkgtest_6.20250108_all.deb ... 155s Unpacking pybuild-plugin-autopkgtest (6.20250108) ... 155s Selecting previously unselected package python3-packaging. 155s Preparing to unpack .../058-python3-packaging_24.2-1_all.deb ... 155s Unpacking python3-packaging (24.2-1) ... 155s Selecting previously unselected package python3-pyproject-hooks. 155s Preparing to unpack .../059-python3-pyproject-hooks_1.2.0-1_all.deb ... 155s Unpacking python3-pyproject-hooks (1.2.0-1) ... 155s Selecting previously unselected package python3-toml. 155s Preparing to unpack .../060-python3-toml_0.10.2-1_all.deb ... 155s Unpacking python3-toml (0.10.2-1) ... 155s Selecting previously unselected package python3-wheel. 155s Preparing to unpack .../061-python3-wheel_0.45.1-1_all.deb ... 155s Unpacking python3-wheel (0.45.1-1) ... 155s Selecting previously unselected package python3-build. 155s Preparing to unpack .../062-python3-build_1.2.2-1_all.deb ... 155s Unpacking python3-build (1.2.2-1) ... 155s Selecting previously unselected package python3-installer. 155s Preparing to unpack .../063-python3-installer_0.7.0+dfsg1-3_all.deb ... 155s Unpacking python3-installer (0.7.0+dfsg1-3) ... 155s Selecting previously unselected package pybuild-plugin-pyproject. 155s Preparing to unpack .../064-pybuild-plugin-pyproject_6.20250108_all.deb ... 155s Unpacking pybuild-plugin-pyproject (6.20250108) ... 155s Selecting previously unselected package python-gmpy2-common. 155s Preparing to unpack .../065-python-gmpy2-common_2.2.1-2build1_all.deb ... 155s Unpacking python-gmpy2-common (2.2.1-2build1) ... 155s Selecting previously unselected package python3-all. 155s Preparing to unpack .../066-python3-all_3.13.1-1~exp2_s390x.deb ... 155s Unpacking python3-all (3.13.1-1~exp2) ... 155s Selecting previously unselected package python3-bson. 155s Preparing to unpack .../067-python3-bson_4.10.1-5_all.deb ... 155s Unpacking python3-bson (4.10.1-5) ... 155s Selecting previously unselected package python3-dateutil. 155s Preparing to unpack .../068-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 .../069-python3-decorator_5.1.1-5_all.deb ... 155s Unpacking python3-decorator (5.1.1-5) ... 155s Selecting previously unselected package python3-defusedxml. 155s Preparing to unpack .../070-python3-defusedxml_0.7.1-3_all.deb ... 155s Unpacking python3-defusedxml (0.7.1-3) ... 155s Selecting previously unselected package python3-roman. 155s Preparing to unpack .../071-python3-roman_5.0-1_all.deb ... 155s Unpacking python3-roman (5.0-1) ... 155s Selecting previously unselected package python3-docutils. 155s Preparing to unpack .../072-python3-docutils_0.21.2+dfsg-2_all.deb ... 155s Unpacking python3-docutils (0.21.2+dfsg-2) ... 155s Selecting previously unselected package python3-ecdsa. 155s Preparing to unpack .../073-python3-ecdsa_0.19.0-2_all.deb ... 155s Unpacking python3-ecdsa (0.19.0-2) ... 155s Selecting previously unselected package python3-sgmllib3k. 155s Preparing to unpack .../074-python3-sgmllib3k_1.0.0-5_all.deb ... 155s Unpacking python3-sgmllib3k (1.0.0-5) ... 155s Selecting previously unselected package python3-feedparser. 155s Preparing to unpack .../075-python3-feedparser_6.0.11-2_all.deb ... 155s Unpacking python3-feedparser (6.0.11-2) ... 155s Selecting previously unselected package python3-gmpy2. 155s Preparing to unpack .../076-python3-gmpy2_2.2.1-2build1_s390x.deb ... 155s Unpacking python3-gmpy2 (2.2.1-2build1) ... 155s Selecting previously unselected package python3-imagesize. 155s Preparing to unpack .../077-python3-imagesize_1.4.1-1_all.deb ... 155s Unpacking python3-imagesize (1.4.1-1) ... 155s Selecting previously unselected package python3-iniconfig. 155s Preparing to unpack .../078-python3-iniconfig_1.1.1-2_all.deb ... 155s Unpacking python3-iniconfig (1.1.1-2) ... 155s Selecting previously unselected package python3-joblib. 155s Preparing to unpack .../079-python3-joblib_1.4.2-2_all.deb ... 155s Unpacking python3-joblib (1.4.2-2) ... 155s Selecting previously unselected package python3-jsonpickle. 155s Preparing to unpack .../080-python3-jsonpickle_4.0.1+dfsg-1_all.deb ... 155s Unpacking python3-jsonpickle (4.0.1+dfsg-1) ... 155s Selecting previously unselected package python3-numpy. 155s Preparing to unpack .../081-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 155s Unpacking python3-numpy (1:1.26.4+ds-13) ... 156s Selecting previously unselected package python3-pytz. 156s Preparing to unpack .../082-python3-pytz_2025.1-3_all.deb ... 156s Unpacking python3-pytz (2025.1-3) ... 156s Selecting previously unselected package python3-tz. 156s Preparing to unpack .../083-python3-tz_2025.1-3_all.deb ... 156s Unpacking python3-tz (2025.1-3) ... 156s Selecting previously unselected package python3-pandas-lib:s390x. 156s Preparing to unpack .../084-python3-pandas-lib_2.2.3+dfsg-8_s390x.deb ... 156s Unpacking python3-pandas-lib:s390x (2.2.3+dfsg-8) ... 156s Selecting previously unselected package python3-pandas. 156s Preparing to unpack .../085-python3-pandas_2.2.3+dfsg-8_all.deb ... 156s Unpacking python3-pandas (2.2.3+dfsg-8) ... 156s Selecting previously unselected package python3-pluggy. 156s Preparing to unpack .../086-python3-pluggy_1.5.0-1_all.deb ... 156s Unpacking python3-pluggy (1.5.0-1) ... 156s Selecting previously unselected package python3-pytest. 156s Preparing to unpack .../087-python3-pytest_8.3.4-1_all.deb ... 156s Unpacking python3-pytest (8.3.4-1) ... 156s Selecting previously unselected package python3-setuptools-scm. 156s Preparing to unpack .../088-python3-setuptools-scm_8.1.0-1_all.deb ... 156s Unpacking python3-setuptools-scm (8.1.0-1) ... 156s Selecting previously unselected package python3-simplejson. 156s Preparing to unpack .../089-python3-simplejson_3.19.3-1build1_s390x.deb ... 156s Unpacking python3-simplejson (3.19.3-1build1) ... 156s Selecting previously unselected package python3-scipy. 156s Preparing to unpack .../090-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 156s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 156s Selecting previously unselected package python3-threadpoolctl. 156s Preparing to unpack .../091-python3-threadpoolctl_3.1.0-1_all.deb ... 156s Unpacking python3-threadpoolctl (3.1.0-1) ... 156s Selecting previously unselected package python3-sklearn-lib:s390x. 156s Preparing to unpack .../092-python3-sklearn-lib_1.4.2+dfsg-7build1_s390x.deb ... 156s Unpacking python3-sklearn-lib:s390x (1.4.2+dfsg-7build1) ... 157s Selecting previously unselected package python3-sklearn. 157s Preparing to unpack .../093-python3-sklearn_1.4.2+dfsg-7build1_all.deb ... 157s Unpacking python3-sklearn (1.4.2+dfsg-7build1) ... 157s Selecting previously unselected package python3-snowballstemmer. 157s Preparing to unpack .../094-python3-snowballstemmer_2.2.0-4build1_all.deb ... 157s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 157s Selecting previously unselected package sphinx-common. 157s Preparing to unpack .../095-sphinx-common_8.1.3-5_all.deb ... 157s Unpacking sphinx-common (8.1.3-5) ... 157s Selecting previously unselected package python3-alabaster. 157s Preparing to unpack .../096-python3-alabaster_0.7.16-0.1_all.deb ... 157s Unpacking python3-alabaster (0.7.16-0.1) ... 157s Selecting previously unselected package python3-sphinx. 157s Preparing to unpack .../097-python3-sphinx_8.1.3-5_all.deb ... 157s Unpacking python3-sphinx (8.1.3-5) ... 157s Selecting previously unselected package python3-greenlet. 157s Preparing to unpack .../098-python3-greenlet_3.1.0-1_s390x.deb ... 157s Unpacking python3-greenlet (3.1.0-1) ... 157s Selecting previously unselected package python3-sqlalchemy. 157s Preparing to unpack .../099-python3-sqlalchemy_2.0.38+ds1-0ubuntu1_all.deb ... 157s Unpacking python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 157s Selecting previously unselected package python3-ujson:s390x. 157s Preparing to unpack .../100-python3-ujson_5.10.0-1build1_s390x.deb ... 157s Unpacking python3-ujson:s390x (5.10.0-1build1) ... 157s Selecting previously unselected package python-jsonpickle-doc. 157s Preparing to unpack .../101-python-jsonpickle-doc_4.0.1+dfsg-1_all.deb ... 157s Unpacking python-jsonpickle-doc (4.0.1+dfsg-1) ... 157s Setting up dh-python (6.20250108) ... 157s Setting up python3-iniconfig (1.1.1-2) ... 157s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 157s Setting up python3-jsonpickle (4.0.1+dfsg-1) ... 157s Setting up python3-joblib (1.4.2-2) ... 158s Setting up python-gmpy2-common (2.2.1-2build1) ... 158s Setting up python3-defusedxml (0.7.1-3) ... 158s Setting up libarchive-zip-perl (1.68-1) ... 158s Setting up python3-alabaster (0.7.16-0.1) ... 158s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 158s Setting up python3-threadpoolctl (3.1.0-1) ... 158s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 158s Setting up m4 (1.4.19-5) ... 158s Setting up python3-pytz (2025.1-3) ... 158s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 158s Setting up python3-wheel (0.45.1-1) ... 158s Setting up python3-ujson:s390x (5.10.0-1build1) ... 158s Setting up python3-tz (2025.1-3) ... 158s Setting up python3-sgmllib3k (1.0.0-5) ... 159s Setting up python3-bson (4.10.1-5) ... 159s Setting up python3-simplejson (3.19.3-1build1) ... 159s Setting up python3-ecdsa (0.19.0-2) ... 159s Setting up python3-roman (5.0-1) ... 159s Setting up python3-decorator (5.1.1-5) ... 159s Setting up autotools-dev (20220109.1) ... 159s Setting up libblas3:s390x (3.12.1-2) ... 159s 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 159s Setting up python3-packaging (24.2-1) ... 160s Setting up python3-pyproject-hooks (1.2.0-1) ... 160s Setting up python3-snowballstemmer (2.2.0-4build1) ... 160s Setting up python3-greenlet (3.1.0-1) ... 160s Setting up libmpc3:s390x (1.3.1-1build2) ... 160s Setting up autopoint (0.23.1-1) ... 160s Setting up python3-toml (0.10.2-1) ... 161s Setting up python3-installer (0.7.0+dfsg1-3) ... 161s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 161s Setting up autoconf (2.72-3) ... 161s Setting up python3-pluggy (1.5.0-1) ... 161s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 161s Setting up dwz (0.15-1build6) ... 161s Setting up python3-gmpy2 (2.2.1-2build1) ... 161s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 161s Setting up libjson-perl (4.10000-1) ... 161s Setting up libnsl2:s390x (1.3.0-3build3) ... 161s Setting up debugedit (1:5.1-2) ... 161s Setting up python3-dateutil (2.9.0-3) ... 161s Setting up sgml-base (1.31) ... 161s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 161s Setting up libisl23:s390x (0.27-1) ... 161s Setting up python3-build (1.2.2-1) ... 161s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 161s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 161s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 161s Setting up python3-imagesize (1.4.1-1) ... 161s Setting up automake (1:1.17-3) ... 161s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 161s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 161s Setting up python3-feedparser (6.0.11-2) ... 162s Setting up python3.12-minimal (3.12.9-1) ... 162s Setting up liblapack3:s390x (3.12.1-2) ... 162s 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 162s Setting up gettext (0.23.1-1) ... 162s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 162s Setting up pybuild-plugin-pyproject (6.20250108) ... 162s Setting up python3-pytest (8.3.4-1) ... 163s Setting up python3.12 (3.12.9-1) ... 164s Setting up python3-all (3.13.1-1~exp2) ... 164s Setting up python3-setuptools-scm (8.1.0-1) ... 164s Setting up python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 166s Setting up intltool-debian (0.35.0+20060710.6) ... 166s Setting up python3-numpy (1:1.26.4+ds-13) ... 170s Setting up libjs-sphinxdoc (8.1.3-5) ... 170s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 170s Setting up cpp-14 (14.2.0-17ubuntu1) ... 170s Setting up dh-strip-nondeterminism (1.14.1-2) ... 170s Setting up xml-core (0.19) ... 170s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 170s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 170s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 170s Setting up python-jsonpickle-doc (4.0.1+dfsg-1) ... 170s Setting up python3-scipy (1.14.1-4ubuntu1) ... 175s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 175s Setting up po-debconf (1.0.21+nmu1) ... 175s Setting up python3-pandas-lib:s390x (2.2.3+dfsg-8) ... 175s Setting up python3-sklearn-lib:s390x (1.4.2+dfsg-7build1) ... 175s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 175s Setting up python3-pandas (2.2.3+dfsg-8) ... 184s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 184s Setting up sphinx-common (8.1.3-5) ... 184s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 184s Setting up python3-sklearn (1.4.2+dfsg-7build1) ... 188s Setting up cpp (4:14.2.0-1ubuntu1) ... 188s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 188s Setting up gcc-14 (14.2.0-17ubuntu1) ... 188s Setting up g++-14 (14.2.0-17ubuntu1) ... 188s Setting up libtool (2.5.4-3build1) ... 188s Setting up gcc (4:14.2.0-1ubuntu1) ... 188s Setting up dh-autoreconf (20) ... 188s Setting up g++ (4:14.2.0-1ubuntu1) ... 188s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 188s Setting up build-essential (12.10ubuntu1) ... 188s Setting up debhelper (13.24.1ubuntu2) ... 188s Setting up pybuild-plugin-autopkgtest (6.20250108) ... 188s Processing triggers for install-info (7.1.1-1) ... 188s Processing triggers for libc-bin (2.40-4ubuntu1) ... 188s Processing triggers for systemd (257.2-3ubuntu1) ... 188s Processing triggers for man-db (2.13.0-1) ... 189s Processing triggers for sgml-base (1.31) ... 189s Setting up docutils-common (0.21.2+dfsg-2) ... 189s Processing triggers for sgml-base (1.31) ... 189s Setting up python3-docutils (0.21.2+dfsg-2) ... 190s Setting up python3-sphinx (8.1.3-5) ... 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-jsonpickle'], kind short, sout pipe, serr pipe, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-jsonpickle-doc'], kind short, sout pipe, serr pipe, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-packages.all /tmp/autopkgtest-work.rbol1xbw/out/pybuild-autopkgtest-packages.all 192s autopkgtest: DBG: got reply from testbed: ok 192s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.c3yVOP/build.nMu/src'], kind short, sout raw, serr raw, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.c3yVOP/build.nMu/src already exists 192s autopkgtest [12:15:12]: test pybuild-autopkgtest: pybuild-autopkgtest 192s autopkgtest [12:15:12]: test pybuild-autopkgtest: [----------------------- 192s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.c3yVOP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-artifacts --chdir=/tmp/autopkgtest.c3yVOP/build.nMu/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-stderr --stdout=/tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-stdout --tmp=/tmp/autopkgtest.c3yVOP/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec pybuild-autopkgtest'], kind test, sout raw, serr raw, env [] 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-artifacts 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: changing to directory: /tmp/autopkgtest.c3yVOP/build.nMu/src 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: setting environment: LANG=C.UTF-8 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LANGUAGE 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_ADDRESS 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_ALL 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_COLLATE 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_CTYPE 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_MEASUREMENT 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_MESSAGES 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_MONETARY 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_NAME 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_NUMERIC 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_PAPER 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_TELEPHONE 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: unsetting environment: LC_TIME 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: pretending to be a login shell 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: will write standard error to /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-stderr 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: will write stdout to /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-stdout 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.c3yVOP/autopkgtest_tmp 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: command to run: bash -ec pybuild-autopkgtest 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: copying /tmp/tmp.ckef035PiV/out to stdout and file: /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-stdout 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: copying /tmp/tmp.ckef035PiV/err to standard error and file: /tmp/autopkgtest.c3yVOP/pybuild-autopkgtest-stdout 192s /tmp/autopkgtest.c3yVOP/wrapper.sh: writing script pid 2801 to /tmp/autopkgtest_script_pid 192s pybuild-autopkgtest 192s I: pybuild base:311: cd /tmp/autopkgtest.c3yVOP/autopkgtest_tmp/build; python3.12 -m pytest tests 194s ============================= test session starts ============================== 194s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 194s rootdir: /tmp/autopkgtest.c3yVOP/autopkgtest_tmp/build 194s configfile: pytest.ini 194s plugins: typeguard-4.4.1 194s collected 373 items 194s 194s tests/backend_test.py ................ [ 4%] 194s tests/bson_test.py ...... [ 5%] 194s tests/collections_test.py ...... [ 7%] 194s tests/datetime_test.py ................. [ 12%] 194s tests/document_test.py . [ 12%] 194s tests/ecdsa_test.py s [ 12%] 194s tests/feedparser_test.py . [ 12%] 194s tests/handler_test.py ...... [ 14%] 194s tests/jsonpickle_test.py ............................................... [ 27%] 194s ........................................................................ [ 46%] 194s ..................................... [ 56%] 194s tests/numpy_test.py ..................... [ 61%] 194s tests/object_test.py ................................................... [ 75%] 194s .................... [ 80%] 195s tests/pandas_test.py .......................... [ 87%] 195s tests/sklearn_test.py .. [ 88%] 195s tests/sqlalchemy_test.py ... [ 89%] 195s tests/stdlib_test.py ... [ 90%] 195s tests/util_test.py .................................. [ 99%] 195s tests/wizard_test.py .. [ 99%] 195s tests/zoneinfo_test.py . [100%] 195s 195s =============================== warnings summary =============================== 195s tests/numpy_test.py::test_ndarray_roundtrip 195s tests/sklearn_test.py::test_decision_tree 195s /usr/lib/python3/dist-packages/jsonpickle/ext/numpy.py:303: UserWarning: ndarray is defined by reference to an object we do not know how to serialize. A deep copy is serialized instead, breaking memory aliasing. 195s warnings.warn(msg) 195s 195s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 195s ================== 372 passed, 1 skipped, 2 warnings in 2.01s ================== 195s I: pybuild base:311: cd /tmp/autopkgtest.c3yVOP/autopkgtest_tmp/build; python3.13 -m pytest tests 196s ============================= test session starts ============================== 196s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 196s rootdir: /tmp/autopkgtest.c3yVOP/autopkgtest_tmp/build 196s configfile: pytest.ini 196s plugins: typeguard-4.4.1 196s collected 373 items 196s 196s tests/backend_test.py ................ [ 4%] 196s tests/bson_test.py ...... [ 5%] 196s tests/collections_test.py ...... [ 7%] 196s tests/datetime_test.py ................. [ 12%] 196s tests/document_test.py . [ 12%] 196s tests/ecdsa_test.py s [ 12%] 196s tests/feedparser_test.py . [ 12%] 196s tests/handler_test.py ...... [ 14%] 196s tests/jsonpickle_test.py ............................................... [ 27%] 196s ........................................................................ [ 46%] 196s ..................................... [ 56%] 196s tests/numpy_test.py ..................... [ 61%] 196s tests/object_test.py ................................................... [ 75%] 196s .................... [ 80%] 196s tests/pandas_test.py .......................... [ 87%] 196s tests/sklearn_test.py .. [ 88%] 196s tests/sqlalchemy_test.py ... [ 89%] 196s tests/stdlib_test.py ... [ 90%] 196s tests/util_test.py .................................. [ 99%] 196s tests/wizard_test.py .. [ 99%] 196s tests/zoneinfo_test.py . [100%] 196s 196s =============================== warnings summary =============================== 196s tests/feedparser_test.py::FeedParserTestCase::test 196s tests/feedparser_test.py::FeedParserTestCase::test 196s tests/feedparser_test.py::FeedParserTestCase::test 196s tests/feedparser_test.py::FeedParserTestCase::test 196s tests/feedparser_test.py::FeedParserTestCase::test 196s tests/feedparser_test.py::FeedParserTestCase::test 196s /usr/lib/python3/dist-packages/feedparser/html.py:152: DeprecationWarning: 'count' is passed as positional argument 196s data = re.sub(r'