0s autopkgtest: DBG: testbed init 0s autopkgtest [12:41:36]: starting date and time: 2025-02-19 12:41:36+0000 0s autopkgtest [12:41:36]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:41:36]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.51s30w3f/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-gsd --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-29.secgroup --name adt-plucky-s390x-python-gsd-20250219-124136-juju-7f2275-prod-proposed-migration-environment-15-10c0a23b-e086-45ba-86b2-7dae21fe8771 --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 129s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.tvZpeh 129s autopkgtest: DBG: sending command to testbed: print-execute-command 129s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2zxoqeq5/runcmd 129s autopkgtest: DBG: sending command to testbed: capabilities 129s autopkgtest: DBG: got reply from testbed: ok revert-full-system reboot isolation-machine revert suggested-normal-user=ubuntu root-on-testbed 129s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'reboot', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tvZpeh'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.tvZpeh/wrapper.sh 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tvZpeh/wrapper.sh'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [12:43:46]: testbed dpkg architecture: s390x 130s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [12:43:46]: testbed apt version: 2.9.30 130s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed has eatmydata 130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [12:43:46]: @@@@@@@@@@@@@@@@@@@@ test bed setup 130s 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 [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [12:43:46]: testbed release detected to be: None 130s 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 [] 130s autopkgtest: DBG: testbed command exited with code 0 130s 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 [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: adding APT source: Types: deb deb-src 131s URIs: http://ftpmaster.internal/ubuntu/ 131s Suites: plucky-proposed 131s Components: main restricted universe multiverse 131s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 131s 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 [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 131s Package: * 131s Pin: release plucky-proposed 131s Pin-Priority: 500 131s 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 [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest [12:43:47]: updating testbed package index (apt update) 131s 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'] 131s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 131s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 132s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 132s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 132s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 132s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 132s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 132s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 132s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 132s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 132s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 132s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 132s Fetched 1700 kB in 1s (1783 kB/s) 133s Reading package lists... 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 133s Package: * 133s Pin: release plucky-proposed 133s Pin-Priority: 100 133s 133s Package: src:sphinx:any 133s Pin: release plucky-proposed 133s Pin-Priority: 995 133s 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 [] 133s autopkgtest: DBG: testbed command exited with code 0 133s 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.tvZpeh/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s 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'] 133s + lsb_release --codename --short 133s + RELEASE=plucky 133s + cat 133s + [ plucky != trusty ] 133s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 133s Reading package lists... 133s Building dependency tree... 133s Reading state information... 134s Calculating upgrade... 134s The following packages were automatically installed and are no longer required: 134s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 134s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 134s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 134s linux-tools-6.11.0-8-generic 134s Use 'sudo apt autoremove' to remove them. 134s The following packages will be upgraded: 134s iproute2 liblsof0 libp11-kit0 lsof 134s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 134s Need to get 1791 kB of archives. 134s After this operation, 17.4 kB of additional disk space will be used. 134s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 134s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 134s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 134s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 135s Preconfiguring packages ... 135s Fetched 1791 kB in 1s (2861 kB/s) 135s (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.) 135s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 135s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 135s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 135s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 135s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 135s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 135s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 135s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 135s Setting up liblsof0 (4.99.4+dfsg-1) ... 135s Setting up iproute2 (6.13.0-1ubuntu1) ... 135s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 135s Setting up lsof (4.99.4+dfsg-1) ... 135s Processing triggers for man-db (2.13.0-1) ... 136s Processing triggers for libc-bin (2.40-4ubuntu1) ... 136s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 136s + /usr/lib/apt/apt-helper analyze-pattern ?true 136s + uname -r 136s + sed s/\./\\./g 136s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 136s + apt list ?obsolete 136s + tail -n+2 136s + cut -d/ -f1 136s + grep -v ^linux-.*6\.12\.0-15-generic.* 136s + true 136s + obsolete_pkgs= 136s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 136s Reading package lists... 136s Building dependency tree... 136s Reading state information... 136s The following packages will be REMOVED: 136s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 136s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 136s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 136s linux-tools-6.11.0-8-generic* 136s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 136s After this operation, 167 MB disk space will be freed. 136s (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.) 136s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 136s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 136s Removing libpython3.12t64:s390x (3.12.9-1) ... 136s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 137s Removing libnsl2:s390x (1.3.0-3build3) ... 137s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 137s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 137s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 138s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 138s Processing triggers for libc-bin (2.40-4ubuntu1) ... 138s (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.) 138s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 138s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 138s + grep -q trusty /etc/lsb-release 138s + [ ! -d /usr/share/doc/unattended-upgrades ] 138s + [ ! -d /usr/share/doc/lxd ] 138s + [ ! -d /usr/share/doc/lxd-client ] 138s + [ ! -d /usr/share/doc/snapd ] 138s + type iptables 138s + cat 138s + chmod 755 /etc/rc.local 138s + . /etc/rc.local 138s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 138s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 138s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 138s + uname -m 138s + [ s390x = ppc64le ] 138s + [ -d /run/systemd/system ] 138s + systemd-detect-virt --quiet --vm 138s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 138s + cat 138s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 138s + echo COMPRESS=lz4 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest [12:43:54]: upgrading testbed (apt dist-upgrade and autopurge) 138s 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'] 138s Reading package lists... 138s Building dependency tree... 138s Reading state information... 139s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 139s Starting 2 pkgProblemResolver with broken count: 0 139s Done 139s Entering ResolveByKeep 139s 139s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 139s autopkgtest: DBG: testbed command exited with code 0 139s 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'] 139s Reading package lists... 140s Building dependency tree... 140s Reading state information... 140s Starting pkgProblemResolver with broken count: 0 140s Starting 2 pkgProblemResolver with broken count: 0 140s Done 140s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 140s autopkgtest: DBG: testbed command exited with code 0 140s 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.tvZpeh/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 1 140s autopkgtest [12:43:56]: rebooting testbed after setup commands that affected boot 140s autopkgtest: DBG: sending command to testbed: reboot 149s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 160s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tvZpeh'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.tvZpeh/autopkgtest-reboot 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tvZpeh'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.tvZpeh/autopkgtest-reboot-prepare 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [12:44:18]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 162s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.tvZpeh/testbed-packages"], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tvZpeh/testbed-packages /tmp/autopkgtest-work.51s30w3f/out/testbed-packages 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 162s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tvZpeh'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.tvZpeh/autopkgtest-reboot 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tvZpeh'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.tvZpeh/autopkgtest-reboot-prepare 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tvZpeh/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: Binaries: initialising 164s autopkgtest [12:44:20]: @@@@@@@@@@@@@@@@@@@@ apt-source python-gsd 164s autopkgtest: DBG: blame += python-gsd 164s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 164s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-gsd'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-gsd$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-gsd-doc$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-gsd-doc=3.3.0-1build2'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: install_deps: deps_new=[] 165s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s 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.tvZpeh/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-gsd=3.3.0-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 python-gsd_*.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'] 166s + cd / 166s + mktemp -d /tmp/autopkgtest.tvZpeh/build.XXX 166s + builddir=/tmp/autopkgtest.tvZpeh/build.001 166s + cd /tmp/autopkgtest.tvZpeh/build.001 166s + apt-get source -d -q --only-source python-gsd=3.3.0-1build2 166s + OUT=Reading package lists... 166s NOTICE: 'python-gsd' packaging is maintained in the 'Git' version control system at: 166s https://salsa.debian.org/debichem-team/python-gsd.git 166s Please use: 166s git clone https://salsa.debian.org/debichem-team/python-gsd.git 166s to retrieve the latest (possibly unreleased) updates to the package. 166s Need to get 117 kB of source archives. 166s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (dsc) [2519 B] 166s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (tar) [109 kB] 166s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (diff) [6244 B] 166s Fetched 117 kB in 0s (252 kB/s) 166s Download complete and in download only mode 166s + [ -n ] 166s + grep ^Get: 166s + echo Reading package lists... 166s NOTICE: 'python-gsd' packaging is maintained in the 'Git' version control system at: 166s https://salsa.debian.org/debichem-team/python-gsd.git 166s Please use: 166s git clone https://salsa.debian.org/debichem-team/python-gsd.git 166s to retrieve the latest (possibly unreleased) updates to the package. 166s Need to get 117 kB of source archives. 166s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (dsc) [2519 B] 166s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (tar) [109 kB] 166s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (diff) [6244 B] 166s Fetched 117 kB in 0s (252 kB/s) 166s Download complete and in download only mode 166s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (dsc) [2519 B] 166s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (tar) [109 kB] 166s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-gsd 3.3.0-1build2 (diff) [6244 B] 166s + dpkg-source -x python-gsd_3.3.0-1build2.dsc src 166s gpgv: Signature made Wed Jan 29 22:37:00 2025 UTC 166s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 166s gpgv: Can't check signature: No public key 166s dpkg-source: warning: cannot verify inline signature for ./python-gsd_3.3.0-1build2.dsc: no acceptable signature found 166s + chmod -R a+rX . 166s + cd src/. 166s + pwd 166s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [12:44:22]: testing package python-gsd version 3.3.0-1build2 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tvZpeh/build.001/src/debian/ /tmp/autopkgtest-work.51s30w3f/out/pkg/debian/ 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: processing dependency python3-gsd 167s autopkgtest: DBG: marked alternatives ['python3-gsd'] as a synthesised dependency 167s autopkgtest: DBG: processing dependency python3-pytest 167s autopkgtest: DBG: processing dependency python3-all 167s autopkgtest: DBG: Test defined: name command1 path None command "for py in `py3versions -s`; do $py -m pytest -v /usr/lib/python3/dist-packages/gsd; done" restrictions [] features [] depends ['python3-gsd', 'python3-pytest', 'python3-all'] 167s autopkgtest [12:44:23]: build not needed 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tvZpeh/build.001/src/ /tmp/autopkgtest-work.51s30w3f/out/tests-tree/ 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: processing dependency python3-gsd 167s autopkgtest: DBG: marked alternatives ['python3-gsd'] as a synthesised dependency 167s autopkgtest: DBG: processing dependency python3-pytest 167s autopkgtest: DBG: processing dependency python3-all 167s autopkgtest: DBG: Test defined: name command1 path None command "for py in `py3versions -s`; do $py -m pytest -v /usr/lib/python3/dist-packages/gsd; done" restrictions [] features [] depends ['python3-gsd', 'python3-pytest', 'python3-all'] 167s autopkgtest [12:44:23]: test command1: preparing testbed 167s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-gsd', 'python3-pytest', 'python3-all'] 167s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 167s autopkgtest: DBG: install_deps: deps_new=['python3-gsd', 'python3-pytest', 'python3-all'] 167s autopkgtest: DBG: install-deps: satisfying python3-gsd, python3-pytest, python3-all 167s autopkgtest: DBG: can use apt-get on testbed: True 167s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-gsd, python3-pytest, python3-all'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 167s Reading package lists... 168s Building dependency tree... 168s Reading state information... 168s Starting pkgProblemResolver with broken count: 1 168s Starting 2 pkgProblemResolver with broken count: 1 168s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 168s Broken satisfy:command-line:s390x Depends on python3-gsd:s390x < none @un H > 168s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 168s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 168s Re-Instated python3-iniconfig:s390x 168s Re-Instated python3-packaging:s390x 168s Re-Instated python3-pluggy:s390x 168s Re-Instated python3-pytest:s390x 168s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 168s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 168s Re-Instated libpython3.12-minimal:s390x 168s Re-Instated python3.12-minimal:s390x 168s Re-Instated libnsl2:s390x 168s Re-Instated libpython3.12-stdlib:s390x 168s Re-Instated python3.12:s390x 168s Re-Instated python3-all:s390x 168s Done 168s Some packages could not be installed. This may mean that you have 168s requested an impossible situation or if you are using the unstable 168s distribution that some required packages have not yet been created 168s or been moved out of Incoming. 168s The following information may help to resolve the situation: 168s 168s The following packages have unmet dependencies: 168s satisfy:command-line : Depends: python3-gsd but it is not installable 168s E: Unable to correct problems, you have held broken packages. 168s autopkgtest: DBG: testbed command exited with code 100 168s autopkgtest: DBG: apt-get satisfy failed; status-fd: 168s 168s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 168s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-gsd, python3-pytest, python3-all'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 168s Reading package lists... 169s Building dependency tree... 169s Reading state information... 169s Starting pkgProblemResolver with broken count: 1 169s Starting 2 pkgProblemResolver with broken count: 1 169s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 169s Broken satisfy:command-line:s390x Depends on python3-gsd:s390x < none @un H > 169s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 169s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 169s Re-Instated python3-iniconfig:s390x 169s Re-Instated python3-packaging:s390x 169s Re-Instated python3-pluggy:s390x 169s Re-Instated python3-pytest:s390x 169s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 169s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 169s Re-Instated libpython3.12-minimal:s390x 169s Re-Instated python3.12-minimal:s390x 169s Re-Instated libnsl2:s390x 169s Re-Instated libpython3.12-stdlib:s390x 169s Re-Instated python3.12:s390x 169s Re-Instated python3-all:s390x 169s Done 169s Some packages could not be installed. This may mean that you have 169s requested an impossible situation or if you are using the unstable 169s distribution that some required packages have not yet been created 169s or been moved out of Incoming. 169s The following information may help to resolve the situation: 169s 169s The following packages have unmet dependencies: 169s satisfy:command-line : Depends: python3-gsd but it is not installable 169s E: Unable to correct problems, you have held broken packages. 169s command1 FAIL badpkg 169s blame: python-gsd 169s 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. 169s autopkgtest: DBG: testbed command exited with code 100 169s autopkgtest: DBG: apt-get satisfy failed; status-fd: 169s 169s 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. 169s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 169s autopkgtest [12:44:25]: @@@@@@@@@@@@@@@@@@@@ summary 169s command1 FAIL badpkg 169s blame: python-gsd 169s 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. 169s autopkgtest: DBG: testbed stop 169s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.tvZpeh 169s autopkgtest: DBG: sending command to testbed: close 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: sending command to testbed: quit 186s nova [W] Using flock in prodstack6-s390x 186s Creating nova instance adt-plucky-s390x-python-gsd-20250219-124136-juju-7f2275-prod-proposed-migration-environment-15-10c0a23b-e086-45ba-86b2-7dae21fe8771 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 186s nova [W] Timed out waiting for bad84430-1d77-46f1-a82b-abc1b1e67ded to get deleted.