0s autopkgtest: DBG: testbed init 0s autopkgtest [12:59:28]: starting date and time: 2025-02-19 12:59:28+0000 0s autopkgtest [12:59:28]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:59:28]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.aiwbi_ut/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade silx --debug --timeout-short=300 --timeout-copy=20000 --timeout-test=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-big-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-20.secgroup --name adt-plucky-s390x-silx-20250219-125928-juju-7f2275-prod-proposed-migration-environment-15-89752bfd-1c29-45b9-a965-dc29bcbe38d4 --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 135s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.nfZYja 135s autopkgtest: DBG: sending command to testbed: print-execute-command 135s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qnelyu33/runcmd 135s autopkgtest: DBG: sending command to testbed: capabilities 135s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system isolation-machine revert reboot root-on-testbed 135s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'isolation-machine', 'revert', 'reboot', 'root-on-testbed', 'has_internet'] 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.nfZYja/wrapper.sh 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/wrapper.sh'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [13:01:44]: testbed dpkg architecture: s390x 136s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [13:01:44]: testbed apt version: 2.9.30 136s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed has eatmydata 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [13:01:44]: @@@@@@@@@@@@@@@@@@@@ test bed setup 136s 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 [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [13:01:45]: testbed release detected to be: None 137s 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 [] 137s autopkgtest: DBG: testbed command exited with code 0 137s 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 [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: adding APT source: Types: deb deb-src 137s URIs: http://ftpmaster.internal/ubuntu/ 137s Suites: plucky-proposed 137s Components: main restricted universe multiverse 137s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 137s 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 [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 137s Package: * 137s Pin: release plucky-proposed 137s Pin-Priority: 500 137s 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 [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [13:01:45]: updating testbed package index (apt update) 137s 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'] 138s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 138s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 138s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 138s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 138s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 138s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 138s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 138s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 138s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 138s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 138s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 138s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 138s Fetched 1700 kB in 1s (1904 kB/s) 139s Reading package lists... 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 139s Package: * 139s Pin: release plucky-proposed 139s Pin-Priority: 100 139s 139s Package: src:sphinx:any 139s Pin: release plucky-proposed 139s Pin-Priority: 995 139s 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 [] 139s autopkgtest: DBG: testbed command exited with code 0 139s 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.nfZYja/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s 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'] 140s + lsb_release --codename --short 140s + RELEASE=plucky 140s + cat 140s + [ plucky != trusty ] 140s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 140s Reading package lists... 140s Building dependency tree... 140s Reading state information... 140s Calculating upgrade... 140s The following packages were automatically installed and are no longer required: 140s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 140s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 140s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 140s linux-tools-6.11.0-8-generic 140s Use 'sudo apt autoremove' to remove them. 140s The following packages will be upgraded: 140s iproute2 liblsof0 libp11-kit0 lsof 140s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 140s Need to get 1791 kB of archives. 140s After this operation, 17.4 kB of additional disk space will be used. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 141s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 141s Preconfiguring packages ... 141s Fetched 1791 kB in 1s (2802 kB/s) 141s (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.) 141s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 141s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 141s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 141s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 141s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 141s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 141s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 141s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 141s Setting up liblsof0 (4.99.4+dfsg-1) ... 141s Setting up iproute2 (6.13.0-1ubuntu1) ... 141s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 141s Setting up lsof (4.99.4+dfsg-1) ... 141s Processing triggers for man-db (2.13.0-1) ... 142s Processing triggers for libc-bin (2.40-4ubuntu1) ... 142s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 142s + /usr/lib/apt/apt-helper analyze-pattern ?true 142s + uname+ sed s/\./\\./g 142s -r 142s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 142s + + tail -n+2 142s apt list ?obsolete 142s + cut -d/ -f1 142s + grep -v ^linux-.*6\.12\.0-15-generic.* 142s + true 142s + obsolete_pkgs= 142s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 142s Reading package lists... 142s Building dependency tree... 142s Reading state information... 143s The following packages will be REMOVED: 143s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 143s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 143s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 143s linux-tools-6.11.0-8-generic* 143s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 143s After this operation, 167 MB disk space will be freed. 143s (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.) 143s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 143s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 143s Removing libpython3.12t64:s390x (3.12.9-1) ... 143s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 143s Removing libnsl2:s390x (1.3.0-3build3) ... 143s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 143s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 143s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 144s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 144s Processing triggers for libc-bin (2.40-4ubuntu1) ... 144s (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.) 144s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 144s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 144s + grep -q trusty /etc/lsb-release 144s + [ ! -d /usr/share/doc/unattended-upgrades ] 144s + [ ! -d /usr/share/doc/lxd ] 144s + [ ! -d /usr/share/doc/lxd-client ] 144s + [ ! -d /usr/share/doc/snapd ] 144s + type iptables 144s + cat 144s + chmod 755 /etc/rc.local 144s + . /etc/rc.local 144s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 144s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 144s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 144s + uname -m 144s + [ s390x = ppc64le ] 144s + [ -d /run/systemd/system ] 144s + systemd-detect-virt --quiet --vm 144s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 144s + cat 144s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 144s + echo COMPRESS=lz4 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [13:01:52]: upgrading testbed (apt dist-upgrade and autopurge) 144s 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'] 144s Reading package lists... 144s Building dependency tree... 144s Reading state information... 145s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 145s Starting 2 pkgProblemResolver with broken count: 0 145s Done 145s Entering ResolveByKeep 145s 145s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 145s Reading package lists... 145s Building dependency tree... 145s Reading state information... 146s Starting pkgProblemResolver with broken count: 0 146s Starting 2 pkgProblemResolver with broken count: 0 146s Done 146s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 146s autopkgtest: DBG: testbed command exited with code 0 146s 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.nfZYja/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 1 146s autopkgtest [13:01:54]: rebooting testbed after setup commands that affected boot 146s autopkgtest: DBG: sending command to testbed: reboot 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 165s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [13:02:15]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 167s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nfZYja/testbed-packages"], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfZYja/testbed-packages /tmp/autopkgtest-work.aiwbi_ut/out/testbed-packages 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 167s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: Binaries: initialising 169s autopkgtest [13:02:17]: @@@@@@@@@@@@@@@@@@@@ apt-source silx 169s autopkgtest: DBG: blame += silx 169s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 169s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'silx'], kind short, sout pipe, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-silx-doc$'], kind short, sout pipe, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-silx-doc=2.1.2+dfsg-1build2'], kind short, sout pipe, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^silx$'], kind short, sout pipe, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'silx=2.1.2+dfsg-1build2'], kind short, sout pipe, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-silx$'], kind short, sout pipe, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: install_deps: deps_new=[] 170s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s 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.nfZYja/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source silx=2.1.2+dfsg-1build2 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 silx_*.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'] 171s + cd / 171s + mktemp -d /tmp/autopkgtest.nfZYja/build.XXX 171s + builddir=/tmp/autopkgtest.nfZYja/build.qKM 171s + cd /tmp/autopkgtest.nfZYja/build.qKM 171s + apt-get source -d -q --only-source silx=2.1.2+dfsg-1build2 173s + OUT=Reading package lists... 173s NOTICE: 'silx' packaging is maintained in the 'Git' version control system at: 173s https://salsa.debian.org/science-team/silx.git 173s Please use: 173s git clone https://salsa.debian.org/science-team/silx.git 173s to retrieve the latest (possibly unreleased) updates to the package. 173s Need to get 17.5 MB of source archives. 173s Get:1 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (dsc) [3168 B] 173s Get:2 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (tar) [17.3 MB] 173s Get:3 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (diff) [158 kB] 173s Fetched 17.5 MB in 2s (9394 kB/s) 173s Download complete and in download only mode 173s + [ -n ] 173s + echo Reading package lists... 173s NOTICE: 'silx' packaging is maintained in the 'Git' version control system at: 173s https://salsa.debian.org/science-team/silx.git 173s Please use: 173s git clone https://salsa.debian.org/science-team/silx.git 173s to retrieve the latest (possibly unreleased) updates to the package. 173s Need to get 17.5 MB of source archives. 173s Get:1 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (dsc) [3168 B] 173s Get:2 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (tar) [17.3 MB] 173s Get:3 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (diff) [158 kB] 173s Fetched 17.5 MB in 2s (9394 kB/s) 173s Download complete and in download only mode 173s + grep ^Get: 173s Get:1 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (dsc) [3168 B] 173s Get:2 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (tar) [17.3 MB] 173s Get:3 http://ftpmaster.internal/ubuntu plucky/universe silx 2.1.2+dfsg-1build2 (diff) [158 kB] 173s + dpkg-source -x silx_2.1.2+dfsg-1build2.dsc src 173s gpgv: Signature made Wed Jan 29 22:41:57 2025 UTC 173s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 173s gpgv: Can't check signature: No public key 173s dpkg-source: warning: cannot verify inline signature for ./silx_2.1.2+dfsg-1build2.dsc: no acceptable signature found 174s + chmod -R a+rX . 174s + cd src/. 174s + pwd 174s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest [13:02:22]: testing package silx version 2.1.2+dfsg-1build2 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfZYja/build.qKM/src/debian/ /tmp/autopkgtest-work.aiwbi_ut/out/pkg/debian/ 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: processing dependency @ 174s autopkgtest: DBG: synthesised dependency silx 174s autopkgtest: DBG: synthesised dependency python3-silx 174s autopkgtest: DBG: synthesised dependency python-silx-doc 174s autopkgtest: DBG: processing dependency python3-all 174s autopkgtest: DBG: processing dependency python3-pytest 174s autopkgtest: DBG: processing dependency python3-pytest-mock 174s autopkgtest: DBG: processing dependency python3-pytest-xvfb 174s autopkgtest: DBG: processing dependency xauth 174s autopkgtest: DBG: processing dependency xvfb 174s autopkgtest: DBG: Test defined: name no-opencl path debian/tests/no-opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 175s autopkgtest: DBG: processing dependency @ 175s autopkgtest: DBG: synthesised dependency silx 175s autopkgtest: DBG: synthesised dependency python3-silx 175s autopkgtest: DBG: synthesised dependency python-silx-doc 175s autopkgtest: DBG: processing dependency clinfo 175s autopkgtest: DBG: processing dependency python3-all 175s autopkgtest: DBG: processing dependency python3-pytest 175s autopkgtest: DBG: processing dependency python3-pytest-mock 175s autopkgtest: DBG: processing dependency python3-pytest-xvfb 175s autopkgtest: DBG: processing dependency xauth 175s autopkgtest: DBG: processing dependency xvfb 175s autopkgtest: DBG: Test defined: name opencl path debian/tests/opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 175s autopkgtest: DBG: processing dependency mesa-utils 175s autopkgtest: DBG: processing dependency silx 175s autopkgtest: DBG: marked alternatives ['silx'] as a synthesised dependency 175s autopkgtest: DBG: processing dependency xauth 175s autopkgtest: DBG: processing dependency xvfb 175s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" sh debian/tests/gui" restrictions ['allow-stderr'] features [] depends ['mesa-utils', 'silx', 'xauth', 'xvfb'] 175s autopkgtest [13:02:23]: build not needed 175s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfZYja/build.qKM/src/ /tmp/autopkgtest-work.aiwbi_ut/out/tests-tree/ 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: processing dependency @ 178s autopkgtest: DBG: synthesised dependency silx 178s autopkgtest: DBG: synthesised dependency python3-silx 178s autopkgtest: DBG: synthesised dependency python-silx-doc 178s autopkgtest: DBG: processing dependency python3-all 178s autopkgtest: DBG: processing dependency python3-pytest 178s autopkgtest: DBG: processing dependency python3-pytest-mock 178s autopkgtest: DBG: processing dependency python3-pytest-xvfb 178s autopkgtest: DBG: processing dependency xauth 178s autopkgtest: DBG: processing dependency xvfb 178s autopkgtest: DBG: Test defined: name no-opencl path debian/tests/no-opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 178s autopkgtest: DBG: processing dependency @ 178s autopkgtest: DBG: synthesised dependency silx 178s autopkgtest: DBG: synthesised dependency python3-silx 178s autopkgtest: DBG: synthesised dependency python-silx-doc 178s autopkgtest: DBG: processing dependency clinfo 178s autopkgtest: DBG: processing dependency python3-all 178s autopkgtest: DBG: processing dependency python3-pytest 178s autopkgtest: DBG: processing dependency python3-pytest-mock 178s autopkgtest: DBG: processing dependency python3-pytest-xvfb 178s autopkgtest: DBG: processing dependency xauth 178s autopkgtest: DBG: processing dependency xvfb 178s autopkgtest: DBG: Test defined: name opencl path debian/tests/opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 178s autopkgtest: DBG: processing dependency mesa-utils 178s autopkgtest: DBG: processing dependency silx 178s autopkgtest: DBG: marked alternatives ['silx'] as a synthesised dependency 178s autopkgtest: DBG: processing dependency xauth 178s autopkgtest: DBG: processing dependency xvfb 178s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" sh debian/tests/gui" restrictions ['allow-stderr'] features [] depends ['mesa-utils', 'silx', 'xauth', 'xvfb'] 178s autopkgtest [13:02:26]: test no-opencl: preparing testbed 178s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 178s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 178s autopkgtest: DBG: install_deps: deps_new=['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 178s autopkgtest: DBG: install-deps: satisfying silx, python3-silx, python-silx-doc, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb 178s autopkgtest: DBG: can use apt-get on testbed: True 178s 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', 'silx, python3-silx, python-silx-doc, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 178s Reading package lists... 179s Building dependency tree... 179s Reading state information... 179s Starting pkgProblemResolver with broken count: 1 179s Starting 2 pkgProblemResolver with broken count: 1 179s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 179s Broken satisfy:command-line:s390x Depends on silx:s390x < none | 2.1.2+dfsg-1build2 @un uH > 179s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Reinst Failed early because of python3-silx:s390x 179s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Broken satisfy:command-line:s390x Depends on python3-silx:s390x < none @un H > 179s Broken satisfy:command-line:s390x Depends on python-silx-doc:s390x < none | 2.1.2+dfsg-1build2 @un uH > 179s Considering python-silx-doc:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated fonts-mathjax:s390x 179s Re-Instated libjs-mathjax:s390x 179s Re-Instated libjs-jquery:s390x 179s Re-Instated libjs-underscore:s390x 179s Re-Instated libjs-sphinxdoc:s390x 179s Re-Instated python-silx-doc:s390x 179s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 179s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated libpython3.12-minimal:s390x 179s Re-Instated python3.12-minimal:s390x 179s Re-Instated libnsl2:s390x 179s Re-Instated libpython3.12-stdlib:s390x 179s Re-Instated python3.12:s390x 179s Re-Instated python3-all:s390x 179s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 179s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated python3-iniconfig:s390x 179s Re-Instated python3-packaging:s390x 179s Re-Instated python3-pluggy:s390x 179s Re-Instated python3-pytest:s390x 179s Broken satisfy:command-line:s390x Depends on python3-pytest-mock:s390x < none | 3.14.0-2 @un uH > 179s Considering python3-pytest-mock:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated python3-pytest-mock:s390x 179s Broken satisfy:command-line:s390x Depends on python3-pytest-xvfb:s390x < none | 3.0.0-2 @un uH > 179s Considering python3-pytest-xvfb:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated x11-common:s390x 179s Re-Instated libice6:s390x 179s Re-Instated libsm6:s390x 179s Re-Instated libxt6t64:s390x 179s Re-Instated libxmu6:s390x 179s Re-Instated libxpm4:s390x 179s Re-Instated libxaw7:s390x 179s Re-Instated libxkbfile1:s390x 179s Re-Instated libxrender1:s390x 179s Re-Instated libxrandr2:s390x 179s Re-Instated x11-xkb-utils:s390x 179s Re-Instated xserver-common:s390x 179s Re-Instated libglvnd0:s390x 179s Re-Instated libglapi-mesa:s390x 179s Re-Instated libx11-xcb1:s390x 179s Re-Instated libxcb-dri3-0:s390x 179s Re-Instated libxcb-glx0:s390x 179s Re-Instated libxcb-present0:s390x 179s Re-Instated libxcb-shm0:s390x 179s Re-Instated libxcb-xfixes0:s390x 179s Re-Instated libxxf86vm1:s390x 179s Re-Instated libdrm-radeon1:s390x 179s Re-Instated libxcb-randr0:s390x 179s Re-Instated libxcb-sync1:s390x 179s Re-Instated libxshmfence1:s390x 179s Re-Instated mesa-libgallium:s390x 179s Re-Instated libwayland-server0:s390x 179s Re-Instated libgbm1:s390x 179s Re-Instated libvulkan1:s390x 179s Re-Instated libgl1-mesa-dri:s390x 179s Re-Instated libglx-mesa0:s390x 179s Re-Instated libglx0:s390x 179s Re-Instated libgl1:s390x 179s Re-Instated libpixman-1-0:s390x 179s Re-Instated libfontenc1:s390x 179s Re-Instated libfreetype6:s390x 179s Re-Instated libxfont2:s390x 179s Re-Instated xvfb:s390x 179s Re-Instated python3-pyvirtualdisplay:s390x 179s Re-Instated python3-pytest-xvfb:s390x 179s Done 179s Some packages could not be installed. This may mean that you have 179s requested an impossible situation or if you are using the unstable 179s distribution that some required packages have not yet been created 179s or been moved out of Incoming. 179s The following information may help to resolve the situation: 179s 179s The following packages have unmet dependencies: 179s satisfy:command-line : Depends: silx but it is not going to be installed 179s Depends: python3-silx but it is not installable 179s E: Unable to correct problems, you have held broken packages. 179s autopkgtest: DBG: testbed command exited with code 100 179s autopkgtest: DBG: apt-get satisfy failed; status-fd: 179s 179s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 179s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s 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', 'silx, python3-silx, python-silx-doc, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 179s Reading package lists... 179s Building dependency tree... 179s Reading state information... 179s Starting pkgProblemResolver with broken count: 1 179s Starting 2 pkgProblemResolver with broken count: 1 179s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 179s Broken satisfy:command-line:s390x Depends on silx:s390x < none | 2.2.0+dfsg-1 @un uH > 179s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Reinst Failed early because of python3-silx:s390x 179s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Broken satisfy:command-line:s390x Depends on python3-silx:s390x < none @un H > 179s Broken satisfy:command-line:s390x Depends on python-silx-doc:s390x < none | 2.2.0+dfsg-1 @un uH > 179s Considering python-silx-doc:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated fonts-mathjax:s390x 179s Re-Instated libjs-mathjax:s390x 179s Re-Instated libjs-jquery:s390x 179s Re-Instated libjs-underscore:s390x 179s Re-Instated libjs-sphinxdoc:s390x 179s Re-Instated python-silx-doc:s390x 179s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 179s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated libpython3.12-minimal:s390x 179s Re-Instated python3.12-minimal:s390x 179s Re-Instated libnsl2:s390x 179s Re-Instated libpython3.12-stdlib:s390x 179s Re-Instated python3.12:s390x 179s Re-Instated python3-all:s390x 179s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 179s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated python3-iniconfig:s390x 179s Re-Instated python3-packaging:s390x 179s Re-Instated python3-pluggy:s390x 179s Re-Instated python3-pytest:s390x 179s Broken satisfy:command-line:s390x Depends on python3-pytest-mock:s390x < none | 3.14.0-2 @un uH > 179s Considering python3-pytest-mock:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated python3-pytest-mock:s390x 179s Broken satisfy:command-line:s390x Depends on python3-pytest-xvfb:s390x < none | 3.0.0-2 @un uH > 179s Considering python3-pytest-xvfb:s390x 1 as a solution to satisfy:command-line:s390x 9998 179s Re-Instated x11-common:s390x 179s Re-Instated libice6:s390x 179s Re-Instated libsm6:s390x 179s Re-Instated libxt6t64:s390x 179s Re-Instated libxmu6:s390x 179s Re-Instated libxpm4:s390x 179s Re-Instated libxaw7:s390x 179s Re-Instated libxkbfile1:s390x 179s Re-Instated libxrender1:s390x 179s Re-Instated libxrandr2:s390x 179s Re-Instated x11-xkb-utils:s390x 179s Re-Instated xserver-common:s390x 179s Re-Instated libglvnd0:s390x 179s Re-Instated libglapi-mesa:s390x 179s Re-Instated libx11-xcb1:s390x 179s Re-Instated libxcb-dri3-0:s390x 179s Re-Instated libxcb-glx0:s390x 179s Re-Instated libxcb-present0:s390x 179s Re-Instated libxcb-shm0:s390x 179s Re-Instated libxcb-xfixes0:s390x 179s Re-Instated libxxf86vm1:s390x 179s Re-Instated libdrm-radeon1:s390x 179s Re-Instated libxcb-randr0:s390x 179s Re-Instated libxcb-sync1:s390x 179s Re-Instated libxshmfence1:s390x 179s Re-Instated mesa-libgallium:s390x 179s Re-Instated libwayland-server0:s390x 179s Re-Instated libgbm1:s390x 179s Re-Instated libvulkan1:s390x 179s Re-Instated libgl1-mesa-dri:s390x 179s Re-Instated libglx-mesa0:s390x 179s Re-Instated libglx0:s390x 179s Re-Instated libgl1:s390x 179s Re-Instated libpixman-1-0:s390x 179s Re-Instated libfontenc1:s390x 179s Re-Instated libfreetype6:s390x 179s Re-Instated libxfont2:s390x 179s Re-Instated xvfb:s390x 179s Re-Instated python3-pyvirtualdisplay:s390x 179s Re-Instated python3-pytest-xvfb:s390x 179s Done 179s Some packages could not be installed. This may mean that you have 179s requested an impossible situation or if you are using the unstable 179s distribution that some required packages have not yet been created 179s or been moved out of Incoming. 179s The following information may help to resolve the situation: 179s 179s The following packages have unmet dependencies: 180s satisfy:command-line : Depends: silx but it is not going to be installed 180s Depends: python3-silx but it is not installable 180s E: Unable to correct problems, you have held broken packages. 180s autopkgtest: DBG: testbed command exited with code 100 180s autopkgtest: DBG: apt-get satisfy failed; status-fd: 180s 180s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 180s autopkgtest [13:02:28]: test opencl: preparing testbed 180s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'], deps_new=['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 180s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 180s autopkgtest: DBG: install_deps: deps_new=['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 180s autopkgtest: DBG: install-deps: satisfying silx, python3-silx, python-silx-doc, clinfo, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb 180s autopkgtest: DBG: can use apt-get on testbed: True 180s 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', 'silx, python3-silx, python-silx-doc, clinfo, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 180s no-opencl FAIL badpkg 180s blame: silx 180s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 180s Reading package lists... 180s Building dependency tree... 180s Reading state information... 180s Starting pkgProblemResolver with broken count: 1 180s Starting 2 pkgProblemResolver with broken count: 1 180s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 180s Broken satisfy:command-line:s390x Depends on silx:s390x < none | 2.2.0+dfsg-1 @un uH > 180s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Reinst Failed early because of python3-silx:s390x 180s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Broken satisfy:command-line:s390x Depends on python3-silx:s390x < none @un H > 180s Broken satisfy:command-line:s390x Depends on python-silx-doc:s390x < none | 2.2.0+dfsg-1 @un uH > 180s Considering python-silx-doc:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Re-Instated fonts-mathjax:s390x 180s Re-Instated libjs-mathjax:s390x 180s Re-Instated libjs-jquery:s390x 180s Re-Instated libjs-underscore:s390x 180s Re-Instated libjs-sphinxdoc:s390x 180s Re-Instated python-silx-doc:s390x 180s Broken satisfy:command-line:s390x Depends on clinfo:s390x < none | 3.0.23.01.25-1build1 @un uH > 180s Considering clinfo:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Re-Instated ocl-icd-libopencl1:s390x 180s Re-Instated clinfo:s390x 180s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 180s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Re-Instated libpython3.12-minimal:s390x 180s Re-Instated python3.12-minimal:s390x 180s Re-Instated libnsl2:s390x 180s Re-Instated libpython3.12-stdlib:s390x 180s Re-Instated python3.12:s390x 180s Re-Instated python3-all:s390x 180s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 180s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Re-Instated python3-iniconfig:s390x 180s Re-Instated python3-packaging:s390x 180s Re-Instated python3-pluggy:s390x 180s Re-Instated python3-pytest:s390x 180s Broken satisfy:command-line:s390x Depends on python3-pytest-mock:s390x < none | 3.14.0-2 @un uH > 180s Considering python3-pytest-mock:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Re-Instated python3-pytest-mock:s390x 180s Broken satisfy:command-line:s390x Depends on python3-pytest-xvfb:s390x < none | 3.0.0-2 @un uH > 180s Considering python3-pytest-xvfb:s390x 1 as a solution to satisfy:command-line:s390x 9998 180s Re-Instated x11-common:s390x 180s Re-Instated libice6:s390x 180s Re-Instated libsm6:s390x 180s Re-Instated libxt6t64:s390x 180s Re-Instated libxmu6:s390x 180s Re-Instated libxpm4:s390x 180s Re-Instated libxaw7:s390x 180s Re-Instated libxkbfile1:s390x 180s Re-Instated libxrender1:s390x 180s Re-Instated libxrandr2:s390x 180s Re-Instated x11-xkb-utils:s390x 180s Re-Instated xserver-common:s390x 180s Re-Instated libglvnd0:s390x 180s Re-Instated libglapi-mesa:s390x 180s Re-Instated libx11-xcb1:s390x 180s Re-Instated libxcb-dri3-0:s390x 180s Re-Instated libxcb-glx0:s390x 180s Re-Instated libxcb-present0:s390x 180s Re-Instated libxcb-shm0:s390x 180s Re-Instated libxcb-xfixes0:s390x 180s Re-Instated libxxf86vm1:s390x 180s Re-Instated libdrm-radeon1:s390x 180s Re-Instated libxcb-randr0:s390x 180s Re-Instated libxcb-sync1:s390x 180s Re-Instated libxshmfence1:s390x 180s Re-Instated mesa-libgallium:s390x 180s Re-Instated libwayland-server0:s390x 180s Re-Instated libgbm1:s390x 180s Re-Instated libvulkan1:s390x 180s Re-Instated libgl1-mesa-dri:s390x 180s Re-Instated libglx-mesa0:s390x 180s Re-Instated libglx0:s390x 180s Re-Instated libgl1:s390x 180s Re-Instated libpixman-1-0:s390x 180s Re-Instated libfontenc1:s390x 180s Re-Instated libfreetype6:s390x 180s Re-Instated libxfont2:s390x 180s Re-Instated xvfb:s390x 180s Re-Instated python3-pyvirtualdisplay:s390x 180s Re-Instated python3-pytest-xvfb:s390x 180s Done 180s Some packages could not be installed. This may mean that you have 180s requested an impossible situation or if you are using the unstable 180s distribution that some required packages have not yet been created 180s or been moved out of Incoming. 180s The following information may help to resolve the situation: 180s 180s The following packages have unmet dependencies: 180s satisfy:command-line : Depends: silx but it is not going to be installed 180s Depends: python3-silx but it is not installable 180s E: Unable to correct problems, you have held broken packages. 180s autopkgtest: DBG: testbed command exited with code 100 180s autopkgtest: DBG: apt-get satisfy failed; status-fd: 180s 180s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 180s autopkgtest [13:02:28]: test command1: preparing testbed 180s opencl FAIL badpkg 180s blame: silx 180s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 180s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'], deps_new=['mesa-utils', 'silx', 'xauth', 'xvfb'] 180s autopkgtest: DBG: testbed reset 180s autopkgtest: DBG: sending command to testbed: revert 299s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.nfZYja 299s autopkgtest: DBG: sending command to testbed: print-execute-command 299s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qnelyu33/runcmd 299s autopkgtest: DBG: sending command to testbed: capabilities 299s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system ok isolation-machine revert reboot root-on-testbed 299s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'ok', 'isolation-machine', 'revert', 'reboot', 'root-on-testbed', 'has_internet'] 299s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.nfZYja/wrapper.sh 299s autopkgtest: DBG: got reply from testbed: ok 299s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/wrapper.sh'], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest [13:04:27]: testbed dpkg architecture: s390x 299s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest [13:04:27]: testbed apt version: 2.9.30 299s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: testbed has eatmydata 300s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest [13:04:28]: @@@@@@@@@@@@@@@@@@@@ test bed setup 300s 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 [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest [13:04:28]: testbed release detected to be: plucky 300s 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 [] 300s autopkgtest: DBG: testbed command exited with code 0 300s 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 [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: adding APT source: Types: deb deb-src 300s URIs: http://ftpmaster.internal/ubuntu/ 300s Suites: plucky-proposed 300s Components: main restricted universe multiverse 300s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 300s 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 [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 300s Package: * 300s Pin: release plucky-proposed 300s Pin-Priority: 500 300s 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 [] 301s autopkgtest: DBG: testbed command exited with code 0 301s autopkgtest [13:04:29]: updating testbed package index (apt update) 301s 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'] 301s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 301s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 301s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 301s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 301s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 301s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 302s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 302s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 302s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 302s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 302s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 303s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 303s Fetched 1711 kB in 2s (810 kB/s) 304s Reading package lists... 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 304s Package: * 304s Pin: release plucky-proposed 304s Pin-Priority: 100 304s 304s Package: src:sphinx:any 304s Pin: release plucky-proposed 304s Pin-Priority: 995 304s 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 [] 304s autopkgtest: DBG: testbed command exited with code 0 304s 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.nfZYja/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s 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'] 304s + lsb_release --codename --short 304s + RELEASE=plucky 304s + cat 304s + [ plucky != trusty ] 304s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 304s Reading package lists... 304s Building dependency tree... 304s Reading state information... 304s Calculating upgrade... 304s The following packages were automatically installed and are no longer required: 304s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 304s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 304s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 304s linux-tools-6.11.0-8-generic 304s Use 'sudo apt autoremove' to remove them. 304s The following packages will be upgraded: 304s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 305s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 305s Need to get 1982 kB of archives. 305s After this operation, 22.5 kB of additional disk space will be used. 305s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 305s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 306s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 306s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 306s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 306s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 306s Preconfiguring packages ... 306s Fetched 1982 kB in 2s (1307 kB/s) 306s (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.) 306s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 306s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 306s Setting up sysvinit-utils (3.14-1ubuntu1) ... 306s (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.) 306s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 306s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 307s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 307s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 307s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 307s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 307s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 307s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 307s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 307s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 307s Setting up liblsof0 (4.99.4+dfsg-1) ... 307s Setting up iproute2 (6.13.0-1ubuntu1) ... 307s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 307s Setting up lsof (4.99.4+dfsg-1) ... 307s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 307s Processing triggers for man-db (2.13.0-1) ... 307s Processing triggers for libc-bin (2.40-4ubuntu1) ... 307s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 307s + /usr/lib/apt/apt-helper analyze-pattern ?true 307s + uname -r 307s + sed s/\./\\./g 307s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 307s + apt list ?obsolete 307s + tail -n+2 307s + cut -d/ -f1 307s + grep -v ^linux-.*6\.12\.0-15-generic.* 308s + true 308s + obsolete_pkgs= 308s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 308s Reading package lists... 308s Building dependency tree... 308s Reading state information... 308s The following packages will be REMOVED: 308s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 308s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 308s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 308s linux-tools-6.11.0-8-generic* 308s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 308s After this operation, 167 MB disk space will be freed. 308s (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.) 308s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 308s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 308s Removing libpython3.12t64:s390x (3.12.9-1) ... 308s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 308s Removing libnsl2:s390x (1.3.0-3build3) ... 308s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 308s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 308s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 309s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 309s Processing triggers for libc-bin (2.40-4ubuntu1) ... 309s (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.) 309s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 309s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 309s + grep -q trusty /etc/lsb-release 309s + [ ! -d /usr/share/doc/unattended-upgrades ] 309s + [ ! -d /usr/share/doc/lxd ] 309s + [ ! -d /usr/share/doc/lxd-client ] 309s + [ ! -d /usr/share/doc/snapd ] 309s + type iptables 309s + cat 309s + chmod 755 /etc/rc.local 309s + . /etc/rc.local 309s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 309s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 309s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 309s + uname -m 309s + [ s390x = ppc64le ] 309s + [ -d /run/systemd/system ] 309s + systemd-detect-virt --quiet --vm 309s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 309s + cat 309s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 309s + echo COMPRESS=lz4 309s autopkgtest: DBG: testbed command exited with code 0 309s autopkgtest [13:04:37]: upgrading testbed (apt dist-upgrade and autopurge) 309s 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'] 309s Reading package lists... 310s Building dependency tree... 310s Reading state information... 310s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 310s Starting 2 pkgProblemResolver with broken count: 0 310s Done 310s Entering ResolveByKeep 310s 310s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 310s autopkgtest: DBG: testbed command exited with code 0 310s 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'] 310s Reading package lists... 310s Building dependency tree... 310s Reading state information... 310s Starting pkgProblemResolver with broken count: 0 311s Starting 2 pkgProblemResolver with broken count: 0 311s Done 311s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 311s autopkgtest: DBG: testbed command exited with code 0 311s 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.nfZYja/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 311s autopkgtest: DBG: testbed command exited with code 1 311s autopkgtest [13:04:39]: rebooting testbed after setup commands that affected boot 311s autopkgtest: DBG: sending command to testbed: reboot 328s autopkgtest: DBG: got reply from testbed: ok 328s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 328s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 328s autopkgtest: DBG: testbed command exited with code 0 328s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot 328s autopkgtest: DBG: got reply from testbed: ok 328s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare 329s autopkgtest: DBG: got reply from testbed: ok 329s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nfZYja/testbed-packages"], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfZYja/testbed-packages /tmp/autopkgtest-work.aiwbi_ut/out/testbed-packages 330s autopkgtest: DBG: got reply from testbed: ok 330s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 330s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot 331s autopkgtest: DBG: got reply from testbed: ok 331s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfZYja'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare 331s autopkgtest: DBG: got reply from testbed: ok 331s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfZYja/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 332s autopkgtest: DBG: install_deps: deps_new=['mesa-utils', 'silx', 'xauth', 'xvfb'] 332s autopkgtest: DBG: install-deps: satisfying mesa-utils, silx, xauth, xvfb 332s autopkgtest: DBG: can use apt-get on testbed: True 332s 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', 'mesa-utils, silx, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 332s Reading package lists... 332s Building dependency tree... 332s Reading state information... 332s Starting pkgProblemResolver with broken count: 1 332s Starting 2 pkgProblemResolver with broken count: 1 332s Investigating (0) silx:s390x < none -> 2.1.2+dfsg-1build2 @un puN Ib > 332s Broken silx:s390x Depends on python3-silx:s390x < none @un H > (>= 2.1.2+dfsg-1build2) 332s Broken silx:s390x Depends on python3-numpy:s390x < none | 1:1.26.4+ds-13 @un uH > 332s Considering python3-numpy:s390x 1 as a solution to silx:s390x 0 332s Re-Instated libblas3:s390x 332s Re-Instated libgfortran5:s390x 332s Re-Instated liblapack3:s390x 332s Re-Instated python3-numpy:s390x 332s Done 332s Some packages could not be installed. This may mean that you have 332s requested an impossible situation or if you are using the unstable 332s distribution that some required packages have not yet been created 332s or been moved out of Incoming. 332s The following information may help to resolve the situation: 332s 332s The following packages have unmet dependencies: 333s silx : Depends: python3-silx (>= 2.1.2+dfsg-1build2) but it is not installable 333s E: Unable to correct problems, you have held broken packages. 333s autopkgtest: DBG: testbed command exited with code 100 333s autopkgtest: DBG: apt-get satisfy failed; status-fd: 333s 333s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 333s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 333s autopkgtest: DBG: testbed command exited with code 0 333s 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', 'mesa-utils, silx, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 333s Reading package lists... 333s Building dependency tree... 333s Reading state information... 333s Starting pkgProblemResolver with broken count: 1 333s Starting 2 pkgProblemResolver with broken count: 1 333s Investigating (0) silx:s390x < none -> 2.2.0+dfsg-1 @un puN Ib > 333s Broken silx:s390x Depends on python3-silx:s390x < none @un H > (>= 2.2.0+dfsg-1) 333s Broken silx:s390x Depends on python3-numpy:s390x < none | 1:2.2.3+ds-1 @un uH > 333s Considering python3-numpy:s390x 1 as a solution to silx:s390x 0 333s Re-Instated python3-numpy-dev:s390x 333s Re-Instated libblas3:s390x 333s Re-Instated libgfortran5:s390x 333s Re-Instated liblapack3:s390x 333s Re-Instated python3-numpy:s390x 333s Done 333s Some packages could not be installed. This may mean that you have 333s requested an impossible situation or if you are using the unstable 333s distribution that some required packages have not yet been created 333s or been moved out of Incoming. 333s The following information may help to resolve the situation: 333s 333s The following packages have unmet dependencies: 333s silx : Depends: python3-silx (>= 2.2.0+dfsg-1) but it is not installable 333s E: Unable to correct problems, you have held broken packages. 333s command1 FAIL badpkg 333s blame: silx 333s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 333s autopkgtest: DBG: testbed command exited with code 100 333s autopkgtest: DBG: apt-get satisfy failed; status-fd: 333s 333s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 333s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 333s autopkgtest [13:05:01]: @@@@@@@@@@@@@@@@@@@@ summary 333s no-opencl FAIL badpkg 333s blame: silx 333s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 333s opencl FAIL badpkg 333s blame: silx 333s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 333s command1 FAIL badpkg 333s blame: silx 333s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 333s autopkgtest: DBG: testbed stop 333s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.nfZYja 333s autopkgtest: DBG: sending command to testbed: close 351s autopkgtest: DBG: got reply from testbed: ok 351s autopkgtest: DBG: sending command to testbed: quit 351s nova [W] Using flock in prodstack6-s390x 351s Creating nova instance adt-plucky-s390x-silx-20250219-125928-juju-7f2275-prod-proposed-migration-environment-15-89752bfd-1c29-45b9-a965-dc29bcbe38d4 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 351s nova [W] Timed out waiting for 46e99384-3975-4412-b76e-25c0828ce091 to get deleted. 351s nova [W] Using flock in prodstack6-s390x 351s flock: timeout while waiting to get lock 351s Creating nova instance adt-plucky-s390x-silx-20250219-125928-juju-7f2275-prod-proposed-migration-environment-15-89752bfd-1c29-45b9-a965-dc29bcbe38d4 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 351s nova [W] Timed out waiting for 388c8620-e81c-49f5-9fb0-32e530e0487a to get deleted.