0s autopkgtest: DBG: testbed init
  0s autopkgtest [12:08:33]: starting date and time: 2025-02-19 12:08:33+0000
  0s autopkgtest [12:08:33]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production'
  0s autopkgtest [12:08:33]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.6qgpjmqt/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade ghostscript --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-8.secgroup --name adt-plucky-s390x-ghostscript-20250219-120832-juju-7f2275-prod-proposed-migration-environment-15-4e46df27-abf1-4ae9-9bfb-fcea581db98a --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
 80s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.KKh6rR
 80s autopkgtest: DBG: sending command to testbed: print-execute-command
 80s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zwzhfkck/runcmd
 80s autopkgtest: DBG: sending command to testbed: capabilities
 80s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system reboot suggested-normal-user=ubuntu revert root-on-testbed
 80s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet']
 80s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KKh6rR'], kind short, sout raw, serr pipe, env []
 80s autopkgtest: DBG: testbed command exited with code 0
 80s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.KKh6rR/wrapper.sh
 80s autopkgtest: DBG: got reply from testbed: ok
 80s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KKh6rR/wrapper.sh'], kind short, sout raw, serr pipe, env []
 80s autopkgtest: DBG: testbed command exited with code 0
 80s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env []
 80s autopkgtest: DBG: testbed command exited with code 0
 80s autopkgtest [12:09:53]: testbed dpkg architecture: s390x
 80s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env []
 80s autopkgtest: DBG: testbed command exited with code 0
 80s autopkgtest [12:09:53]: testbed apt version: 2.9.30
 80s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env []
 81s autopkgtest: DBG: testbed command exited with code 0
 81s autopkgtest: DBG: testbed has eatmydata
 81s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env []
 81s autopkgtest: DBG: testbed command exited with code 0
 81s autopkgtest [12:09:54]: @@@@@@@@@@@@@@@@@@@@ test bed setup
 81s 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 []
 81s autopkgtest: DBG: testbed command exited with code 0
 81s autopkgtest [12:09:54]: testbed release detected to be: None
 81s 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 []
 81s autopkgtest: DBG: testbed command exited with code 0
 81s 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 []
 81s autopkgtest: DBG: testbed command exited with code 0
 81s autopkgtest: DBG: adding APT source: Types: deb deb-src
 81s URIs: http://ftpmaster.internal/ubuntu/
 81s Suites: plucky-proposed
 81s Components: main restricted universe multiverse
 81s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
 81s 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 []
 81s autopkgtest: DBG: testbed command exited with code 0
 81s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref:
 81s Package: *
 81s Pin: release plucky-proposed
 81s Pin-Priority: 500
 81s 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 []
 82s autopkgtest: DBG: testbed command exited with code 0
 82s autopkgtest [12:09:55]: updating testbed package index (apt update)
 82s 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']
 82s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB]
 82s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease
 82s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease
 82s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease
 82s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB]
 83s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B]
 83s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB]
 83s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB]
 83s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB]
 83s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B]
 83s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB]
 83s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B]
 83s Fetched 1700 kB in 1s (1834 kB/s)
 83s Reading package lists...
 83s autopkgtest: DBG: testbed command exited with code 0
 83s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref:
 83s Package: *
 83s Pin: release plucky-proposed
 83s Pin-Priority: 100
 83s 
 83s Package: src:sphinx:any
 83s Pin: release plucky-proposed
 83s Pin-Priority: 995
 83s 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 []
 84s autopkgtest: DBG: testbed command exited with code 0
 84s 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.KKh6rR/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env []
 84s autopkgtest: DBG: testbed command exited with code 0
 84s 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']
 84s + lsb_release --codename --short
 84s + RELEASE=plucky
 84s + cat
 84s + [ plucky != trusty ]
 84s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade
 84s Reading package lists...
 84s Building dependency tree...
 84s Reading state information...
 86s Calculating upgrade...
 86s The following packages were automatically installed and are no longer required:
 86s   libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64
 86s   linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic
 86s   linux-modules-6.11.0-8-generic linux-tools-6.11.0-8
 86s   linux-tools-6.11.0-8-generic
 86s Use 'sudo apt autoremove' to remove them.
 86s The following packages will be upgraded:
 86s   iproute2 liblsof0 libp11-kit0 lsof
 86s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
 86s Need to get 1791 kB of archives.
 86s After this operation, 17.4 kB of additional disk space will be used.
 86s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB]
 86s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB]
 86s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB]
 86s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB]
 86s Preconfiguring packages ...
 86s Fetched 1791 kB in 1s (2823 kB/s)
 86s (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.)
 86s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ...
 86s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ...
 86s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ...
 86s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ...
 86s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ...
 86s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ...
 86s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ...
 86s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ...
 86s Setting up liblsof0 (4.99.4+dfsg-1) ...
 86s Setting up iproute2 (6.13.0-1ubuntu1) ...
 86s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ...
 86s Setting up lsof (4.99.4+dfsg-1) ...
 86s Processing triggers for man-db (2.13.0-1) ...
 86s Processing triggers for libc-bin (2.40-4ubuntu1) ...
 87s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref
 87s + /usr/lib/apt/apt-helper analyze-pattern ?true
 87s + uname -r
 87s + sed s/\./\\./g
 87s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.*
 87s + apt list ?obsolete
 87s + + tail -n+2
 87s grep -v ^linux-.*6\.12\.0-15-generic.*
 87s + cut -d/ -f1
 87s + true
 87s + obsolete_pkgs=
 87s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove
 87s Reading package lists...
 87s Building dependency tree...
 87s Reading state information...
 87s The following packages will be REMOVED:
 87s   libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64*
 87s   linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic*
 87s   linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8*
 87s   linux-tools-6.11.0-8-generic*
 87s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded.
 87s After this operation, 167 MB disk space will be freed.
 87s (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.)
 87s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ...
 87s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ...
 87s Removing libpython3.12t64:s390x (3.12.9-1) ...
 87s Removing libpython3.12-stdlib:s390x (3.12.9-1) ...
 87s Removing libnsl2:s390x (1.3.0-3build3) ...
 87s Removing libpython3.12-minimal:s390x (3.12.9-1) ...
 87s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ...
 88s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ...
 89s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ...
 89s Processing triggers for libc-bin (2.40-4ubuntu1) ...
 89s (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.)
 89s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ...
 89s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ...
 89s + grep -q trusty /etc/lsb-release
 89s + [ ! -d /usr/share/doc/unattended-upgrades ]
 89s + [ ! -d /usr/share/doc/lxd ]
 89s + [ ! -d /usr/share/doc/lxd-client ]
 89s + [ ! -d /usr/share/doc/snapd ]
 89s + type iptables
 89s + cat
 89s + chmod 755 /etc/rc.local
 89s + . /etc/rc.local
 89s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
 89s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP
 89s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP
 89s + uname -m
 89s + [ s390x = ppc64le ]
 89s + [ -d /run/systemd/system ]
 89s + systemd-detect-virt --quiet --vm
 89s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/
 89s + cat
 89s + grep -q lz4 /etc/initramfs-tools/initramfs.conf
 89s + echo COMPRESS=lz4
 89s autopkgtest: DBG: testbed command exited with code 0
 89s autopkgtest [12:10:02]: upgrading testbed (apt dist-upgrade and autopurge)
 89s 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']
 89s Reading package lists...
 89s Building dependency tree...
 89s Reading state information...
 89s Calculating upgrade...Starting pkgProblemResolver with broken count: 0
 89s Starting 2 pkgProblemResolver with broken count: 0
 89s Done
 90s Entering ResolveByKeep
 90s 
 90s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
 90s autopkgtest: DBG: testbed command exited with code 0
 90s 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']
 90s Reading package lists...
 90s Building dependency tree...
 90s Reading state information...
 90s Starting pkgProblemResolver with broken count: 0
 90s Starting 2 pkgProblemResolver with broken count: 0
 90s Done
 91s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
 91s autopkgtest: DBG: testbed command exited with code 0
 91s 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.KKh6rR/${d//\\//_}.stamp;  [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env []
 91s autopkgtest: DBG: testbed command exited with code 1
 91s autopkgtest [12:10:04]: rebooting testbed after setup commands that affected boot
 91s autopkgtest: DBG: sending command to testbed: reboot
112s autopkgtest: DBG: got reply from testbed: ok
112s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot
112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KKh6rR'], kind short, sout raw, serr pipe, env []
112s autopkgtest: DBG: testbed command exited with code 0
112s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.KKh6rR/autopkgtest-reboot
112s autopkgtest: DBG: got reply from testbed: ok
112s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
112s autopkgtest: DBG: testbed command exited with code 0
112s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
112s autopkgtest: DBG: testbed command exited with code 0
112s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
112s autopkgtest: DBG: testbed command exited with code 0
112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KKh6rR'], kind short, sout raw, serr pipe, env []
113s autopkgtest: DBG: testbed command exited with code 0
113s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.KKh6rR/autopkgtest-reboot-prepare
113s autopkgtest: DBG: got reply from testbed: ok
113s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
113s autopkgtest: DBG: testbed command exited with code 0
113s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
113s autopkgtest: DBG: testbed command exited with code 0
113s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env []
113s autopkgtest: DBG: testbed command exited with code 0
113s autopkgtest [12:10:26]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb  4 15:05:57 UTC 2025
113s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env []
113s autopkgtest: DBG: testbed command exited with code 0
113s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.KKh6rR/testbed-packages"], kind short, sout raw, serr pipe, env []
114s autopkgtest: DBG: testbed command exited with code 0
114s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/testbed-packages /tmp/autopkgtest-work.6qgpjmqt/out/testbed-packages
114s autopkgtest: DBG: got reply from testbed: ok
114s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot
114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KKh6rR'], kind short, sout raw, serr pipe, env []
114s autopkgtest: DBG: testbed command exited with code 0
114s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.KKh6rR/autopkgtest-reboot
114s autopkgtest: DBG: got reply from testbed: ok
114s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
114s autopkgtest: DBG: testbed command exited with code 0
114s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
115s autopkgtest: DBG: testbed command exited with code 0
115s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env []
115s autopkgtest: DBG: testbed command exited with code 0
115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KKh6rR'], kind short, sout raw, serr pipe, env []
115s autopkgtest: DBG: testbed command exited with code 0
115s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.KKh6rR/autopkgtest-reboot-prepare
115s autopkgtest: DBG: got reply from testbed: ok
115s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
115s autopkgtest: DBG: testbed command exited with code 0
115s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KKh6rR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env []
115s autopkgtest: DBG: testbed command exited with code 0
115s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env []
116s autopkgtest: DBG: testbed command exited with code 0
116s autopkgtest: DBG: Binaries: initialising
116s autopkgtest [12:10:29]: @@@@@@@@@@@@@@@@@@@@ apt-source ghostscript
116s autopkgtest: DBG: blame += ghostscript
116s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[]
116s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'ghostscript'], kind short, sout pipe, serr pipe, env []
116s autopkgtest: DBG: testbed command exited with code 0
116s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgs10$'], kind short, sout pipe, serr raw, env []
116s autopkgtest: DBG: testbed command exited with code 0
116s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgs10=10.04.0~dfsg1-2ubuntu1'], kind short, sout pipe, serr raw, env []
116s autopkgtest: DBG: testbed command exited with code 0
116s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgs-dev$'], kind short, sout pipe, serr raw, env []
117s autopkgtest: DBG: testbed command exited with code 0
117s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgs-dev=10.04.0~dfsg1-2ubuntu1'], kind short, sout pipe, serr raw, env []
117s autopkgtest: DBG: testbed command exited with code 0
117s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^ghostscript$'], kind short, sout pipe, serr raw, env []
117s autopkgtest: DBG: testbed command exited with code 0
117s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'ghostscript=10.04.0~dfsg1-2ubuntu1'], kind short, sout pipe, serr raw, env []
117s autopkgtest: DBG: testbed command exited with code 0
117s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^ghostscript-doc$'], kind short, sout pipe, serr raw, env []
118s autopkgtest: DBG: testbed command exited with code 0
118s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'ghostscript-doc=10.04.0~dfsg1-2ubuntu1'], kind short, sout pipe, serr raw, env []
118s autopkgtest: DBG: testbed command exited with code 0
118s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgs-common$'], kind short, sout pipe, serr raw, env []
118s autopkgtest: DBG: testbed command exited with code 0
118s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgs-common=10.04.0~dfsg1-2ubuntu1'], kind short, sout pipe, serr raw, env []
118s autopkgtest: DBG: testbed command exited with code 0
118s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgs10-common$'], kind short, sout pipe, serr raw, env []
118s autopkgtest: DBG: testbed command exited with code 0
118s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgs10-common=10.04.0~dfsg1-2ubuntu1'], kind short, sout pipe, serr raw, env []
119s autopkgtest: DBG: testbed command exited with code 0
119s autopkgtest: DBG: install_deps: deps_new=[]
119s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env []
119s autopkgtest: DBG: testbed command exited with code 0
119s 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.KKh6rR/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source ghostscript=10.04.0~dfsg1-2ubuntu1 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 ghostscript_*.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']
119s + cd /
119s + mktemp -d /tmp/autopkgtest.KKh6rR/build.XXX
119s + builddir=/tmp/autopkgtest.KKh6rR/build.ASa
119s + cd /tmp/autopkgtest.KKh6rR/build.ASa
119s + apt-get source -d -q --only-source ghostscript=10.04.0~dfsg1-2ubuntu1
123s + OUT=Reading package lists...
123s NOTICE: 'ghostscript' packaging is maintained in the 'Git' version control system at:
123s https://salsa.debian.org/debian/ghostscript.git
123s Please use:
123s git clone https://salsa.debian.org/debian/ghostscript.git
123s to retrieve the latest (possibly unreleased) updates to the package.
123s Need to get 60.6 MB of source archives.
123s Get:1 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (dsc) [2321 B]
123s Get:2 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (tar) [60.5 MB]
123s Get:3 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (diff) [87.5 kB]
123s Fetched 60.6 MB in 4s (17.1 MB/s)
123s Download complete and in download only mode
123s + [ -n  ]
123s + echo Reading package lists...
123s NOTICE: 'ghostscript' packaging is maintained in the 'Git' version control system at:
123s https://salsa.debian.org/debian/ghostscript.git
123s Please use:
123s git clone https://salsa.debian.org/debian/ghostscript.git
123s to retrieve the latest (possibly unreleased) updates to the package.
123s Need to get 60.6 MB of source archives.
123s Get:1 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (dsc) [2321 B]
123s Get:2 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (tar) [60.5 MB]
123s Get:3 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (diff) [87.5 kB]
123s Fetched 60.6 MB in 4s (17.1 MB/s)
123s Download complete and in download only mode
123s + grep ^Get:
123s Get:1 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (dsc) [2321 B]
123s Get:2 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (tar) [60.5 MB]
123s Get:3 http://ftpmaster.internal/ubuntu plucky/main ghostscript 10.04.0~dfsg1-2ubuntu1 (diff) [87.5 kB]
123s + dpkg-source -x ghostscript_10.04.0~dfsg1-2ubuntu1.dsc src
123s gpgv: Signature made Thu Feb 13 22:21:52 2025 UTC
123s gpgv:                using DSA key 0B38054997A1041F726C71864EE55AB65FDC2849
123s gpgv: Can't check signature: No public key
123s dpkg-source: warning: cannot verify inline signature for ./ghostscript_10.04.0~dfsg1-2ubuntu1.dsc: no acceptable signature found
125s + chmod -R a+rX .
125s + cd src/.
125s + pwd
125s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog
125s autopkgtest: DBG: testbed command exited with code 0
125s autopkgtest [12:10:38]: testing package ghostscript version 10.04.0~dfsg1-2ubuntu1
125s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/build.ASa/src/debian/ /tmp/autopkgtest-work.6qgpjmqt/out/pkg/debian/
126s autopkgtest: DBG: got reply from testbed: ok
126s autopkgtest: DBG: processing dependency ghostscript
126s autopkgtest: DBG: marked alternatives ['ghostscript'] as a synthesised dependency
126s autopkgtest: DBG: Test defined: name command1 path None command "make -f debian/tests/smoke.mk" restrictions [] features [] depends ['ghostscript'] 
126s autopkgtest [12:10:39]: build not needed
126s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/build.ASa/src/ /tmp/autopkgtest-work.6qgpjmqt/out/tests-tree/
131s autopkgtest: DBG: got reply from testbed: ok
131s autopkgtest: DBG: processing dependency ghostscript
131s autopkgtest: DBG: marked alternatives ['ghostscript'] as a synthesised dependency
131s autopkgtest: DBG: Test defined: name command1 path None command "make -f debian/tests/smoke.mk" restrictions [] features [] depends ['ghostscript'] 
131s autopkgtest [12:10:44]: test command1: preparing testbed
131s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['ghostscript']
131s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything
131s autopkgtest: DBG: install_deps: deps_new=['ghostscript']
131s autopkgtest: DBG: install-deps: satisfying ghostscript
131s autopkgtest: DBG: can use apt-get on testbed: True
131s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'ghostscript'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none']
132s Reading package lists...
132s Building dependency tree...
132s Reading state information...
132s Starting pkgProblemResolver with broken count: 0
132s Starting 2 pkgProblemResolver with broken count: 0
132s Done
132s The following NEW packages will be installed:
132s   fontconfig-config fonts-urw-base35 ghostscript libavahi-client3
132s   libavahi-common-data libavahi-common3 libcups2t64 libdeflate0 libfontconfig1
132s   libfontenc1 libfreetype6 libgs-common libgs10 libgs10-common libice6
132s   libidn12 libijs-0.35 libjbig0 libjbig2dec0 libjpeg-turbo8 libjpeg8
132s   libopenjp2-7 libpaper2 libsharpyuv0 libsm6 libtiff6 libwebp7 libxt6t64
132s   poppler-data x11-common xfonts-encodings xfonts-utils
132s 0 upgraded, 32 newly installed, 0 to remove and 0 not upgraded.
132s Need to get 20.7 MB of archives.
132s After this operation, 65.0 MB of additional disk space will be used.
132s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x poppler-data all 0.4.12-1 [2060 kB]
133s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB]
133s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB]
133s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB]
133s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]
133s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x xfonts-utils s390x 1:7.7+7 [101 kB]
133s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-urw-base35 all 20200910-8 [11.0 MB]
133s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB]
133s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libgs-common all 10.04.0~dfsg1-2ubuntu1 [176 kB]
133s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libgs10-common all 10.04.0~dfsg1-2ubuntu1 [488 kB]
133s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB]
133s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB]
133s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB]
133s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB]
133s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB]
133s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libidn12 s390x 1.42-3 [56.9 kB]
133s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libijs-0.35 s390x 0.35-15.1build1 [15.5 kB]
133s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig2dec0 s390x 0.20-1build3 [69.3 kB]
133s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB]
133s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B]
133s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB]
133s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB]
133s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB]
133s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB]
133s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB]
133s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB]
133s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB]
133s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB]
134s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB]
134s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB]
134s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgs10 s390x 10.04.0~dfsg1-2ubuntu1 [3964 kB]
134s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x ghostscript s390x 10.04.0~dfsg1-2ubuntu1 [43.7 kB]
134s Preconfiguring packages ...
134s Fetched 20.7 MB in 2s (13.3 MB/s)
134s Selecting previously unselected package poppler-data.
134s (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.)
134s Preparing to unpack .../00-poppler-data_0.4.12-1_all.deb ...
134s Unpacking poppler-data (0.4.12-1) ...
134s Selecting previously unselected package libfontenc1:s390x.
134s Preparing to unpack .../01-libfontenc1_1%3a1.1.8-1build1_s390x.deb ...
134s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ...
134s Selecting previously unselected package libfreetype6:s390x.
134s Preparing to unpack .../02-libfreetype6_2.13.3+dfsg-1_s390x.deb ...
134s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ...
134s Selecting previously unselected package x11-common.
134s Preparing to unpack .../03-x11-common_1%3a7.7+23ubuntu3_all.deb ...
134s Unpacking x11-common (1:7.7+23ubuntu3) ...
134s Selecting previously unselected package xfonts-encodings.
134s Preparing to unpack .../04-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...
134s Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...
134s Selecting previously unselected package xfonts-utils.
134s Preparing to unpack .../05-xfonts-utils_1%3a7.7+7_s390x.deb ...
134s Unpacking xfonts-utils (1:7.7+7) ...
135s Selecting previously unselected package fonts-urw-base35.
135s Preparing to unpack .../06-fonts-urw-base35_20200910-8_all.deb ...
135s Unpacking fonts-urw-base35 (20200910-8) ...
135s Selecting previously unselected package fontconfig-config.
135s Preparing to unpack .../07-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ...
135s Unpacking fontconfig-config (2.15.0-2ubuntu1) ...
135s Selecting previously unselected package libgs-common.
135s Preparing to unpack .../08-libgs-common_10.04.0~dfsg1-2ubuntu1_all.deb ...
135s Unpacking libgs-common (10.04.0~dfsg1-2ubuntu1) ...
135s Selecting previously unselected package libgs10-common.
135s Preparing to unpack .../09-libgs10-common_10.04.0~dfsg1-2ubuntu1_all.deb ...
135s Unpacking libgs10-common (10.04.0~dfsg1-2ubuntu1) ...
135s Selecting previously unselected package libavahi-common-data:s390x.
135s Preparing to unpack .../10-libavahi-common-data_0.8-14ubuntu1_s390x.deb ...
135s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ...
135s Selecting previously unselected package libavahi-common3:s390x.
135s Preparing to unpack .../11-libavahi-common3_0.8-14ubuntu1_s390x.deb ...
135s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ...
135s Selecting previously unselected package libavahi-client3:s390x.
135s Preparing to unpack .../12-libavahi-client3_0.8-14ubuntu1_s390x.deb ...
135s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ...
135s Selecting previously unselected package libcups2t64:s390x.
135s Preparing to unpack .../13-libcups2t64_2.4.11-0ubuntu2_s390x.deb ...
135s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ...
135s Selecting previously unselected package libfontconfig1:s390x.
135s Preparing to unpack .../14-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ...
135s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ...
135s Selecting previously unselected package libidn12:s390x.
135s Preparing to unpack .../15-libidn12_1.42-3_s390x.deb ...
135s Unpacking libidn12:s390x (1.42-3) ...
135s Selecting previously unselected package libijs-0.35:s390x.
135s Preparing to unpack .../16-libijs-0.35_0.35-15.1build1_s390x.deb ...
135s Unpacking libijs-0.35:s390x (0.35-15.1build1) ...
135s Selecting previously unselected package libjbig2dec0:s390x.
135s Preparing to unpack .../17-libjbig2dec0_0.20-1build3_s390x.deb ...
135s Unpacking libjbig2dec0:s390x (0.20-1build3) ...
135s Selecting previously unselected package libjpeg-turbo8:s390x.
135s Preparing to unpack .../18-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ...
135s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ...
135s Selecting previously unselected package libjpeg8:s390x.
135s Preparing to unpack .../19-libjpeg8_8c-2ubuntu11_s390x.deb ...
135s Unpacking libjpeg8:s390x (8c-2ubuntu11) ...
135s Selecting previously unselected package libopenjp2-7:s390x.
135s Preparing to unpack .../20-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ...
135s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ...
135s Selecting previously unselected package libpaper2:s390x.
135s Preparing to unpack .../21-libpaper2_2.2.5-0.3_s390x.deb ...
135s Unpacking libpaper2:s390x (2.2.5-0.3) ...
135s Selecting previously unselected package libdeflate0:s390x.
135s Preparing to unpack .../22-libdeflate0_1.23-1_s390x.deb ...
135s Unpacking libdeflate0:s390x (1.23-1) ...
135s Selecting previously unselected package libjbig0:s390x.
135s Preparing to unpack .../23-libjbig0_2.1-6.1ubuntu2_s390x.deb ...
135s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ...
135s Selecting previously unselected package libsharpyuv0:s390x.
135s Preparing to unpack .../24-libsharpyuv0_1.5.0-0.1_s390x.deb ...
135s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ...
135s Selecting previously unselected package libwebp7:s390x.
135s Preparing to unpack .../25-libwebp7_1.5.0-0.1_s390x.deb ...
135s Unpacking libwebp7:s390x (1.5.0-0.1) ...
135s Selecting previously unselected package libtiff6:s390x.
135s Preparing to unpack .../26-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ...
135s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ...
135s Selecting previously unselected package libice6:s390x.
135s Preparing to unpack .../27-libice6_2%3a1.1.1-1_s390x.deb ...
135s Unpacking libice6:s390x (2:1.1.1-1) ...
135s Selecting previously unselected package libsm6:s390x.
135s Preparing to unpack .../28-libsm6_2%3a1.2.4-1_s390x.deb ...
135s Unpacking libsm6:s390x (2:1.2.4-1) ...
135s Selecting previously unselected package libxt6t64:s390x.
135s Preparing to unpack .../29-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ...
135s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ...
135s Selecting previously unselected package libgs10:s390x.
135s Preparing to unpack .../30-libgs10_10.04.0~dfsg1-2ubuntu1_s390x.deb ...
135s Unpacking libgs10:s390x (10.04.0~dfsg1-2ubuntu1) ...
135s Selecting previously unselected package ghostscript.
135s Preparing to unpack .../31-ghostscript_10.04.0~dfsg1-2ubuntu1_s390x.deb ...
135s Unpacking ghostscript (10.04.0~dfsg1-2ubuntu1) ...
135s Setting up libsharpyuv0:s390x (1.5.0-0.1) ...
135s Setting up libijs-0.35:s390x (0.35-15.1build1) ...
135s Setting up libgs-common (10.04.0~dfsg1-2ubuntu1) ...
135s Setting up x11-common (1:7.7+23ubuntu3) ...
135s Setting up libdeflate0:s390x (1.23-1) ...
135s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ...
135s Setting up poppler-data (0.4.12-1) ...
135s Setting up libfontenc1:s390x (1:1.1.8-1build1) ...
135s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ...
135s Setting up libjbig2dec0:s390x (0.20-1build3) ...
135s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ...
135s Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...
135s Setting up libidn12:s390x (1.42-3) ...
135s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ...
135s Setting up libwebp7:s390x (1.5.0-0.1) ...
135s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ...
135s Setting up libpaper2:s390x (2.2.5-0.3) ...
136s Setting up libjpeg8:s390x (8c-2ubuntu11) ...
136s Setting up libice6:s390x (2:1.1.1-1) ...
136s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ...
136s Setting up xfonts-utils (1:7.7+7) ...
136s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ...
136s Setting up libsm6:s390x (2:1.2.4-1) ...
136s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ...
136s Setting up fonts-urw-base35 (20200910-8) ...
136s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ...
136s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ...
136s Setting up libgs10-common (10.04.0~dfsg1-2ubuntu1) ...
136s Setting up fontconfig-config (2.15.0-2ubuntu1) ...
136s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ...
136s Setting up libgs10:s390x (10.04.0~dfsg1-2ubuntu1) ...
136s Setting up ghostscript (10.04.0~dfsg1-2ubuntu1) ...
136s Processing triggers for libc-bin (2.40-4ubuntu1) ...
136s Processing triggers for man-db (2.13.0-1) ...
137s autopkgtest: DBG: testbed command exited with code 0
137s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'ghostscript'], kind short, sout pipe, serr pipe, env []
138s autopkgtest: DBG: testbed command exited with code 0
138s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.KKh6rR/command1-packages.all"], kind short, sout raw, serr pipe, env []
138s autopkgtest: DBG: testbed command exited with code 0
138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/command1-packages.all /tmp/autopkgtest-work.6qgpjmqt/out/command1-packages.all
138s autopkgtest: DBG: got reply from testbed: ok
138s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.KKh6rR/build.ASa/src'], kind short, sout raw, serr raw, env []
138s autopkgtest: DBG: testbed command exited with code 0
138s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.KKh6rR/build.ASa/src already exists
138s autopkgtest [12:10:51]: test command1: make -f debian/tests/smoke.mk
138s autopkgtest [12:10:51]: test command1: [-----------------------
138s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.KKh6rR/wrapper.sh --debug --artifacts=/tmp/autopkgtest.KKh6rR/command1-artifacts --chdir=/tmp/autopkgtest.KKh6rR/build.ASa/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.KKh6rR/command1-stderr --stdout=/tmp/autopkgtest.KKh6rR/command1-stdout --tmp=/tmp/autopkgtest.KKh6rR/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'make -f debian/tests/smoke.mk'"], kind test, sout raw, serr raw, env []
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.KKh6rR/command1-artifacts
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: changing to directory: /tmp/autopkgtest.KKh6rR/build.ASa/src
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: setting environment: LANG=C.UTF-8
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LANGUAGE
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_ADDRESS
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_ALL
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_COLLATE
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_CTYPE
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_IDENTIFICATION
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_MEASUREMENT
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_MESSAGES
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_MONETARY
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_NAME
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_NUMERIC
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_PAPER
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_TELEPHONE
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: unsetting environment: LC_TIME
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: pretending to be a login shell
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: will write standard error to /tmp/autopkgtest.KKh6rR/command1-stderr
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: will write stdout to /tmp/autopkgtest.KKh6rR/command1-stdout
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.KKh6rR/autopkgtest_tmp
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: command to run: bash -ec make -f debian/tests/smoke.mk
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: copying /tmp/tmp.8mpdMfMU86/out to stdout and file: /tmp/autopkgtest.KKh6rR/command1-stdout
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: copying /tmp/tmp.8mpdMfMU86/err to standard error and file: /tmp/autopkgtest.KKh6rR/command1-stdout
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: writing script pid 2191 to /tmp/autopkgtest_script_pid
138s gs --version \
138s 	| grep --quiet --perl-regexp --regexp '^[\d.]+$'
138s gs --help \
138s 	| grep --quiet --fixed-strings --line-regexp \
138s 	--regexp 'Usage: gs [switches] [file1.ps file2.ps ...]'
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: checking for leaked background processes...
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: waiting for tee/cat subprocesses...
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: cleaning up...
138s /tmp/autopkgtest.KKh6rR/wrapper.sh: Exit status: 0
138s autopkgtest: DBG: testbed command exited with code 0
139s autopkgtest [12:10:52]: test command1: -----------------------]
139s autopkgtest: DBG: testbed executing test finished with exit status 0
139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/command1-stdout /tmp/autopkgtest-work.6qgpjmqt/out/command1-stdout
139s autopkgtest: DBG: got reply from testbed: ok
139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/command1-stderr /tmp/autopkgtest-work.6qgpjmqt/out/command1-stderr
139s autopkgtest: DBG: got reply from testbed: ok
139s command1             PASS
139s autopkgtest [12:10:52]: test command1:  - - - - - - - - - - results - - - - - - - - - -
139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KKh6rR/command1-artifacts/ /tmp/autopkgtest-work.6qgpjmqt/out/artifacts/
139s autopkgtest: DBG: got reply from testbed: ok
139s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.KKh6rR/command1-artifacts', '/tmp/autopkgtest.KKh6rR/autopkgtest_tmp'], kind short, sout raw, serr pipe, env []
139s autopkgtest: DBG: testbed command exited with code 0
139s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230
139s autopkgtest [12:10:52]: @@@@@@@@@@@@@@@@@@@@ summary
139s command1             PASS
139s autopkgtest: DBG: testbed stop
139s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.KKh6rR
139s autopkgtest: DBG: sending command to testbed: close
157s autopkgtest: DBG: got reply from testbed: ok
157s autopkgtest: DBG: sending command to testbed: quit
157s nova [W] Using flock in prodstack6-s390x
157s Creating nova instance adt-plucky-s390x-ghostscript-20250219-120832-juju-7f2275-prod-proposed-migration-environment-15-4e46df27-abf1-4ae9-9bfb-fcea581db98a from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)...
157s nova [W] Timed out waiting for dec4dc01-e0da-4f9b-b716-859a5ebc45a2 to get deleted.