0s autopkgtest: DBG: testbed init
  0s autopkgtest [12:47:52]: starting date and time: 2025-02-19 12:47:52+0000
  0s autopkgtest [12:47:52]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production'
  0s autopkgtest [12:47:52]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.a6dh77o7/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-oslo.privsep --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-29.secgroup --name adt-plucky-s390x-python-oslo.privsep-20250219-124752-juju-7f2275-prod-proposed-migration-environment-15-7e5fb9fc-4c77-426b-812d-6a51ea726cf7 --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
 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.5ASmm8
 96s autopkgtest: DBG: sending command to testbed: print-execute-command
 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.73_nam36/runcmd
 96s autopkgtest: DBG: sending command to testbed: capabilities
 96s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu revert-full-system isolation-machine reboot root-on-testbed
 96s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'revert-full-system', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet']
 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5ASmm8'], kind short, sout raw, serr pipe, env []
 96s autopkgtest: DBG: testbed command exited with code 0
 96s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.5ASmm8/wrapper.sh
 96s autopkgtest: DBG: got reply from testbed: ok
 96s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5ASmm8/wrapper.sh'], kind short, sout raw, serr pipe, env []
 97s autopkgtest: DBG: testbed command exited with code 0
 97s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env []
 97s autopkgtest: DBG: testbed command exited with code 0
 97s autopkgtest [12:49:29]: testbed dpkg architecture: s390x
 97s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env []
 97s autopkgtest: DBG: testbed command exited with code 0
 97s autopkgtest [12:49:29]: testbed apt version: 2.9.30
 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env []
 97s autopkgtest: DBG: testbed command exited with code 0
 97s autopkgtest: DBG: testbed has eatmydata
 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env []
 97s autopkgtest: DBG: testbed command exited with code 0
 97s autopkgtest [12:49:29]: @@@@@@@@@@@@@@@@@@@@ test bed setup
 97s 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# <distro>.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 []
 97s autopkgtest: DBG: testbed command exited with code 0
 97s autopkgtest [12:49:29]: testbed release detected to be: None
 97s 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 []
 98s autopkgtest: DBG: testbed command exited with code 0
 98s 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 []
 98s autopkgtest: DBG: testbed command exited with code 0
 98s autopkgtest: DBG: adding APT source: Types: deb deb-src
 98s URIs: http://ftpmaster.internal/ubuntu/
 98s Suites: plucky-proposed
 98s Components: main restricted universe multiverse
 98s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
 98s 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 []
 98s autopkgtest: DBG: testbed command exited with code 0
 98s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref:
 98s Package: *
 98s Pin: release plucky-proposed
 98s Pin-Priority: 500
 98s 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 []
 98s autopkgtest: DBG: testbed command exited with code 0
 98s autopkgtest [12:49:30]: updating testbed package index (apt update)
 98s 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']
 98s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB]
 99s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease
 99s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease
 99s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease
 99s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B]
 99s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB]
 99s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB]
 99s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB]
 99s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB]
 99s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B]
 99s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB]
 99s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B]
 99s Fetched 1700 kB in 1s (1804 kB/s)
