0s autopkgtest: DBG: testbed init 0s autopkgtest [11:37:04]: starting date and time: 2025-02-19 11:37:04+0000 0s autopkgtest [11:37:04]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [11:37:04]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.k_91a61l/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade cheetah --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-4.secgroup --name adt-plucky-s390x-cheetah-20250219-113704-juju-7f2275-prod-proposed-migration-environment-15-9c41838b-2e17-4555-a13b-f26259b21384 --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 50s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.OtuGiM 50s autopkgtest: DBG: sending command to testbed: print-execute-command 50s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.5snoxrdq/runcmd 50s autopkgtest: DBG: sending command to testbed: capabilities 50s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu isolation-machine reboot revert-full-system root-on-testbed 50s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 50s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OtuGiM'], kind short, sout raw, serr pipe, env [] 50s autopkgtest: DBG: testbed command exited with code 0 50s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.OtuGiM/wrapper.sh 51s autopkgtest: DBG: got reply from testbed: ok 51s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OtuGiM/wrapper.sh'], kind short, sout raw, serr pipe, env [] 51s autopkgtest: DBG: testbed command exited with code 0 51s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 51s autopkgtest: DBG: testbed command exited with code 0 51s autopkgtest [11:37:55]: testbed dpkg architecture: s390x 51s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 51s autopkgtest: DBG: testbed command exited with code 0 51s autopkgtest [11:37:55]: testbed apt version: 2.9.30 51s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 51s autopkgtest: DBG: testbed command exited with code 0 51s autopkgtest: DBG: testbed has eatmydata 51s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 51s autopkgtest: DBG: testbed command exited with code 0 51s autopkgtest [11:37:55]: @@@@@@@@@@@@@@@@@@@@ test bed setup 51s 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 [] 52s autopkgtest: DBG: testbed command exited with code 0 52s autopkgtest [11:37:56]: testbed release detected to be: None 52s 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 [] 52s autopkgtest: DBG: testbed command exited with code 0 52s 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 [] 52s autopkgtest: DBG: testbed command exited with code 0 52s autopkgtest: DBG: adding APT source: Types: deb deb-src 52s URIs: http://ftpmaster.internal/ubuntu/ 52s Suites: plucky-proposed 52s Components: main restricted universe multiverse 52s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 52s 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 [] 52s autopkgtest: DBG: testbed command exited with code 0 52s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 52s Package: * 52s Pin: release plucky-proposed 52s Pin-Priority: 500 52s 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 [] 52s autopkgtest: DBG: testbed command exited with code 0 52s autopkgtest [11:37:56]: updating testbed package index (apt update) 52s 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'] 53s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 53s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 53s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 53s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 53s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 53s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 53s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 53s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 53s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 53s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 53s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 53s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 53s Fetched 1700 kB in 1s (1896 kB/s) 54s Reading package lists... 54s autopkgtest: DBG: testbed command exited with code 0 54s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 54s Package: * 54s Pin: release plucky-proposed 54s Pin-Priority: 100 54s 54s Package: src:sphinx:any 54s Pin: release plucky-proposed 54s Pin-Priority: 995 54s 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 [] 54s autopkgtest: DBG: testbed command exited with code 0 54s 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.OtuGiM/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 54s autopkgtest: DBG: testbed command exited with code 0 54s 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'] 55s + lsb_release --codename --short 55s + RELEASE=plucky 55s + cat 55s + [ plucky != trusty ] 55s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 55s Reading package lists... 55s Building dependency tree... 55s Reading state information... 55s Calculating upgrade... 55s The following packages were automatically installed and are no longer required: 55s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 55s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 55s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 55s linux-tools-6.11.0-8-generic 55s Use 'sudo apt autoremove' to remove them. 55s The following packages will be upgraded: 55s iproute2 liblsof0 libp11-kit0 lsof 55s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 55s Need to get 1791 kB of archives. 55s After this operation, 17.4 kB of additional disk space will be used. 55s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 56s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 56s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 56s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 56s Preconfiguring packages ... 56s Fetched 1791 kB in 1s (2907 kB/s) 56s (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.) 56s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 56s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 56s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 56s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 56s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 56s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 56s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 56s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 56s Setting up liblsof0 (4.99.4+dfsg-1) ... 56s Setting up iproute2 (6.13.0-1ubuntu1) ... 56s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 56s Setting up lsof (4.99.4+dfsg-1) ... 56s Processing triggers for man-db (2.13.0-1) ... 57s Processing triggers for libc-bin (2.40-4ubuntu1) ... 57s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 57s + /usr/lib/apt/apt-helper analyze-pattern ?true 57s + uname -r 57s + sed s/\./\\./g 57s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 57s + apt list ?obsolete 57s + tail -n+2+ cut 57s -d/ -f1 57s + grep -v ^linux-.*6\.12\.0-15-generic.* 57s + true 57s + obsolete_pkgs= 57s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 57s Reading package lists... 57s Building dependency tree... 57s Reading state information... 57s The following packages will be REMOVED: 57s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 57s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 57s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 57s linux-tools-6.11.0-8-generic* 57s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 57s After this operation, 167 MB disk space will be freed. 57s (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.) 57s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 57s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 57s Removing libpython3.12t64:s390x (3.12.9-1) ... 57s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 58s Removing libnsl2:s390x (1.3.0-3build3) ... 58s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 58s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 58s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 58s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 58s Processing triggers for libc-bin (2.40-4ubuntu1) ... 59s (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.) 59s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 59s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 59s + grep -q trusty /etc/lsb-release 59s + [ ! -d /usr/share/doc/unattended-upgrades ] 59s + [ ! -d /usr/share/doc/lxd ] 59s + [ ! -d /usr/share/doc/lxd-client ] 59s + [ ! -d /usr/share/doc/snapd ] 59s + type iptables 59s + cat 59s + chmod 755 /etc/rc.local 59s + . /etc/rc.local 59s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 59s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 59s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 59s + uname -m 59s + [ s390x = ppc64le ] 59s + [ -d /run/systemd/system ] 59s + systemd-detect-virt --quiet --vm 59s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 59s + cat 59s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 59s + echo COMPRESS=lz4 59s autopkgtest: DBG: testbed command exited with code 0 59s autopkgtest [11:38:03]: upgrading testbed (apt dist-upgrade and autopurge) 59s 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'] 59s Reading package lists... 59s Building dependency tree... 59s Reading state information... 59s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 59s Starting 2 pkgProblemResolver with broken count: 0 59s Done 59s Entering ResolveByKeep 60s 60s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 60s autopkgtest: DBG: testbed command exited with code 0 60s 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'] 60s Reading package lists... 60s Building dependency tree... 60s Reading state information... 60s Starting pkgProblemResolver with broken count: 0 60s Starting 2 pkgProblemResolver with broken count: 0 60s Done 60s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 60s autopkgtest: DBG: testbed command exited with code 0 60s 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.OtuGiM/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 60s autopkgtest: DBG: testbed command exited with code 1 60s autopkgtest [11:38:04]: rebooting testbed after setup commands that affected boot 60s autopkgtest: DBG: sending command to testbed: reboot 81s autopkgtest: DBG: got reply from testbed: ok 81s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 81s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OtuGiM'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OtuGiM/autopkgtest-reboot 81s autopkgtest: DBG: got reply from testbed: ok 81s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 81s autopkgtest: DBG: testbed command exited with code 0 81s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OtuGiM'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OtuGiM/autopkgtest-reboot-prepare 82s autopkgtest: DBG: got reply from testbed: ok 82s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest [11:38:27]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 83s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OtuGiM/testbed-packages"], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/testbed-packages /tmp/autopkgtest-work.k_91a61l/out/testbed-packages 83s autopkgtest: DBG: got reply from testbed: ok 83s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 83s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OtuGiM'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OtuGiM/autopkgtest-reboot 83s autopkgtest: DBG: got reply from testbed: ok 83s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OtuGiM'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OtuGiM/autopkgtest-reboot-prepare 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OtuGiM/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: Binaries: initialising 85s autopkgtest [11:38:29]: @@@@@@@@@@@@@@@@@@@@ apt-source cheetah 85s autopkgtest: DBG: blame += cheetah 85s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 85s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'cheetah'], kind short, sout pipe, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-cheetah$'], kind short, sout pipe, serr raw, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-cheetah=3.4.0-1'], kind short, sout pipe, serr raw, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-cheetah-doc$'], kind short, sout pipe, serr raw, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-cheetah-doc=3.4.0-1'], kind short, sout pipe, serr raw, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: install_deps: deps_new=[] 86s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s 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.OtuGiM/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source cheetah=3.4.0-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x cheetah_*.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'] 86s + cd / 86s + mktemp -d /tmp/autopkgtest.OtuGiM/build.XXX 86s + builddir=/tmp/autopkgtest.OtuGiM/build.f7u 86s + cd /tmp/autopkgtest.OtuGiM/build.f7u 86s + apt-get source -d -q --only-source cheetah=3.4.0-1 87s + OUT=Reading package lists... 87s NOTICE: 'cheetah' packaging is maintained in the 'Git' version control system at: 87s https://salsa.debian.org/jcfp/cheetah.git 87s Please use: 87s git clone https://salsa.debian.org/jcfp/cheetah.git 87s to retrieve the latest (possibly unreleased) updates to the package. 87s Need to get 303 kB of source archives. 87s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (dsc) [2160 B] 87s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (tar) [253 kB] 87s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (diff) [47.2 kB] 87s Fetched 303 kB in 1s (596 kB/s) 87s Download complete and in download only mode 87s + [ -n ] 87s + echo Reading package lists... 87s NOTICE: 'cheetah' packaging is maintained in the 'Git' version control system at: 87s https://salsa.debian.org/jcfp/cheetah.git 87s Please use: 87s git clone https://salsa.debian.org/jcfp/cheetah.git 87s to retrieve the latest (possibly unreleased) updates to the package. 87s Need to get 303 kB of source archives. 87s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (dsc) [2160 B] 87s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (tar) [253 kB] 87s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (diff) [47.2 kB] 87s Fetched 303 kB in 1s (596 kB/s) 87s Download complete and in download only mode 87s + grep ^Get: 87s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (dsc) [2160 B] 87s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (tar) [253 kB] 87s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cheetah 3.4.0-1 (diff) [47.2 kB] 87s + dpkg-source -x cheetah_3.4.0-1.dsc src 87s gpgv: Signature made Tue Dec 3 12:01:20 2024 UTC 87s gpgv: using RSA key 77C9619C49D6A2CDCDF2FFAA428304A1748DCC7A 87s gpgv: Can't check signature: No public key 87s dpkg-source: warning: cannot verify inline signature for ./cheetah_3.4.0-1.dsc: no acceptable signature found 87s + chmod -R a+rX . 87s + cd src/. 87s + pwd 87s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest [11:38:31]: testing package cheetah version 3.4.0-1 87s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/ /tmp/autopkgtest-work.k_91a61l/out/pkg/debian/ 87s autopkgtest: DBG: got reply from testbed: ok 87s autopkgtest: DBG: processing dependency python3-all 87s autopkgtest: DBG: processing dependency python3-cheetah 87s autopkgtest: DBG: marked alternatives ['python3-cheetah'] as a synthesised dependency 87s autopkgtest: DBG: Test defined: name load-module-v3 path debian/tests/load-module-v3 command "None" restrictions [] features [] depends ['python3-all', 'python3-cheetah'] 87s autopkgtest: DBG: processing dependency python3-all 87s autopkgtest: DBG: processing dependency python3-cheetah 87s autopkgtest: DBG: marked alternatives ['python3-cheetah'] as a synthesised dependency 87s autopkgtest: DBG: processing dependency python3-markdown 87s autopkgtest: DBG: processing dependency python3-pygments 87s autopkgtest: DBG: Test defined: name upstream-test-v3 path debian/tests/upstream-test-v3 command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['python3-all', 'python3-cheetah', 'python3-markdown', 'python3-pygments'] 87s autopkgtest [11:38:31]: build not needed 87s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/build.f7u/src/ /tmp/autopkgtest-work.k_91a61l/out/tests-tree/ 88s autopkgtest: DBG: got reply from testbed: ok 88s autopkgtest: DBG: processing dependency python3-all 88s autopkgtest: DBG: processing dependency python3-cheetah 88s autopkgtest: DBG: marked alternatives ['python3-cheetah'] as a synthesised dependency 88s autopkgtest: DBG: Test defined: name load-module-v3 path debian/tests/load-module-v3 command "None" restrictions [] features [] depends ['python3-all', 'python3-cheetah'] 88s autopkgtest: DBG: processing dependency python3-all 88s autopkgtest: DBG: processing dependency python3-cheetah 88s autopkgtest: DBG: marked alternatives ['python3-cheetah'] as a synthesised dependency 88s autopkgtest: DBG: processing dependency python3-markdown 88s autopkgtest: DBG: processing dependency python3-pygments 88s autopkgtest: DBG: Test defined: name upstream-test-v3 path debian/tests/upstream-test-v3 command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['python3-all', 'python3-cheetah', 'python3-markdown', 'python3-pygments'] 88s autopkgtest [11:38:32]: test load-module-v3: preparing testbed 88s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-cheetah'] 88s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 88s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-cheetah'] 88s autopkgtest: DBG: install-deps: satisfying python3-all, python3-cheetah 88s autopkgtest: DBG: can use apt-get on testbed: True 88s 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-all, python3-cheetah'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 88s Reading package lists... 88s Building dependency tree... 88s Reading state information... 88s Starting pkgProblemResolver with broken count: 0 88s Starting 2 pkgProblemResolver with broken count: 0 88s Done 88s The following NEW packages will be installed: 88s libnsl2 libpython3.12-minimal libpython3.12-stdlib python3-all 88s python3-cheetah python3.12 python3.12-minimal 89s 0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded. 89s Need to get 6168 kB of archives. 89s After this operation, 24.7 MB of additional disk space will be used. 89s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 89s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 89s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 89s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 89s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 89s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 89s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cheetah s390x 3.4.0-1 [141 kB] 89s Fetched 6168 kB in 1s (7714 kB/s) 89s Selecting previously unselected package libpython3.12-minimal:s390x. 90s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 90s Preparing to unpack .../0-libpython3.12-minimal_3.12.9-1_s390x.deb ... 90s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 90s Selecting previously unselected package python3.12-minimal. 90s Preparing to unpack .../1-python3.12-minimal_3.12.9-1_s390x.deb ... 90s Unpacking python3.12-minimal (3.12.9-1) ... 90s Selecting previously unselected package libnsl2:s390x. 90s Preparing to unpack .../2-libnsl2_1.3.0-3build3_s390x.deb ... 90s Unpacking libnsl2:s390x (1.3.0-3build3) ... 90s Selecting previously unselected package libpython3.12-stdlib:s390x. 90s Preparing to unpack .../3-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 90s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 90s Selecting previously unselected package python3.12. 90s Preparing to unpack .../4-python3.12_3.12.9-1_s390x.deb ... 90s Unpacking python3.12 (3.12.9-1) ... 90s Selecting previously unselected package python3-all. 90s Preparing to unpack .../5-python3-all_3.13.1-1~exp2_s390x.deb ... 90s Unpacking python3-all (3.13.1-1~exp2) ... 90s Selecting previously unselected package python3-cheetah. 90s Preparing to unpack .../6-python3-cheetah_3.4.0-1_s390x.deb ... 90s Unpacking python3-cheetah (3.4.0-1) ... 90s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 90s Setting up python3-cheetah (3.4.0-1) ... 90s Setting up libnsl2:s390x (1.3.0-3build3) ... 90s Setting up python3.12-minimal (3.12.9-1) ... 91s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 91s Setting up python3.12 (3.12.9-1) ... 92s Setting up python3-all (3.13.1-1~exp2) ... 92s Processing triggers for man-db (2.13.0-1) ... 92s Processing triggers for libc-bin (2.40-4ubuntu1) ... 92s Processing triggers for systemd (257.2-3ubuntu1) ... 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-cheetah'], kind short, sout pipe, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OtuGiM/load-module-v3-packages.all"], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/load-module-v3-packages.all /tmp/autopkgtest-work.k_91a61l/out/load-module-v3-packages.all 93s autopkgtest: DBG: got reply from testbed: ok 93s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OtuGiM/build.f7u/src'], kind short, sout raw, serr raw, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OtuGiM/build.f7u/src already exists 93s autopkgtest [11:38:37]: test load-module-v3: [----------------------- 93s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.OtuGiM/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OtuGiM/load-module-v3-artifacts --chdir=/tmp/autopkgtest.OtuGiM/build.f7u/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.OtuGiM/load-module-v3-stderr --stdout=/tmp/autopkgtest.OtuGiM/load-module-v3-stdout --tmp=/tmp/autopkgtest.OtuGiM/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/load-module-v3 -- /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/load-module-v3'], kind test, sout raw, serr raw, env [] 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OtuGiM/load-module-v3-artifacts 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: changing to directory: /tmp/autopkgtest.OtuGiM/build.f7u/src 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: LANG=C.UTF-8 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LANGUAGE 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_ADDRESS 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_ALL 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_COLLATE 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_CTYPE 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_IDENTIFICATION 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_MEASUREMENT 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_MESSAGES 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_MONETARY 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_NAME 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_NUMERIC 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_PAPER 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_TELEPHONE 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_TIME 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: pretending to be a login shell 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: will write standard error to /tmp/autopkgtest.OtuGiM/load-module-v3-stderr 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: will write stdout to /tmp/autopkgtest.OtuGiM/load-module-v3-stdout 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OtuGiM/autopkgtest_tmp 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: marking as executable: /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/load-module-v3 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: command to run: /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/load-module-v3 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: copying /tmp/tmp.4AA2xqXLMw/out to stdout and file: /tmp/autopkgtest.OtuGiM/load-module-v3-stdout 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: copying /tmp/tmp.4AA2xqXLMw/err to standard error and file: /tmp/autopkgtest.OtuGiM/load-module-v3-stdout 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: writing script pid 1415 to /tmp/autopkgtest_script_pid 93s Loading module with python3.12: 93s 93s Loading module with python3.13: 93s 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: checking for leaked background processes... 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: waiting for tee/cat subprocesses... 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: cleaning up... 93s /tmp/autopkgtest.OtuGiM/wrapper.sh: Exit status: 0 93s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest [11:38:38]: test load-module-v3: -----------------------] 94s autopkgtest: DBG: testbed executing test finished with exit status 0 94s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/load-module-v3-stdout /tmp/autopkgtest-work.k_91a61l/out/load-module-v3-stdout 94s autopkgtest: DBG: got reply from testbed: ok 94s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/load-module-v3-stderr /tmp/autopkgtest-work.k_91a61l/out/load-module-v3-stderr 94s autopkgtest: DBG: got reply from testbed: ok 94s load-module-v3 PASS 94s autopkgtest [11:38:38]: test load-module-v3: - - - - - - - - - - results - - - - - - - - - - 94s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/load-module-v3-artifacts/ /tmp/autopkgtest-work.k_91a61l/out/artifacts/ 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OtuGiM/load-module-v3-artifacts', '/tmp/autopkgtest.OtuGiM/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest [11:38:40]: test upstream-test-v3: preparing testbed 96s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-all', 'python3-cheetah'], deps_new=['python3-all', 'python3-cheetah', 'python3-markdown', 'python3-pygments'] 96s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 96s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-cheetah', 'python3-markdown', 'python3-pygments'] 96s autopkgtest: DBG: install-deps: satisfying python3-all, python3-cheetah, python3-markdown, python3-pygments 96s autopkgtest: DBG: can use apt-get on testbed: True 96s 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-all, python3-cheetah, python3-markdown, python3-pygments'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 96s Reading package lists... 96s Building dependency tree... 96s Reading state information... 96s Starting pkgProblemResolver with broken count: 0 96s Starting 2 pkgProblemResolver with broken count: 0 96s Done 96s The following NEW packages will be installed: 96s python3-markdown 96s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 96s Need to get 74.2 kB of archives. 96s After this operation, 369 kB of additional disk space will be used. 96s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x python3-markdown all 3.7-2 [74.2 kB] 97s Fetched 74.2 kB in 0s (258 kB/s) 97s Selecting previously unselected package python3-markdown. 97s (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 ... 56737 files and directories currently installed.) 97s Preparing to unpack .../python3-markdown_3.7-2_all.deb ... 97s Unpacking python3-markdown (3.7-2) ... 97s Setting up python3-markdown (3.7-2) ... 97s Processing triggers for man-db (2.13.0-1) ... 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-cheetah'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OtuGiM/upstream-test-v3-packages.all"], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/upstream-test-v3-packages.all /tmp/autopkgtest-work.k_91a61l/out/upstream-test-v3-packages.all 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OtuGiM/build.f7u/src'], kind short, sout raw, serr raw, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OtuGiM/build.f7u/src already exists 98s autopkgtest [11:38:42]: test upstream-test-v3: [----------------------- 98s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.OtuGiM/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OtuGiM/upstream-test-v3-artifacts --chdir=/tmp/autopkgtest.OtuGiM/build.f7u/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.OtuGiM/upstream-test-v3-stderr --stdout=/tmp/autopkgtest.OtuGiM/upstream-test-v3-stdout --tmp=/tmp/autopkgtest.OtuGiM/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/upstream-test-v3 -- /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/upstream-test-v3'], kind test, sout raw, serr raw, env [] 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OtuGiM/upstream-test-v3-artifacts 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: changing to directory: /tmp/autopkgtest.OtuGiM/build.f7u/src 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: LANG=C.UTF-8 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LANGUAGE 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_ADDRESS 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_ALL 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_COLLATE 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_CTYPE 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_IDENTIFICATION 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_MEASUREMENT 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_MESSAGES 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_MONETARY 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_NAME 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_NUMERIC 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_PAPER 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_TELEPHONE 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: unsetting environment: LC_TIME 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: pretending to be a login shell 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: will write standard error to /tmp/autopkgtest.OtuGiM/upstream-test-v3-stderr 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: will write stdout to /tmp/autopkgtest.OtuGiM/upstream-test-v3-stdout 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OtuGiM/autopkgtest_tmp 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: marking as executable: /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/upstream-test-v3 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: command to run: /tmp/autopkgtest.OtuGiM/build.f7u/src/debian/tests/upstream-test-v3 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: copying /tmp/tmp.60mYJxegEI/out to stdout and file: /tmp/autopkgtest.OtuGiM/upstream-test-v3-stdout 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: copying /tmp/tmp.60mYJxegEI/err to standard error and file: /tmp/autopkgtest.OtuGiM/upstream-test-v3-stdout 98s /tmp/autopkgtest.OtuGiM/wrapper.sh: writing script pid 1599 to /tmp/autopkgtest_script_pid 98s Running upstream Test.py with python3.12: 105s .......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... 105s ---------------------------------------------------------------------- 105s Ran 2186 tests in 7.000s 105s 105s OK 105s Running upstream Test.py with python3.13: 111s .......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... 111s ---------------------------------------------------------------------- 111s Ran 2186 tests in 5.230s 111s 111s OK 111s /tmp/autopkgtest.OtuGiM/wrapper.sh: checking for leaked background processes... 111s /tmp/autopkgtest.OtuGiM/wrapper.sh: waiting for tee/cat subprocesses... 111s /tmp/autopkgtest.OtuGiM/wrapper.sh: cleaning up... 111s /tmp/autopkgtest.OtuGiM/wrapper.sh: Exit status: 0 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [11:38:55]: test upstream-test-v3: -----------------------] 111s autopkgtest: DBG: testbed executing test finished with exit status 0 111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/upstream-test-v3-stdout /tmp/autopkgtest-work.k_91a61l/out/upstream-test-v3-stdout 111s autopkgtest: DBG: got reply from testbed: ok 111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/upstream-test-v3-stderr /tmp/autopkgtest-work.k_91a61l/out/upstream-test-v3-stderr 111s autopkgtest: DBG: got reply from testbed: ok 111s autopkgtest [11:38:55]: test upstream-test-v3: - - - - - - - - - - results - - - - - - - - - - 111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OtuGiM/upstream-test-v3-artifacts/ /tmp/autopkgtest-work.k_91a61l/out/artifacts/ 111s upstream-test-v3 PASS 112s autopkgtest: DBG: got reply from testbed: ok 112s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OtuGiM/upstream-test-v3-artifacts', '/tmp/autopkgtest.OtuGiM/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 112s autopkgtest [11:38:56]: @@@@@@@@@@@@@@@@@@@@ summary 112s load-module-v3 PASS 112s upstream-test-v3 PASS 112s autopkgtest: DBG: testbed stop 112s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.OtuGiM 112s autopkgtest: DBG: sending command to testbed: close 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: sending command to testbed: quit 129s nova [W] Using flock in prodstack6-s390x 129s Creating nova instance adt-plucky-s390x-cheetah-20250219-113704-juju-7f2275-prod-proposed-migration-environment-15-9c41838b-2e17-4555-a13b-f26259b21384 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 129s nova [W] Timed out waiting for 6d7eef37-10cd-49bd-add4-5eea5fa44523 to get deleted.