0s autopkgtest: DBG: testbed init 0s autopkgtest [12:24:45]: starting date and time: 2025-02-19 12:24:45+0000 0s autopkgtest [12:24:45]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:24:45]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.f1uw2_dg/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade psd-tools --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-27.secgroup --name adt-plucky-s390x-psd-tools-20250219-122444-juju-7f2275-prod-proposed-migration-environment-15-e67712ec-9dd1-4e2e-b969-cdaab458662c --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 120s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.uTBVaO 120s autopkgtest: DBG: sending command to testbed: print-execute-command 120s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.cewp90v8/runcmd 120s autopkgtest: DBG: sending command to testbed: capabilities 120s autopkgtest: DBG: got reply from testbed: ok revert revert-full-system reboot isolation-machine suggested-normal-user=ubuntu root-on-testbed 120s autopkgtest: DBG: testbed capabilities: ['revert', 'revert-full-system', 'reboot', 'isolation-machine', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 120s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.uTBVaO'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.uTBVaO/wrapper.sh 120s autopkgtest: DBG: got reply from testbed: ok 120s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.uTBVaO/wrapper.sh'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 124s autopkgtest [12:26:45]: testbed dpkg architecture: s390x 124s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [12:26:46]: testbed apt version: 2.9.30 124s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed has eatmydata 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [12:26:46]: @@@@@@@@@@@@@@@@@@@@ test bed setup 124s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [12:26:46]: testbed release detected to be: None 124s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: adding APT source: Types: deb deb-src 124s URIs: http://ftpmaster.internal/ubuntu/ 124s Suites: plucky-proposed 124s Components: main restricted universe multiverse 124s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 124s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 124s Package: * 124s Pin: release plucky-proposed 124s Pin-Priority: 500 124s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [12:26:47]: updating testbed package index (apt update) 124s 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'] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 124s Package: * 124s Pin: release plucky-proposed 124s Pin-Priority: 100 124s 124s Package: src:sphinx:any 124s Pin: release plucky-proposed 124s Pin-Priority: 995 124s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s 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.uTBVaO/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 124s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 124s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 124s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 124s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 124s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 124s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 124s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 124s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 124s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 124s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 124s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 124s Fetched 1700 kB in 1s (1801 kB/s) 124s Reading package lists... 124s autopkgtest: DBG: testbed command exited with code 0 124s 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'] 124s + lsb_release --codename --short 124s + RELEASE=plucky 124s + cat 124s + [ plucky != trusty ] 124s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 124s Reading package lists... 124s Building dependency tree... 124s Reading state information... 124s Calculating upgrade... 124s The following packages were automatically installed and are no longer required: 124s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 124s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 124s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 124s linux-tools-6.11.0-8-generic 124s Use 'sudo apt autoremove' to remove them. 124s The following packages will be upgraded: 124s iproute2 liblsof0 libp11-kit0 lsof 125s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 125s Need to get 1791 kB of archives. 125s After this operation, 17.4 kB of additional disk space will be used. 125s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 125s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 125s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 125s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 125s Preconfiguring packages ... 125s Fetched 1791 kB in 1s (2562 kB/s) 126s (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.) 126s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 126s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 126s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 126s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 126s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 126s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 126s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 126s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 126s Setting up liblsof0 (4.99.4+dfsg-1) ... 126s Setting up iproute2 (6.13.0-1ubuntu1) ... 126s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 126s Setting up lsof (4.99.4+dfsg-1) ... 126s Processing triggers for man-db (2.13.0-1) ... 126s Processing triggers for libc-bin (2.40-4ubuntu1) ... 127s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 127s + /usr/lib/apt/apt-helper analyze-pattern ?true 127s + uname -r 127s + sed s/\./\\./g 127s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 127s + apt list ?obsolete 127s + tail -n+2 127s + cut -d/ -f1 127s + grep -v ^linux-.*6\.12\.0-15-generic.* 127s + true 127s + obsolete_pkgs= 127s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 127s Reading package lists... 127s Building dependency tree... 127s Reading state information... 127s The following packages will be REMOVED: 127s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 127s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 127s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 127s linux-tools-6.11.0-8-generic* 127s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 127s After this operation, 167 MB disk space will be freed. 127s (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.) 127s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 127s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 127s Removing libpython3.12t64:s390x (3.12.9-1) ... 127s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 127s Removing libnsl2:s390x (1.3.0-3build3) ... 127s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 127s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 128s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 129s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 129s Processing triggers for libc-bin (2.40-4ubuntu1) ... 129s (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.) 129s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 129s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 129s + grep -q trusty /etc/lsb-release 129s + [ ! -d /usr/share/doc/unattended-upgrades ] 129s + [ ! -d /usr/share/doc/lxd ] 129s + [ ! -d /usr/share/doc/lxd-client ] 129s + [ ! -d /usr/share/doc/snapd ] 129s + type iptables 129s + cat 129s + chmod 755 /etc/rc.local 129s + . /etc/rc.local 129s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 129s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 129s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 129s + uname -m 129s + [ s390x = ppc64le ] 129s + [ -d /run/systemd/system ] 129s + systemd-detect-virt --quiet --vm 129s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 129s + cat 129s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 129s + echo COMPRESS=lz4 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest [12:26:54]: upgrading testbed (apt dist-upgrade and autopurge) 129s 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'] 129s Reading package lists... 129s Building dependency tree... 129s Reading state information... 129s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 129s Starting 2 pkgProblemResolver with broken count: 0 129s Done 130s Entering ResolveByKeep 130s 130s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 130s autopkgtest: DBG: testbed command exited with code 0 130s 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'] 130s Reading package lists... 131s Building dependency tree... 131s Reading state information... 131s Starting pkgProblemResolver with broken count: 0 131s Starting 2 pkgProblemResolver with broken count: 0 131s Done 131s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 131s autopkgtest: DBG: testbed command exited with code 0 131s 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.uTBVaO/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 1 131s autopkgtest [12:26:56]: rebooting testbed after setup commands that affected boot 131s autopkgtest: DBG: sending command to testbed: reboot 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.uTBVaO'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.uTBVaO/autopkgtest-reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.uTBVaO'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.uTBVaO/autopkgtest-reboot-prepare 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [12:27:19]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 154s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.uTBVaO/testbed-packages"], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/testbed-packages /tmp/autopkgtest-work.f1uw2_dg/out/testbed-packages 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.uTBVaO'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.uTBVaO/autopkgtest-reboot 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.uTBVaO'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.uTBVaO/autopkgtest-reboot-prepare 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.uTBVaO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: Binaries: initialising 156s autopkgtest [12:27:21]: @@@@@@@@@@@@@@@@@@@@ apt-source psd-tools 156s autopkgtest: DBG: blame += psd-tools 156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 156s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'psd-tools'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-psd-tools-doc$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-psd-tools-doc=1.9.34+dfsg.1-1build1'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-psd-tools$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-psd-tools=1.9.34+dfsg.1-1build1'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: install_deps: deps_new=[] 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s 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.uTBVaO/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source psd-tools=1.9.34+dfsg.1-1build1 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 psd-tools_*.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'] 158s + cd / 158s + mktemp -d /tmp/autopkgtest.uTBVaO/build.XXX 158s + builddir=/tmp/autopkgtest.uTBVaO/build.HMK 158s + cd /tmp/autopkgtest.uTBVaO/build.HMK 158s + apt-get source -d -q --only-source psd-tools=1.9.34+dfsg.1-1build1 159s + OUT=Reading package lists... 159s Need to get 1222 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (dsc) [2200 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (tar) [1208 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (diff) [12.1 kB] 159s Fetched 1222 kB in 1s (1738 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + + grep ^Get: 159s echo Reading package lists... 159s Need to get 1222 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (dsc) [2200 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (tar) [1208 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (diff) [12.1 kB] 159s Fetched 1222 kB in 1s (1738 kB/s) 159s Download complete and in download only mode 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (dsc) [2200 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (tar) [1208 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe psd-tools 1.9.34+dfsg.1-1build1 (diff) [12.1 kB] 159s + dpkg-source -x psd-tools_1.9.34+dfsg.1-1build1.dsc src 159s gpgv: Signature made Thu Nov 14 18:32:16 2024 UTC 159s gpgv: using RSA key 568BF22A66337CBFC9A6B9B72C83DBC8E9BD0E37 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./psd-tools_1.9.34+dfsg.1-1build1.dsc: no acceptable signature found 159s + chmod -R a+rX . 159s + cd src/. 159s + pwd 159s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [12:27:24]: testing package psd-tools version 1.9.34+dfsg.1-1build1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/ /tmp/autopkgtest-work.f1uw2_dg/out/pkg/debian/ 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: processing dependency python3-psd-tools 159s autopkgtest: DBG: marked alternatives ['python3-psd-tools'] as a synthesised dependency 159s autopkgtest: DBG: Test defined: name test-layer2-01 path debian/tests/test-layer2-01 command "None" restrictions [] features [] depends ['python3-psd-tools'] 159s autopkgtest: DBG: processing dependency python3-ipython 159s autopkgtest: DBG: processing dependency python3-pytest 159s autopkgtest: DBG: processing dependency python3-pytest-cov 159s autopkgtest: DBG: processing dependency @ 159s autopkgtest: DBG: synthesised dependency python3-psd-tools 159s autopkgtest: DBG: synthesised dependency python3-psd-tools-doc 159s autopkgtest: DBG: Test defined: name test-pytest path debian/tests/test-pytest command "None" restrictions [] features [] depends ['python3-ipython', 'python3-pytest', 'python3-pytest-cov', 'python3-psd-tools', 'python3-psd-tools-doc'] 159s autopkgtest [12:27:24]: build not needed 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/build.HMK/src/ /tmp/autopkgtest-work.f1uw2_dg/out/tests-tree/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency python3-psd-tools 160s autopkgtest: DBG: marked alternatives ['python3-psd-tools'] as a synthesised dependency 160s autopkgtest: DBG: Test defined: name test-layer2-01 path debian/tests/test-layer2-01 command "None" restrictions [] features [] depends ['python3-psd-tools'] 160s autopkgtest: DBG: processing dependency python3-ipython 160s autopkgtest: DBG: processing dependency python3-pytest 160s autopkgtest: DBG: processing dependency python3-pytest-cov 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency python3-psd-tools 160s autopkgtest: DBG: synthesised dependency python3-psd-tools-doc 160s autopkgtest: DBG: Test defined: name test-pytest path debian/tests/test-pytest command "None" restrictions [] features [] depends ['python3-ipython', 'python3-pytest', 'python3-pytest-cov', 'python3-psd-tools', 'python3-psd-tools-doc'] 160s autopkgtest [12:27:25]: test test-layer2-01: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-psd-tools'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['python3-psd-tools'] 160s autopkgtest: DBG: install-deps: satisfying python3-psd-tools 160s autopkgtest: DBG: can use apt-get on testbed: True 160s 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-psd-tools'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 161s Building dependency tree... 161s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s The following NEW packages will be installed: 161s blt fontconfig-config fonts-dejavu-core fonts-dejavu-mono fonts-lyx libblas3 161s libdeflate0 libfontconfig1 libfreetype6 libgfortran5 libgomp1 libgraphite2-3 161s libharfbuzz0b libimagequant0 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery 161s libjs-jquery-ui liblapack3 liblbfgsb0 liblcms2-2 libopenjp2-7 libqhull-r8.0 161s libraqm0 libsharpyuv0 libtcl8.6 libtiff6 libtk8.6 libwebp7 libwebpdemux2 161s libwebpmux3 libxft2 libxrender1 libxslt1.1 libxss1 python-matplotlib-data 161s python3-aggdraw python3-brotli python3-contourpy python3-cycler 161s python3-dateutil python3-decorator python3-docopt python3-fonttools 161s python3-fs python3-imageio python3-kiwisolver python3-lazy-loader 161s python3-lxml python3-lz4 python3-matplotlib python3-mpmath python3-networkx 161s python3-numpy python3-packaging python3-pil python3-pil.imagetk 161s python3-platformdirs python3-psd-tools python3-pytz python3-scipy 161s python3-skimage python3-skimage-lib python3-sympy python3-tifffile 161s python3-tk python3-tz python3-ufolib2 python3-unicodedata2 python3.12-tk 161s python3.13-tk tk8.6-blt2.5 unicode-data x11-common 161s 0 upgraded, 75 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 103 MB of archives. 161s After this operation, 444 MB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 162s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 162s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 162s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 162s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 162s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 162s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 162s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 162s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 162s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 162s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 162s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x tk8.6-blt2.5 s390x 2.5.3+dfsg-7build1 [662 kB] 162s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x blt s390x 2.5.3+dfsg-7build1 [4840 B] 162s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lyx all 2.4.3-1 [171 kB] 162s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 162s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 162s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 162s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 162s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 162s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 162s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 162s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 162s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 162s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 162s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 162s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 163s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 163s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 163s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 163s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 163s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 163s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 163s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 163s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 163s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 163s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 163s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 163s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x python-matplotlib-data all 3.8.3-3ubuntu2 [2929 kB] 163s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 163s Get:40 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aggdraw s390x 1.3.19-1build2 [76.1 kB] 163s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-brotli s390x 1.1.0-2build3 [381 kB] 163s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-contourpy s390x 1.3.1-1 [235 kB] 163s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cycler all 0.12.1-1 [9716 B] 163s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 163s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 163s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-docopt all 0.6.2-6 [26.1 kB] 163s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 163s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 163s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 163s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fs all 2.4.16-6 [90.7 kB] 163s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 163s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lz4 s390x 4.4.0+dfsg-1 [27.0 kB] 163s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 165s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 165s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 165s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufolib2 all 0.17.0+dfsg1-1 [33.5 kB] 165s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-unicodedata2 s390x 15.1.0+ds-1build2 [362 kB] 165s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x unicode-data all 15.1.0-1 [8878 kB] 165s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fonttools s390x 4.55.3-2 [1723 kB] 165s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-tk s390x 3.12.9-1 [117 kB] 165s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-tk s390x 3.13.2-1 [108 kB] 165s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tk s390x 3.13.1-1 [9770 B] 165s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pil.imagetk s390x 11.1.0-5 [9766 B] 165s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 165s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 165s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-imageio all 2.37.0-1 [234 kB] 165s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kiwisolver s390x 1.4.7-3 [65.6 kB] 165s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 165s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lazy-loader all 0.4-1 [11.1 kB] 165s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib s390x 3.8.3-3ubuntu2 [4657 kB] 165s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 165s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-skimage-lib s390x 0.25.1-1 [4716 kB] 165s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tifffile all 20250110-1 [177 kB] 165s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-skimage all 0.25.1-1 [21.5 MB] 166s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-psd-tools s390x 1.9.34+dfsg.1-1build1 [344 kB] 167s Fetched 103 MB in 5s (19.8 MB/s) 167s Selecting previously unselected package libtcl8.6:s390x. 167s (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.) 167s Preparing to unpack .../00-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 167s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 167s Selecting previously unselected package libfreetype6:s390x. 167s Preparing to unpack .../01-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 167s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 167s Selecting previously unselected package fonts-dejavu-mono. 167s Preparing to unpack .../02-fonts-dejavu-mono_2.37-8_all.deb ... 167s Unpacking fonts-dejavu-mono (2.37-8) ... 167s Selecting previously unselected package fonts-dejavu-core. 167s Preparing to unpack .../03-fonts-dejavu-core_2.37-8_all.deb ... 167s Unpacking fonts-dejavu-core (2.37-8) ... 167s Selecting previously unselected package fontconfig-config. 167s Preparing to unpack .../04-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 167s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 167s Selecting previously unselected package libfontconfig1:s390x. 167s Preparing to unpack .../05-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 167s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 167s Selecting previously unselected package libxrender1:s390x. 167s Preparing to unpack .../06-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 167s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 167s Selecting previously unselected package libxft2:s390x. 167s Preparing to unpack .../07-libxft2_2.3.6-1build1_s390x.deb ... 167s Unpacking libxft2:s390x (2.3.6-1build1) ... 167s Selecting previously unselected package x11-common. 167s Preparing to unpack .../08-x11-common_1%3a7.7+23ubuntu3_all.deb ... 167s Unpacking x11-common (1:7.7+23ubuntu3) ... 167s Selecting previously unselected package libxss1:s390x. 167s Preparing to unpack .../09-libxss1_1%3a1.2.3-1build3_s390x.deb ... 167s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 167s Selecting previously unselected package libtk8.6:s390x. 167s Preparing to unpack .../10-libtk8.6_8.6.16-1_s390x.deb ... 167s Unpacking libtk8.6:s390x (8.6.16-1) ... 167s Selecting previously unselected package tk8.6-blt2.5. 167s Preparing to unpack .../11-tk8.6-blt2.5_2.5.3+dfsg-7build1_s390x.deb ... 167s Unpacking tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 167s Selecting previously unselected package blt. 167s Preparing to unpack .../12-blt_2.5.3+dfsg-7build1_s390x.deb ... 167s Unpacking blt (2.5.3+dfsg-7build1) ... 167s Selecting previously unselected package fonts-lyx. 167s Preparing to unpack .../13-fonts-lyx_2.4.3-1_all.deb ... 167s Unpacking fonts-lyx (2.4.3-1) ... 167s Selecting previously unselected package libblas3:s390x. 167s Preparing to unpack .../14-libblas3_3.12.1-2_s390x.deb ... 167s Unpacking libblas3:s390x (3.12.1-2) ... 167s Selecting previously unselected package libdeflate0:s390x. 167s Preparing to unpack .../15-libdeflate0_1.23-1_s390x.deb ... 167s Unpacking libdeflate0:s390x (1.23-1) ... 167s Selecting previously unselected package libgfortran5:s390x. 167s Preparing to unpack .../16-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libgomp1:s390x. 167s Preparing to unpack .../17-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 167s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 167s Selecting previously unselected package libgraphite2-3:s390x. 167s Preparing to unpack .../18-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 167s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 167s Selecting previously unselected package libharfbuzz0b:s390x. 167s Preparing to unpack .../19-libharfbuzz0b_10.2.0-1_s390x.deb ... 167s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 167s Selecting previously unselected package libimagequant0:s390x. 167s Preparing to unpack .../20-libimagequant0_2.18.0-1build1_s390x.deb ... 167s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 167s Selecting previously unselected package libjpeg-turbo8:s390x. 167s Preparing to unpack .../21-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 167s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 167s Selecting previously unselected package libjpeg8:s390x. 167s Preparing to unpack .../22-libjpeg8_8c-2ubuntu11_s390x.deb ... 167s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 167s Selecting previously unselected package libjs-jquery. 167s Preparing to unpack .../23-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 167s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 167s Selecting previously unselected package libjs-jquery-ui. 167s Preparing to unpack .../24-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 167s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 167s Selecting previously unselected package liblapack3:s390x. 167s Preparing to unpack .../25-liblapack3_3.12.1-2_s390x.deb ... 167s Unpacking liblapack3:s390x (3.12.1-2) ... 167s Selecting previously unselected package liblbfgsb0:s390x. 167s Preparing to unpack .../26-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 167s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 167s Selecting previously unselected package liblcms2-2:s390x. 167s Preparing to unpack .../27-liblcms2-2_2.16-2_s390x.deb ... 167s Unpacking liblcms2-2:s390x (2.16-2) ... 167s Selecting previously unselected package libqhull-r8.0:s390x. 167s Preparing to unpack .../28-libqhull-r8.0_2020.2-6build1_s390x.deb ... 167s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 167s Selecting previously unselected package libraqm0:s390x. 167s Preparing to unpack .../29-libraqm0_0.10.2-1_s390x.deb ... 167s Unpacking libraqm0:s390x (0.10.2-1) ... 167s Selecting previously unselected package libsharpyuv0:s390x. 167s Preparing to unpack .../30-libsharpyuv0_1.5.0-0.1_s390x.deb ... 167s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 167s Selecting previously unselected package libjbig0:s390x. 167s Preparing to unpack .../31-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 167s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 167s Selecting previously unselected package libwebp7:s390x. 167s Preparing to unpack .../32-libwebp7_1.5.0-0.1_s390x.deb ... 167s Unpacking libwebp7:s390x (1.5.0-0.1) ... 167s Selecting previously unselected package libtiff6:s390x. 167s Preparing to unpack .../33-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 167s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 167s Selecting previously unselected package libwebpdemux2:s390x. 167s Preparing to unpack .../34-libwebpdemux2_1.5.0-0.1_s390x.deb ... 167s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 167s Selecting previously unselected package libwebpmux3:s390x. 167s Preparing to unpack .../35-libwebpmux3_1.5.0-0.1_s390x.deb ... 167s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 167s Selecting previously unselected package libxslt1.1:s390x. 167s Preparing to unpack .../36-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 167s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 167s Selecting previously unselected package python-matplotlib-data. 167s Preparing to unpack .../37-python-matplotlib-data_3.8.3-3ubuntu2_all.deb ... 167s Unpacking python-matplotlib-data (3.8.3-3ubuntu2) ... 168s Selecting previously unselected package python3-numpy. 168s Preparing to unpack .../38-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 168s Unpacking python3-numpy (1:1.26.4+ds-13) ... 168s Selecting previously unselected package python3-aggdraw. 168s Preparing to unpack .../39-python3-aggdraw_1.3.19-1build2_s390x.deb ... 168s Unpacking python3-aggdraw (1.3.19-1build2) ... 168s Selecting previously unselected package python3-brotli. 168s Preparing to unpack .../40-python3-brotli_1.1.0-2build3_s390x.deb ... 168s Unpacking python3-brotli (1.1.0-2build3) ... 168s Selecting previously unselected package python3-contourpy. 168s Preparing to unpack .../41-python3-contourpy_1.3.1-1_s390x.deb ... 168s Unpacking python3-contourpy (1.3.1-1) ... 168s Selecting previously unselected package python3-cycler. 168s Preparing to unpack .../42-python3-cycler_0.12.1-1_all.deb ... 168s Unpacking python3-cycler (0.12.1-1) ... 168s Selecting previously unselected package python3-dateutil. 168s Preparing to unpack .../43-python3-dateutil_2.9.0-3_all.deb ... 168s Unpacking python3-dateutil (2.9.0-3) ... 168s Selecting previously unselected package python3-decorator. 168s Preparing to unpack .../44-python3-decorator_5.1.1-5_all.deb ... 168s Unpacking python3-decorator (5.1.1-5) ... 168s Selecting previously unselected package python3-docopt. 168s Preparing to unpack .../45-python3-docopt_0.6.2-6_all.deb ... 168s Unpacking python3-docopt (0.6.2-6) ... 168s Selecting previously unselected package python3-pytz. 168s Preparing to unpack .../46-python3-pytz_2025.1-3_all.deb ... 168s Unpacking python3-pytz (2025.1-3) ... 168s Selecting previously unselected package python3-tz. 168s Preparing to unpack .../47-python3-tz_2025.1-3_all.deb ... 168s Unpacking python3-tz (2025.1-3) ... 168s Selecting previously unselected package python3-platformdirs. 168s Preparing to unpack .../48-python3-platformdirs_4.3.6-1_all.deb ... 168s Unpacking python3-platformdirs (4.3.6-1) ... 168s Selecting previously unselected package python3-fs. 168s Preparing to unpack .../49-python3-fs_2.4.16-6_all.deb ... 168s Unpacking python3-fs (2.4.16-6) ... 168s Selecting previously unselected package python3-lxml:s390x. 168s Preparing to unpack .../50-python3-lxml_5.3.1-1_s390x.deb ... 168s Unpacking python3-lxml:s390x (5.3.1-1) ... 168s Selecting previously unselected package python3-lz4. 168s Preparing to unpack .../51-python3-lz4_4.4.0+dfsg-1_s390x.deb ... 168s Unpacking python3-lz4 (4.4.0+dfsg-1) ... 168s Selecting previously unselected package python3-scipy. 168s Preparing to unpack .../52-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 168s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 168s Selecting previously unselected package python3-mpmath. 168s Preparing to unpack .../53-python3-mpmath_1.3.0-1_all.deb ... 168s Unpacking python3-mpmath (1.3.0-1) ... 168s Selecting previously unselected package python3-sympy. 168s Preparing to unpack .../54-python3-sympy_1.13.3-1_all.deb ... 168s Unpacking python3-sympy (1.13.3-1) ... 169s Selecting previously unselected package python3-ufolib2. 169s Preparing to unpack .../55-python3-ufolib2_0.17.0+dfsg1-1_all.deb ... 169s Unpacking python3-ufolib2 (0.17.0+dfsg1-1) ... 169s Selecting previously unselected package python3-unicodedata2. 169s Preparing to unpack .../56-python3-unicodedata2_15.1.0+ds-1build2_s390x.deb ... 169s Unpacking python3-unicodedata2 (15.1.0+ds-1build2) ... 169s Selecting previously unselected package unicode-data. 169s Preparing to unpack .../57-unicode-data_15.1.0-1_all.deb ... 169s Unpacking unicode-data (15.1.0-1) ... 169s Selecting previously unselected package python3-fonttools. 169s Preparing to unpack .../58-python3-fonttools_4.55.3-2_s390x.deb ... 169s Unpacking python3-fonttools (4.55.3-2) ... 169s Selecting previously unselected package python3.12-tk. 169s Preparing to unpack .../59-python3.12-tk_3.12.9-1_s390x.deb ... 169s Unpacking python3.12-tk (3.12.9-1) ... 169s Selecting previously unselected package python3.13-tk. 169s Preparing to unpack .../60-python3.13-tk_3.13.2-1_s390x.deb ... 169s Unpacking python3.13-tk (3.13.2-1) ... 169s Selecting previously unselected package python3-tk:s390x. 169s Preparing to unpack .../61-python3-tk_3.13.1-1_s390x.deb ... 169s Unpacking python3-tk:s390x (3.13.1-1) ... 169s Selecting previously unselected package python3-pil.imagetk:s390x. 169s Preparing to unpack .../62-python3-pil.imagetk_11.1.0-5_s390x.deb ... 169s Unpacking python3-pil.imagetk:s390x (11.1.0-5) ... 169s Selecting previously unselected package libopenjp2-7:s390x. 169s Preparing to unpack .../63-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 169s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 169s Selecting previously unselected package python3-pil:s390x. 169s Preparing to unpack .../64-python3-pil_11.1.0-5_s390x.deb ... 169s Unpacking python3-pil:s390x (11.1.0-5) ... 169s Selecting previously unselected package python3-imageio. 169s Preparing to unpack .../65-python3-imageio_2.37.0-1_all.deb ... 169s Unpacking python3-imageio (2.37.0-1) ... 169s Selecting previously unselected package python3-kiwisolver. 169s Preparing to unpack .../66-python3-kiwisolver_1.4.7-3_s390x.deb ... 169s Unpacking python3-kiwisolver (1.4.7-3) ... 169s Selecting previously unselected package python3-packaging. 169s Preparing to unpack .../67-python3-packaging_24.2-1_all.deb ... 169s Unpacking python3-packaging (24.2-1) ... 169s Selecting previously unselected package python3-lazy-loader. 169s Preparing to unpack .../68-python3-lazy-loader_0.4-1_all.deb ... 169s Unpacking python3-lazy-loader (0.4-1) ... 169s Selecting previously unselected package python3-matplotlib. 169s Preparing to unpack .../69-python3-matplotlib_3.8.3-3ubuntu2_s390x.deb ... 169s Unpacking python3-matplotlib (3.8.3-3ubuntu2) ... 169s Selecting previously unselected package python3-networkx. 169s Preparing to unpack .../70-python3-networkx_3.2.1-4ubuntu1_all.deb ... 169s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 170s Selecting previously unselected package python3-skimage-lib:s390x. 170s Preparing to unpack .../71-python3-skimage-lib_0.25.1-1_s390x.deb ... 170s Unpacking python3-skimage-lib:s390x (0.25.1-1) ... 170s Selecting previously unselected package python3-tifffile. 170s Preparing to unpack .../72-python3-tifffile_20250110-1_all.deb ... 170s Unpacking python3-tifffile (20250110-1) ... 170s Selecting previously unselected package python3-skimage. 170s Preparing to unpack .../73-python3-skimage_0.25.1-1_all.deb ... 170s Unpacking python3-skimage (0.25.1-1) ... 170s Selecting previously unselected package python3-psd-tools. 170s Preparing to unpack .../74-python3-psd-tools_1.9.34+dfsg.1-1build1_s390x.deb ... 170s Unpacking python3-psd-tools (1.9.34+dfsg.1-1build1) ... 170s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 170s Setting up liblcms2-2:s390x (2.16-2) ... 170s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 170s Setting up python3-docopt (0.6.2-6) ... 170s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 170s Setting up python3-lz4 (4.4.0+dfsg-1) ... 170s Setting up python3-unicodedata2 (15.1.0+ds-1build2) ... 170s Setting up fonts-lyx (2.4.3-1) ... 170s Setting up x11-common (1:7.7+23ubuntu3) ... 170s Setting up libdeflate0:s390x (1.23-1) ... 170s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 170s Setting up python3-pytz (2025.1-3) ... 171s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 171s Setting up python3-networkx (3.2.1-4ubuntu1) ... 171s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 171s Setting up python3-platformdirs (4.3.6-1) ... 172s Setting up python3-tz (2025.1-3) ... 172s Setting up python3-fs (2.4.16-6) ... 172s Setting up unicode-data (15.1.0-1) ... 172s Setting up python3-decorator (5.1.1-5) ... 172s Setting up libblas3:s390x (3.12.1-2) ... 172s 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 172s Setting up python3-packaging (24.2-1) ... 172s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 172s Setting up python3-brotli (1.1.0-2build3) ... 172s Setting up python3-cycler (0.12.1-1) ... 172s Setting up libimagequant0:s390x (2.18.0-1build1) ... 172s Setting up fonts-dejavu-mono (2.37-8) ... 172s Setting up python3-kiwisolver (1.4.7-3) ... 172s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 172s Setting up fonts-dejavu-core (2.37-8) ... 172s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 172s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 172s Setting up libwebp7:s390x (1.5.0-0.1) ... 172s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 172s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 172s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 172s Setting up python3-dateutil (2.9.0-3) ... 172s Setting up libxss1:s390x (1:1.2.3-1build3) ... 172s Setting up python3-lazy-loader (0.4-1) ... 172s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 172s Setting up python3-mpmath (1.3.0-1) ... 173s Setting up python-matplotlib-data (3.8.3-3ubuntu2) ... 173s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 173s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 173s Setting up python3-sympy (1.13.3-1) ... 178s Setting up liblapack3:s390x (3.12.1-2) ... 178s 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 178s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 178s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 178s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 178s Setting up libraqm0:s390x (0.10.2-1) ... 178s Setting up python3-numpy (1:1.26.4+ds-13) ... 180s Setting up python3-lxml:s390x (5.3.1-1) ... 180s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 180s Setting up python3-contourpy (1.3.1-1) ... 180s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 180s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 180s Setting up libxft2:s390x (2.3.6-1build1) ... 180s Setting up python3-scipy (1.14.1-4ubuntu1) ... 184s Setting up python3-skimage-lib:s390x (0.25.1-1) ... 184s Setting up python3-aggdraw (1.3.19-1build2) ... 184s Setting up libtk8.6:s390x (8.6.16-1) ... 184s Setting up python3.12-tk (3.12.9-1) ... 184s Setting up python3-tifffile (20250110-1) ... 184s Setting up python3.13-tk (3.13.2-1) ... 184s Setting up python3-pil:s390x (11.1.0-5) ... 184s Setting up python3-imageio (2.37.0-1) ... 185s Setting up tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 185s Setting up blt (2.5.3+dfsg-7build1) ... 185s Setting up python3-tk:s390x (3.13.1-1) ... 185s Setting up python3-pil.imagetk:s390x (11.1.0-5) ... 185s Setting up python3-fonttools (4.55.3-2) ... 185s Setting up python3-ufolib2 (0.17.0+dfsg1-1) ... 186s Setting up python3-matplotlib (3.8.3-3ubuntu2) ... 187s Setting up python3-skimage (0.25.1-1) ... 188s Setting up python3-psd-tools (1.9.34+dfsg.1-1build1) ... 188s Processing triggers for libc-bin (2.40-4ubuntu1) ... 188s Processing triggers for man-db (2.13.0-1) ... 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-psd-tools'], kind short, sout pipe, serr pipe, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.uTBVaO/test-layer2-01-packages.all"], kind short, sout raw, serr pipe, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-layer2-01-packages.all /tmp/autopkgtest-work.f1uw2_dg/out/test-layer2-01-packages.all 189s autopkgtest: DBG: got reply from testbed: ok 189s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.uTBVaO/build.HMK/src'], kind short, sout raw, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.uTBVaO/build.HMK/src already exists 190s autopkgtest [12:27:55]: test test-layer2-01: [----------------------- 190s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.uTBVaO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.uTBVaO/test-layer2-01-artifacts --chdir=/tmp/autopkgtest.uTBVaO/build.HMK/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.uTBVaO/test-layer2-01-stderr --stdout=/tmp/autopkgtest.uTBVaO/test-layer2-01-stdout --tmp=/tmp/autopkgtest.uTBVaO/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-layer2-01 -- /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-layer2-01'], kind test, sout raw, serr raw, env [] 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.uTBVaO/test-layer2-01-artifacts 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: changing to directory: /tmp/autopkgtest.uTBVaO/build.HMK/src 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: LANG=C.UTF-8 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LANGUAGE 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_ADDRESS 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_ALL 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_COLLATE 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_CTYPE 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_MEASUREMENT 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_MESSAGES 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_MONETARY 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_NAME 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_NUMERIC 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_PAPER 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_TELEPHONE 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_TIME 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: pretending to be a login shell 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: will write standard error to /tmp/autopkgtest.uTBVaO/test-layer2-01-stderr 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: will write stdout to /tmp/autopkgtest.uTBVaO/test-layer2-01-stdout 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.uTBVaO/autopkgtest_tmp 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: marking as executable: /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-layer2-01 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: command to run: /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-layer2-01 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: copying /tmp/tmp.IMzfSbwK2w/out to stdout and file: /tmp/autopkgtest.uTBVaO/test-layer2-01-stdout 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: copying /tmp/tmp.IMzfSbwK2w/err to standard error and file: /tmp/autopkgtest.uTBVaO/test-layer2-01-stdout 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: writing script pid 2549 to /tmp/autopkgtest_script_pid 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: checking for leaked background processes... 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: waiting for tee/cat subprocesses... 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: cleaning up... 190s /tmp/autopkgtest.uTBVaO/wrapper.sh: Exit status: 0 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest [12:27:55]: test test-layer2-01: -----------------------] 190s autopkgtest: DBG: testbed executing test finished with exit status 0 190s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-layer2-01-stdout /tmp/autopkgtest-work.f1uw2_dg/out/test-layer2-01-stdout 191s autopkgtest: DBG: got reply from testbed: ok 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-layer2-01-stderr /tmp/autopkgtest-work.f1uw2_dg/out/test-layer2-01-stderr 191s autopkgtest: DBG: got reply from testbed: ok 191s test-layer2-01 PASS 191s autopkgtest [12:27:56]: test test-layer2-01: - - - - - - - - - - results - - - - - - - - - - 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-layer2-01-artifacts/ /tmp/autopkgtest-work.f1uw2_dg/out/artifacts/ 191s autopkgtest: DBG: got reply from testbed: ok 191s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.uTBVaO/test-layer2-01-artifacts', '/tmp/autopkgtest.uTBVaO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest [12:27:56]: test test-pytest: preparing testbed 191s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-psd-tools'], deps_new=['python3-ipython', 'python3-pytest', 'python3-pytest-cov', 'python3-psd-tools', 'python3-psd-tools-doc'] 191s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 191s autopkgtest: DBG: install_deps: deps_new=['python3-ipython', 'python3-pytest', 'python3-pytest-cov', 'python3-psd-tools', 'python3-psd-tools-doc'] 191s autopkgtest: DBG: install-deps: satisfying python3-ipython, python3-pytest, python3-pytest-cov, python3-psd-tools, python3-psd-tools-doc 191s autopkgtest: DBG: can use apt-get on testbed: True 191s 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-ipython, python3-pytest, python3-pytest-cov, python3-psd-tools, python3-psd-tools-doc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 191s Reading package lists... 192s Building dependency tree... 192s Reading state information... 192s Starting pkgProblemResolver with broken count: 0 192s Starting 2 pkgProblemResolver with broken count: 0 192s Done 192s The following NEW packages will be installed: 192s fonts-font-awesome fonts-lato libjs-jquery-hotkeys libjs-jquery-isonscreen 192s libjs-jquery-metadata libjs-jquery-tablesorter 192s libjs-jquery-throttle-debounce libjs-sphinxdoc libjs-underscore libnsl2 192s libpython3.12-minimal libpython3.12-stdlib python3-asttokens 192s python3-coverage python3-executing python3-iniconfig python3-ipython 192s python3-jedi python3-matplotlib-inline python3-parso python3-pexpect 192s python3-pluggy python3-prompt-toolkit python3-psd-tools-doc 192s python3-ptyprocess python3-pure-eval python3-pytest python3-pytest-cov 192s python3-stack-data python3-traitlets python3-typeshed python3-wcwidth 192s python3.12 python3.12-minimal sphinx-rtd-theme-common 192s 0 upgraded, 35 newly installed, 0 to remove and 0 not upgraded. 192s Need to get 14.9 MB of archives. 192s After this operation, 76.0 MB of additional disk space will be used. 192s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 193s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 193s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 193s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 193s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 193s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 193s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 193s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-metadata all 12-4 [6582 B] 193s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-tablesorter all 1:2.31.3+dfsg1-4 [192 kB] 193s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-throttle-debounce all 1.1+dfsg.1-2 [12.5 kB] 193s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 193s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 193s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asttokens all 3.0.0-1 [20.4 kB] 193s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 193s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-executing all 2.2.0-0.1 [25.0 kB] 193s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 193s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parso all 0.8.4-1 [67.6 kB] 193s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typeshed all 0.0~git20241223.ea91db2-1 [1548 kB] 194s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-jedi all 0.19.1+ds1-1 [693 kB] 194s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-traitlets all 5.14.3+really5.14.3-1 [71.5 kB] 194s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib-inline all 0.1.6-2 [8784 B] 194s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 194s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-prompt-toolkit all 3.0.50-1 [257 kB] 194s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-eval all 0.2.3-1 [11.4 kB] 194s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stack-data all 0.6.3-1 [22.0 kB] 194s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 194s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 194s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ipython all 8.30.0-2 [569 kB] 194s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 194s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 194s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-psd-tools-doc all 1.9.34+dfsg.1-1build1 [326 kB] 194s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 194s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-hotkeys all 0.2.0-1 [13.3 kB] 194s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-isonscreen all 1.2.0-1.1 [3244 B] 194s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-cov all 5.0.0-1 [21.3 kB] 194s Fetched 14.9 MB in 2s (8163 kB/s) 194s Selecting previously unselected package libpython3.12-minimal:s390x. 194s (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 ... 67648 files and directories currently installed.) 194s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 194s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 194s Selecting previously unselected package python3.12-minimal. 194s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 194s Unpacking python3.12-minimal (3.12.9-1) ... 194s Selecting previously unselected package fonts-lato. 194s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 194s Unpacking fonts-lato (2.015-1) ... 194s Selecting previously unselected package libnsl2:s390x. 194s Preparing to unpack .../03-libnsl2_1.3.0-3build3_s390x.deb ... 194s Unpacking libnsl2:s390x (1.3.0-3build3) ... 195s Selecting previously unselected package libpython3.12-stdlib:s390x. 195s Preparing to unpack .../04-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 195s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 195s Selecting previously unselected package python3.12. 195s Preparing to unpack .../05-python3.12_3.12.9-1_s390x.deb ... 195s Unpacking python3.12 (3.12.9-1) ... 195s Selecting previously unselected package fonts-font-awesome. 195s Preparing to unpack .../06-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 195s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 195s Selecting previously unselected package libjs-jquery-metadata. 195s Preparing to unpack .../07-libjs-jquery-metadata_12-4_all.deb ... 195s Unpacking libjs-jquery-metadata (12-4) ... 195s Selecting previously unselected package libjs-jquery-tablesorter. 195s Preparing to unpack .../08-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-4_all.deb ... 195s Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 195s Selecting previously unselected package libjs-jquery-throttle-debounce. 195s Preparing to unpack .../09-libjs-jquery-throttle-debounce_1.1+dfsg.1-2_all.deb ... 195s Unpacking libjs-jquery-throttle-debounce (1.1+dfsg.1-2) ... 195s Selecting previously unselected package libjs-underscore. 195s Preparing to unpack .../10-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 195s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 195s Selecting previously unselected package libjs-sphinxdoc. 195s Preparing to unpack .../11-libjs-sphinxdoc_8.1.3-5_all.deb ... 195s Unpacking libjs-sphinxdoc (8.1.3-5) ... 195s Selecting previously unselected package python3-asttokens. 195s Preparing to unpack .../12-python3-asttokens_3.0.0-1_all.deb ... 195s Unpacking python3-asttokens (3.0.0-1) ... 195s Selecting previously unselected package python3-coverage. 195s Preparing to unpack .../13-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 195s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 195s Selecting previously unselected package python3-executing. 195s Preparing to unpack .../14-python3-executing_2.2.0-0.1_all.deb ... 195s Unpacking python3-executing (2.2.0-0.1) ... 195s Selecting previously unselected package python3-iniconfig. 195s Preparing to unpack .../15-python3-iniconfig_1.1.1-2_all.deb ... 195s Unpacking python3-iniconfig (1.1.1-2) ... 195s Selecting previously unselected package python3-parso. 195s Preparing to unpack .../16-python3-parso_0.8.4-1_all.deb ... 195s Unpacking python3-parso (0.8.4-1) ... 195s Selecting previously unselected package python3-typeshed. 195s Preparing to unpack .../17-python3-typeshed_0.0~git20241223.ea91db2-1_all.deb ... 195s Unpacking python3-typeshed (0.0~git20241223.ea91db2-1) ... 195s Selecting previously unselected package python3-jedi. 195s Preparing to unpack .../18-python3-jedi_0.19.1+ds1-1_all.deb ... 195s Unpacking python3-jedi (0.19.1+ds1-1) ... 195s Selecting previously unselected package python3-traitlets. 195s Preparing to unpack .../19-python3-traitlets_5.14.3+really5.14.3-1_all.deb ... 195s Unpacking python3-traitlets (5.14.3+really5.14.3-1) ... 195s Selecting previously unselected package python3-matplotlib-inline. 195s Preparing to unpack .../20-python3-matplotlib-inline_0.1.6-2_all.deb ... 195s Unpacking python3-matplotlib-inline (0.1.6-2) ... 195s Selecting previously unselected package python3-wcwidth. 195s Preparing to unpack .../21-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 195s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 195s Selecting previously unselected package python3-prompt-toolkit. 195s Preparing to unpack .../22-python3-prompt-toolkit_3.0.50-1_all.deb ... 195s Unpacking python3-prompt-toolkit (3.0.50-1) ... 195s Selecting previously unselected package python3-pure-eval. 195s Preparing to unpack .../23-python3-pure-eval_0.2.3-1_all.deb ... 195s Unpacking python3-pure-eval (0.2.3-1) ... 195s Selecting previously unselected package python3-stack-data. 195s Preparing to unpack .../24-python3-stack-data_0.6.3-1_all.deb ... 195s Unpacking python3-stack-data (0.6.3-1) ... 195s Selecting previously unselected package python3-ptyprocess. 195s Preparing to unpack .../25-python3-ptyprocess_0.7.0-6_all.deb ... 195s Unpacking python3-ptyprocess (0.7.0-6) ... 195s Selecting previously unselected package python3-pexpect. 195s Preparing to unpack .../26-python3-pexpect_4.9-3_all.deb ... 195s Unpacking python3-pexpect (4.9-3) ... 195s Selecting previously unselected package python3-ipython. 195s Preparing to unpack .../27-python3-ipython_8.30.0-2_all.deb ... 195s Unpacking python3-ipython (8.30.0-2) ... 195s Selecting previously unselected package python3-pluggy. 195s Preparing to unpack .../28-python3-pluggy_1.5.0-1_all.deb ... 195s Unpacking python3-pluggy (1.5.0-1) ... 195s Selecting previously unselected package sphinx-rtd-theme-common. 195s Preparing to unpack .../29-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 195s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 195s Selecting previously unselected package python3-psd-tools-doc. 195s Preparing to unpack .../30-python3-psd-tools-doc_1.9.34+dfsg.1-1build1_all.deb ... 195s Unpacking python3-psd-tools-doc (1.9.34+dfsg.1-1build1) ... 195s Selecting previously unselected package python3-pytest. 195s Preparing to unpack .../31-python3-pytest_8.3.4-1_all.deb ... 195s Unpacking python3-pytest (8.3.4-1) ... 195s Selecting previously unselected package libjs-jquery-hotkeys. 195s Preparing to unpack .../32-libjs-jquery-hotkeys_0.2.0-1_all.deb ... 195s Unpacking libjs-jquery-hotkeys (0.2.0-1) ... 195s Selecting previously unselected package libjs-jquery-isonscreen. 195s Preparing to unpack .../33-libjs-jquery-isonscreen_1.2.0-1.1_all.deb ... 195s Unpacking libjs-jquery-isonscreen (1.2.0-1.1) ... 195s Selecting previously unselected package python3-pytest-cov. 195s Preparing to unpack .../34-python3-pytest-cov_5.0.0-1_all.deb ... 195s Unpacking python3-pytest-cov (5.0.0-1) ... 195s Setting up python3-iniconfig (1.1.1-2) ... 196s Setting up python3-pure-eval (0.2.3-1) ... 196s Setting up fonts-lato (2.015-1) ... 196s Setting up python3-parso (0.8.4-1) ... 196s Setting up python3-asttokens (3.0.0-1) ... 196s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 196s Setting up libjs-jquery-throttle-debounce (1.1+dfsg.1-2) ... 196s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 197s Setting up python3-typeshed (0.0~git20241223.ea91db2-1) ... 197s Setting up python3-executing (2.2.0-0.1) ... 197s Setting up libjs-jquery-metadata (12-4) ... 197s Setting up libjs-jquery-isonscreen (1.2.0-1.1) ... 197s Setting up python3-pluggy (1.5.0-1) ... 197s Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 197s Setting up python3-traitlets (5.14.3+really5.14.3-1) ... 197s Setting up libnsl2:s390x (1.3.0-3build3) ... 197s Setting up libjs-jquery-hotkeys (0.2.0-1) ... 197s Setting up python3-stack-data (0.6.3-1) ... 197s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 197s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 197s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 197s Setting up python3-ptyprocess (0.7.0-6) ... 197s Setting up python3-prompt-toolkit (3.0.50-1) ... 198s Setting up python3.12-minimal (3.12.9-1) ... 199s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 199s Setting up python3-jedi (0.19.1+ds1-1) ... 199s Setting up python3-pytest (8.3.4-1) ... 200s Setting up python3.12 (3.12.9-1) ... 201s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 202s Setting up python3-pytest-cov (5.0.0-1) ... 202s Setting up python3-matplotlib-inline (0.1.6-2) ... 202s Setting up python3-pexpect (4.9-3) ... 202s Setting up libjs-sphinxdoc (8.1.3-5) ... 202s Setting up python3-psd-tools-doc (1.9.34+dfsg.1-1build1) ... 202s Setting up python3-ipython (8.30.0-2) ... 203s Processing triggers for systemd (257.2-3ubuntu1) ... 203s Processing triggers for man-db (2.13.0-1) ... 203s Processing triggers for libc-bin (2.40-4ubuntu1) ... 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-psd-tools'], kind short, sout pipe, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-psd-tools-doc'], kind short, sout pipe, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.uTBVaO/test-pytest-packages.all"], kind short, sout raw, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-pytest-packages.all /tmp/autopkgtest-work.f1uw2_dg/out/test-pytest-packages.all 204s autopkgtest: DBG: got reply from testbed: ok 204s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.uTBVaO/build.HMK/src'], kind short, sout raw, serr raw, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.uTBVaO/build.HMK/src already exists 204s autopkgtest [12:28:09]: test test-pytest: [----------------------- 204s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.uTBVaO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.uTBVaO/test-pytest-artifacts --chdir=/tmp/autopkgtest.uTBVaO/build.HMK/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.uTBVaO/test-pytest-stderr --stdout=/tmp/autopkgtest.uTBVaO/test-pytest-stdout --tmp=/tmp/autopkgtest.uTBVaO/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-pytest -- /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-pytest'], kind test, sout raw, serr raw, env [] 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.uTBVaO/test-pytest-artifacts 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: changing to directory: /tmp/autopkgtest.uTBVaO/build.HMK/src 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: LANG=C.UTF-8 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LANGUAGE 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_ADDRESS 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_ALL 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_COLLATE 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_CTYPE 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_MEASUREMENT 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_MESSAGES 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_MONETARY 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_NAME 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_NUMERIC 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_PAPER 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_TELEPHONE 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: unsetting environment: LC_TIME 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: pretending to be a login shell 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: will write standard error to /tmp/autopkgtest.uTBVaO/test-pytest-stderr 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: will write stdout to /tmp/autopkgtest.uTBVaO/test-pytest-stdout 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.uTBVaO/autopkgtest_tmp 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: marking as executable: /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-pytest 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: command to run: /tmp/autopkgtest.uTBVaO/build.HMK/src/debian/tests/test-pytest 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: copying /tmp/tmp.q5DigZ5GMV/out to stdout and file: /tmp/autopkgtest.uTBVaO/test-pytest-stdout 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: copying /tmp/tmp.q5DigZ5GMV/err to standard error and file: /tmp/autopkgtest.uTBVaO/test-pytest-stdout 205s /tmp/autopkgtest.uTBVaO/wrapper.sh: writing script pid 3256 to /tmp/autopkgtest_script_pid 206s ============================= test session starts ============================== 206s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 206s rootdir: /tmp/autopkgtest.uTBVaO/build.HMK/src 206s configfile: pyproject.toml 206s testpaths: tests 206s plugins: cov-5.0.0, typeguard-4.4.1 206s collected 234 items 206s 206s tests/psd_tools/api/test_mask.py .. [ 0%] 206s tests/psd_tools/compression/test_compression.py ....................x [ 9%] 206s tests/psd_tools/compression/test_rle.py ......... [ 13%] 206s tests/psd_tools/psd/test_adjustments.py .......... [ 17%] 206s tests/psd_tools/psd/test_base.py ............... [ 24%] 206s tests/psd_tools/psd/test_color_mode_data.py .... [ 26%] 206s tests/psd_tools/psd/test_descriptor.py ................................. [ 40%] 206s ...... [ 42%] 206s tests/psd_tools/psd/test_effects_layer.py ....... [ 45%] 207s tests/psd_tools/psd/test_engine_data.py .................... [ 54%] 207s tests/psd_tools/psd/test_filter_effects.py ......... [ 58%] 207s tests/psd_tools/psd/test_header.py .. [ 58%] 207s tests/psd_tools/psd/test_image_data.py .......... [ 63%] 207s tests/psd_tools/psd/test_image_resources.py ....... [ 66%] 207s tests/psd_tools/psd/test_layer_and_mask.py .................xx.......... [ 78%] 207s ........ [ 82%] 207s tests/psd_tools/psd/test_linked_layer.py ........ [ 85%] 207s tests/psd_tools/psd/test_patterns.py .... [ 87%] 207s tests/psd_tools/psd/test_vector.py . [ 87%] 208s tests/psd_tools/test_utils.py ............................. [100%] 208s 208s ---------- coverage: platform linux, python 3.13.2-final-0 ----------- 208s Name Stmts Miss Cover 208s -------------------------------------------------------------------------------------- 208s /usr/lib/python3/dist-packages/psd_tools/__init__.py 3 0 100% 208s /usr/lib/python3/dist-packages/psd_tools/__main__.py 37 37 0% 208s /usr/lib/python3/dist-packages/psd_tools/api/__init__.py 11 4 64% 208s /usr/lib/python3/dist-packages/psd_tools/api/adjustments.py 246 67 73% 208s /usr/lib/python3/dist-packages/psd_tools/api/effects.py 276 97 65% 208s /usr/lib/python3/dist-packages/psd_tools/api/layers.py 418 208 50% 208s /usr/lib/python3/dist-packages/psd_tools/api/mask.py 66 0 100% 208s /usr/lib/python3/dist-packages/psd_tools/api/numpy_io.py 101 88 13% 208s /usr/lib/python3/dist-packages/psd_tools/api/pil_io.py 160 118 26% 208s /usr/lib/python3/dist-packages/psd_tools/api/psd_image.py 254 122 52% 208s /usr/lib/python3/dist-packages/psd_tools/api/shape.py 178 76 57% 208s /usr/lib/python3/dist-packages/psd_tools/api/smart_object.py 88 56 36% 208s /usr/lib/python3/dist-packages/psd_tools/composer/__init__.py 222 222 0% 208s /usr/lib/python3/dist-packages/psd_tools/composer/blend.py 234 234 0% 208s /usr/lib/python3/dist-packages/psd_tools/composer/effects.py 34 34 0% 208s /usr/lib/python3/dist-packages/psd_tools/composer/vector.py 262 262 0% 208s /usr/lib/python3/dist-packages/psd_tools/composite/__init__.py 299 299 0% 208s /usr/lib/python3/dist-packages/psd_tools/composite/blend.py 169 169 0% 208s /usr/lib/python3/dist-packages/psd_tools/composite/effects.py 36 36 0% 208s /usr/lib/python3/dist-packages/psd_tools/composite/vector.py 300 300 0% 208s /usr/lib/python3/dist-packages/psd_tools/compression/__init__.py 124 11 91% 208s /usr/lib/python3/dist-packages/psd_tools/compression/rle.py 62 9 85% 208s /usr/lib/python3/dist-packages/psd_tools/constants.py 389 3 99% 208s /usr/lib/python3/dist-packages/psd_tools/psd/__init__.py 46 8 83% 208s /usr/lib/python3/dist-packages/psd_tools/psd/adjustments.py 356 133 63% 208s /usr/lib/python3/dist-packages/psd_tools/psd/base.py 369 133 64% 208s /usr/lib/python3/dist-packages/psd_tools/psd/color.py 41 13 68% 208s /usr/lib/python3/dist-packages/psd_tools/psd/color_mode_data.py 24 4 83% 208s /usr/lib/python3/dist-packages/psd_tools/psd/descriptor.py 365 49 87% 208s /usr/lib/python3/dist-packages/psd_tools/psd/effects_layer.py 198 25 87% 208s /usr/lib/python3/dist-packages/psd_tools/psd/engine_data.py 251 20 92% 208s /usr/lib/python3/dist-packages/psd_tools/psd/filter_effects.py 122 0 100% 208s /usr/lib/python3/dist-packages/psd_tools/psd/header.py 27 1 96% 208s /usr/lib/python3/dist-packages/psd_tools/psd/image_data.py 51 13 75% 208s /usr/lib/python3/dist-packages/psd_tools/psd/image_resources.py 529 105 80% 208s /usr/lib/python3/dist-packages/psd_tools/psd/layer_and_mask.py 433 15 97% 208s /usr/lib/python3/dist-packages/psd_tools/psd/linked_layer.py 107 0 100% 208s /usr/lib/python3/dist-packages/psd_tools/psd/patterns.py 131 50 62% 208s /usr/lib/python3/dist-packages/psd_tools/psd/tagged_blocks.py 424 176 58% 208s /usr/lib/python3/dist-packages/psd_tools/psd/vector.py 156 17 89% 208s /usr/lib/python3/dist-packages/psd_tools/terminology.py 2022 0 100% 208s /usr/lib/python3/dist-packages/psd_tools/utils.py 141 14 90% 208s /usr/lib/python3/dist-packages/psd_tools/validators.py 18 4 78% 208s /usr/lib/python3/dist-packages/psd_tools/version.py 1 0 100% 208s -------------------------------------------------------------------------------------- 208s TOTAL 9781 3232 67% 208s 208s 208s ======================== 231 passed, 3 xfailed in 2.73s ======================== 208s /tmp/autopkgtest.uTBVaO/wrapper.sh: checking for leaked background processes... 208s /tmp/autopkgtest.uTBVaO/wrapper.sh: waiting for tee/cat subprocesses... 208s /tmp/autopkgtest.uTBVaO/wrapper.sh: cleaning up... 208s /tmp/autopkgtest.uTBVaO/wrapper.sh: Exit status: 0 208s autopkgtest: DBG: testbed command exited with code 0 208s autopkgtest [12:28:13]: test test-pytest: -----------------------] 208s autopkgtest: DBG: testbed executing test finished with exit status 0 208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-pytest-stdout /tmp/autopkgtest-work.f1uw2_dg/out/test-pytest-stdout 208s autopkgtest: DBG: got reply from testbed: ok 208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-pytest-stderr /tmp/autopkgtest-work.f1uw2_dg/out/test-pytest-stderr 208s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest [12:28:14]: test test-pytest: - - - - - - - - - - results - - - - - - - - - - 209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.uTBVaO/test-pytest-artifacts/ /tmp/autopkgtest-work.f1uw2_dg/out/artifacts/ 209s test-pytest PASS 209s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.uTBVaO/test-pytest-artifacts', '/tmp/autopkgtest.uTBVaO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 209s autopkgtest: DBG: testbed command exited with code 0 209s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 209s autopkgtest [12:28:14]: @@@@@@@@@@@@@@@@@@@@ summary 209s test-layer2-01 PASS 209s test-pytest PASS 209s autopkgtest: DBG: testbed stop 209s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.uTBVaO 209s autopkgtest: DBG: sending command to testbed: close 226s autopkgtest: DBG: got reply from testbed: ok 226s autopkgtest: DBG: sending command to testbed: quit 226s nova [W] Using flock in prodstack6-s390x 226s Creating nova instance adt-plucky-s390x-psd-tools-20250219-122444-juju-7f2275-prod-proposed-migration-environment-15-e67712ec-9dd1-4e2e-b969-cdaab458662c from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 226s nova [W] Timed out waiting for 13ff8d94-c690-487c-bfc5-7cd26c6d3479 to get deleted.