100s Reading package lists...
100s autopkgtest: DBG: testbed command exited with code 0
100s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref:
100s Package: *
100s Pin: release plucky-proposed
100s Pin-Priority: 100
100s 
100s Package: src:sphinx:any
100s Pin: release plucky-proposed
100s Pin-Priority: 995
100s 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 []
100s autopkgtest: DBG: testbed command exited with code 0
100s 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.5ASmm8/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env []
100s autopkgtest: DBG: testbed command exited with code 0
100s 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 <<EOF\nPackage: *\nPin: release a=$RELEASE\nPin-Priority: 1001\n\nPackage: *\nPin: release a=$RELEASE-updates\nPin-Priority: 1001\n\nPackage: *\nPin: release n=$RELEASE-security\nPin-Priority: 1001\nEOF\n# This is going to be a downgrade-only (or no-op) dist-upgrade, as setup-testbed\n# already dist-upgraded the system. Force the usage of the conf files of the\n# package being installed (--force-confnew), as conf files "from the future"\n# may not be supported by the older package version we\'re downgrading to.\nif [ "${RELEASE}" != "trusty" ]; then\n    DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::="--force-confnew" dist-upgrade\nfi\nrm /etc/apt/preferences.d/force-downgrade-to-release.pref\n\n# Remove packages not available from any configured repository, e.g.\n# packages fully removed from the archive. This requires the analyze-pattern\n# feature, which has been introduced in apt 2.0.1 (>= 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 <<EOF > /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 <<EOF > /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']
100s + lsb_release --codename --short
100s + RELEASE=plucky
100s + cat
100s + [ plucky != trusty ]
100s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade
101s Reading package lists...
101s Building dependency tree...
101s Reading state information...
101s Calculating upgrade...
101s The following packages were automatically installed and are no longer required:
101s   libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64
101s   linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic
101s   linux-modules-6.11.0-8-generic linux-tools-6.11.0-8
101s   linux-tools-6.11.0-8-generic
101s Use 'sudo apt autoremove' to remove them.
101s The following packages will be upgraded:
101s   iproute2 liblsof0 libp11-kit0 lsof
101s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
101s Need to get 1791 kB of archives.
101s After this operation, 17.4 kB of additional disk space will be used.
101s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB]
102s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB]
102s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB]
102s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB]
102s Preconfiguring packages ...
102s Fetched 1791 kB in 1s (2221 kB/s)
102s (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.)
102s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ...
102s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ...
102s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ...
102s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ...
102s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ...
102s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ...
102s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ...
102s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ...
102s Setting up liblsof0 (4.99.4+dfsg-1) ...
102s Setting up iproute2 (6.13.0-1ubuntu1) ...
102s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ...
102s Setting up lsof (4.99.4+dfsg-1) ...
102s Processing triggers for man-db (2.13.0-1) ...
103s Processing triggers for libc-bin (2.40-4ubuntu1) ...
103s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref
103s + /usr/lib/apt/apt-helper analyze-pattern ?true
103s + uname -r
103s + sed s/\./\\./g
103s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.*
103s + apt list ?obsolete
103s + tail -n+2
103s + cut+ grep -v ^linux-.*6\.12\.0-15-generic.*
103s  -d/ -f1
103s + true
103s + obsolete_pkgs=
103s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove
103s Reading package lists...
104s Building dependency tree...
104s Reading state information...
104s The following packages will be REMOVED:
104s   libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64*
104s   linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic*
104s   linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8*
104s   linux-tools-6.11.0-8-generic*
104s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded.
104s After this operation, 167 MB disk space will be freed.
104s (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.)
104s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ...
104s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ...
104s Removing libpython3.12t64:s390x (3.12.9-1) ...
104s Removing libpython3.12-stdlib:s390x (3.12.9-1) ...
104s Removing libnsl2:s390x (1.3.0-3build3) ...
104s Removing libpython3.12-minimal:s390x (3.12.9-1) ...
104s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ...
104s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ...
105s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ...
105s Processing triggers for libc-bin (2.40-4ubuntu1) ...
106s (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.)
106s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ...
106s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ...
106s + grep -q trusty /etc/lsb-release
106s + [ ! -d /usr/share/doc/unattended-upgrades ]
106s + [ ! -d /usr/share/doc/lxd ]
106s + [ ! -d /usr/share/doc/lxd-client ]
106s + [ ! -d /usr/share/doc/snapd ]
106s + type iptables
106s + cat
106s + chmod 755 /etc/rc.local
106s + . /etc/rc.local
106s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
106s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP
106s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP
106s + uname -m
106s + [ s390x = ppc64le ]
106s + [ -d /run/systemd/system ]
106s + systemd-detect-virt --quiet --vm
106s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/
106s + cat
106s + grep -q lz4 /etc/initramfs-tools/initramfs.conf
106s + echo COMPRESS=lz4
106s autopkgtest: DBG: testbed command exited with code 0
106s autopkgtest [12:49:38]: upgrading testbed (apt dist-upgrade and autopurge)
106s 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']
106s Reading package lists...
106s Building dependency tree...
106s Reading state information...
106s Calculating upgrade...Starting pkgProblemResolver with broken count: 0
106s Starting 2 pkgProblemResolver with broken count: 0
106s Done
107s Entering ResolveByKeep
107s 
107s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
107s autopkgtest: DBG: testbed command exited with code 0
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', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none']
107s Reading package lists...
107s Building dependency tree...
107s Reading state information...
107s Starting pkgProblemResolver with broken count: 0
107s Starting 2 pkgProblemResolver with broken count: 0
107s Done
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 ['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.5ASmm8/${d//\\//_}.stamp;  [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env []
108s autopkgtest: DBG: testbed command exited with code 1
108s autopkgtest [12:49:40]: rebooting testbed after setup commands that affected boot
108s autopkgtest: DBG: sending command to testbed: reboot
128s autopkgtest: DBG: got reply from testbed: ok
128s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot
128s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5ASmm8'], kind short, sout raw, serr pipe, env []
128s autopkgtest: DBG: testbed command exited with code 0
128s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.5ASmm8/autopkgtest-reboot
128s autopkgtest: DBG: got reply from testbed: ok
128s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
128s autopkgtest: DBG: testbed command exited with code 0
128s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
128s autopkgtest: DBG: testbed command exited with code 0
128s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
129s autopkgtest: DBG: testbed command exited with code 0
129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5ASmm8'], 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-prepare.sh /tmp/autopkgtest.5ASmm8/autopkgtest-reboot-prepare
129s autopkgtest: DBG: got reply from testbed: ok
129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot-prepare'], 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.5ASmm8/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
129s autopkgtest: DBG: testbed command exited with code 0
129s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env []
129s autopkgtest: DBG: testbed command exited with code 0
129s autopkgtest [12:50:01]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb  4 15:05:57 UTC 2025
129s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env []
130s autopkgtest: DBG: testbed command exited with code 0
130s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5ASmm8/testbed-packages"], kind short, sout raw, serr pipe, env []
130s autopkgtest: DBG: testbed command exited with code 0
130s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/testbed-packages /tmp/autopkgtest-work.a6dh77o7/out/testbed-packages
130s autopkgtest: DBG: got reply from testbed: ok
130s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot
130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5ASmm8'], 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.sh /tmp/autopkgtest.5ASmm8/autopkgtest-reboot
130s autopkgtest: DBG: got reply from testbed: ok
130s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot'], 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.5ASmm8/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
131s autopkgtest: DBG: testbed command exited with code 0
131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
131s autopkgtest: DBG: testbed command exited with code 0
131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.5ASmm8'], 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-prepare.sh /tmp/autopkgtest.5ASmm8/autopkgtest-reboot-prepare
131s autopkgtest: DBG: got reply from testbed: ok
131s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
131s autopkgtest: DBG: testbed command exited with code 0
131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.5ASmm8/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
132s autopkgtest: DBG: testbed command exited with code 0
132s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env []
132s autopkgtest: DBG: testbed command exited with code 0
132s autopkgtest: DBG: Binaries: initialising
132s autopkgtest [12:50:04]: @@@@@@@@@@@@@@@@@@@@ apt-source python-oslo.privsep
132s autopkgtest: DBG: blame += python-oslo.privsep
132s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[]
132s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-oslo.privsep'], kind short, sout pipe, serr pipe, env []
132s autopkgtest: DBG: testbed command exited with code 0
132s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-oslo\\.privsep$'], kind short, sout pipe, serr raw, env []
132s autopkgtest: DBG: testbed command exited with code 0
132s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-oslo.privsep=3.5.0-0ubuntu1'], kind short, sout pipe, serr raw, env []
133s autopkgtest: DBG: testbed command exited with code 0
133s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-oslo\\.privsep-doc$'], kind short, sout pipe, serr raw, env []
133s autopkgtest: DBG: testbed command exited with code 0
133s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-oslo.privsep-doc=3.5.0-0ubuntu1'], kind short, sout pipe, serr raw, env []
133s autopkgtest: DBG: testbed command exited with code 0
133s autopkgtest: DBG: install_deps: deps_new=[]
133s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env []
133s autopkgtest: DBG: testbed command exited with code 0
133s 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.5ASmm8/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-oslo.privsep=3.5.0-0ubuntu1 2>&1) || RC=$?;if [ -n "$RC" ]; then  if echo "$OUT" | grep -q "Unable to find a source package"; then    exit 1;  else    exit $RC;  fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x python-oslo.privsep_*.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']
133s + cd /
133s + mktemp -d /tmp/autopkgtest.5ASmm8/build.XXX
133s + builddir=/tmp/autopkgtest.5ASmm8/build.oCX
133s + cd /tmp/autopkgtest.5ASmm8/build.oCX
133s + apt-get source -d -q --only-source python-oslo.privsep=3.5.0-0ubuntu1
134s + OUT=Reading package lists...
134s NOTICE: 'python-oslo.privsep' packaging is maintained in the 'Git' version control system at:
134s https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-oslo.privsep
134s Please use:
134s git clone https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-oslo.privsep
134s to retrieve the latest (possibly unreleased) updates to the package.
134s Need to get 56.7 kB of source archives.
134s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (dsc) [2775 B]
134s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (tar) [48.5 kB]
134s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (diff) [5424 B]
134s Fetched 56.7 kB in 0s (151 kB/s)
134s Download complete and in download only mode
134s + [ -n  ]
134s + grep ^Get:
134s + echo Reading package lists...
134s NOTICE: 'python-oslo.privsep' packaging is maintained in the 'Git' version control system at:
134s https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-oslo.privsep
134s Please use:
134s git clone https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-oslo.privsep
134s to retrieve the latest (possibly unreleased) updates to the package.
134s Need to get 56.7 kB of source archives.
134s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (dsc) [2775 B]
134s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (tar) [48.5 kB]
134s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (diff) [5424 B]
134s Fetched 56.7 kB in 0s (151 kB/s)
134s Download complete and in download only mode
134s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (dsc) [2775 B]
134s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (tar) [48.5 kB]
134s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-oslo.privsep 3.5.0-0ubuntu1 (diff) [5424 B]
134s + dpkg-source -x python-oslo.privsep_3.5.0-0ubuntu1.dsc src
134s gpgv: Signature made Thu Jan 16 17:31:20 2025 UTC
134s gpgv:                using RSA key AB23E9A98422889E08C3838CBFECAECBA0E7D8C3
134s gpgv: Can't check signature: No public key
134s dpkg-source: warning: cannot verify inline signature for ./python-oslo.privsep_3.5.0-0ubuntu1.dsc: no acceptable signature found
134s + chmod -R a+rX .
134s + cd src/.
134s + pwd
134s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog
134s autopkgtest: DBG: testbed command exited with code 0
134s autopkgtest [12:50:06]: testing package python-oslo.privsep version 3.5.0-0ubuntu1
134s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/build.oCX/src/debian/ /tmp/autopkgtest-work.a6dh77o7/out/pkg/debian/
134s autopkgtest: DBG: got reply from testbed: ok
134s autopkgtest: DBG: processing dependency @
134s autopkgtest: DBG: synthesised dependency python-oslo.privsep-doc
134s autopkgtest: DBG: synthesised dependency python3-oslo.privsep
134s autopkgtest: DBG: processing dependency @builddeps@
134s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13)
134s autopkgtest: DBG: synthesised dependency dh-python
134s autopkgtest: DBG: synthesised dependency openstack-pkg-tools
134s autopkgtest: DBG: synthesised dependency python3-all
134s autopkgtest: DBG: synthesised dependency python3-pbr
134s autopkgtest: DBG: synthesised dependency python3-setuptools
134s autopkgtest: DBG: synthesised dependency python3-sphinx (>= 2.0.0)
134s autopkgtest: DBG: synthesised dependency python3-cffi (>= 1.14.0)
134s autopkgtest: DBG: synthesised dependency python3-eventlet (>= 0.21.0)
134s autopkgtest: DBG: synthesised dependency python3-fixtures (>= 3.0.0)
134s autopkgtest: DBG: synthesised dependency python3-greenlet (>= 0.4.14)
134s autopkgtest: DBG: synthesised dependency python3-msgpack (>= 0.6.0)
134s autopkgtest: DBG: synthesised dependency python3-openstackdocstheme (>= 2.2.0)
134s autopkgtest: DBG: synthesised dependency python3-oslo.config (>= 1:5.2.0)
134s autopkgtest: DBG: synthesised dependency python3-oslo.i18n (>= 3.15.3)
134s autopkgtest: DBG: synthesised dependency python3-oslo.log (>= 5.0.2)
134s autopkgtest: DBG: synthesised dependency python3-oslo.utils (>= 3.33.0)
134s autopkgtest: DBG: synthesised dependency python3-oslotest (>= 1:3.2.0)
134s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib.apidoc (>= 0.2.0)
134s autopkgtest: DBG: synthesised dependency python3-stestr (>= 2.0.0)
134s autopkgtest: DBG: synthesised dependency subunit
134s autopkgtest: DBG: synthesised dependency build-essential
134s autopkgtest: DBG: processing dependency python3-os-testr
134s autopkgtest: DBG: Test defined: name python-import path debian/tests/python-import command "None" restrictions ['allow-stderr'] features [] depends ['python-oslo.privsep-doc', 'python3-oslo.privsep', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-cffi (>= 1.14.0)', 'python3-eventlet (>= 0.21.0)', 'python3-fixtures (>= 3.0.0)', 'python3-greenlet (>= 0.4.14)', 'python3-msgpack (>= 0.6.0)', 'python3-openstackdocstheme (>= 2.2.0)', 'python3-oslo.config (>= 1:5.2.0)', 'python3-oslo.i18n (>= 3.15.3)', 'python3-oslo.log (>= 5.0.2)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-sphinxcontrib.apidoc (>= 0.2.0)', 'python3-stestr (>= 2.0.0)', 'subunit', 'build-essential', 'python3-os-testr'] 
134s autopkgtest [12:50:06]: build not needed
134s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/build.oCX/src/ /tmp/autopkgtest-work.a6dh77o7/out/tests-tree/
135s autopkgtest: DBG: got reply from testbed: ok
135s autopkgtest: DBG: processing dependency @
135s autopkgtest: DBG: synthesised dependency python-oslo.privsep-doc
135s autopkgtest: DBG: synthesised dependency python3-oslo.privsep
135s autopkgtest: DBG: processing dependency @builddeps@
135s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13)
135s autopkgtest: DBG: synthesised dependency dh-python
135s autopkgtest: DBG: synthesised dependency openstack-pkg-tools
135s autopkgtest: DBG: synthesised dependency python3-all
135s autopkgtest: DBG: synthesised dependency python3-pbr
135s autopkgtest: DBG: synthesised dependency python3-setuptools
135s autopkgtest: DBG: synthesised dependency python3-sphinx (>= 2.0.0)
135s autopkgtest: DBG: synthesised dependency python3-cffi (>= 1.14.0)
135s autopkgtest: DBG: synthesised dependency python3-eventlet (>= 0.21.0)
135s autopkgtest: DBG: synthesised dependency python3-fixtures (>= 3.0.0)
135s autopkgtest: DBG: synthesised dependency python3-greenlet (>= 0.4.14)
135s autopkgtest: DBG: synthesised dependency python3-msgpack (>= 0.6.0)
135s autopkgtest: DBG: synthesised dependency python3-openstackdocstheme (>= 2.2.0)
135s autopkgtest: DBG: synthesised dependency python3-oslo.config (>= 1:5.2.0)
135s autopkgtest: DBG: synthesised dependency python3-oslo.i18n (>= 3.15.3)
135s autopkgtest: DBG: synthesised dependency python3-oslo.log (>= 5.0.2)
135s autopkgtest: DBG: synthesised dependency python3-oslo.utils (>= 3.33.0)
135s autopkgtest: DBG: synthesised dependency python3-oslotest (>= 1:3.2.0)
135s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib.apidoc (>= 0.2.0)
135s autopkgtest: DBG: synthesised dependency python3-stestr (>= 2.0.0)
135s autopkgtest: DBG: synthesised dependency subunit
135s autopkgtest: DBG: synthesised dependency build-essential
135s autopkgtest: DBG: processing dependency python3-os-testr
135s autopkgtest: DBG: Test defined: name python-import path debian/tests/python-import command "None" restrictions ['allow-stderr'] features [] depends ['python-oslo.privsep-doc', 'python3-oslo.privsep', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-cffi (>= 1.14.0)', 'python3-eventlet (>= 0.21.0)', 'python3-fixtures (>= 3.0.0)', 'python3-greenlet (>= 0.4.14)', 'python3-msgpack (>= 0.6.0)', 'python3-openstackdocstheme (>= 2.2.0)', 'python3-oslo.config (>= 1:5.2.0)', 'python3-oslo.i18n (>= 3.15.3)', 'python3-oslo.log (>= 5.0.2)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-sphinxcontrib.apidoc (>= 0.2.0)', 'python3-stestr (>= 2.0.0)', 'subunit', 'build-essential', 'python3-os-testr'] 
135s autopkgtest [12:50:07]: test python-import: preparing testbed
135s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python-oslo.privsep-doc', 'python3-oslo.privsep', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-cffi (>= 1.14.0)', 'python3-eventlet (>= 0.21.0)', 'python3-fixtures (>= 3.0.0)', 'python3-greenlet (>= 0.4.14)', 'python3-msgpack (>= 0.6.0)', 'python3-openstackdocstheme (>= 2.2.0)', 'python3-oslo.config (>= 1:5.2.0)', 'python3-oslo.i18n (>= 3.15.3)', 'python3-oslo.log (>= 5.0.2)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-sphinxcontrib.apidoc (>= 0.2.0)', 'python3-stestr (>= 2.0.0)', 'subunit', 'build-essential', 'python3-os-testr']
135s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything
135s autopkgtest: DBG: install_deps: deps_new=['python-oslo.privsep-doc', 'python3-oslo.privsep', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-cffi (>= 1.14.0)', 'python3-eventlet (>= 0.21.0)', 'python3-fixtures (>= 3.0.0)', 'python3-greenlet (>= 0.4.14)', 'python3-msgpack (>= 0.6.0)', 'python3-openstackdocstheme (>= 2.2.0)', 'python3-oslo.config (>= 1:5.2.0)', 'python3-oslo.i18n (>= 3.15.3)', 'python3-oslo.log (>= 5.0.2)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-sphinxcontrib.apidoc (>= 0.2.0)', 'python3-stestr (>= 2.0.0)', 'subunit', 'build-essential', 'python3-os-testr']
135s autopkgtest: DBG: install-deps: satisfying python-oslo.privsep-doc, python3-oslo.privsep, debhelper-compat (= 13), dh-python, openstack-pkg-tools, python3-all, python3-pbr, python3-setuptools, python3-sphinx (>= 2.0.0), python3-cffi (>= 1.14.0), python3-eventlet (>= 0.21.0), python3-fixtures (>= 3.0.0), python3-greenlet (>= 0.4.14), python3-msgpack (>= 0.6.0), python3-openstackdocstheme (>= 2.2.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 5.0.2), python3-oslo.utils (>= 3.33.0), python3-oslotest (>= 1:3.2.0), python3-sphinxcontrib.apidoc (>= 0.2.0), python3-stestr (>= 2.0.0), subunit, build-essential, python3-os-testr
135s autopkgtest: DBG: can use apt-get on testbed: True
135s 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', 'python-oslo.privsep-doc, python3-oslo.privsep, debhelper-compat (= 13), dh-python, openstack-pkg-tools, python3-all, python3-pbr, python3-setuptools, python3-sphinx (>= 2.0.0), python3-cffi (>= 1.14.0), python3-eventlet (>= 0.21.0), python3-fixtures (>= 3.0.0), python3-greenlet (>= 0.4.14), python3-msgpack (>= 0.6.0), python3-openstackdocstheme (>= 2.2.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 5.0.2), python3-oslo.utils (>= 3.33.0), python3-oslotest (>= 1:3.2.0), python3-sphinxcontrib.apidoc (>= 0.2.0), python3-stestr (>= 2.0.0), subunit, build-essential, python3-os-testr'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none']
135s Reading package lists...
135s Building dependency tree...
135s Reading state information...
135s Starting pkgProblemResolver with broken count: 0
135s Starting 2 pkgProblemResolver with broken count: 0
135s Done
136s The following NEW packages will be installed:
136s   autoconf automake autopoint autotools-dev build-essential cpp cpp-14
136s   cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf
136s   dh-python dh-strip-nondeterminism docutils-common dwz fonts-font-awesome
136s   fonts-glyphicons-halflings g++ g++-14 g++-14-s390x-linux-gnu
136s   g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu
136s   gettext intltool-debian libarchive-zip-perl libasan8 libcc1-0
136s   libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev libgomp1
136s   libisl23 libitm1 libjs-bootstrap libjs-jquery libjs-sphinxdoc
136s   libjs-underscore libjson-perl libmpc3 libnsl2 libpython3.12-minimal
136s   libpython3.12-stdlib libstdc++-14-dev libsubunit-perl libtool libubsan1
136s   libxslt1.1 m4 openstack-pkg-tools po-debconf python-oslo.privsep-doc
136s   python3-alabaster python3-all python3-autopage python3-cffi python3-cliff
136s   python3-cmd2 python3-dateutil python3-debtcollector python3-decorator
136s   python3-defusedxml python3-deprecation python3-dnspython python3-docutils
136s   python3-dogpile.cache python3-dulwich python3-eventlet python3-extras
136s   python3-fixtures python3-greenlet python3-imagesize
136s   python3-importlib-metadata python3-iso8601 python3-jmespath
136s   python3-keystoneauth1 python3-lxml python3-mako python3-monotonic
136s   python3-msgpack python3-munch python3-openstackdocstheme
136s   python3-openstacksdk python3-os-client-config python3-os-service-types
136s   python3-os-testr python3-oslo.config python3-oslo.context python3-oslo.i18n
136s   python3-oslo.log python3-oslo.privsep python3-oslo.serialization
136s   python3-oslo.utils python3-oslotest python3-packaging python3-pbr
136s   python3-pip python3-platformdirs python3-ply python3-prettytable
136s   python3-psutil python3-pycparser python3-pyperclip
136s   python3-requestsexceptions python3-rfc3986 python3-roman python3-six
136s   python3-snowballstemmer python3-sphinx python3-sphinxcontrib.apidoc
136s   python3-stestr python3-stevedore python3-subunit python3-testtools
136s   python3-tomlkit python3-voluptuous python3-wcwidth python3-wheel
136s   python3-wrapt python3.12 python3.12-minimal sgml-base sphinx-common subunit
136s   xml-core
136s 0 upgraded, 128 newly installed, 0 to remove and 0 not upgraded.
136s Need to get 71.7 MB of archives.
136s After this operation, 257 MB of additional disk space will be used.
136s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB]
136s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB]
136s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB]
136s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB]
136s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB]
136s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB]
136s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB]
136s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB]
136s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB]
136s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB]
136s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB]
136s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB]
136s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB]
136s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB]
137s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B]
137s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B]
137s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB]
137s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB]
137s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB]
137s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB]
137s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB]
137s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB]
137s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB]
137s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB]
137s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB]
137s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B]
137s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B]
137s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB]
137s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB]
138s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB]
138s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B]
138s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B]
138s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B]
138s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB]
138s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB]
138s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB]
138s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB]
138s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB]
138s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B]
138s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB]
138s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB]
138s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB]
138s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB]
138s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB]
138s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB]
138s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB]
138s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB]
138s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB]
138s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB]
138s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB]
138s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB]
138s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB]
138s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB]
138s Get:54 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB]
138s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB]
138s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libsubunit-perl all 1.4.2-3build1 [5936 B]
138s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB]
138s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x python-oslo.privsep-doc all 3.5.0-0ubuntu1 [904 kB]
138s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B]
138s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3-autopage all 0.4.0-4 [13.1 kB]
138s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ply all 3.11-7 [45.4 kB]
138s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pycparser all 2.22-2 [76.5 kB]
138s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cffi all 1.17.1-2build1 [74.8 kB]
138s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB]
138s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyperclip all 1.8.2-2 [11.5 kB]
138s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cmd2 all 2.5.7+ds-1 [123 kB]
138s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB]
138s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB]
138s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB]
138s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB]
138s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB]
138s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB]
138s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cliff all 4.8.0-0ubuntu1 [43.3 kB]
138s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB]
138s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB]
138s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debtcollector all 3.0.0-3 [13.3 kB]
138s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB]
138s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB]
138s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB]
138s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x python3-deprecation all 2.1.0-3 [8806 B]
138s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dnspython all 2.7.0-1ubuntu1 [167 kB]
138s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-mako all 1.3.8-2 [63.5 kB]
138s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dogpile.cache all 1.3.3-1 [46.8 kB]
138s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-dulwich s390x 0.22.7-1 [183 kB]
138s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB]
138s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x python3-eventlet all 0.39.0-0ubuntu1 [277 kB]
138s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-extras all 1.0.0-6 [7040 B]
139s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testtools all 2.7.2-4 [124 kB]
139s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fixtures all 4.1.0-3 [34.8 kB]
139s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B]
139s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB]
139s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x python3-iso8601 all 2.1.0-2 [9136 B]
139s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB]
139s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB]
139s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-service-types all 1.7.0-5 [12.8 kB]
139s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneauth1 all 5.9.1-0ubuntu1 [171 kB]
139s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monotonic all 1.6-3 [5344 B]
139s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB]
139s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-openstackdocstheme all 3.2.0-0ubuntu2 [863 kB]
139s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x python3-munch all 4.0.0-2 [10.9 kB]
139s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB]
139s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB]
139s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x python3-requestsexceptions all 1.4.0-5 [3824 B]
139s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstacksdk all 4.3.0-0ubuntu1 [676 kB]
139s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-client-config all 2.1.0-0ubuntu5 [17.6 kB]
139s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tomlkit all 0.13.2-1 [37.6 kB]
139s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x python3-voluptuous all 0.14.2-1 [42.7 kB]
139s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-subunit all 1.4.2-3build1 [67.6 kB]
139s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x subunit all 1.4.2-3build1 [4500 B]
139s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stestr all 4.1.0-3 [57.6 kB]
139s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-os-testr all 3.0.0-4 [18.4 kB]
139s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.i18n all 6.5.0-0ubuntu1 [22.3 kB]
139s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.context all 1:5.7.0-0ubuntu1 [13.8 kB]
139s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.utils all 8.1.0-0ubuntu1 [88.4 kB]
139s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.serialization all 5.6.0-0ubuntu1 [15.8 kB]
139s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.log all 7.0.0-0ubuntu1 [45.6 kB]
139s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x python3-rfc3986 all 2.0.0-3 [22.0 kB]
139s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.config all 1:9.7.0-0ubuntu1 [90.4 kB]
139s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.privsep all 3.5.0-0ubuntu1 [24.3 kB]
139s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-oslotest all 1:5.0.0-4 [17.5 kB]
139s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB]
139s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pip all 25.0+dfsg-1 [1417 kB]
139s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB]
140s Get:124 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB]
140s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB]
140s Get:126 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB]
140s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.apidoc all 0.3.0-2ubuntu1 [8032 B]
140s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x openstack-pkg-tools all 123ubuntu2 [94.5 kB]
140s Fetched 71.7 MB in 4s (18.1 MB/s)
140s Selecting previously unselected package libpython3.12-minimal:s390x.
140s (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.)
140s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ...
140s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ...
140s Selecting previously unselected package python3.12-minimal.
140s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ...
140s Unpacking python3.12-minimal (3.12.9-1) ...
140s Selecting previously unselected package sgml-base.
140s Preparing to unpack .../002-sgml-base_1.31_all.deb ...
140s Unpacking sgml-base (1.31) ...
140s Selecting previously unselected package libnsl2:s390x.
140s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ...
140s Unpacking libnsl2:s390x (1.3.0-3build3) ...
140s Selecting previously unselected package libpython3.12-stdlib:s390x.
140s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ...
140s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ...
140s Selecting previously unselected package python3.12.
140s Preparing to unpack .../005-python3.12_3.12.9-1_s390x.deb ...
140s Unpacking python3.12 (3.12.9-1) ...
140s Selecting previously unselected package m4.
140s Preparing to unpack .../006-m4_1.4.19-5_s390x.deb ...
140s Unpacking m4 (1.4.19-5) ...
140s Selecting previously unselected package autoconf.
140s Preparing to unpack .../007-autoconf_2.72-3_all.deb ...
140s Unpacking autoconf (2.72-3) ...
140s Selecting previously unselected package autotools-dev.
140s Preparing to unpack .../008-autotools-dev_20220109.1_all.deb ...
140s Unpacking autotools-dev (20220109.1) ...
140s Selecting previously unselected package automake.
140s Preparing to unpack .../009-automake_1%3a1.17-3_all.deb ...
140s Unpacking automake (1:1.17-3) ...
140s Selecting previously unselected package autopoint.
140s Preparing to unpack .../010-autopoint_0.23.1-1_all.deb ...
140s Unpacking autopoint (0.23.1-1) ...
140s Selecting previously unselected package libisl23:s390x.
140s Preparing to unpack .../011-libisl23_0.27-1_s390x.deb ...
140s Unpacking libisl23:s390x (0.27-1) ...
140s Selecting previously unselected package libmpc3:s390x.
140s Preparing to unpack .../012-libmpc3_1.3.1-1build2_s390x.deb ...
140s Unpacking libmpc3:s390x (1.3.1-1build2) ...
141s Selecting previously unselected package cpp-14-s390x-linux-gnu.
141s Preparing to unpack .../013-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package cpp-14.
141s Preparing to unpack .../014-cpp-14_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking cpp-14 (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package cpp-s390x-linux-gnu.
141s Preparing to unpack .../015-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ...
141s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ...
141s Selecting previously unselected package cpp.
141s Preparing to unpack .../016-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ...
141s Unpacking cpp (4:14.2.0-1ubuntu1) ...
141s Selecting previously unselected package libcc1-0:s390x.
141s Preparing to unpack .../017-libcc1-0_15-20250213-1ubuntu1_s390x.deb ...
141s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ...
141s Selecting previously unselected package libgomp1:s390x.
141s Preparing to unpack .../018-libgomp1_15-20250213-1ubuntu1_s390x.deb ...
141s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ...
141s Selecting previously unselected package libitm1:s390x.
141s Preparing to unpack .../019-libitm1_15-20250213-1ubuntu1_s390x.deb ...
141s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ...
141s Selecting previously unselected package libasan8:s390x.
141s Preparing to unpack .../020-libasan8_15-20250213-1ubuntu1_s390x.deb ...
141s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ...
141s Selecting previously unselected package libubsan1:s390x.
141s Preparing to unpack .../021-libubsan1_15-20250213-1ubuntu1_s390x.deb ...
141s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ...
141s Selecting previously unselected package libgcc-14-dev:s390x.
141s Preparing to unpack .../022-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package gcc-14-s390x-linux-gnu.
141s Preparing to unpack .../023-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package gcc-14.
141s Preparing to unpack .../024-gcc-14_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking gcc-14 (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package gcc-s390x-linux-gnu.
141s Preparing to unpack .../025-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ...
141s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ...
141s Selecting previously unselected package gcc.
141s Preparing to unpack .../026-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ...
141s Unpacking gcc (4:14.2.0-1ubuntu1) ...
141s Selecting previously unselected package libstdc++-14-dev:s390x.
141s Preparing to unpack .../027-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package g++-14-s390x-linux-gnu.
141s Preparing to unpack .../028-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package g++-14.
141s Preparing to unpack .../029-g++-14_14.2.0-17ubuntu1_s390x.deb ...
141s Unpacking g++-14 (14.2.0-17ubuntu1) ...
141s Selecting previously unselected package g++-s390x-linux-gnu.
141s Preparing to unpack .../030-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ...
141s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ...
141s Selecting previously unselected package g++.
141s Preparing to unpack .../031-g++_4%3a14.2.0-1ubuntu1_s390x.deb ...
141s Unpacking g++ (4:14.2.0-1ubuntu1) ...
141s Selecting previously unselected package build-essential.
141s Preparing to unpack .../032-build-essential_12.10ubuntu1_s390x.deb ...
141s Unpacking build-essential (12.10ubuntu1) ...
141s Selecting previously unselected package libdebhelper-perl.
141s Preparing to unpack .../033-libdebhelper-perl_13.24.1ubuntu2_all.deb ...
141s Unpacking libdebhelper-perl (13.24.1ubuntu2) ...
141s Selecting previously unselected package libtool.
141s Preparing to unpack .../034-libtool_2.5.4-3build1_all.deb ...
141s Unpacking libtool (2.5.4-3build1) ...
141s Selecting previously unselected package dh-autoreconf.
141s Preparing to unpack .../035-dh-autoreconf_20_all.deb ...
141s Unpacking dh-autoreconf (20) ...
142s Selecting previously unselected package libarchive-zip-perl.
142s Preparing to unpack .../036-libarchive-zip-perl_1.68-1_all.deb ...
142s Unpacking libarchive-zip-perl (1.68-1) ...
142s Selecting previously unselected package libfile-stripnondeterminism-perl.
142s Preparing to unpack .../037-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ...
142s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ...
142s Selecting previously unselected package dh-strip-nondeterminism.
142s Preparing to unpack .../038-dh-strip-nondeterminism_1.14.1-2_all.deb ...
142s Unpacking dh-strip-nondeterminism (1.14.1-2) ...
142s Selecting previously unselected package debugedit.
142s Preparing to unpack .../039-debugedit_1%3a5.1-2_s390x.deb ...
142s Unpacking debugedit (1:5.1-2) ...
142s Selecting previously unselected package dwz.
142s Preparing to unpack .../040-dwz_0.15-1build6_s390x.deb ...
142s Unpacking dwz (0.15-1build6) ...
142s Selecting previously unselected package gettext.
142s Preparing to unpack .../041-gettext_0.23.1-1_s390x.deb ...
142s Unpacking gettext (0.23.1-1) ...
142s Selecting previously unselected package intltool-debian.
142s Preparing to unpack .../042-intltool-debian_0.35.0+20060710.6_all.deb ...
142s Unpacking intltool-debian (0.35.0+20060710.6) ...
142s Selecting previously unselected package po-debconf.
142s Preparing to unpack .../043-po-debconf_1.0.21+nmu1_all.deb ...
142s Unpacking po-debconf (1.0.21+nmu1) ...
142s Selecting previously unselected package debhelper.
142s Preparing to unpack .../044-debhelper_13.24.1ubuntu2_all.deb ...
142s Unpacking debhelper (13.24.1ubuntu2) ...
142s Selecting previously unselected package dh-python.
142s Preparing to unpack .../045-dh-python_6.20250108_all.deb ...
142s Unpacking dh-python (6.20250108) ...
142s Selecting previously unselected package xml-core.
142s Preparing to unpack .../046-xml-core_0.19_all.deb ...
142s Unpacking xml-core (0.19) ...
142s Selecting previously unselected package docutils-common.
142s Preparing to unpack .../047-docutils-common_0.21.2+dfsg-2_all.deb ...
142s Unpacking docutils-common (0.21.2+dfsg-2) ...
142s Selecting previously unselected package fonts-font-awesome.
142s Preparing to unpack .../048-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ...
142s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ...
142s Selecting previously unselected package fonts-glyphicons-halflings.
142s Preparing to unpack .../049-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ...
142s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ...
142s Selecting previously unselected package libjs-bootstrap.
142s Preparing to unpack .../050-libjs-bootstrap_3.4.1+dfsg-3_all.deb ...
142s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ...
142s Selecting previously unselected package libjs-jquery.
142s Preparing to unpack .../051-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
142s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
142s Selecting previously unselected package libjs-underscore.
142s Preparing to unpack .../052-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
142s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
142s Selecting previously unselected package libjs-sphinxdoc.
142s Preparing to unpack .../053-libjs-sphinxdoc_8.1.3-5_all.deb ...
142s Unpacking libjs-sphinxdoc (8.1.3-5) ...
142s Selecting previously unselected package libjson-perl.
142s Preparing to unpack .../054-libjson-perl_4.10000-1_all.deb ...
142s Unpacking libjson-perl (4.10000-1) ...
142s Selecting previously unselected package libsubunit-perl.
142s Preparing to unpack .../055-libsubunit-perl_1.4.2-3build1_all.deb ...
142s Unpacking libsubunit-perl (1.4.2-3build1) ...
142s Selecting previously unselected package libxslt1.1:s390x.
142s Preparing to unpack .../056-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ...
142s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ...
142s Selecting previously unselected package python-oslo.privsep-doc.
142s Preparing to unpack .../057-python-oslo.privsep-doc_3.5.0-0ubuntu1_all.deb ...
142s Unpacking python-oslo.privsep-doc (3.5.0-0ubuntu1) ...
142s Selecting previously unselected package python3-all.
142s Preparing to unpack .../058-python3-all_3.13.1-1~exp2_s390x.deb ...
142s Unpacking python3-all (3.13.1-1~exp2) ...
142s Selecting previously unselected package python3-autopage.
142s Preparing to unpack .../059-python3-autopage_0.4.0-4_all.deb ...
142s Unpacking python3-autopage (0.4.0-4) ...
142s Selecting previously unselected package python3-ply.
142s Preparing to unpack .../060-python3-ply_3.11-7_all.deb ...
142s Unpacking python3-ply (3.11-7) ...
142s Selecting previously unselected package python3-pycparser.
142s Preparing to unpack .../061-python3-pycparser_2.22-2_all.deb ...
142s Unpacking python3-pycparser (2.22-2) ...
142s Selecting previously unselected package python3-cffi.
142s Preparing to unpack .../062-python3-cffi_1.17.1-2build1_all.deb ...
142s Unpacking python3-cffi (1.17.1-2build1) ...
142s Selecting previously unselected package python3-wcwidth.
142s Preparing to unpack .../063-python3-wcwidth_0.2.13+dfsg1-1_all.deb ...
142s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ...
142s Selecting previously unselected package python3-pyperclip.
142s Preparing to unpack .../064-python3-pyperclip_1.8.2-2_all.deb ...
142s Unpacking python3-pyperclip (1.8.2-2) ...
142s Selecting previously unselected package python3-cmd2.
142s Preparing to unpack .../065-python3-cmd2_2.5.7+ds-1_all.deb ...
142s Unpacking python3-cmd2 (2.5.7+ds-1) ...
142s Selecting previously unselected package python3-roman.
142s Preparing to unpack .../066-python3-roman_5.0-1_all.deb ...
142s Unpacking python3-roman (5.0-1) ...
142s Selecting previously unselected package python3-docutils.
142s Preparing to unpack .../067-python3-docutils_0.21.2+dfsg-2_all.deb ...
142s Unpacking python3-docutils (0.21.2+dfsg-2) ...
142s Selecting previously unselected package python3-pbr.
142s Preparing to unpack .../068-python3-pbr_6.1.1-0ubuntu1_all.deb ...
142s Unpacking python3-pbr (6.1.1-0ubuntu1) ...
142s Selecting previously unselected package python3-prettytable.
142s Preparing to unpack .../069-python3-prettytable_3.12.0-1_all.deb ...
142s Unpacking python3-prettytable (3.12.0-1) ...
142s Selecting previously unselected package python3-importlib-metadata.
142s Preparing to unpack .../070-python3-importlib-metadata_8.6.1-1_all.deb ...
142s Unpacking python3-importlib-metadata (8.6.1-1) ...
142s Selecting previously unselected package python3-stevedore.
142s Preparing to unpack .../071-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ...
142s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ...
142s Selecting previously unselected package python3-cliff.
142s Preparing to unpack .../072-python3-cliff_4.8.0-0ubuntu1_all.deb ...
142s Unpacking python3-cliff (4.8.0-0ubuntu1) ...
142s Selecting previously unselected package python3-dateutil.
142s Preparing to unpack .../073-python3-dateutil_2.9.0-3_all.deb ...
142s Unpacking python3-dateutil (2.9.0-3) ...
142s Selecting previously unselected package python3-wrapt.
142s Preparing to unpack .../074-python3-wrapt_1.15.0-4_s390x.deb ...
142s Unpacking python3-wrapt (1.15.0-4) ...
142s Selecting previously unselected package python3-debtcollector.
142s Preparing to unpack .../075-python3-debtcollector_3.0.0-3_all.deb ...
142s Unpacking python3-debtcollector (3.0.0-3) ...
142s Selecting previously unselected package python3-decorator.
142s Preparing to unpack .../076-python3-decorator_5.1.1-5_all.deb ...
142s Unpacking python3-decorator (5.1.1-5) ...
142s Selecting previously unselected package python3-defusedxml.
142s Preparing to unpack .../077-python3-defusedxml_0.7.1-3_all.deb ...
142s Unpacking python3-defusedxml (0.7.1-3) ...
142s Selecting previously unselected package python3-packaging.
142s Preparing to unpack .../078-python3-packaging_24.2-1_all.deb ...
142s Unpacking python3-packaging (24.2-1) ...
142s Selecting previously unselected package python3-deprecation.
142s Preparing to unpack .../079-python3-deprecation_2.1.0-3_all.deb ...
142s Unpacking python3-deprecation (2.1.0-3) ...
142s Selecting previously unselected package python3-dnspython.
142s Preparing to unpack .../080-python3-dnspython_2.7.0-1ubuntu1_all.deb ...
142s Unpacking python3-dnspython (2.7.0-1ubuntu1) ...
142s Selecting previously unselected package python3-mako.
142s Preparing to unpack .../081-python3-mako_1.3.8-2_all.deb ...
142s Unpacking python3-mako (1.3.8-2) ...
142s Selecting previously unselected package python3-dogpile.cache.
142s Preparing to unpack .../082-python3-dogpile.cache_1.3.3-1_all.deb ...
142s Unpacking python3-dogpile.cache (1.3.3-1) ...
142s Selecting previously unselected package python3-dulwich.
142s Preparing to unpack .../083-python3-dulwich_0.22.7-1_s390x.deb ...
142s Unpacking python3-dulwich (0.22.7-1) ...
142s Selecting previously unselected package python3-greenlet.
142s Preparing to unpack .../084-python3-greenlet_3.1.0-1_s390x.deb ...
142s Unpacking python3-greenlet (3.1.0-1) ...
142s Selecting previously unselected package python3-eventlet.
142s Preparing to unpack .../085-python3-eventlet_0.39.0-0ubuntu1_all.deb ...
142s Unpacking python3-eventlet (0.39.0-0ubuntu1) ...
142s Selecting previously unselected package python3-extras.
142s Preparing to unpack .../086-python3-extras_1.0.0-6_all.deb ...
142s Unpacking python3-extras (1.0.0-6) ...
142s Selecting previously unselected package python3-testtools.
142s Preparing to unpack .../087-python3-testtools_2.7.2-4_all.deb ...
142s Unpacking python3-testtools (2.7.2-4) ...
142s Selecting previously unselected package python3-fixtures.
142s Preparing to unpack .../088-python3-fixtures_4.1.0-3_all.deb ...
142s Unpacking python3-fixtures (4.1.0-3) ...
142s Selecting previously unselected package python3-imagesize.
142s Preparing to unpack .../089-python3-imagesize_1.4.1-1_all.deb ...
142s Unpacking python3-imagesize (1.4.1-1) ...
142s Selecting previously unselected package python3-jmespath.
142s Preparing to unpack .../090-python3-jmespath_1.0.1-1_all.deb ...
142s Unpacking python3-jmespath (1.0.1-1) ...
142s Selecting previously unselected package python3-iso8601.
142s Preparing to unpack .../091-python3-iso8601_2.1.0-2_all.deb ...
142s Unpacking python3-iso8601 (2.1.0-2) ...
142s Selecting previously unselected package python3-lxml:s390x.
142s Preparing to unpack .../092-python3-lxml_5.3.1-1_s390x.deb ...
142s Unpacking python3-lxml:s390x (5.3.1-1) ...
142s Selecting previously unselected package python3-six.
142s Preparing to unpack .../093-python3-six_1.17.0-1_all.deb ...
142s Unpacking python3-six (1.17.0-1) ...
142s Selecting previously unselected package python3-os-service-types.
142s Preparing to unpack .../094-python3-os-service-types_1.7.0-5_all.deb ...
142s Unpacking python3-os-service-types (1.7.0-5) ...
142s Selecting previously unselected package python3-keystoneauth1.
142s Preparing to unpack .../095-python3-keystoneauth1_5.9.1-0ubuntu1_all.deb ...
142s Unpacking python3-keystoneauth1 (5.9.1-0ubuntu1) ...
142s Selecting previously unselected package python3-monotonic.
142s Preparing to unpack .../096-python3-monotonic_1.6-3_all.deb ...
142s Unpacking python3-monotonic (1.6-3) ...
142s Selecting previously unselected package python3-msgpack.
142s Preparing to unpack .../097-python3-msgpack_1.0.3-3build3_s390x.deb ...
142s Unpacking python3-msgpack (1.0.3-3build3) ...
142s Selecting previously unselected package python3-openstackdocstheme.
142s Preparing to unpack .../098-python3-openstackdocstheme_3.2.0-0ubuntu2_all.deb ...
142s Unpacking python3-openstackdocstheme (3.2.0-0ubuntu2) ...
142s Selecting previously unselected package python3-munch.
142s Preparing to unpack .../099-python3-munch_4.0.0-2_all.deb ...
142s Unpacking python3-munch (4.0.0-2) ...
143s Selecting previously unselected package python3-platformdirs.
143s Preparing to unpack .../100-python3-platformdirs_4.3.6-1_all.deb ...
143s Unpacking python3-platformdirs (4.3.6-1) ...
143s Selecting previously unselected package python3-psutil.
143s Preparing to unpack .../101-python3-psutil_5.9.8-2build3_s390x.deb ...
143s Unpacking python3-psutil (5.9.8-2build3) ...
143s Selecting previously unselected package python3-requestsexceptions.
143s Preparing to unpack .../102-python3-requestsexceptions_1.4.0-5_all.deb ...
143s Unpacking python3-requestsexceptions (1.4.0-5) ...
143s Selecting previously unselected package python3-openstacksdk.
143s Preparing to unpack .../103-python3-openstacksdk_4.3.0-0ubuntu1_all.deb ...
143s Unpacking python3-openstacksdk (4.3.0-0ubuntu1) ...
143s Selecting previously unselected package python3-os-client-config.
143s Preparing to unpack .../104-python3-os-client-config_2.1.0-0ubuntu5_all.deb ...
143s Unpacking python3-os-client-config (2.1.0-0ubuntu5) ...
143s Selecting previously unselected package python3-tomlkit.
143s Preparing to unpack .../105-python3-tomlkit_0.13.2-1_all.deb ...
143s Unpacking python3-tomlkit (0.13.2-1) ...
143s Selecting previously unselected package python3-voluptuous.
143s Preparing to unpack .../106-python3-voluptuous_0.14.2-1_all.deb ...
143s Unpacking python3-voluptuous (0.14.2-1) ...
143s Selecting previously unselected package python3-subunit.
143s Preparing to unpack .../107-python3-subunit_1.4.2-3build1_all.deb ...
143s Unpacking python3-subunit (1.4.2-3build1) ...
143s Selecting previously unselected package subunit.
143s Preparing to unpack .../108-subunit_1.4.2-3build1_all.deb ...
143s Unpacking subunit (1.4.2-3build1) ...
143s Selecting previously unselected package python3-stestr.
143s Preparing to unpack .../109-python3-stestr_4.1.0-3_all.deb ...
143s Unpacking python3-stestr (4.1.0-3) ...
143s Selecting previously unselected package python3-os-testr.
143s Preparing to unpack .../110-python3-os-testr_3.0.0-4_all.deb ...
143s Unpacking python3-os-testr (3.0.0-4) ...
143s Selecting previously unselected package python3-oslo.i18n.
143s Preparing to unpack .../111-python3-oslo.i18n_6.5.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.i18n (6.5.0-0ubuntu1) ...
143s Selecting previously unselected package python3-oslo.context.
143s Preparing to unpack .../112-python3-oslo.context_1%3a5.7.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.context (1:5.7.0-0ubuntu1) ...
143s Selecting previously unselected package python3-oslo.utils.
143s Preparing to unpack .../113-python3-oslo.utils_8.1.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.utils (8.1.0-0ubuntu1) ...
143s Selecting previously unselected package python3-oslo.serialization.
143s Preparing to unpack .../114-python3-oslo.serialization_5.6.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.serialization (5.6.0-0ubuntu1) ...
143s Selecting previously unselected package python3-oslo.log.
143s Preparing to unpack .../115-python3-oslo.log_7.0.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.log (7.0.0-0ubuntu1) ...
143s Selecting previously unselected package python3-rfc3986.
143s Preparing to unpack .../116-python3-rfc3986_2.0.0-3_all.deb ...
143s Unpacking python3-rfc3986 (2.0.0-3) ...
143s Selecting previously unselected package python3-oslo.config.
143s Preparing to unpack .../117-python3-oslo.config_1%3a9.7.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.config (1:9.7.0-0ubuntu1) ...
143s Selecting previously unselected package python3-oslo.privsep.
143s Preparing to unpack .../118-python3-oslo.privsep_3.5.0-0ubuntu1_all.deb ...
143s Unpacking python3-oslo.privsep (3.5.0-0ubuntu1) ...
143s Selecting previously unselected package python3-oslotest.
143s Preparing to unpack .../119-python3-oslotest_1%3a5.0.0-4_all.deb ...
143s Unpacking python3-oslotest (1:5.0.0-4) ...
143s Selecting previously unselected package python3-wheel.
143s Preparing to unpack .../120-python3-wheel_0.45.1-1_all.deb ...
143s Unpacking python3-wheel (0.45.1-1) ...
143s Selecting previously unselected package python3-pip.
143s Preparing to unpack .../121-python3-pip_25.0+dfsg-1_all.deb ...
143s Unpacking python3-pip (25.0+dfsg-1) ...
143s Selecting previously unselected package python3-snowballstemmer.
143s Preparing to unpack .../122-python3-snowballstemmer_2.2.0-4build1_all.deb ...
143s Unpacking python3-snowballstemmer (2.2.0-4build1) ...
143s Selecting previously unselected package sphinx-common.
143s Preparing to unpack .../123-sphinx-common_8.1.3-5_all.deb ...
143s Unpacking sphinx-common (8.1.3-5) ...
143s Selecting previously unselected package python3-alabaster.
143s Preparing to unpack .../124-python3-alabaster_0.7.16-0.1_all.deb ...
143s Unpacking python3-alabaster (0.7.16-0.1) ...
143s Selecting previously unselected package python3-sphinx.
143s Preparing to unpack .../125-python3-sphinx_8.1.3-5_all.deb ...
143s Unpacking python3-sphinx (8.1.3-5) ...
143s Selecting previously unselected package python3-sphinxcontrib.apidoc.
143s Preparing to unpack .../126-python3-sphinxcontrib.apidoc_0.3.0-2ubuntu1_all.deb ...
143s Unpacking python3-sphinxcontrib.apidoc (0.3.0-2ubuntu1) ...
143s Selecting previously unselected package openstack-pkg-tools.
143s Preparing to unpack .../127-openstack-pkg-tools_123ubuntu2_all.deb ...
143s Unpacking openstack-pkg-tools (123ubuntu2) ...
143s Setting up dh-python (6.20250108) ...
143s Setting up libsubunit-perl (1.4.2-3build1) ...
143s Setting up python3-importlib-metadata (8.6.1-1) ...
144s Setting up python3-defusedxml (0.7.1-3) ...
144s Setting up python3-pbr (6.1.1-0ubuntu1) ...
144s Setting up libarchive-zip-perl (1.68-1) ...
144s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ...
144s Setting up python3-alabaster (0.7.16-0.1) ...
144s Setting up libdebhelper-perl (13.24.1ubuntu2) ...
144s Setting up python3-ply (3.11-7) ...
144s Setting up python3-autopage (0.4.0-4) ...
144s Setting up python3-extras (1.0.0-6) ...
144s Setting up libpython3.12-minimal:s390x (3.12.9-1) ...
144s Setting up m4 (1.4.19-5) ...
144s Setting up python3-requestsexceptions (1.4.0-5) ...
145s Setting up python3-pyperclip (1.8.2-2) ...
145s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ...
145s Setting up python3-wheel (0.45.1-1) ...
145s Setting up python3-platformdirs (4.3.6-1) ...
145s Setting up python3-munch (4.0.0-2) ...
145s Setting up python3-psutil (5.9.8-2build3) ...
146s Setting up python3-pycparser (2.22-2) ...
146s Setting up python3-monotonic (1.6-3) ...
146s Setting up python3-six (1.17.0-1) ...
146s Setting up python3-roman (5.0-1) ...
146s Setting up python3-decorator (5.1.1-5) ...
146s Setting up autotools-dev (20220109.1) ...
146s Setting up python3-packaging (24.2-1) ...
147s Setting up python3-iso8601 (2.1.0-2) ...
147s Setting up python3-wcwidth (0.2.13+dfsg1-1) ...
147s Setting up python3-rfc3986 (2.0.0-3) ...
147s Setting up python3-cmd2 (2.5.7+ds-1) ...
147s Setting up python3-snowballstemmer (2.2.0-4build1) ...
148s Setting up python3-jmespath (1.0.1-1) ...
148s Setting up python3-greenlet (3.1.0-1) ...
148s Setting up libmpc3:s390x (1.3.1-1build2) ...
148s Setting up python3-wrapt (1.15.0-4) ...
148s Setting up autopoint (0.23.1-1) ...
148s Setting up python3-deprecation (2.1.0-3) ...
149s Setting up python3-pip (25.0+dfsg-1) ...
151s Setting up autoconf (2.72-3) ...
151s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ...
151s Setting up dwz (0.15-1build6) ...
151s Setting up python3-dnspython (2.7.0-1ubuntu1) ...
151s Setting up python3-dulwich (0.22.7-1) ...
152s Setting up libasan8:s390x (15-20250213-1ubuntu1) ...
152s Setting up libjson-perl (4.10000-1) ...
152s Setting up libnsl2:s390x (1.3.0-3build3) ...
152s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ...
152s Setting up debugedit (1:5.1-2) ...
152s Setting up python3-os-service-types (1.7.0-5) ...
152s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ...
152s Setting up python3-dateutil (2.9.0-3) ...
152s Setting up sgml-base (1.31) ...
152s Setting up python3-msgpack (1.0.3-3build3) ...
152s Setting up python3-voluptuous (0.14.2-1) ...
152s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
152s Setting up libisl23:s390x (0.27-1) ...
152s Setting up python3-prettytable (3.12.0-1) ...
153s Setting up python3-tomlkit (0.13.2-1) ...
153s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ...
153s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ...
153s Setting up libjs-bootstrap (3.4.1+dfsg-3) ...
153s Setting up libitm1:s390x (15-20250213-1ubuntu1) ...
153s Setting up python3-oslo.i18n (6.5.0-0ubuntu1) ...
153s Setting up python3-mako (1.3.8-2) ...
153s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
153s Setting up python3-imagesize (1.4.1-1) ...
153s Setting up automake (1:1.17-3) ...
153s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
153s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ...
153s Setting up python3.12-minimal (3.12.9-1) ...
154s Setting up gettext (0.23.1-1) ...
154s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ...
154s Setting up python3.12 (3.12.9-1) ...
156s Setting up python3-cffi (1.17.1-2build1) ...
156s Setting up python3-all (3.13.1-1~exp2) ...
156s Setting up python3-debtcollector (3.0.0-3) ...
156s Setting up intltool-debian (0.35.0+20060710.6) ...
156s Setting up python3-dogpile.cache (1.3.3-1) ...
156s Setting up python3-eventlet (0.39.0-0ubuntu1) ...
157s Setting up python3-oslo.context (1:5.7.0-0ubuntu1) ...
157s Setting up libjs-sphinxdoc (8.1.3-5) ...
157s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ...
157s Setting up cpp-14 (14.2.0-17ubuntu1) ...
157s Setting up dh-strip-nondeterminism (1.14.1-2) ...
157s Setting up python3-lxml:s390x (5.3.1-1) ...
157s Setting up xml-core (0.19) ...
157s Setting up python3-openstackdocstheme (3.2.0-0ubuntu2) ...
157s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ...
157s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ...
157s Setting up python3-keystoneauth1 (5.9.1-0ubuntu1) ...
158s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ...
158s Setting up po-debconf (1.0.21+nmu1) ...
158s Setting up python3-oslo.utils (8.1.0-0ubuntu1) ...
158s Setting up openstack-pkg-tools (123ubuntu2) ...
158s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ...
158s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ...
158s Setting up sphinx-common (8.1.3-5) ...
158s Setting up python-oslo.privsep-doc (3.5.0-0ubuntu1) ...
158s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ...
158s Setting up python3-openstacksdk (4.3.0-0ubuntu1) ...
161s Setting up cpp (4:14.2.0-1ubuntu1) ...
161s Setting up python3-os-client-config (2.1.0-0ubuntu5) ...
161s Setting up python3-oslo.serialization (5.6.0-0ubuntu1) ...
161s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ...
161s Setting up gcc-14 (14.2.0-17ubuntu1) ...
161s Setting up g++-14 (14.2.0-17ubuntu1) ...
161s Setting up libtool (2.5.4-3build1) ...
161s Setting up gcc (4:14.2.0-1ubuntu1) ...
161s Setting up dh-autoreconf (20) ...
161s Setting up g++ (4:14.2.0-1ubuntu1) ...
161s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
161s Setting up build-essential (12.10ubuntu1) ...
161s Setting up debhelper (13.24.1ubuntu2) ...
161s Setting up python3-testtools (2.7.2-4) ...
161s Setting up python3-subunit (1.4.2-3build1) ...
162s Setting up python3-fixtures (4.1.0-3) ...
162s Setting up subunit (1.4.2-3build1) ...
162s Processing triggers for libc-bin (2.40-4ubuntu1) ...
162s Processing triggers for systemd (257.2-3ubuntu1) ...
162s Processing triggers for man-db (2.13.0-1) ...
163s Processing triggers for install-info (7.1.1-1) ...
163s Processing triggers for sgml-base (1.31) ...
163s Setting up docutils-common (0.21.2+dfsg-2) ...
163s Processing triggers for sgml-base (1.31) ...
163s Setting up python3-docutils (0.21.2+dfsg-2) ...
164s Setting up python3-cliff (4.8.0-0ubuntu1) ...
164s Setting up python3-oslo.config (1:9.7.0-0ubuntu1) ...
165s Setting up python3-sphinx (8.1.3-5) ...
166s Setting up python3-oslo.log (7.0.0-0ubuntu1) ...
166s Setting up python3-stestr (4.1.0-3) ...
167s Setting up python3-sphinxcontrib.apidoc (0.3.0-2ubuntu1) ...
167s Setting up python3-oslotest (1:5.0.0-4) ...
167s Setting up python3-oslo.privsep (3.5.0-0ubuntu1) ...
167s Setting up python3-os-testr (3.0.0-4) ...
167s autopkgtest: DBG: testbed command exited with code 0
167s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-oslo.privsep-doc'], kind short, sout pipe, serr pipe, env []
168s autopkgtest: DBG: testbed command exited with code 0
168s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-oslo.privsep'], kind short, sout pipe, serr pipe, env []
168s autopkgtest: DBG: testbed command exited with code 0
168s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.5ASmm8/python-import-packages.all"], kind short, sout raw, serr pipe, env []
168s autopkgtest: DBG: testbed command exited with code 0
168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/python-import-packages.all /tmp/autopkgtest-work.a6dh77o7/out/python-import-packages.all
168s autopkgtest: DBG: got reply from testbed: ok
168s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.5ASmm8/build.oCX/src'], kind short, sout raw, serr raw, env []
168s autopkgtest: DBG: testbed command exited with code 0
168s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.5ASmm8/build.oCX/src already exists
168s autopkgtest [12:50:40]: test python-import: [-----------------------
168s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.5ASmm8/wrapper.sh --debug --artifacts=/tmp/autopkgtest.5ASmm8/python-import-artifacts --chdir=/tmp/autopkgtest.5ASmm8/build.oCX/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.5ASmm8/python-import-stderr --stdout=/tmp/autopkgtest.5ASmm8/python-import-stdout --tmp=/tmp/autopkgtest.5ASmm8/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.5ASmm8/build.oCX/src/debian/tests/python-import -- /tmp/autopkgtest.5ASmm8/build.oCX/src/debian/tests/python-import'], kind test, sout raw, serr raw, env []
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.5ASmm8/python-import-artifacts
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: changing to directory: /tmp/autopkgtest.5ASmm8/build.oCX/src
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: setting environment: LANG=C.UTF-8
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LANGUAGE
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_ADDRESS
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_ALL
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_COLLATE
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_CTYPE
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_IDENTIFICATION
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_MEASUREMENT
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_MESSAGES
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_MONETARY
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_NAME
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_NUMERIC
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_PAPER
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_TELEPHONE
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: unsetting environment: LC_TIME
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: pretending to be a login shell
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: will write standard error to /tmp/autopkgtest.5ASmm8/python-import-stderr
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: will write stdout to /tmp/autopkgtest.5ASmm8/python-import-stdout
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.5ASmm8/autopkgtest_tmp
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: marking as executable: /tmp/autopkgtest.5ASmm8/build.oCX/src/debian/tests/python-import
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: command to run: /tmp/autopkgtest.5ASmm8/build.oCX/src/debian/tests/python-import
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: copying /tmp/tmp.ovoIubfgHc/out to stdout and file: /tmp/autopkgtest.5ASmm8/python-import-stdout
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: copying /tmp/tmp.ovoIubfgHc/err to standard error and file: /tmp/autopkgtest.5ASmm8/python-import-stdout
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: writing script pid 3344 to /tmp/autopkgtest_script_pid
169s /usr/lib/python3/dist-packages/setuptools/__init__.py:94: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.
169s !!
169s 
169s         ********************************************************************************
169s         Requirements should be satisfied by a PEP 517 installer.
169s         If you are using pip, you can try `pip install --use-pep517`.
169s         ********************************************************************************
169s 
169s !!
169s   dist.fetch_build_eggs(dist.setup_requires)
169s /usr/lib/python3/dist-packages/setuptools/command/develop.py:41: EasyInstallDeprecationWarning: easy_install command is deprecated.
169s !!
169s 
169s         ********************************************************************************
169s         Please avoid running ``setup.py`` and ``easy_install``.
169s         Instead, use pypa/build, pypa/installer or other
169s         standards-based tools.
169s 
169s         See https://github.com/pypa/setuptools/issues/917 for details.
169s         ********************************************************************************
169s 
169s !!
169s   easy_install.initialize_options(self)
169s /usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
169s !!
169s 
169s         ********************************************************************************
169s         Please avoid running ``setup.py`` directly.
169s         Instead, use pypa/build, pypa/installer or other
169s         standards-based tools.
169s 
169s         See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
169s         ********************************************************************************
169s 
169s !!
169s   self.initialize_options()
169s /usr/lib/python3/dist-packages/pbr/core.py:140: UserWarning: Unknown distribution option: 'tests_require'
169s   warnings.warn(msg)
169s Testing with python3.12:
169s <module 'oslo_privsep' from '/usr/lib/python3/dist-packages/oslo_privsep/__init__.py'>
169s Testing with python3.13:
169s <module 'oslo_privsep' from '/usr/lib/python3/dist-packages/oslo_privsep/__init__.py'>
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: checking for leaked background processes...
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: waiting for tee/cat subprocesses...
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: cleaning up...
169s /tmp/autopkgtest.5ASmm8/wrapper.sh: Exit status: 0
169s autopkgtest: DBG: testbed command exited with code 0
169s autopkgtest [12:50:41]: test python-import: -----------------------]
169s autopkgtest: DBG: testbed executing test finished with exit status 0
169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/python-import-stdout /tmp/autopkgtest-work.a6dh77o7/out/python-import-stdout
170s autopkgtest: DBG: got reply from testbed: ok
170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/python-import-stderr /tmp/autopkgtest-work.a6dh77o7/out/python-import-stderr
170s autopkgtest: DBG: got reply from testbed: ok
170s python-import        PASS
170s autopkgtest [12:50:42]: test python-import:  - - - - - - - - - - results - - - - - - - - - -
170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.5ASmm8/python-import-artifacts/ /tmp/autopkgtest-work.a6dh77o7/out/artifacts/
170s autopkgtest: DBG: got reply from testbed: ok
170s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.5ASmm8/python-import-artifacts', '/tmp/autopkgtest.5ASmm8/autopkgtest_tmp'], kind short, sout raw, serr pipe, env []
170s autopkgtest: DBG: testbed command exited with code 0
170s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230
170s autopkgtest [12:50:42]: @@@@@@@@@@@@@@@@@@@@ summary
170s python-import        PASS
170s autopkgtest: DBG: testbed stop
170s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.5ASmm8
170s autopkgtest: DBG: sending command to testbed: close
188s autopkgtest: DBG: got reply from testbed: ok
188s autopkgtest: DBG: sending command to testbed: quit
188s nova [W] Using flock in prodstack6-s390x
188s Creating nova instance adt-plucky-s390x-python-oslo.privsep-20250219-124752-juju-7f2275-prod-proposed-migration-environment-15-7e5fb9fc-4c77-426b-812d-6a51ea726cf7 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)...
188s nova [W] Timed out waiting for d89b6e2b-d445-4e1b-b7ae-0d7ac7dc3875 to get deleted.