0s autopkgtest: DBG: testbed init 0s autopkgtest [13:42:54]: starting date and time: 2025-02-21 13:42:54+0000 0s autopkgtest [13:42:54]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [13:42:54]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.rl31z2nk/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:build-essential --apt-upgrade nim-docopt --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=build-essential/12.12 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-7.secgroup --name adt-plucky-s390x-nim-docopt-20250221-134254-juju-7f2275-prod-proposed-migration-environment-15-5fde37d0-df14-4f73-8cd3-0601fee8d779 --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 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.R5OFzt 112s autopkgtest: DBG: sending command to testbed: print-execute-command 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.rmw89zcm/runcmd 112s autopkgtest: DBG: sending command to testbed: capabilities 112s autopkgtest: DBG: got reply from testbed: ok revert reboot suggested-normal-user=ubuntu isolation-machine revert-full-system root-on-testbed 112s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'root-on-testbed', 'has_internet'] 112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.R5OFzt'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.R5OFzt/wrapper.sh 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.R5OFzt/wrapper.sh'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [13:44:47]: testbed dpkg architecture: s390x 113s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [13:44:48]: testbed apt version: 2.9.30ubuntu1 114s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed has eatmydata 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [13:44:48]: @@@@@@@@@@@@@@@@@@@@ test bed setup 114s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [13:44:48]: testbed release detected to be: None 114s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT source: Types: deb deb-src 115s URIs: http://ftpmaster.internal/ubuntu/ 115s Suites: plucky-proposed 115s Components: main restricted universe multiverse 115s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 115s Package: * 115s Pin: release plucky-proposed 115s Pin-Priority: 500 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [13:44:49]: updating testbed package index (apt update) 115s 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'] 116s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 116s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 116s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 116s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 116s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 116s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 116s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 116s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 116s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 116s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 116s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 116s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 116s Fetched 1711 kB in 1s (1784 kB/s) 117s Reading package lists... 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 117s Package: * 117s Pin: release plucky-proposed 117s Pin-Priority: 100 117s 117s Package: src:build-essential:any 117s Pin: release plucky-proposed 117s Pin-Priority: 995 117s 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:build-essential:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s 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.R5OFzt/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 118s + lsb_release --codename --short 118s + RELEASE=plucky 118s + cat 118s + [ plucky != trusty ] 118s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Calculating upgrade... 118s Calculating upgrade... 118s The following packages were automatically installed and are no longer required: 118s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 118s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 118s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 118s linux-tools-6.11.0-8-generic 118s Use 'sudo apt autoremove' to remove them. 118s The following packages will be upgraded: 118s base-files gcc-14-base motd-news-config 118s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s Need to get 134 kB of archives. 118s After this operation, 0 B of additional disk space will be used. 118s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 118s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 118s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 119s Fetched 134 kB in 0s (330 kB/s) 119s (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.) 119s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 119s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 119s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 119s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 119s Setting up base-files (13.6ubuntu1) ... 119s Updating /root/.profile to current default. 119s motd-news.service is a disabled or a static unit not running, not starting it. 119s (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.) 119s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 119s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 119s Setting up motd-news-config (13.6ubuntu1) ... 119s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 119s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 119s Processing triggers for install-info (7.1.1-1) ... 120s Processing triggers for man-db (2.13.0-1) ... 120s Processing triggers for initramfs-tools (0.145ubuntu2) ... 120s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 120s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 123s Using config file '/etc/zipl.conf' 123s Building bootmap in '/boot' 123s Adding IPL section 'ubuntu' (default) 123s Preparing boot device for LD-IPL: vda (0000). 123s Done. 124s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 124s + /usr/lib/apt/apt-helper analyze-pattern ?true 124s + uname -r+ sed s/\./\\./g 124s 124s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 124s + apt list ?obsolete 124s + tail+ cut -d/ -f1 124s -n+2 124s + grep -v ^linux-.*6\.12\.0-15-generic.* 124s + true 124s + obsolete_pkgs= 124s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 124s Reading package lists... 124s Building dependency tree... 124s Reading state information... 124s Solving dependencies... 124s The following packages will be REMOVED: 124s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 124s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 124s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 124s linux-tools-6.11.0-8-generic* 124s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 124s After this operation, 167 MB disk space will be freed. 124s (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.) 124s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 124s Removing libpython3.12t64:s390x (3.12.9-1) ... 124s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 124s Removing libnsl2:s390x (1.3.0-3build3) ... 124s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 124s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 125s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s Processing triggers for libc-bin (2.40-4ubuntu1) ... 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 125s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 125s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s + grep -q trusty /etc/lsb-release 125s + [ ! -d /usr/share/doc/unattended-upgrades ] 125s + [ ! -d /usr/share/doc/lxd ] 125s + [ ! -d /usr/share/doc/lxd-client ] 125s + [ ! -d /usr/share/doc/snapd ] 125s + type iptables 125s + cat 125s + chmod 755 /etc/rc.local 125s + . /etc/rc.local 125s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 125s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 125s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 125s + uname -m 125s + [ s390x = ppc64le ] 125s + [ -d /run/systemd/system ] 125s + systemd-detect-virt --quiet --vm 125s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 125s + cat 125s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 125s + echo COMPRESS=lz4 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [13:45:00]: upgrading testbed (apt dist-upgrade and autopurge) 126s 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'] 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 126s Entering ResolveByKeep 126s 126s Calculating upgrade... 126s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s autopkgtest: DBG: testbed command exited with code 0 126s 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'] 127s Reading package lists... 127s Building dependency tree... 127s Reading state information... 127s Starting pkgProblemResolver with broken count: 0 127s Starting 2 pkgProblemResolver with broken count: 0 127s Done 127s Solving dependencies... 127s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 127s autopkgtest: DBG: testbed command exited with code 0 127s 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.R5OFzt/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 1 128s autopkgtest [13:45:02]: rebooting testbed after setup commands that affected boot 128s autopkgtest: DBG: sending command to testbed: reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.R5OFzt'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.R5OFzt/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.R5OFzt'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.R5OFzt/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [13:45:22]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 148s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.R5OFzt/testbed-packages"], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.R5OFzt/testbed-packages /tmp/autopkgtest-work.rl31z2nk/out/testbed-packages 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.R5OFzt'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.R5OFzt/autopkgtest-reboot 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.R5OFzt'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.R5OFzt/autopkgtest-reboot-prepare 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.R5OFzt/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: Binaries: initialising 151s autopkgtest [13:45:25]: @@@@@@@@@@@@@@@@@@@@ apt-source nim-docopt 151s autopkgtest: DBG: blame += nim-docopt 151s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 151s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'nim-docopt'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^nim-docopt-dev$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'nim-docopt-dev=0.6.8-3'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: install_deps: deps_new=[] 152s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s 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.R5OFzt/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source nim-docopt=0.6.8-3 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 nim-docopt_*.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=build-essential/12.12'] 153s + cd / 153s + mktemp -d /tmp/autopkgtest.R5OFzt/build.XXX 153s + builddir=/tmp/autopkgtest.R5OFzt/build.LlC 153s + cd /tmp/autopkgtest.R5OFzt/build.LlC 153s + apt-get source -d -q --only-source nim-docopt=0.6.8-3 153s + OUT=Reading package lists... 153s NOTICE: 'nim-docopt' packaging is maintained in the 'Git' version control system at: 153s https://salsa.debian.org/nim-team/nim-docopt.git 153s Please use: 153s git clone https://salsa.debian.org/nim-team/nim-docopt.git 153s to retrieve the latest (possibly unreleased) updates to the package. 153s Need to get 21.1 kB of source archives. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (dsc) [2131 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (tar) [15.8 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (diff) [3184 B] 153s Fetched 21.1 kB in 0s (73.9 kB/s) 153s Download complete and in download only mode 153s + [ -n ] 153s + grep ^Get: 153s + echo Reading package lists... 153s NOTICE: 'nim-docopt' packaging is maintained in the 'Git' version control system at: 153s https://salsa.debian.org/nim-team/nim-docopt.git 153s Please use: 153s git clone https://salsa.debian.org/nim-team/nim-docopt.git 153s to retrieve the latest (possibly unreleased) updates to the package. 153s Need to get 21.1 kB of source archives. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (dsc) [2131 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (tar) [15.8 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (diff) [3184 B] 153s Fetched 21.1 kB in 0s (73.9 kB/s) 153s Download complete and in download only mode 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (dsc) [2131 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (tar) [15.8 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe nim-docopt 0.6.8-3 (diff) [3184 B] 153s + dpkg-source -x nim-docopt_0.6.8-3.dsc src 153s gpgv: Signature made Sun Nov 15 20:49:37 2020 UTC 153s gpgv: using RSA key 3E99A526F5DCC0CBBF1CEEA600BAE74B343369F1 153s gpgv: issuer "npatra974@gmail.com" 153s gpgv: Can't check signature: No public key 153s dpkg-source: warning: cannot verify inline signature for ./nim-docopt_0.6.8-3.dsc: no acceptable signature found 154s + chmod -R a+rX . 154s + cd src/. 154s + pwd 154s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [13:45:28]: testing package nim-docopt version 0.6.8-3 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.R5OFzt/build.LlC/src/debian/ /tmp/autopkgtest-work.rl31z2nk/out/pkg/debian/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: processing dependency @ 154s autopkgtest: DBG: synthesised dependency nim-docopt-dev 154s autopkgtest: DBG: processing dependency build-essential 154s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['nim-docopt-dev', 'build-essential'] 154s autopkgtest [13:45:28]: build not needed 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.R5OFzt/build.LlC/src/ /tmp/autopkgtest-work.rl31z2nk/out/tests-tree/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: processing dependency @ 154s autopkgtest: DBG: synthesised dependency nim-docopt-dev 154s autopkgtest: DBG: processing dependency build-essential 154s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['nim-docopt-dev', 'build-essential'] 154s autopkgtest [13:45:28]: test run-unit-test: preparing testbed 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['nim-docopt-dev', 'build-essential'] 154s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 154s autopkgtest: DBG: install_deps: deps_new=['nim-docopt-dev', 'build-essential'] 154s autopkgtest: DBG: install-deps: satisfying nim-docopt-dev, build-essential 154s autopkgtest: DBG: can use apt-get on testbed: True 154s 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', 'nim-docopt-dev, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 155s Reading package lists... 155s Building dependency tree... 155s Reading state information... 155s Starting pkgProblemResolver with broken count: 1 155s Starting 2 pkgProblemResolver with broken count: 1 155s Investigating (0) nim-docopt-dev:s390x < none -> 0.6.8-3 @un puN Ib > 155s Broken nim-docopt-dev:s390x Depends on nim:s390x < none @un H > 155s Broken nim-docopt-dev:s390x Depends on nim-unicodedb-dev:s390x < none | 0.9.0-2 @un uH > 155s Considering nim-unicodedb-dev:s390x 1 as a solution to nim-docopt-dev:s390x 0 155s Re-Instated nim-unicodedb-dev:s390x 155s Broken nim-docopt-dev:s390x Depends on nim-regex-dev:s390x < none | 0.17.0+ds-2 @un uH > 155s Considering nim-regex-dev:s390x 1 as a solution to nim-docopt-dev:s390x 0 155s Reinst Failed early because of nim:s390x 155s Broken nim-docopt-dev:s390x Depends on nim-unicodeplus-dev:s390x < none | 0.5.1-2 @un uH > 155s Considering nim-unicodeplus-dev:s390x 1 as a solution to nim-docopt-dev:s390x 0 155s Re-Instated nim-unicodeplus-dev:s390x 155s Done 155s Some packages could not be installed. This may mean that you have 155s requested an impossible situation or if you are using the unstable 155s distribution that some required packages have not yet been created 155s or been moved out of Incoming. 155s The following information may help to resolve the situation: 155s 155s The following packages have unmet dependencies: 155s nim-docopt-dev : Depends: nim but it is not installable 155s Depends: nim-regex-dev but it is not going to be installed 155s E: Unable to correct problems, you have held broken packages. 155s autopkgtest: DBG: testbed command exited with code 100 155s autopkgtest: DBG: apt-get satisfy failed; status-fd: 155s 155s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 155s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s 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', 'nim-docopt-dev, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 155s Reading package lists... 156s Building dependency tree... 156s Reading state information... 156s Starting pkgProblemResolver with broken count: 1 156s Starting 2 pkgProblemResolver with broken count: 1 156s Investigating (0) nim-docopt-dev:s390x < none -> 0.6.8-3 @un puN Ib > 156s Broken nim-docopt-dev:s390x Depends on nim:s390x < none @un H > 156s Broken nim-docopt-dev:s390x Depends on nim-unicodedb-dev:s390x < none | 0.9.0-2 @un uH > 156s Considering nim-unicodedb-dev:s390x 1 as a solution to nim-docopt-dev:s390x 0 156s Re-Instated nim-unicodedb-dev:s390x 156s Broken nim-docopt-dev:s390x Depends on nim-regex-dev:s390x < none | 0.17.0+ds-2 @un uH > 156s Considering nim-regex-dev:s390x 1 as a solution to nim-docopt-dev:s390x 0 156s Reinst Failed early because of nim:s390x 156s Broken nim-docopt-dev:s390x Depends on nim-unicodeplus-dev:s390x < none | 0.5.1-2 @un uH > 156s Considering nim-unicodeplus-dev:s390x 1 as a solution to nim-docopt-dev:s390x 0 156s Re-Instated nim-unicodeplus-dev:s390x 156s Done 156s Some packages could not be installed. This may mean that you have 156s requested an impossible situation or if you are using the unstable 156s distribution that some required packages have not yet been created 156s or been moved out of Incoming. 156s The following information may help to resolve the situation: 156s 156s The following packages have unmet dependencies: 156s nim-docopt-dev : Depends: nim but it is not installable 156s Depends: nim-regex-dev but it is not going to be installed 156s E: Unable to correct problems, you have held broken packages. 156s autopkgtest: DBG: testbed command exited with code 100 156s autopkgtest: DBG: apt-get satisfy failed; status-fd: 156s 156s 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. 156s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 156s autopkgtest [13:45:30]: @@@@@@@@@@@@@@@@@@@@ summary 156s run-unit-test FAIL badpkg 156s blame: nim-docopt 156s 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. 156s autopkgtest: DBG: testbed stop 156s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.R5OFzt 156s autopkgtest: DBG: sending command to testbed: close 156s run-unit-test FAIL badpkg 156s blame: nim-docopt 156s 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. 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: sending command to testbed: quit 163s nova [W] Using flock in prodstack6-s390x 163s Creating nova instance adt-plucky-s390x-nim-docopt-20250221-134254-juju-7f2275-prod-proposed-migration-environment-15-5fde37d0-df14-4f73-8cd3-0601fee8d779 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 163s nova [W] Timed out waiting for fe0a95bb-7602-414d-b3ab-5c1f4c6c9caf to get deleted.