0s autopkgtest: DBG: testbed init 0s autopkgtest [12:30:19]: starting date and time: 2025-02-19 12:30:19+0000 0s autopkgtest [12:30:19]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:30:19]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ww123mwz/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade pytest-order --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-16.secgroup --name adt-plucky-s390x-pytest-order-20250219-123019-juju-7f2275-prod-proposed-migration-environment-15-53403422-af43-4420-a8c8-b923665afb19 --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 97s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.shzt94 97s autopkgtest: DBG: sending command to testbed: print-execute-command 97s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.t9tqpxak/runcmd 97s autopkgtest: DBG: sending command to testbed: capabilities 97s autopkgtest: DBG: got reply from testbed: ok isolation-machine suggested-normal-user=ubuntu reboot revert-full-system revert root-on-testbed 97s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'revert-full-system', 'revert', 'root-on-testbed', 'has_internet'] 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.shzt94'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.shzt94/wrapper.sh 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.shzt94/wrapper.sh'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [12:31:57]: testbed dpkg architecture: s390x 98s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [12:31:57]: testbed apt version: 2.9.30 98s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed has eatmydata 98s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [12:31:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 98s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest [12:31:58]: testbed release detected to be: None 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: adding APT source: Types: deb deb-src 99s URIs: http://ftpmaster.internal/ubuntu/ 99s Suites: plucky-proposed 99s Components: main restricted universe multiverse 99s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 99s Package: * 99s Pin: release plucky-proposed 99s Pin-Priority: 500 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest [12:31:58]: updating testbed package index (apt update) 99s 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'] 100s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 100s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 100s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 100s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 100s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 100s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 100s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 100s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 100s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 100s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 100s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 100s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 101s Fetched 1700 kB in 1s (1739 kB/s) 101s Reading package lists... 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 101s Package: * 101s Pin: release plucky-proposed 101s Pin-Priority: 100 101s 101s Package: src:sphinx:any 101s Pin: release plucky-proposed 101s Pin-Priority: 995 101s 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 [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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.shzt94/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s 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'] 102s + lsb_release --codename --short 102s + RELEASE=plucky 102s + cat 102s + [ plucky != trusty ] 102s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 102s Reading package lists... 102s Building dependency tree... 102s Reading state information... 102s Calculating upgrade... 102s The following packages were automatically installed and are no longer required: 102s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 102s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 102s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 102s linux-tools-6.11.0-8-generic 102s Use 'sudo apt autoremove' to remove them. 102s The following packages will be upgraded: 102s iproute2 liblsof0 libp11-kit0 lsof 102s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 102s Need to get 1791 kB of archives. 102s After this operation, 17.4 kB of additional disk space will be used. 102s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 103s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 103s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 103s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 103s Preconfiguring packages ... 103s Fetched 1791 kB in 1s (2195 kB/s) 103s (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.) 103s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 104s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 104s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 104s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 104s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 104s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 104s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 104s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 104s Setting up liblsof0 (4.99.4+dfsg-1) ... 104s Setting up iproute2 (6.13.0-1ubuntu1) ... 104s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 104s Setting up lsof (4.99.4+dfsg-1) ... 104s Processing triggers for man-db (2.13.0-1) ... 104s Processing triggers for libc-bin (2.40-4ubuntu1) ... 105s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 105s + /usr/lib/apt/apt-helper analyze-pattern ?true 105s + + uname -r 105s sed s/\./\\./g 105s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 105s + apt list ?obsolete 105s + tail -n+2 105s + cut -d/+ grep -v ^linux-.*6\.12\.0-15-generic.* 105s -f1 105s + true 105s + obsolete_pkgs= 105s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s The following packages will be REMOVED: 105s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 105s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 105s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 105s linux-tools-6.11.0-8-generic* 105s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 105s After this operation, 167 MB disk space will be freed. 105s (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.) 105s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 105s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 105s Removing libpython3.12t64:s390x (3.12.9-1) ... 105s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 105s Removing libnsl2:s390x (1.3.0-3build3) ... 105s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 106s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 106s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 107s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 107s Processing triggers for libc-bin (2.40-4ubuntu1) ... 107s (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.) 107s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 107s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 107s + grep -q trusty /etc/lsb-release 107s + [ ! -d /usr/share/doc/unattended-upgrades ] 107s + [ ! -d /usr/share/doc/lxd ] 107s + [ ! -d /usr/share/doc/lxd-client ] 107s + [ ! -d /usr/share/doc/snapd ] 107s + type iptables 107s + cat 107s + chmod 755 /etc/rc.local 107s + . /etc/rc.local 107s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 107s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 107s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 107s + uname -m 107s + [ s390x = ppc64le ] 107s + [ -d /run/systemd/system ] 107s + systemd-detect-virt --quiet --vm 107s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 107s + cat 107s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 107s + echo COMPRESS=lz4 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [12:32:06]: upgrading testbed (apt dist-upgrade and autopurge) 107s 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'] 107s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 108s Starting 2 pkgProblemResolver with broken count: 0 108s Done 108s Entering ResolveByKeep 108s 108s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s autopkgtest: DBG: testbed command exited with code 0 108s 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'] 108s Reading package lists... 109s Building dependency tree... 109s Reading state information... 109s Starting pkgProblemResolver with broken count: 0 109s Starting 2 pkgProblemResolver with broken count: 0 109s Done 109s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 109s autopkgtest: DBG: testbed command exited with code 0 109s 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.shzt94/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 109s autopkgtest: DBG: testbed command exited with code 1 109s autopkgtest [12:32:08]: rebooting testbed after setup commands that affected boot 109s autopkgtest: DBG: sending command to testbed: reboot 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.shzt94'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.shzt94/autopkgtest-reboot 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.shzt94/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.shzt94/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.shzt94/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.shzt94'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.shzt94/autopkgtest-reboot-prepare 130s autopkgtest: DBG: got reply from testbed: ok 130s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.shzt94/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.shzt94/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest [12:32:30]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 131s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.shzt94/testbed-packages"], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/testbed-packages /tmp/autopkgtest-work.ww123mwz/out/testbed-packages 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.shzt94'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.shzt94/autopkgtest-reboot 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.shzt94/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.shzt94/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.shzt94/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.shzt94'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.shzt94/autopkgtest-reboot-prepare 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.shzt94/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.shzt94/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: Binaries: initialising 133s autopkgtest [12:32:32]: @@@@@@@@@@@@@@@@@@@@ apt-source pytest-order 133s autopkgtest: DBG: blame += pytest-order 133s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 133s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pytest-order'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pytest-order$'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pytest-order=1.3.0-1'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-pytest-order-doc$'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-pytest-order-doc=1.3.0-1'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: install_deps: deps_new=[] 134s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s 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.shzt94/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pytest-order=1.3.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 pytest-order_*.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'] 135s + cd / 135s + mktemp -d /tmp/autopkgtest.shzt94/build.XXX 135s + builddir=/tmp/autopkgtest.shzt94/build.1M9 135s + cd /tmp/autopkgtest.shzt94/build.1M9 135s + apt-get source -d -q --only-source pytest-order=1.3.0-1 135s + OUT=Reading package lists... 135s NOTICE: 'pytest-order' packaging is maintained in the 'Git' version control system at: 135s https://salsa.debian.org/python-team/packages/pytest-order.git 135s Please use: 135s git clone https://salsa.debian.org/python-team/packages/pytest-order.git 135s to retrieve the latest (possibly unreleased) updates to the package. 135s Need to get 53.1 kB of source archives. 135s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (dsc) [2324 B] 135s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (tar) [47.5 kB] 135s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (diff) [3240 B] 135s Fetched 53.1 kB in 0s (139 kB/s) 135s Download complete and in download only mode 135s + [ -n ] 135s + grep ^Get: 135s + echo Reading package lists... 135s NOTICE: 'pytest-order' packaging is maintained in the 'Git' version control system at: 135s https://salsa.debian.org/python-team/packages/pytest-order.git 135s Please use: 135s git clone https://salsa.debian.org/python-team/packages/pytest-order.git 135s to retrieve the latest (possibly unreleased) updates to the package. 135s Need to get 53.1 kB of source archives. 135s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (dsc) [2324 B] 135s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (tar) [47.5 kB] 135s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (diff) [3240 B] 135s Fetched 53.1 kB in 0s (139 kB/s) 135s Download complete and in download only mode 135s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (dsc) [2324 B] 135s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (tar) [47.5 kB] 135s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pytest-order 1.3.0-1 (diff) [3240 B] 135s + dpkg-source -x pytest-order_1.3.0-1.dsc src 135s gpgv: Signature made Tue Aug 27 19:12:10 2024 UTC 135s gpgv: using RSA key 7E1AC3FA27A649284C323EF6695C429316C07BFE 135s gpgv: issuer "jdg@debian.org" 135s gpgv: Can't check signature: No public key 135s dpkg-source: warning: cannot verify inline signature for ./pytest-order_1.3.0-1.dsc: no acceptable signature found 135s + chmod -R a+rX . 135s + cd src/. 135s + pwd 135s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [12:32:34]: testing package pytest-order version 1.3.0-1 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/build.1M9/src/debian/ /tmp/autopkgtest-work.ww123mwz/out/pkg/debian/ 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: processing dependency python3-all 135s autopkgtest: DBG: processing dependency python3-pytest 135s autopkgtest: DBG: processing dependency python3-pytest-dependency 135s autopkgtest: DBG: processing dependency python3-pytest-mock 135s autopkgtest: DBG: processing dependency python3-pytest-xdist 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency python3-pytest-order 135s autopkgtest: DBG: synthesised dependency python-pytest-order-doc 135s autopkgtest: DBG: Test defined: name pytest path debian/tests/pytest command "None" restrictions [] features [] depends ['python3-all', 'python3-pytest', 'python3-pytest-dependency', 'python3-pytest-mock', 'python3-pytest-xdist', 'python3-pytest-order', 'python-pytest-order-doc'] 135s autopkgtest [12:32:34]: build not needed 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/build.1M9/src/ /tmp/autopkgtest-work.ww123mwz/out/tests-tree/ 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: processing dependency python3-all 136s autopkgtest: DBG: processing dependency python3-pytest 136s autopkgtest: DBG: processing dependency python3-pytest-dependency 136s autopkgtest: DBG: processing dependency python3-pytest-mock 136s autopkgtest: DBG: processing dependency python3-pytest-xdist 136s autopkgtest: DBG: processing dependency @ 136s autopkgtest: DBG: synthesised dependency python3-pytest-order 136s autopkgtest: DBG: synthesised dependency python-pytest-order-doc 136s autopkgtest: DBG: Test defined: name pytest path debian/tests/pytest command "None" restrictions [] features [] depends ['python3-all', 'python3-pytest', 'python3-pytest-dependency', 'python3-pytest-mock', 'python3-pytest-xdist', 'python3-pytest-order', 'python-pytest-order-doc'] 136s autopkgtest [12:32:35]: test pytest: preparing testbed 136s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-pytest', 'python3-pytest-dependency', 'python3-pytest-mock', 'python3-pytest-xdist', 'python3-pytest-order', 'python-pytest-order-doc'] 136s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 136s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-pytest', 'python3-pytest-dependency', 'python3-pytest-mock', 'python3-pytest-xdist', 'python3-pytest-order', 'python-pytest-order-doc'] 136s autopkgtest: DBG: install-deps: satisfying python3-all, python3-pytest, python3-pytest-dependency, python3-pytest-mock, python3-pytest-xdist, python3-pytest-order, python-pytest-order-doc 136s autopkgtest: DBG: can use apt-get on testbed: True 136s 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-pytest, python3-pytest-dependency, python3-pytest-mock, python3-pytest-xdist, python3-pytest-order, python-pytest-order-doc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 136s Reading package lists... 136s Building dependency tree... 136s Reading state information... 136s Starting pkgProblemResolver with broken count: 0 136s Starting 2 pkgProblemResolver with broken count: 0 136s Done 137s The following NEW packages will be installed: 137s libjs-jquery libjs-sphinxdoc libjs-underscore libnsl2 libpython3.12-minimal 137s libpython3.12-stdlib python-pytest-order-doc python3-all python3-execnet 137s python3-iniconfig python3-packaging python3-pluggy python3-pytest 137s python3-pytest-dependency python3-pytest-mock python3-pytest-order 137s python3-pytest-xdist python3.12 python3.12-minimal 137s 0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded. 137s Need to get 6967 kB of archives. 137s After this operation, 27.5 MB of additional disk space will be used. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 138s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 138s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 138s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 138s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 138s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 138s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python-pytest-order-doc all 1.3.0-1 [30.4 kB] 138s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 138s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-execnet all 2.1.1-1 [33.4 kB] 138s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 138s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 138s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 138s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 138s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-dependency all 0.5.1-5 [8494 B] 138s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-mock all 3.14.0-2 [11.7 kB] 138s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-order all 1.3.0-1 [16.2 kB] 138s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-xdist all 3.6.1-1 [33.8 kB] 138s Fetched 6967 kB in 1s (5396 kB/s) 138s Selecting previously unselected package libpython3.12-minimal:s390x. 138s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 138s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 138s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 138s Selecting previously unselected package python3.12-minimal. 138s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 138s Unpacking python3.12-minimal (3.12.9-1) ... 139s Selecting previously unselected package libnsl2:s390x. 139s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 139s Unpacking libnsl2:s390x (1.3.0-3build3) ... 139s Selecting previously unselected package libpython3.12-stdlib:s390x. 139s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 139s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 139s Selecting previously unselected package python3.12. 139s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 139s Unpacking python3.12 (3.12.9-1) ... 139s Selecting previously unselected package libjs-jquery. 139s Preparing to unpack .../05-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 139s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 139s Selecting previously unselected package libjs-underscore. 139s Preparing to unpack .../06-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 139s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 139s Selecting previously unselected package libjs-sphinxdoc. 139s Preparing to unpack .../07-libjs-sphinxdoc_8.1.3-5_all.deb ... 139s Unpacking libjs-sphinxdoc (8.1.3-5) ... 139s Selecting previously unselected package python-pytest-order-doc. 139s Preparing to unpack .../08-python-pytest-order-doc_1.3.0-1_all.deb ... 139s Unpacking python-pytest-order-doc (1.3.0-1) ... 139s Selecting previously unselected package python3-all. 139s Preparing to unpack .../09-python3-all_3.13.1-1~exp2_s390x.deb ... 139s Unpacking python3-all (3.13.1-1~exp2) ... 139s Selecting previously unselected package python3-execnet. 139s Preparing to unpack .../10-python3-execnet_2.1.1-1_all.deb ... 139s Unpacking python3-execnet (2.1.1-1) ... 139s Selecting previously unselected package python3-iniconfig. 139s Preparing to unpack .../11-python3-iniconfig_1.1.1-2_all.deb ... 139s Unpacking python3-iniconfig (1.1.1-2) ... 139s Selecting previously unselected package python3-packaging. 139s Preparing to unpack .../12-python3-packaging_24.2-1_all.deb ... 139s Unpacking python3-packaging (24.2-1) ... 139s Selecting previously unselected package python3-pluggy. 139s Preparing to unpack .../13-python3-pluggy_1.5.0-1_all.deb ... 139s Unpacking python3-pluggy (1.5.0-1) ... 139s Selecting previously unselected package python3-pytest. 139s Preparing to unpack .../14-python3-pytest_8.3.4-1_all.deb ... 139s Unpacking python3-pytest (8.3.4-1) ... 139s Selecting previously unselected package python3-pytest-dependency. 139s Preparing to unpack .../15-python3-pytest-dependency_0.5.1-5_all.deb ... 139s Unpacking python3-pytest-dependency (0.5.1-5) ... 139s Selecting previously unselected package python3-pytest-mock. 139s Preparing to unpack .../16-python3-pytest-mock_3.14.0-2_all.deb ... 139s Unpacking python3-pytest-mock (3.14.0-2) ... 139s Selecting previously unselected package python3-pytest-order. 139s Preparing to unpack .../17-python3-pytest-order_1.3.0-1_all.deb ... 139s Unpacking python3-pytest-order (1.3.0-1) ... 139s Selecting previously unselected package python3-pytest-xdist. 139s Preparing to unpack .../18-python3-pytest-xdist_3.6.1-1_all.deb ... 139s Unpacking python3-pytest-xdist (3.6.1-1) ... 139s Setting up python3-iniconfig (1.1.1-2) ... 139s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 139s Setting up python3-packaging (24.2-1) ... 140s Setting up python3-pluggy (1.5.0-1) ... 140s Setting up libnsl2:s390x (1.3.0-3build3) ... 140s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 140s Setting up python3-execnet (2.1.1-1) ... 140s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 140s Setting up python3.12-minimal (3.12.9-1) ... 142s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 142s Setting up python3-pytest (8.3.4-1) ... 142s Setting up python3.12 (3.12.9-1) ... 143s Setting up python3-all (3.13.1-1~exp2) ... 143s Setting up libjs-sphinxdoc (8.1.3-5) ... 143s Setting up python3-pytest-mock (3.14.0-2) ... 144s Setting up python3-pytest-order (1.3.0-1) ... 144s Setting up python-pytest-order-doc (1.3.0-1) ... 144s Setting up python3-pytest-xdist (3.6.1-1) ... 144s Setting up python3-pytest-dependency (0.5.1-5) ... 144s Processing triggers for systemd (257.2-3ubuntu1) ... 144s Processing triggers for man-db (2.13.0-1) ... 145s Processing triggers for libc-bin (2.40-4ubuntu1) ... 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pytest-order'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-pytest-order-doc'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.shzt94/pytest-packages.all"], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/pytest-packages.all /tmp/autopkgtest-work.ww123mwz/out/pytest-packages.all 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.shzt94/build.1M9/src'], kind short, sout raw, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.shzt94/build.1M9/src already exists 146s autopkgtest [12:32:45]: test pytest: [----------------------- 146s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.shzt94/wrapper.sh --debug --artifacts=/tmp/autopkgtest.shzt94/pytest-artifacts --chdir=/tmp/autopkgtest.shzt94/build.1M9/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.shzt94/pytest-stderr --stdout=/tmp/autopkgtest.shzt94/pytest-stdout --tmp=/tmp/autopkgtest.shzt94/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.shzt94/build.1M9/src/debian/tests/pytest -- /tmp/autopkgtest.shzt94/build.1M9/src/debian/tests/pytest'], kind test, sout raw, serr raw, env [] 146s /tmp/autopkgtest.shzt94/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.shzt94/pytest-artifacts 146s /tmp/autopkgtest.shzt94/wrapper.sh: changing to directory: /tmp/autopkgtest.shzt94/build.1M9/src 146s /tmp/autopkgtest.shzt94/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 146s /tmp/autopkgtest.shzt94/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 146s /tmp/autopkgtest.shzt94/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 146s /tmp/autopkgtest.shzt94/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 146s /tmp/autopkgtest.shzt94/wrapper.sh: setting environment: LANG=C.UTF-8 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LANGUAGE 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_ADDRESS 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_ALL 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_COLLATE 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_CTYPE 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_IDENTIFICATION 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_MEASUREMENT 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_MESSAGES 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_MONETARY 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_NAME 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_NUMERIC 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_PAPER 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_TELEPHONE 146s /tmp/autopkgtest.shzt94/wrapper.sh: unsetting environment: LC_TIME 146s /tmp/autopkgtest.shzt94/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 146s /tmp/autopkgtest.shzt94/wrapper.sh: pretending to be a login shell 146s /tmp/autopkgtest.shzt94/wrapper.sh: will write standard error to /tmp/autopkgtest.shzt94/pytest-stderr 146s /tmp/autopkgtest.shzt94/wrapper.sh: will write stdout to /tmp/autopkgtest.shzt94/pytest-stdout 146s /tmp/autopkgtest.shzt94/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.shzt94/autopkgtest_tmp 146s /tmp/autopkgtest.shzt94/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 146s /tmp/autopkgtest.shzt94/wrapper.sh: marking as executable: /tmp/autopkgtest.shzt94/build.1M9/src/debian/tests/pytest 146s /tmp/autopkgtest.shzt94/wrapper.sh: command to run: /tmp/autopkgtest.shzt94/build.1M9/src/debian/tests/pytest 146s /tmp/autopkgtest.shzt94/wrapper.sh: copying /tmp/tmp.jhkj9k2qQ3/out to stdout and file: /tmp/autopkgtest.shzt94/pytest-stdout 146s /tmp/autopkgtest.shzt94/wrapper.sh: copying /tmp/tmp.jhkj9k2qQ3/err to standard error and file: /tmp/autopkgtest.shzt94/pytest-stdout 146s /tmp/autopkgtest.shzt94/wrapper.sh: writing script pid 1616 to /tmp/autopkgtest_script_pid 146s Testing with python3.12: 147s ============================= test session starts ============================== 147s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 147s rootdir: /tmp/autopkgtest.shzt94/autopkgtest_tmp 147s plugins: xdist-3.6.1, mock-3.14.0, order-1.3.0, dependency-0.5.1, typeguard-4.4.1 147s collected 137 items 147s 147s tests/test_class_marks.py ......... [ 6%] 148s tests/test_dependency.py ....................... [ 23%] 148s tests/test_indulgent_ordering.py . [ 24%] 148s tests/test_marker_prefix.py ....... [ 29%] 148s tests/test_misc.py .... [ 32%] 148s tests/test_multiple_ordering.py .... [ 35%] 149s tests/test_order_group_scope.py ...... [ 39%] 149s tests/test_order_group_scope_dep.py .... [ 42%] 149s tests/test_order_group_scope_named_dep.py .... [ 45%] 149s tests/test_order_group_scope_relative.py ..... [ 48%] 150s tests/test_order_scope.py .... [ 51%] 150s tests/test_order_scope_level.py ..... [ 55%] 151s tests/test_ordering.py ................... [ 69%] 152s tests/test_relative_ordering.py ..................... [ 84%] 152s tests/test_sparse_ordinals.py ................ [ 96%] 154s tests/test_xdist_handling.py . [ 97%] 155s perf_tests/test_dependencies.py . [ 97%] 155s perf_tests/test_ordinal.py . [ 98%] 156s perf_tests/test_relative.py . [ 99%] 157s perf_tests/test_relative_dense.py . [100%] 157s 157s ============================ 137 passed in -74.88s ============================= 157s Testing with python3.13: 158s ============================= test session starts ============================== 158s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 158s rootdir: /tmp/autopkgtest.shzt94/autopkgtest_tmp 158s plugins: xdist-3.6.1, mock-3.14.0, order-1.3.0, dependency-0.5.1, typeguard-4.4.1 158s collected 137 items 158s 158s tests/test_class_marks.py ......... [ 6%] 159s tests/test_dependency.py ....................... [ 23%] 159s tests/test_indulgent_ordering.py . [ 24%] 159s tests/test_marker_prefix.py ....... [ 29%] 159s tests/test_misc.py .... [ 32%] 159s tests/test_multiple_ordering.py .... [ 35%] 159s tests/test_order_group_scope.py ...... [ 39%] 160s tests/test_order_group_scope_dep.py .... [ 42%] 160s tests/test_order_group_scope_named_dep.py .... [ 45%] 160s tests/test_order_group_scope_relative.py ..... [ 48%] 160s tests/test_order_scope.py .... [ 51%] 160s tests/test_order_scope_level.py ..... [ 55%] 161s tests/test_ordering.py ................... [ 69%] 162s tests/test_relative_ordering.py ..................... [ 84%] 162s tests/test_sparse_ordinals.py ................ [ 96%] 164s tests/test_xdist_handling.py . [ 97%] 165s perf_tests/test_dependencies.py . [ 97%] 165s perf_tests/test_ordinal.py . [ 98%] 166s perf_tests/test_relative.py . [ 99%] 167s perf_tests/test_relative_dense.py . [100%] 167s 167s ============================= 137 passed in 9.84s ============================== 168s /tmp/autopkgtest.shzt94/wrapper.sh: checking for leaked background processes... 168s /tmp/autopkgtest.shzt94/wrapper.sh: waiting for tee/cat subprocesses... 168s /tmp/autopkgtest.shzt94/wrapper.sh: cleaning up... 168s /tmp/autopkgtest.shzt94/wrapper.sh: Exit status: 0 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [12:33:07]: test pytest: -----------------------] 168s autopkgtest: DBG: testbed executing test finished with exit status 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/pytest-stdout /tmp/autopkgtest-work.ww123mwz/out/pytest-stdout 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/pytest-stderr /tmp/autopkgtest-work.ww123mwz/out/pytest-stderr 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest [12:33:07]: test pytest: - - - - - - - - - - results - - - - - - - - - - 168s pytest PASS 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.shzt94/pytest-artifacts/ /tmp/autopkgtest-work.ww123mwz/out/artifacts/ 168s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.shzt94/pytest-artifacts', '/tmp/autopkgtest.shzt94/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 169s autopkgtest [12:33:08]: @@@@@@@@@@@@@@@@@@@@ summary 169s pytest PASS 169s autopkgtest: DBG: testbed stop 169s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.shzt94 169s autopkgtest: DBG: sending command to testbed: close 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: sending command to testbed: quit 186s nova [W] Using flock in prodstack6-s390x 186s Creating nova instance adt-plucky-s390x-pytest-order-20250219-123019-juju-7f2275-prod-proposed-migration-environment-15-53403422-af43-4420-a8c8-b923665afb19 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 186s nova [W] Timed out waiting for 1d865cd5-a089-42af-a9eb-f329b8aa6d4b to get deleted.