0s autopkgtest: DBG: testbed init 0s autopkgtest [12:29:27]: starting date and time: 2025-02-19 12:29:27+0000 0s autopkgtest [12:29:27]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:29:27]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.fketnn_8/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade pyside2 --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-26.secgroup --name adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e --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 89s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 89s autopkgtest: DBG: sending command to testbed: print-execute-command 89s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 89s autopkgtest: DBG: sending command to testbed: capabilities 89s autopkgtest: DBG: got reply from testbed: ok revert-full-system isolation-machine revert reboot suggested-normal-user=ubuntu root-on-testbed 89s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'isolation-machine', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 89s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 90s autopkgtest: DBG: got reply from testbed: ok 90s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest [12:30:57]: testbed dpkg architecture: s390x 90s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest [12:30:57]: testbed apt version: 2.9.30 90s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed has eatmydata 90s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest [12:30:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 90s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest [12:30:58]: testbed release detected to be: None 91s 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 [] 91s autopkgtest: DBG: testbed command exited with code 0 91s 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 [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: adding APT source: Types: deb deb-src 91s URIs: http://ftpmaster.internal/ubuntu/ 91s Suites: plucky-proposed 91s Components: main restricted universe multiverse 91s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 91s 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 [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 91s Package: * 91s Pin: release plucky-proposed 91s Pin-Priority: 500 91s 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 [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest [12:30:58]: updating testbed package index (apt update) 91s 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'] 92s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 92s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 92s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 92s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 92s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 92s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 92s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 92s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 92s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 92s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 92s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 92s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 92s Fetched 1700 kB in 1s (1744 kB/s) 93s Reading package lists... 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 93s Package: * 93s Pin: release plucky-proposed 93s Pin-Priority: 100 93s 93s Package: src:sphinx:any 93s Pin: release plucky-proposed 93s Pin-Priority: 995 93s 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 [] 93s autopkgtest: DBG: testbed command exited with code 0 93s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 94s + lsb_release --codename --short 94s + RELEASE=plucky 94s + cat 94s + [ plucky != trusty ] 94s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 94s Reading package lists... 94s Building dependency tree... 94s Reading state information... 94s Calculating upgrade... 94s The following packages were automatically installed and are no longer required: 94s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 94s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 94s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 94s linux-tools-6.11.0-8-generic 94s Use 'sudo apt autoremove' to remove them. 94s The following packages will be upgraded: 94s iproute2 liblsof0 libp11-kit0 lsof 94s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 94s Need to get 1791 kB of archives. 94s After this operation, 17.4 kB of additional disk space will be used. 94s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 95s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 95s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 95s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 95s Preconfiguring packages ... 95s Fetched 1791 kB in 1s (2534 kB/s) 95s (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.) 95s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 95s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 95s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 95s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 95s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 95s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 95s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 95s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 95s Setting up liblsof0 (4.99.4+dfsg-1) ... 95s Setting up iproute2 (6.13.0-1ubuntu1) ... 95s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 95s Setting up lsof (4.99.4+dfsg-1) ... 95s Processing triggers for man-db (2.13.0-1) ... 96s Processing triggers for libc-bin (2.40-4ubuntu1) ... 96s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 96s + /usr/lib/apt/apt-helper analyze-pattern ?true 96s + uname -r 96s + sed s/\./\\./g 96s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 96s + apt list ?obsolete 96s + tail -n+2 96s + cut -d/ -f1 96s + grep -v ^linux-.*6\.12\.0-15-generic.* 96s + true 96s + obsolete_pkgs= 96s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 96s Reading package lists... 96s Building dependency tree... 96s Reading state information... 97s The following packages will be REMOVED: 97s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 97s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 97s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 97s linux-tools-6.11.0-8-generic* 97s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 97s After this operation, 167 MB disk space will be freed. 97s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 97s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 97s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 97s Removing libpython3.12t64:s390x (3.12.9-1) ... 97s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 97s Removing libnsl2:s390x (1.3.0-3build3) ... 97s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 97s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 97s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 98s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 98s Processing triggers for libc-bin (2.40-4ubuntu1) ... 98s (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.) 98s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 98s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 98s + grep -q trusty /etc/lsb-release 98s + [ ! -d /usr/share/doc/unattended-upgrades ] 98s + [ ! -d /usr/share/doc/lxd ] 98s + [ ! -d /usr/share/doc/lxd-client ] 98s + [ ! -d /usr/share/doc/snapd ] 98s + type iptables 98s + cat 98s + chmod 755 /etc/rc.local 98s + . /etc/rc.local 98s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 98s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 98s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 98s + uname -m 98s + [ s390x = ppc64le ] 98s + [ -d /run/systemd/system ] 98s + systemd-detect-virt --quiet --vm 98s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 98s + cat 98s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 98s + echo COMPRESS=lz4 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [12:31:05]: upgrading testbed (apt dist-upgrade and autopurge) 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', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 98s Reading package lists... 98s Building dependency tree... 98s Reading state information... 99s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 99s Starting 2 pkgProblemResolver with broken count: 0 99s Done 99s Entering ResolveByKeep 99s 99s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 99s Reading package lists... 99s Building dependency tree... 99s Reading state information... 99s Starting pkgProblemResolver with broken count: 0 99s Starting 2 pkgProblemResolver with broken count: 0 99s Done 100s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 100s autopkgtest: DBG: testbed command exited with code 0 100s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 100s autopkgtest: DBG: testbed command exited with code 1 100s autopkgtest [12:31:07]: rebooting testbed after setup commands that affected boot 100s autopkgtest: DBG: sending command to testbed: reboot 119s autopkgtest: DBG: got reply from testbed: ok 119s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 119s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 119s autopkgtest: DBG: got reply from testbed: ok 119s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 120s autopkgtest: DBG: got reply from testbed: ok 120s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest [12:31:28]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 121s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 121s autopkgtest: DBG: got reply from testbed: ok 121s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 121s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 122s autopkgtest: DBG: got reply from testbed: ok 122s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 122s autopkgtest: DBG: got reply from testbed: ok 122s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: Binaries: initialising 123s autopkgtest [12:31:30]: @@@@@@@@@@@@@@@@@@@@ apt-source pyside2 123s autopkgtest: DBG: blame += pyside2 123s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 123s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pyside2'], kind short, sout pipe, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtxmlpatterns$'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtxmlpatterns=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libpyside2-dev$'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libpyside2-dev=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libshiboken2-dev$'], kind short, sout pipe, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libshiboken2-dev=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtxml$'], kind short, sout pipe, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtxml=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtsvg$'], kind short, sout pipe, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtsvg=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtqml$'], kind short, sout pipe, serr raw, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtqml=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qttest$'], kind short, sout pipe, serr raw, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qttest=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libshiboken2-py3-5\\.15t64$'], kind short, sout pipe, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libshiboken2-py3-5.15t64=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtconcurrent$'], kind short, sout pipe, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtconcurrent=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtnetwork$'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtnetwork=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^shiboken2-doc$'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'shiboken2-doc=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^shiboken2$'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'shiboken2=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libpyside2-py3-5\\.15t64$'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libpyside2-py3-5.15t64=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtquick$'], kind short, sout pipe, serr raw, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtquick=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtwidgets$'], kind short, sout pipe, serr raw, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtwidgets=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtprintsupport$'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtprintsupport=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtwebchannel$'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtwebchannel=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtmultimedia$'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtmultimedia=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtmultimediawidgets$'], 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-pyside2.qtmultimediawidgets=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtcore$'], 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-pyside2.qtcore=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtopenglfunctions$'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtopenglfunctions=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qthelp$'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qthelp=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtwebsockets$'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtwebsockets=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtgui$'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtgui=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtsql$'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtsql=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-pyside2-doc$'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-pyside2-doc=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^pyside2-tools$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'pyside2-tools=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtuitools$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtuitools=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtopengl$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtopengl=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: install_deps: deps_new=[] 137s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s 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.SBuPUV/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pyside2=5.15.16-3.1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x pyside2_*.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'] 137s + cd / 137s + mktemp -d /tmp/autopkgtest.SBuPUV/build.XXX 137s + builddir=/tmp/autopkgtest.SBuPUV/build.Lvm 137s + cd /tmp/autopkgtest.SBuPUV/build.Lvm 137s + apt-get source -d -q --only-source pyside2=5.15.16-3.1 138s + OUT=Reading package lists... 138s NOTICE: 'pyside2' packaging is maintained in the 'Git' version control system at: 138s https://salsa.debian.org/qt-kde-team/qt/pyside2.git 138s Please use: 138s git clone https://salsa.debian.org/qt-kde-team/qt/pyside2.git 138s to retrieve the latest (possibly unreleased) updates to the package. 138s Need to get 3620 kB of source archives. 138s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (dsc) [5372 B] 138s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (tar) [3586 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (diff) [29.0 kB] 138s Fetched 3620 kB in 1s (3812 kB/s) 138s Download complete and in download only mode 138s + [ -n ] 138s + grep ^Get: 138s + echo Reading package lists... 138s NOTICE: 'pyside2' packaging is maintained in the 'Git' version control system at: 138s https://salsa.debian.org/qt-kde-team/qt/pyside2.git 138s Please use: 138s git clone https://salsa.debian.org/qt-kde-team/qt/pyside2.git 138s to retrieve the latest (possibly unreleased) updates to the package. 138s Need to get 3620 kB of source archives. 138s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (dsc) [5372 B] 138s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (tar) [3586 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (diff) [29.0 kB] 138s Fetched 3620 kB in 1s (3812 kB/s) 138s Download complete and in download only mode 138s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (dsc) [5372 B] 138s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (tar) [3586 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (diff) [29.0 kB] 138s + dpkg-source -x pyside2_5.15.16-3.1.dsc src 138s gpgv: Signature made Sat Jan 25 16:38:19 2025 UTC 138s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 138s gpgv: Can't check signature: No public key 138s dpkg-source: warning: cannot verify inline signature for ./pyside2_5.15.16-3.1.dsc: no acceptable signature found 139s + chmod -R a+rX . 139s + cd src/. 139s + pwd 139s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [12:31:46]: testing package pyside2 version 5.15.16-3.1 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/build.Lvm/src/debian/ /tmp/autopkgtest-work.fketnn_8/out/pkg/debian/ 139s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: processing dependency python3-pyside2.qtcore 140s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtcore'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency python3 140s autopkgtest: DBG: Test defined: name command1 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtcore', 'python3'] 141s autopkgtest: DBG: processing dependency python3-pyside2.qtwidgets 141s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwidgets'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency python3 141s autopkgtest: DBG: Test defined: name command2 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtwidgets', 'python3'] 143s autopkgtest: DBG: processing dependency python3-pyside2.qtquick 143s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtquick'] as a synthesised dependency 143s autopkgtest: DBG: processing dependency python3 143s autopkgtest: DBG: Test defined: name command3 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtquick', 'python3'] 144s autopkgtest: DBG: processing dependency python3-pyside2.qtqml 144s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtqml'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3 144s autopkgtest: DBG: Test defined: name command4 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtqml', 'python3'] 146s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginecore 146s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginecore'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency python3 146s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 148s autopkgtest: DBG: processing dependency python3-pyside2.qthelp 148s autopkgtest: DBG: marked alternatives ['python3-pyside2.qthelp'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency python3 148s autopkgtest: DBG: Test defined: name command6 path None command "debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qthelp', 'python3'] 149s autopkgtest: DBG: processing dependency python3-pyside2.qtnetwork 149s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtnetwork'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency python3 149s autopkgtest: DBG: Test defined: name command7 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtnetwork', 'python3'] 150s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimediawidgets 150s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimediawidgets'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency python3 150s autopkgtest: DBG: Test defined: name command8 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtmultimediawidgets', 'python3'] 152s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimedia 152s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimedia'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency python3 152s autopkgtest: DBG: Test defined: name command9 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtmultimedia', 'python3'] 153s autopkgtest: DBG: processing dependency python3-pyside2.qtwebchannel 153s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebchannel'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency python3 153s autopkgtest: DBG: Test defined: name command10 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtwebchannel', 'python3'] 154s autopkgtest: DBG: processing dependency python3-pyside2.qtprintsupport 154s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtprintsupport'] as a synthesised dependency 154s autopkgtest: DBG: processing dependency python3 154s autopkgtest: DBG: Test defined: name command11 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtprintsupport', 'python3'] 156s autopkgtest: DBG: processing dependency python3-pyside2.qtxml 156s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxml'] as a synthesised dependency 156s autopkgtest: DBG: processing dependency python3 156s autopkgtest: DBG: Test defined: name command12 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtxml', 'python3'] 157s autopkgtest: DBG: processing dependency python3-pyside2.qttest 157s autopkgtest: DBG: marked alternatives ['python3-pyside2.qttest'] as a synthesised dependency 157s autopkgtest: DBG: processing dependency python3 157s autopkgtest: DBG: Test defined: name command13 path None command "debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qttest', 'python3'] 159s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginewidgets 159s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginewidgets'] as a synthesised dependency 159s autopkgtest: DBG: processing dependency python3 159s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 160s autopkgtest: DBG: processing dependency python3-pyside2.qtconcurrent 160s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtconcurrent'] as a synthesised dependency 160s autopkgtest: DBG: processing dependency python3 160s autopkgtest: DBG: Test defined: name command15 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtconcurrent', 'python3'] 161s autopkgtest: DBG: processing dependency python3-pyside2.qtxmlpatterns 161s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxmlpatterns'] as a synthesised dependency 161s autopkgtest: DBG: processing dependency python3 161s autopkgtest: DBG: Test defined: name command16 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtxmlpatterns', 'python3'] 163s autopkgtest: DBG: processing dependency python3-pyside2.qtuitools 163s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtuitools'] as a synthesised dependency 163s autopkgtest: DBG: processing dependency python3 163s autopkgtest: DBG: Test defined: name command17 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtuitools', 'python3'] 164s autopkgtest: DBG: processing dependency python3-pyside2.qtopengl 164s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopengl'] as a synthesised dependency 164s autopkgtest: DBG: processing dependency python3 164s autopkgtest: DBG: Test defined: name command18 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtopengl', 'python3'] 165s autopkgtest: DBG: processing dependency python3-pyside2.qtsql 165s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsql'] as a synthesised dependency 165s autopkgtest: DBG: processing dependency python3 165s autopkgtest: DBG: Test defined: name command19 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtsql', 'python3'] 166s autopkgtest: DBG: processing dependency python3-pyside2.qtgui 166s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtgui'] as a synthesised dependency 166s autopkgtest: DBG: processing dependency python3 166s autopkgtest: DBG: Test defined: name command20 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtgui', 'python3'] 168s autopkgtest: DBG: processing dependency python3-pyside2.qtsvg 168s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsvg'] as a synthesised dependency 168s autopkgtest: DBG: processing dependency python3 168s autopkgtest: DBG: Test defined: name command21 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtsvg', 'python3'] 169s autopkgtest: DBG: processing dependency python3-pyside2.qtwebsockets 169s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebsockets'] as a synthesised dependency 169s autopkgtest: DBG: processing dependency python3 169s autopkgtest: DBG: Test defined: name command22 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtwebsockets', 'python3'] 170s autopkgtest: DBG: processing dependency python3-pyside2.qtopenglfunctions 170s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopenglfunctions'] as a synthesised dependency 170s autopkgtest: DBG: processing dependency python3 170s autopkgtest: DBG: Test defined: name command23 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtopenglfunctions', 'python3'] 171s autopkgtest: DBG: processing dependency python3-pyside2.qtwebengine 171s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebengine'] as a synthesised dependency 171s autopkgtest: DBG: processing dependency python3 172s autopkgtest [12:32:19]: build not needed 172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/build.Lvm/src/ /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ 172s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 173s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: processing dependency python3-pyside2.qtcore 175s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtcore'] as a synthesised dependency 175s autopkgtest: DBG: processing dependency python3 175s autopkgtest: DBG: Test defined: name command1 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtcore', 'python3'] 176s autopkgtest: DBG: processing dependency python3-pyside2.qtwidgets 176s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwidgets'] as a synthesised dependency 176s autopkgtest: DBG: processing dependency python3 176s autopkgtest: DBG: Test defined: name command2 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtwidgets', 'python3'] 178s autopkgtest: DBG: processing dependency python3-pyside2.qtquick 178s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtquick'] as a synthesised dependency 178s autopkgtest: DBG: processing dependency python3 178s autopkgtest: DBG: Test defined: name command3 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtquick', 'python3'] 179s autopkgtest: DBG: processing dependency python3-pyside2.qtqml 179s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtqml'] as a synthesised dependency 179s autopkgtest: DBG: processing dependency python3 179s autopkgtest: DBG: Test defined: name command4 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtqml', 'python3'] 180s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginecore 180s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginecore'] as a synthesised dependency 180s autopkgtest: DBG: processing dependency python3 180s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 182s autopkgtest: DBG: processing dependency python3-pyside2.qthelp 182s autopkgtest: DBG: marked alternatives ['python3-pyside2.qthelp'] as a synthesised dependency 182s autopkgtest: DBG: processing dependency python3 182s autopkgtest: DBG: Test defined: name command6 path None command "debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qthelp', 'python3'] 183s autopkgtest: DBG: processing dependency python3-pyside2.qtnetwork 183s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtnetwork'] as a synthesised dependency 183s autopkgtest: DBG: processing dependency python3 183s autopkgtest: DBG: Test defined: name command7 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtnetwork', 'python3'] 184s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimediawidgets 184s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimediawidgets'] as a synthesised dependency 184s autopkgtest: DBG: processing dependency python3 184s autopkgtest: DBG: Test defined: name command8 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtmultimediawidgets', 'python3'] 186s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimedia 186s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimedia'] as a synthesised dependency 186s autopkgtest: DBG: processing dependency python3 186s autopkgtest: DBG: Test defined: name command9 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtmultimedia', 'python3'] 187s autopkgtest: DBG: processing dependency python3-pyside2.qtwebchannel 187s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebchannel'] as a synthesised dependency 187s autopkgtest: DBG: processing dependency python3 187s autopkgtest: DBG: Test defined: name command10 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtwebchannel', 'python3'] 188s autopkgtest: DBG: processing dependency python3-pyside2.qtprintsupport 188s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtprintsupport'] as a synthesised dependency 188s autopkgtest: DBG: processing dependency python3 188s autopkgtest: DBG: Test defined: name command11 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtprintsupport', 'python3'] 190s autopkgtest: DBG: processing dependency python3-pyside2.qtxml 190s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxml'] as a synthesised dependency 190s autopkgtest: DBG: processing dependency python3 190s autopkgtest: DBG: Test defined: name command12 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtxml', 'python3'] 191s autopkgtest: DBG: processing dependency python3-pyside2.qttest 191s autopkgtest: DBG: marked alternatives ['python3-pyside2.qttest'] as a synthesised dependency 191s autopkgtest: DBG: processing dependency python3 191s autopkgtest: DBG: Test defined: name command13 path None command "debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qttest', 'python3'] 192s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginewidgets 192s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginewidgets'] as a synthesised dependency 192s autopkgtest: DBG: processing dependency python3 192s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 194s autopkgtest: DBG: processing dependency python3-pyside2.qtconcurrent 194s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtconcurrent'] as a synthesised dependency 194s autopkgtest: DBG: processing dependency python3 194s autopkgtest: DBG: Test defined: name command15 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtconcurrent', 'python3'] 195s autopkgtest: DBG: processing dependency python3-pyside2.qtxmlpatterns 195s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxmlpatterns'] as a synthesised dependency 195s autopkgtest: DBG: processing dependency python3 195s autopkgtest: DBG: Test defined: name command16 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtxmlpatterns', 'python3'] 197s autopkgtest: DBG: processing dependency python3-pyside2.qtuitools 197s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtuitools'] as a synthesised dependency 197s autopkgtest: DBG: processing dependency python3 197s autopkgtest: DBG: Test defined: name command17 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtuitools', 'python3'] 198s autopkgtest: DBG: processing dependency python3-pyside2.qtopengl 198s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopengl'] as a synthesised dependency 198s autopkgtest: DBG: processing dependency python3 198s autopkgtest: DBG: Test defined: name command18 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtopengl', 'python3'] 199s autopkgtest: DBG: processing dependency python3-pyside2.qtsql 199s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsql'] as a synthesised dependency 199s autopkgtest: DBG: processing dependency python3 199s autopkgtest: DBG: Test defined: name command19 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtsql', 'python3'] 201s autopkgtest: DBG: processing dependency python3-pyside2.qtgui 201s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtgui'] as a synthesised dependency 201s autopkgtest: DBG: processing dependency python3 201s autopkgtest: DBG: Test defined: name command20 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtgui', 'python3'] 202s autopkgtest: DBG: processing dependency python3-pyside2.qtsvg 202s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsvg'] as a synthesised dependency 202s autopkgtest: DBG: processing dependency python3 202s autopkgtest: DBG: Test defined: name command21 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtsvg', 'python3'] 203s autopkgtest: DBG: processing dependency python3-pyside2.qtwebsockets 203s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebsockets'] as a synthesised dependency 203s autopkgtest: DBG: processing dependency python3 203s autopkgtest: DBG: Test defined: name command22 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtwebsockets', 'python3'] 205s autopkgtest: DBG: processing dependency python3-pyside2.qtopenglfunctions 205s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopenglfunctions'] as a synthesised dependency 205s autopkgtest: DBG: processing dependency python3 205s autopkgtest: DBG: Test defined: name command23 path None command "debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions" restrictions ['allow-stderr', 'superficial'] features [] depends ['python3-pyside2.qtopenglfunctions', 'python3'] 206s autopkgtest: DBG: processing dependency python3-pyside2.qtwebengine 206s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebengine'] as a synthesised dependency 206s autopkgtest: DBG: processing dependency python3 207s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 207s autopkgtest [12:32:54]: test command1: preparing testbed 207s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-pyside2.qtcore', 'python3'] 207s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 207s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtcore', 'python3'] 207s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtcore, python3 207s autopkgtest: DBG: can use apt-get on testbed: True 207s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtcore, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 207s Reading package lists... 207s Building dependency tree... 207s Reading state information... 207s Starting pkgProblemResolver with broken count: 0 207s Starting 2 pkgProblemResolver with broken count: 0 207s Done 207s The following NEW packages will be installed: 207s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 207s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 207s python3-pyside2.qtcore 208s 0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded. 208s Need to get 6511 kB of archives. 208s After this operation, 22.7 MB of additional disk space will be used. 208s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 208s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 208s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 208s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 208s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 208s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 209s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 209s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 209s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 209s Fetched 6511 kB in 1s (5027 kB/s) 209s Selecting previously unselected package libdouble-conversion3:s390x. 209s (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.) 209s Preparing to unpack .../0-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 209s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 209s Selecting previously unselected package libpcre2-16-0:s390x. 209s Preparing to unpack .../1-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 209s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 209s Selecting previously unselected package libqt5core5t64:s390x. 209s Preparing to unpack .../2-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 209s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 209s Selecting previously unselected package libqt5dbus5t64:s390x. 209s Preparing to unpack .../3-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 209s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 209s Selecting previously unselected package libqt5network5t64:s390x. 209s Preparing to unpack .../4-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 209s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 209s Selecting previously unselected package libqt5qml5:s390x. 209s Preparing to unpack .../5-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 209s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 209s Selecting previously unselected package libshiboken2-py3-5.15t64. 209s Preparing to unpack .../6-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 209s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 209s Selecting previously unselected package libpyside2-py3-5.15t64. 209s Preparing to unpack .../7-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 209s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 209s Selecting previously unselected package python3-pyside2.qtcore. 209s Preparing to unpack .../8-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 209s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 209s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 209s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 209s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 209s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 209s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 209s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 209s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 209s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 209s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 209s Processing triggers for libc-bin (2.40-4ubuntu1) ... 210s autopkgtest: DBG: testbed command exited with code 0 210s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtcore'], kind short, sout pipe, serr pipe, env [] 210s autopkgtest: DBG: testbed command exited with code 0 210s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command1-packages.all"], kind short, sout raw, serr pipe, env [] 210s autopkgtest: DBG: testbed command exited with code 0 210s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command1-packages.all /tmp/autopkgtest-work.fketnn_8/out/command1-packages.all 210s autopkgtest: DBG: got reply from testbed: ok 210s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 210s autopkgtest: DBG: testbed command exited with code 0 210s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.SBuPUV/build.Lvm/src already exists 210s autopkgtest [12:32:57]: test command1: debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore 210s autopkgtest [12:32:57]: test command1: [----------------------- 210s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command1-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command1-stderr --stdout=/tmp/autopkgtest.SBuPUV/command1-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore'"], kind test, sout raw, serr raw, env [] 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command1-artifacts 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command1-stderr 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command1-stdout 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.YM78d2EG0S/out to stdout and file: /tmp/autopkgtest.SBuPUV/command1-stdout 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.YM78d2EG0S/err to standard error and file: /tmp/autopkgtest.SBuPUV/command1-stdout 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2065 to /tmp/autopkgtest_script_pid 210s Testing python3 package python3-pyside2.qtcore 210s Testing with python3.13: 210s 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 210s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 210s autopkgtest: DBG: testbed command exited with code 0 211s autopkgtest [12:32:58]: test command1: -----------------------] 211s autopkgtest: DBG: testbed executing test finished with exit status 0 211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command1-stdout /tmp/autopkgtest-work.fketnn_8/out/command1-stdout 211s autopkgtest: DBG: got reply from testbed: ok 211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command1-stderr /tmp/autopkgtest-work.fketnn_8/out/command1-stderr 211s autopkgtest: DBG: got reply from testbed: ok 211s command1 PASS (superficial) 211s autopkgtest [12:32:58]: test command1: - - - - - - - - - - results - - - - - - - - - - 211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command1-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 211s autopkgtest: DBG: got reply from testbed: ok 211s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command1-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest [12:32:59]: test command2: preparing testbed 212s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtcore', 'python3'], deps_new=['python3-pyside2.qtwidgets', 'python3'] 212s autopkgtest: DBG: testbed reset 212s autopkgtest: DBG: sending command to testbed: revert 330s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 330s autopkgtest: DBG: sending command to testbed: print-execute-command 330s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 330s autopkgtest: DBG: sending command to testbed: capabilities 330s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 330s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 330s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 330s autopkgtest: DBG: testbed command exited with code 0 330s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 330s autopkgtest: DBG: got reply from testbed: ok 330s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest [12:34:58]: testbed dpkg architecture: s390x 331s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest [12:34:58]: testbed apt version: 2.9.30 331s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest: DBG: testbed has eatmydata 331s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest [12:34:58]: @@@@@@@@@@@@@@@@@@@@ test bed setup 331s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 331s autopkgtest: DBG: testbed command exited with code 0 331s autopkgtest [12:34:58]: testbed release detected to be: plucky 331s 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 [] 332s autopkgtest: DBG: testbed command exited with code 0 332s 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 [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: adding APT source: Types: deb deb-src 332s URIs: http://ftpmaster.internal/ubuntu/ 332s Suites: plucky-proposed 332s Components: main restricted universe multiverse 332s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 332s 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 [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 332s Package: * 332s Pin: release plucky-proposed 332s Pin-Priority: 500 332s 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 [] 332s autopkgtest: DBG: testbed command exited with code 0 332s autopkgtest [12:34:59]: updating testbed package index (apt update) 332s 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'] 333s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 333s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 333s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 333s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 333s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 333s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 333s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 333s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 333s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 333s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 333s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 333s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 333s Fetched 1700 kB in 1s (1622 kB/s) 334s Reading package lists... 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 334s Package: * 334s Pin: release plucky-proposed 334s Pin-Priority: 100 334s 334s Package: src:sphinx:any 334s Pin: release plucky-proposed 334s Pin-Priority: 995 334s 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 [] 334s autopkgtest: DBG: testbed command exited with code 0 334s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 335s + lsb_release --codename --short 335s + RELEASE=plucky 335s + cat 335s + [ plucky != trusty ] 335s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 335s Reading package lists... 335s Building dependency tree... 335s Reading state information... 335s Calculating upgrade... 335s The following packages were automatically installed and are no longer required: 335s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 335s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 335s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 335s linux-tools-6.11.0-8-generic 335s Use 'sudo apt autoremove' to remove them. 335s The following packages will be upgraded: 335s iproute2 liblsof0 libp11-kit0 lsof 335s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 335s Need to get 1791 kB of archives. 335s After this operation, 17.4 kB of additional disk space will be used. 335s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 336s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 336s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 336s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 336s Preconfiguring packages ... 336s Fetched 1791 kB in 1s (2432 kB/s) 336s (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.) 336s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 336s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 336s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 336s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 336s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 336s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 336s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 336s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 336s Setting up liblsof0 (4.99.4+dfsg-1) ... 336s Setting up iproute2 (6.13.0-1ubuntu1) ... 336s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 336s Setting up lsof (4.99.4+dfsg-1) ... 336s Processing triggers for man-db (2.13.0-1) ... 337s Processing triggers for libc-bin (2.40-4ubuntu1) ... 337s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 337s + /usr/lib/apt/apt-helper analyze-pattern ?true 337s + uname -r 337s + sed s/\./\\./g 337s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 337s + apt list ?obsolete 337s + tail+ cut -d/ -f1 337s -n+2 337s + grep -v ^linux-.*6\.12\.0-15-generic.* 337s + true 337s + obsolete_pkgs= 337s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 337s Reading package lists... 337s Building dependency tree... 337s Reading state information... 337s The following packages will be REMOVED: 337s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 337s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 337s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 337s linux-tools-6.11.0-8-generic* 338s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 338s After this operation, 167 MB disk space will be freed. 338s (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.) 338s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 338s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 338s Removing libpython3.12t64:s390x (3.12.9-1) ... 338s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 338s Removing libnsl2:s390x (1.3.0-3build3) ... 338s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 338s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 338s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 339s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 339s Processing triggers for libc-bin (2.40-4ubuntu1) ... 339s (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.) 339s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 339s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 339s + grep -q trusty /etc/lsb-release 339s + [ ! -d /usr/share/doc/unattended-upgrades ] 339s + [ ! -d /usr/share/doc/lxd ] 339s + [ ! -d /usr/share/doc/lxd-client ] 339s + [ ! -d /usr/share/doc/snapd ] 339s + type iptables 339s + cat 339s + chmod 755 /etc/rc.local 339s + . /etc/rc.local 339s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 339s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 339s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 339s + uname -m 339s + [ s390x = ppc64le ] 339s + [ -d /run/systemd/system ] 339s + systemd-detect-virt --quiet --vm 339s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 339s + cat 339s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 339s + echo COMPRESS=lz4 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest [12:35:06]: upgrading testbed (apt dist-upgrade and autopurge) 339s 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'] 339s Reading package lists... 339s Building dependency tree... 339s Reading state information... 339s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 339s Starting 2 pkgProblemResolver with broken count: 0 339s Done 340s Entering ResolveByKeep 340s 340s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 340s autopkgtest: DBG: testbed command exited with code 0 340s 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'] 340s Reading package lists... 340s Building dependency tree... 340s Reading state information... 340s Starting pkgProblemResolver with broken count: 0 340s Starting 2 pkgProblemResolver with broken count: 0 340s Done 340s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 340s autopkgtest: DBG: testbed command exited with code 0 340s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 341s autopkgtest: DBG: testbed command exited with code 1 341s autopkgtest [12:35:08]: rebooting testbed after setup commands that affected boot 341s autopkgtest: DBG: sending command to testbed: reboot 354s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 363s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 364s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 364s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 364s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 365s autopkgtest: DBG: got reply from testbed: ok 365s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 365s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 366s autopkgtest: DBG: got reply from testbed: ok 366s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 367s autopkgtest: DBG: got reply from testbed: ok 367s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 367s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtwidgets', 'python3'] 367s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtwidgets, python3 367s autopkgtest: DBG: can use apt-get on testbed: True 367s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtwidgets, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 367s Reading package lists... 367s Building dependency tree... 367s Reading state information... 368s Starting pkgProblemResolver with broken count: 0 368s Starting 2 pkgProblemResolver with broken count: 0 368s Done 368s The following NEW packages will be installed: 368s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 368s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 368s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 368s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 368s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 368s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 368s libqt5network5t64 libqt5qml5 libqt5widgets5t64 libshiboken2-py3-5.15t64 368s libsm6 libvulkan1 libwacom-common libwacom9 libwayland-client0 368s libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 368s libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 368s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 368s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 368s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 368s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtwidgets 368s x11-common 368s 0 upgraded, 68 newly installed, 0 to remove and 0 not upgraded. 368s Need to get 29.1 MB of archives. 368s After this operation, 111 MB of additional disk space will be used. 368s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 368s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 368s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 368s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 369s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 369s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 369s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 369s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 369s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 369s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 369s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 369s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 369s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 369s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 369s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 369s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 369s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 369s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 369s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 369s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 369s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 369s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 369s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 369s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 369s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 369s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 369s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 369s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 369s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 369s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 369s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 369s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 369s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 369s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 369s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 369s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 369s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 369s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 369s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 369s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 369s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 369s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 369s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 369s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 369s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 369s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 369s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 369s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 369s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 369s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 369s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 369s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 369s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 369s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 369s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 369s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 369s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 369s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 369s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 369s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 369s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 370s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 370s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 370s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 370s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 370s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 370s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 370s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 370s Fetched 29.1 MB in 2s (13.1 MB/s) 370s Selecting previously unselected package libfreetype6:s390x. 371s (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.) 371s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 371s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 371s Selecting previously unselected package fonts-dejavu-mono. 371s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 371s Unpacking fonts-dejavu-mono (2.37-8) ... 371s Selecting previously unselected package fonts-dejavu-core. 371s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 371s Unpacking fonts-dejavu-core (2.37-8) ... 371s Selecting previously unselected package fontconfig-config. 371s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 371s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 371s Selecting previously unselected package libfontconfig1:s390x. 371s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 371s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 371s Selecting previously unselected package fontconfig. 371s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 371s Unpacking fontconfig (2.15.0-2ubuntu1) ... 371s Selecting previously unselected package libdouble-conversion3:s390x. 371s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 371s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 371s Selecting previously unselected package libdrm-radeon1:s390x. 371s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 371s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 371s Selecting previously unselected package libwayland-server0:s390x. 371s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 371s Unpacking libwayland-server0:s390x (1.23.1-1) ... 371s Selecting previously unselected package libglapi-mesa:s390x. 371s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 371s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 371s Selecting previously unselected package libx11-xcb1:s390x. 371s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 371s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 371s Selecting previously unselected package libxcb-dri3-0:s390x. 371s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 371s Selecting previously unselected package libxcb-present0:s390x. 371s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-present0:s390x (1.17.0-2) ... 371s Selecting previously unselected package libxcb-randr0:s390x. 371s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 371s Selecting previously unselected package libxcb-sync1:s390x. 371s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 371s Selecting previously unselected package libxcb-xfixes0:s390x. 371s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 371s Selecting previously unselected package libxshmfence1:s390x. 371s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 371s Unpacking libxshmfence1:s390x (1.3-1build5) ... 371s Selecting previously unselected package mesa-libgallium:s390x. 371s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 371s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 371s Selecting previously unselected package libgbm1:s390x. 371s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 371s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 371s Selecting previously unselected package libwayland-client0:s390x. 371s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 371s Unpacking libwayland-client0:s390x (1.23.1-1) ... 371s Selecting previously unselected package libxcb-shm0:s390x. 371s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 371s Selecting previously unselected package libegl-mesa0:s390x. 371s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 371s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 371s Selecting previously unselected package libvulkan1:s390x. 371s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 371s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 371s Selecting previously unselected package libgl1-mesa-dri:s390x. 371s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 371s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 371s Selecting previously unselected package libxcb-glx0:s390x. 371s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 371s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 371s Selecting previously unselected package libxxf86vm1:s390x. 371s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 371s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 371s Selecting previously unselected package libglx-mesa0:s390x. 371s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 371s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 371s Selecting previously unselected package libgraphite2-3:s390x. 371s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 371s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 371s Selecting previously unselected package libharfbuzz0b:s390x. 371s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 371s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 371s Selecting previously unselected package x11-common. 371s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 371s Unpacking x11-common (1:7.7+23ubuntu3) ... 371s Selecting previously unselected package libice6:s390x. 371s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 371s Unpacking libice6:s390x (2:1.1.1-1) ... 371s Selecting previously unselected package libwacom-common. 371s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 371s Unpacking libwacom-common (2.14.0-1) ... 371s Selecting previously unselected package libwacom9:s390x. 371s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 371s Unpacking libwacom9:s390x (2.14.0-1) ... 371s Selecting previously unselected package libinput-bin. 371s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 371s Unpacking libinput-bin (1.27.1-1) ... 371s Selecting previously unselected package libmtdev1t64:s390x. 371s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 371s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 371s Selecting previously unselected package libinput10:s390x. 371s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 371s Unpacking libinput10:s390x (1.27.1-1) ... 371s Selecting previously unselected package libjpeg-turbo8:s390x. 371s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 371s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 371s Selecting previously unselected package libjpeg8:s390x. 371s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 371s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 371s Selecting previously unselected package libmd4c0:s390x. 371s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 371s Unpacking libmd4c0:s390x (0.5.2-2) ... 371s Selecting previously unselected package libpcre2-16-0:s390x. 371s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 371s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 371s Selecting previously unselected package libqt5core5t64:s390x. 371s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 371s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 372s Selecting previously unselected package libqt5dbus5t64:s390x. 372s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 372s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 372s Selecting previously unselected package libqt5network5t64:s390x. 372s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 372s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 372s Selecting previously unselected package libqt5qml5:s390x. 372s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 372s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 372s Selecting previously unselected package libshiboken2-py3-5.15t64. 372s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 372s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 372s Selecting previously unselected package libpyside2-py3-5.15t64. 372s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 372s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 372s Selecting previously unselected package libglvnd0:s390x. 372s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 372s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 372s Selecting previously unselected package libegl1:s390x. 372s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 372s Unpacking libegl1:s390x (1.7.0-1build1) ... 372s Selecting previously unselected package libglx0:s390x. 372s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 372s Unpacking libglx0:s390x (1.7.0-1build1) ... 372s Selecting previously unselected package libgl1:s390x. 372s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 372s Unpacking libgl1:s390x (1.7.0-1build1) ... 372s Selecting previously unselected package libsm6:s390x. 372s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 372s Unpacking libsm6:s390x (2:1.2.4-1) ... 372s Selecting previously unselected package libxcb-icccm4:s390x. 372s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 372s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 372s Selecting previously unselected package libxcb-util1:s390x. 372s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 372s Unpacking libxcb-util1:s390x (0.4.1-1) ... 372s Selecting previously unselected package libxcb-image0:s390x. 372s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 372s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 372s Selecting previously unselected package libxcb-keysyms1:s390x. 372s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 372s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 372s Selecting previously unselected package libxcb-render0:s390x. 372s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 372s Unpacking libxcb-render0:s390x (1.17.0-2) ... 372s Selecting previously unselected package libxcb-render-util0:s390x. 372s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 372s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 372s Selecting previously unselected package libxcb-shape0:s390x. 372s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 372s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 372s Selecting previously unselected package libxcb-xinerama0:s390x. 372s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 372s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 372s Selecting previously unselected package libxcb-xinput0:s390x. 372s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 372s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 372s Selecting previously unselected package libxcb-xkb1:s390x. 372s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 372s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 372s Selecting previously unselected package libxkbcommon-x11-0:s390x. 372s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 372s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 372s Selecting previously unselected package libxrender1:s390x. 372s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 372s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 372s Selecting previously unselected package libqt5gui5t64:s390x. 372s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 372s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 372s Selecting previously unselected package libqt5widgets5t64:s390x. 372s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 372s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 372s Selecting previously unselected package python3-pyside2.qtcore. 372s Preparing to unpack .../65-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 372s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 372s Selecting previously unselected package python3-pyside2.qtgui. 372s Preparing to unpack .../66-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 372s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 372s Selecting previously unselected package python3-pyside2.qtwidgets. 372s Preparing to unpack .../67-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 372s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 372s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 372s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 372s Setting up libwayland-server0:s390x (1.23.1-1) ... 372s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 372s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 372s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 372s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 372s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 372s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 372s Setting up libxcb-render0:s390x (1.17.0-2) ... 372s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 372s Setting up libglvnd0:s390x (1.7.0-1build1) ... 372s Setting up libxcb-glx0:s390x (1.17.0-2) ... 372s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 372s Setting up libxcb-shape0:s390x (1.17.0-2) ... 372s Setting up x11-common (1:7.7+23ubuntu3) ... 373s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 373s Setting up libxcb-shm0:s390x (1.17.0-2) ... 373s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 373s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 373s Setting up libxcb-util1:s390x (0.4.1-1) ... 373s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 373s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 373s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 373s Setting up libxcb-present0:s390x (1.17.0-2) ... 373s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 373s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 373s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 373s Setting up libxcb-sync1:s390x (1.17.0-2) ... 373s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 373s Setting up fonts-dejavu-mono (2.37-8) ... 373s Setting up fonts-dejavu-core (2.37-8) ... 373s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 373s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 373s Setting up libvulkan1:s390x (1.4.304.0-1) ... 373s Setting up libmtdev1t64:s390x (1.1.7-1) ... 373s Setting up libxshmfence1:s390x (1.3-1build5) ... 373s Setting up libxcb-randr0:s390x (1.17.0-2) ... 373s Setting up libmd4c0:s390x (0.5.2-2) ... 373s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 373s Setting up libwacom-common (2.14.0-1) ... 373s Setting up libwayland-client0:s390x (1.23.1-1) ... 373s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 373s Setting up libice6:s390x (2:1.1.1-1) ... 373s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 373s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 373s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 373s Setting up libwacom9:s390x (2.14.0-1) ... 373s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 373s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 373s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 373s Setting up libinput-bin (1.27.1-1) ... 373s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 373s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 373s Setting up libegl1:s390x (1.7.0-1build1) ... 373s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 373s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 373s Setting up libsm6:s390x (2:1.2.4-1) ... 373s Setting up libinput10:s390x (1.27.1-1) ... 373s Setting up fontconfig (2.15.0-2ubuntu1) ... 375s Regenerating fonts cache... done. 375s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 375s Setting up libglx0:s390x (1.7.0-1build1) ... 375s Setting up libgl1:s390x (1.7.0-1build1) ... 375s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 375s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 375s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 375s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 375s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 375s Processing triggers for udev (257.2-3ubuntu1) ... 375s Processing triggers for libc-bin (2.40-4ubuntu1) ... 375s Processing triggers for man-db (2.13.0-1) ... 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtwidgets'], kind short, sout pipe, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command2-packages.all"], kind short, sout raw, serr pipe, env [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command2-packages.all /tmp/autopkgtest-work.fketnn_8/out/command2-packages.all 376s autopkgtest: DBG: got reply from testbed: ok 376s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 377s autopkgtest: DBG: testbed command exited with code 1 377s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 377s autopkgtest: DBG: testbed command exited with code 0 377s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 385s autopkgtest: DBG: got reply from testbed: ok 385s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 385s autopkgtest: DBG: testbed command exited with code 0 385s autopkgtest [12:35:52]: test command2: debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets 385s autopkgtest [12:35:52]: test command2: [----------------------- 385s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command2-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command2-stderr --stdout=/tmp/autopkgtest.SBuPUV/command2-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets'"], kind test, sout raw, serr raw, env [] 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command2-artifacts 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command2-stderr 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command2-stdout 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.baOOaXvEgA/out to stdout and file: /tmp/autopkgtest.SBuPUV/command2-stdout 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.baOOaXvEgA/err to standard error and file: /tmp/autopkgtest.SBuPUV/command2-stdout 385s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2185 to /tmp/autopkgtest_script_pid 385s Testing python3 package python3-pyside2.qtwidgets 385s Testing with python3.13: 386s 386s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 386s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 386s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 386s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 386s autopkgtest: DBG: testbed command exited with code 0 386s autopkgtest [12:35:53]: test command2: -----------------------] 386s autopkgtest: DBG: testbed executing test finished with exit status 0 386s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command2-stdout /tmp/autopkgtest-work.fketnn_8/out/command2-stdout 387s autopkgtest: DBG: got reply from testbed: ok 387s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command2-stderr /tmp/autopkgtest-work.fketnn_8/out/command2-stderr 387s autopkgtest: DBG: got reply from testbed: ok 387s command2 PASS (superficial) 387s autopkgtest [12:35:54]: test command2: - - - - - - - - - - results - - - - - - - - - - 387s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command2-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 388s autopkgtest: DBG: got reply from testbed: ok 388s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command2-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 388s autopkgtest: DBG: testbed command exited with code 0 388s autopkgtest [12:35:55]: test command3: preparing testbed 388s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtwidgets', 'python3'], deps_new=['python3-pyside2.qtquick', 'python3'] 388s autopkgtest: DBG: testbed reset 388s autopkgtest: DBG: sending command to testbed: revert 517s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 517s autopkgtest: DBG: sending command to testbed: print-execute-command 517s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 517s autopkgtest: DBG: sending command to testbed: capabilities 517s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 517s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 517s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 517s autopkgtest: DBG: testbed command exited with code 0 517s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 517s autopkgtest: DBG: got reply from testbed: ok 517s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 517s autopkgtest: DBG: testbed command exited with code 0 517s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 517s autopkgtest: DBG: testbed command exited with code 0 517s autopkgtest [12:38:04]: testbed dpkg architecture: s390x 517s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 517s autopkgtest: DBG: testbed command exited with code 0 517s autopkgtest [12:38:04]: testbed apt version: 2.9.30 517s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 518s autopkgtest: DBG: testbed command exited with code 0 518s autopkgtest: DBG: testbed has eatmydata 518s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 518s autopkgtest: DBG: testbed command exited with code 0 518s autopkgtest [12:38:05]: @@@@@@@@@@@@@@@@@@@@ test bed setup 518s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 518s autopkgtest: DBG: testbed command exited with code 0 518s autopkgtest [12:38:05]: testbed release detected to be: plucky 518s 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 [] 518s autopkgtest: DBG: testbed command exited with code 0 518s 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 [] 518s autopkgtest: DBG: testbed command exited with code 0 518s autopkgtest: DBG: adding APT source: Types: deb deb-src 518s URIs: http://ftpmaster.internal/ubuntu/ 518s Suites: plucky-proposed 518s Components: main restricted universe multiverse 518s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 518s 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 [] 518s autopkgtest: DBG: testbed command exited with code 0 518s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 518s Package: * 518s Pin: release plucky-proposed 518s Pin-Priority: 500 518s 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 [] 518s autopkgtest: DBG: testbed command exited with code 0 518s autopkgtest [12:38:05]: updating testbed package index (apt update) 518s 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'] 519s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 519s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 519s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 519s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 519s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 519s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 520s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 520s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 520s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 520s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 520s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 520s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 520s Fetched 1700 kB in 1s (1503 kB/s) 520s Reading package lists... 520s autopkgtest: DBG: testbed command exited with code 0 520s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 520s Package: * 520s Pin: release plucky-proposed 520s Pin-Priority: 100 520s 520s Package: src:sphinx:any 520s Pin: release plucky-proposed 520s Pin-Priority: 995 520s 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 [] 521s autopkgtest: DBG: testbed command exited with code 0 521s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 521s autopkgtest: DBG: testbed command exited with code 0 521s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 521s + lsb_release --codename --short 521s + RELEASE=plucky 521s + cat 521s + [ plucky != trusty ] 521s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 521s Reading package lists... 521s Building dependency tree... 521s Reading state information... 521s Calculating upgrade... 521s The following packages were automatically installed and are no longer required: 521s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 521s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 521s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 521s linux-tools-6.11.0-8-generic 521s Use 'sudo apt autoremove' to remove them. 521s The following packages will be upgraded: 521s iproute2 liblsof0 libp11-kit0 lsof 521s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 521s Need to get 1791 kB of archives. 521s After this operation, 17.4 kB of additional disk space will be used. 521s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 522s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 522s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 522s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 522s Preconfiguring packages ... 522s Fetched 1791 kB in 1s (2271 kB/s) 522s (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.) 522s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 522s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 523s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 523s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 523s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 523s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 523s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 523s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 523s Setting up liblsof0 (4.99.4+dfsg-1) ... 523s Setting up iproute2 (6.13.0-1ubuntu1) ... 523s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 523s Setting up lsof (4.99.4+dfsg-1) ... 523s Processing triggers for man-db (2.13.0-1) ... 523s Processing triggers for libc-bin (2.40-4ubuntu1) ... 523s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 523s + /usr/lib/apt/apt-helper analyze-pattern ?true 523s + uname -r 523s + sed s/\./\\./g 523s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 523s + apt list ?obsolete 523s + tail -n+2 523s + cut -d/ -f1 523s + grep -v ^linux-.*6\.12\.0-15-generic.* 524s + true 524s + obsolete_pkgs= 524s + DEBIAN_FRONTEND=noninteractive eatmydata apt-getReading package lists... 524s Building dependency tree... -y purge --autoremove 524s 524s Reading state information... 524s The following packages will be REMOVED: 524s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 524s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 524s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 524s linux-tools-6.11.0-8-generic* 524s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 524s After this operation, 167 MB disk space will be freed. 524s (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.) 524s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 524s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 524s Removing libpython3.12t64:s390x (3.12.9-1) ... 524s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 524s Removing libnsl2:s390x (1.3.0-3build3) ... 524s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 524s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 524s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 525s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 525s Processing triggers for libc-bin (2.40-4ubuntu1) ... 525s (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.) 525s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 525s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 525s + grep -q trusty /etc/lsb-release 525s + [ ! -d /usr/share/doc/unattended-upgrades ] 525s + [ ! -d /usr/share/doc/lxd ] 525s + [ ! -d /usr/share/doc/lxd-client ] 525s + [ ! -d /usr/share/doc/snapd ] 525s + type iptables 525s + cat 525s + chmod 755 /etc/rc.local 525s + . /etc/rc.local 525s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 525s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 525s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 525s + uname -m 525s + [ s390x = ppc64le ] 525s + [ -d /run/systemd/system ] 525s + systemd-detect-virt --quiet --vm 525s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 525s + cat 525s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 525s + echo COMPRESS=lz4 525s autopkgtest: DBG: testbed command exited with code 0 525s autopkgtest [12:38:12]: upgrading testbed (apt dist-upgrade and autopurge) 525s 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'] 525s Reading package lists... 526s Building dependency tree... 526s Reading state information... 526s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 526s Starting 2 pkgProblemResolver with broken count: 0 526s Done 526s Entering ResolveByKeep 526s 526s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 526s autopkgtest: DBG: testbed command exited with code 0 526s 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'] 526s Reading package lists... 526s Building dependency tree... 526s Reading state information... 527s Starting pkgProblemResolver with broken count: 0 527s Starting 2 pkgProblemResolver with broken count: 0 527s Done 527s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 527s autopkgtest: DBG: testbed command exited with code 0 527s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 527s autopkgtest: DBG: testbed command exited with code 1 527s autopkgtest [12:38:14]: rebooting testbed after setup commands that affected boot 527s autopkgtest: DBG: sending command to testbed: reboot 548s autopkgtest: DBG: got reply from testbed: ok 548s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 548s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 548s autopkgtest: DBG: testbed command exited with code 0 548s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 548s autopkgtest: DBG: got reply from testbed: ok 548s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 548s autopkgtest: DBG: testbed command exited with code 0 548s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 549s autopkgtest: DBG: testbed command exited with code 0 549s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 550s autopkgtest: DBG: testbed command exited with code 0 550s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 550s autopkgtest: DBG: testbed command exited with code 0 550s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 550s autopkgtest: DBG: got reply from testbed: ok 550s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 550s autopkgtest: DBG: testbed command exited with code 0 550s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 550s autopkgtest: DBG: testbed command exited with code 0 550s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 550s autopkgtest: DBG: testbed command exited with code 0 550s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 550s autopkgtest: DBG: testbed command exited with code 0 550s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 550s autopkgtest: DBG: got reply from testbed: ok 550s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 550s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 551s autopkgtest: DBG: got reply from testbed: ok 551s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 552s autopkgtest: DBG: got reply from testbed: ok 552s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 552s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtquick', 'python3'] 552s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtquick, python3 552s autopkgtest: DBG: can use apt-get on testbed: True 552s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtquick, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 552s Reading package lists... 552s Building dependency tree... 552s Reading state information... 553s Starting pkgProblemResolver with broken count: 0 553s Starting 2 pkgProblemResolver with broken count: 0 553s Done 553s The following NEW packages will be installed: 553s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 553s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 553s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 553s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 553s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 553s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 553s libqt5network5t64 libqt5qml5 libqt5qmlmodels5 libqt5quick5 553s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 553s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 553s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 553s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 553s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 553s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 553s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtnetwork 553s python3-pyside2.qtqml python3-pyside2.qtquick x11-common 553s 0 upgraded, 71 newly installed, 0 to remove and 0 not upgraded. 553s Need to get 27.2 MB of archives. 553s After this operation, 102 MB of additional disk space will be used. 553s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 553s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 554s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 554s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 554s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 554s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 554s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 554s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 554s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 554s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 554s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 554s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 554s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 554s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 554s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 554s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 554s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 554s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 555s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 555s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 555s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 555s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 555s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 555s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 555s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 555s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 555s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 555s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 555s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 555s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 555s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 555s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 555s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 555s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 555s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 555s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 555s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 555s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 555s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 555s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 555s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 555s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 555s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 555s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 556s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 556s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 556s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 556s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 556s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 556s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 556s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 556s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 556s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 556s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 556s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 556s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 556s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 556s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 556s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 556s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 556s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 556s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 556s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 556s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 556s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qmlmodels5 s390x 5.15.15+dfsg-3 [217 kB] 556s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5quick5 s390x 5.15.15+dfsg-3 [1827 kB] 556s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 556s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 557s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 557s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtqml s390x 5.15.16-3.1 [138 kB] 557s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtquick s390x 5.15.16-3.1 [200 kB] 557s Fetched 27.2 MB in 4s (7373 kB/s) 557s Selecting previously unselected package libfreetype6:s390x. 557s (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.) 557s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 557s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 557s Selecting previously unselected package fonts-dejavu-mono. 557s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 557s Unpacking fonts-dejavu-mono (2.37-8) ... 557s Selecting previously unselected package fonts-dejavu-core. 557s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 557s Unpacking fonts-dejavu-core (2.37-8) ... 557s Selecting previously unselected package fontconfig-config. 557s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 557s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 557s Selecting previously unselected package libfontconfig1:s390x. 557s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 557s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 557s Selecting previously unselected package fontconfig. 557s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 557s Unpacking fontconfig (2.15.0-2ubuntu1) ... 557s Selecting previously unselected package libdouble-conversion3:s390x. 557s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 557s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 557s Selecting previously unselected package libdrm-radeon1:s390x. 557s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 557s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 557s Selecting previously unselected package libwayland-server0:s390x. 557s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 557s Unpacking libwayland-server0:s390x (1.23.1-1) ... 557s Selecting previously unselected package libglapi-mesa:s390x. 557s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 557s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 557s Selecting previously unselected package libx11-xcb1:s390x. 557s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 557s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 557s Selecting previously unselected package libxcb-dri3-0:s390x. 557s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 557s Selecting previously unselected package libxcb-present0:s390x. 557s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-present0:s390x (1.17.0-2) ... 557s Selecting previously unselected package libxcb-randr0:s390x. 557s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 557s Selecting previously unselected package libxcb-sync1:s390x. 557s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 557s Selecting previously unselected package libxcb-xfixes0:s390x. 557s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 557s Selecting previously unselected package libxshmfence1:s390x. 557s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 557s Unpacking libxshmfence1:s390x (1.3-1build5) ... 557s Selecting previously unselected package mesa-libgallium:s390x. 557s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 557s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 557s Selecting previously unselected package libgbm1:s390x. 557s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 557s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 557s Selecting previously unselected package libwayland-client0:s390x. 557s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 557s Unpacking libwayland-client0:s390x (1.23.1-1) ... 557s Selecting previously unselected package libxcb-shm0:s390x. 557s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 557s Selecting previously unselected package libegl-mesa0:s390x. 557s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 557s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 557s Selecting previously unselected package libvulkan1:s390x. 557s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 557s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 557s Selecting previously unselected package libgl1-mesa-dri:s390x. 557s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 557s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 557s Selecting previously unselected package libxcb-glx0:s390x. 557s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 557s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 557s Selecting previously unselected package libxxf86vm1:s390x. 557s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 557s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 558s Selecting previously unselected package libglx-mesa0:s390x. 558s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 558s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 558s Selecting previously unselected package libgraphite2-3:s390x. 558s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 558s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 558s Selecting previously unselected package libharfbuzz0b:s390x. 558s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 558s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 558s Selecting previously unselected package x11-common. 558s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 558s Unpacking x11-common (1:7.7+23ubuntu3) ... 558s Selecting previously unselected package libice6:s390x. 558s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 558s Unpacking libice6:s390x (2:1.1.1-1) ... 558s Selecting previously unselected package libwacom-common. 558s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 558s Unpacking libwacom-common (2.14.0-1) ... 558s Selecting previously unselected package libwacom9:s390x. 558s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 558s Unpacking libwacom9:s390x (2.14.0-1) ... 558s Selecting previously unselected package libinput-bin. 558s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 558s Unpacking libinput-bin (1.27.1-1) ... 558s Selecting previously unselected package libmtdev1t64:s390x. 558s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 558s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 558s Selecting previously unselected package libinput10:s390x. 558s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 558s Unpacking libinput10:s390x (1.27.1-1) ... 558s Selecting previously unselected package libjpeg-turbo8:s390x. 558s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 558s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 558s Selecting previously unselected package libjpeg8:s390x. 558s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 558s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 558s Selecting previously unselected package libmd4c0:s390x. 558s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 558s Unpacking libmd4c0:s390x (0.5.2-2) ... 558s Selecting previously unselected package libpcre2-16-0:s390x. 558s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 558s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 558s Selecting previously unselected package libqt5core5t64:s390x. 558s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 558s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 558s Selecting previously unselected package libqt5dbus5t64:s390x. 558s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 558s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 558s Selecting previously unselected package libqt5network5t64:s390x. 558s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 558s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 558s Selecting previously unselected package libqt5qml5:s390x. 558s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 558s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 558s Selecting previously unselected package libshiboken2-py3-5.15t64. 558s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 558s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 558s Selecting previously unselected package libpyside2-py3-5.15t64. 558s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 558s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 558s Selecting previously unselected package libglvnd0:s390x. 558s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 558s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 558s Selecting previously unselected package libegl1:s390x. 558s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 558s Unpacking libegl1:s390x (1.7.0-1build1) ... 558s Selecting previously unselected package libglx0:s390x. 558s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 558s Unpacking libglx0:s390x (1.7.0-1build1) ... 558s Selecting previously unselected package libgl1:s390x. 558s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 558s Unpacking libgl1:s390x (1.7.0-1build1) ... 558s Selecting previously unselected package libsm6:s390x. 558s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 558s Unpacking libsm6:s390x (2:1.2.4-1) ... 558s Selecting previously unselected package libxcb-icccm4:s390x. 558s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 558s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 558s Selecting previously unselected package libxcb-util1:s390x. 558s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 558s Unpacking libxcb-util1:s390x (0.4.1-1) ... 558s Selecting previously unselected package libxcb-image0:s390x. 558s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 558s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 558s Selecting previously unselected package libxcb-keysyms1:s390x. 558s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 558s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 558s Selecting previously unselected package libxcb-render0:s390x. 558s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 558s Unpacking libxcb-render0:s390x (1.17.0-2) ... 558s Selecting previously unselected package libxcb-render-util0:s390x. 558s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 558s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 558s Selecting previously unselected package libxcb-shape0:s390x. 558s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 558s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 558s Selecting previously unselected package libxcb-xinerama0:s390x. 558s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 558s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 558s Selecting previously unselected package libxcb-xinput0:s390x. 558s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 558s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 558s Selecting previously unselected package libxcb-xkb1:s390x. 558s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 558s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 558s Selecting previously unselected package libxkbcommon-x11-0:s390x. 558s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 558s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 558s Selecting previously unselected package libxrender1:s390x. 558s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 558s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 558s Selecting previously unselected package libqt5gui5t64:s390x. 558s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 558s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 558s Selecting previously unselected package libqt5qmlmodels5:s390x. 558s Preparing to unpack .../64-libqt5qmlmodels5_5.15.15+dfsg-3_s390x.deb ... 558s Unpacking libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 558s Selecting previously unselected package libqt5quick5:s390x. 558s Preparing to unpack .../65-libqt5quick5_5.15.15+dfsg-3_s390x.deb ... 558s Unpacking libqt5quick5:s390x (5.15.15+dfsg-3) ... 558s Selecting previously unselected package python3-pyside2.qtcore. 558s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 558s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 558s Selecting previously unselected package python3-pyside2.qtgui. 558s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 558s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 558s Selecting previously unselected package python3-pyside2.qtnetwork. 558s Preparing to unpack .../68-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 558s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 558s Selecting previously unselected package python3-pyside2.qtqml. 558s Preparing to unpack .../69-python3-pyside2.qtqml_5.15.16-3.1_s390x.deb ... 558s Unpacking python3-pyside2.qtqml (5.15.16-3.1) ... 558s Selecting previously unselected package python3-pyside2.qtquick. 558s Preparing to unpack .../70-python3-pyside2.qtquick_5.15.16-3.1_s390x.deb ... 558s Unpacking python3-pyside2.qtquick (5.15.16-3.1) ... 558s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 558s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 558s Setting up libwayland-server0:s390x (1.23.1-1) ... 558s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 558s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 558s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 558s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 558s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 558s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 558s Setting up libxcb-render0:s390x (1.17.0-2) ... 558s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 558s Setting up libglvnd0:s390x (1.7.0-1build1) ... 558s Setting up libxcb-glx0:s390x (1.17.0-2) ... 558s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 558s Setting up libxcb-shape0:s390x (1.17.0-2) ... 558s Setting up x11-common (1:7.7+23ubuntu3) ... 559s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 559s Setting up libxcb-shm0:s390x (1.17.0-2) ... 559s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 559s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 559s Setting up libxcb-util1:s390x (0.4.1-1) ... 559s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 559s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 559s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 559s Setting up libxcb-present0:s390x (1.17.0-2) ... 559s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 559s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 559s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 559s Setting up libxcb-sync1:s390x (1.17.0-2) ... 559s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 559s Setting up fonts-dejavu-mono (2.37-8) ... 559s Setting up fonts-dejavu-core (2.37-8) ... 559s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 559s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 559s Setting up libvulkan1:s390x (1.4.304.0-1) ... 559s Setting up libmtdev1t64:s390x (1.1.7-1) ... 559s Setting up libxshmfence1:s390x (1.3-1build5) ... 559s Setting up libxcb-randr0:s390x (1.17.0-2) ... 559s Setting up libmd4c0:s390x (0.5.2-2) ... 559s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 559s Setting up libwacom-common (2.14.0-1) ... 559s Setting up libwayland-client0:s390x (1.23.1-1) ... 559s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 559s Setting up libice6:s390x (2:1.1.1-1) ... 559s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 559s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 559s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 559s Setting up libwacom9:s390x (2.14.0-1) ... 559s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 559s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 559s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 559s Setting up libinput-bin (1.27.1-1) ... 559s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 559s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 559s Setting up libegl1:s390x (1.7.0-1build1) ... 559s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 559s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 559s Setting up libsm6:s390x (2:1.2.4-1) ... 559s Setting up libinput10:s390x (1.27.1-1) ... 559s Setting up fontconfig (2.15.0-2ubuntu1) ... 561s Regenerating fonts cache... done. 561s Setting up libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 561s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 561s Setting up libglx0:s390x (1.7.0-1build1) ... 561s Setting up libgl1:s390x (1.7.0-1build1) ... 561s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 561s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 561s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 561s Setting up libqt5quick5:s390x (5.15.15+dfsg-3) ... 561s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 561s Setting up python3-pyside2.qtqml (5.15.16-3.1) ... 561s Setting up python3-pyside2.qtquick (5.15.16-3.1) ... 561s Processing triggers for man-db (2.13.0-1) ... 561s Processing triggers for udev (257.2-3ubuntu1) ... 562s Processing triggers for libc-bin (2.40-4ubuntu1) ... 562s autopkgtest: DBG: testbed command exited with code 0 562s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtquick'], kind short, sout pipe, serr pipe, env [] 562s autopkgtest: DBG: testbed command exited with code 0 562s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command3-packages.all"], kind short, sout raw, serr pipe, env [] 562s autopkgtest: DBG: testbed command exited with code 0 562s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command3-packages.all /tmp/autopkgtest-work.fketnn_8/out/command3-packages.all 563s autopkgtest: DBG: got reply from testbed: ok 563s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 563s autopkgtest: DBG: testbed command exited with code 1 563s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 563s autopkgtest: DBG: testbed command exited with code 0 563s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 570s autopkgtest: DBG: got reply from testbed: ok 570s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 570s autopkgtest: DBG: testbed command exited with code 0 570s autopkgtest [12:38:57]: test command3: debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick 570s autopkgtest [12:38:57]: test command3: [----------------------- 570s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command3-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command3-stderr --stdout=/tmp/autopkgtest.SBuPUV/command3-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick'"], kind test, sout raw, serr raw, env [] 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command3-artifacts 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command3-stderr 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command3-stdout 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.ETeP56cbNu/out to stdout and file: /tmp/autopkgtest.SBuPUV/command3-stdout 570s Testing python3 package python3-pyside2.qtquick 570s Testing with python3.13: 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.ETeP56cbNu/err to standard error and file: /tmp/autopkgtest.SBuPUV/command3-stdout 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2217 to /tmp/autopkgtest_script_pid 570s 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 570s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 570s autopkgtest: DBG: testbed command exited with code 0 571s autopkgtest [12:38:58]: test command3: -----------------------] 571s autopkgtest: DBG: testbed executing test finished with exit status 0 571s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command3-stdout /tmp/autopkgtest-work.fketnn_8/out/command3-stdout 571s autopkgtest: DBG: got reply from testbed: ok 571s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command3-stderr /tmp/autopkgtest-work.fketnn_8/out/command3-stderr 571s autopkgtest: DBG: got reply from testbed: ok 571s autopkgtest [12:38:58]: test command3: - - - - - - - - - - results - - - - - - - - - - 571s command3 PASS (superficial) 571s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command3-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 571s autopkgtest: DBG: got reply from testbed: ok 571s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command3-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 571s autopkgtest: DBG: testbed command exited with code 0 571s autopkgtest [12:38:58]: test command4: preparing testbed 571s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtquick', 'python3'], deps_new=['python3-pyside2.qtqml', 'python3'] 571s autopkgtest: DBG: testbed reset 571s autopkgtest: DBG: sending command to testbed: revert 708s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 708s autopkgtest: DBG: sending command to testbed: print-execute-command 708s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 708s autopkgtest: DBG: sending command to testbed: capabilities 708s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 708s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 708s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 708s autopkgtest: DBG: got reply from testbed: ok 708s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest [12:41:15]: testbed dpkg architecture: s390x 708s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest [12:41:15]: testbed apt version: 2.9.30 708s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 709s autopkgtest: DBG: testbed command exited with code 0 709s autopkgtest: DBG: testbed has eatmydata 709s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 709s autopkgtest: DBG: testbed command exited with code 0 709s autopkgtest [12:41:16]: @@@@@@@@@@@@@@@@@@@@ test bed setup 709s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 709s autopkgtest: DBG: testbed command exited with code 0 709s autopkgtest [12:41:16]: testbed release detected to be: plucky 709s 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 [] 709s autopkgtest: DBG: testbed command exited with code 0 709s 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 [] 709s autopkgtest: DBG: testbed command exited with code 0 709s autopkgtest: DBG: adding APT source: Types: deb deb-src 709s URIs: http://ftpmaster.internal/ubuntu/ 709s Suites: plucky-proposed 709s Components: main restricted universe multiverse 709s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 709s 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 [] 709s autopkgtest: DBG: testbed command exited with code 0 709s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 709s Package: * 709s Pin: release plucky-proposed 709s Pin-Priority: 500 709s 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 [] 710s autopkgtest: DBG: testbed command exited with code 0 710s autopkgtest [12:41:17]: updating testbed package index (apt update) 710s 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'] 710s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 710s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 710s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 710s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 710s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 710s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 710s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 710s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 711s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 711s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 711s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 711s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 711s Fetched 1700 kB in 1s (1863 kB/s) 711s Reading package lists... 711s autopkgtest: DBG: testbed command exited with code 0 711s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 711s Package: * 711s Pin: release plucky-proposed 711s Pin-Priority: 100 711s 711s Package: src:sphinx:any 711s Pin: release plucky-proposed 711s Pin-Priority: 995 711s 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 [] 712s autopkgtest: DBG: testbed command exited with code 0 712s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 712s autopkgtest: DBG: testbed command exited with code 0 712s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 712s + lsb_release --codename --short 712s + RELEASE=plucky 712s + cat 712s + [ plucky != trusty ] 712s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 712s Reading package lists... 712s Building dependency tree... 712s Reading state information... 712s Calculating upgrade... 712s The following packages were automatically installed and are no longer required: 712s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 712s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 712s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 712s linux-tools-6.11.0-8-generic 712s Use 'sudo apt autoremove' to remove them. 712s The following packages will be upgraded: 712s iproute2 liblsof0 libp11-kit0 lsof 712s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 712s Need to get 1791 kB of archives. 712s After this operation, 17.4 kB of additional disk space will be used. 712s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 713s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 713s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 713s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 713s Preconfiguring packages ... 713s Fetched 1791 kB in 1s (2327 kB/s) 713s (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.) 713s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 714s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 714s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 714s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 714s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 714s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 714s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 714s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 714s Setting up liblsof0 (4.99.4+dfsg-1) ... 714s Setting up iproute2 (6.13.0-1ubuntu1) ... 714s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 714s Setting up lsof (4.99.4+dfsg-1) ... 714s Processing triggers for man-db (2.13.0-1) ... 714s Processing triggers for libc-bin (2.40-4ubuntu1) ... 714s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 714s + /usr/lib/apt/apt-helper analyze-pattern ?true 714s + uname -r 714s + sed s/\./\\./g 714s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 714s + apt list ?obsolete 714s + + cut -d/ -f1 714s tail -n+2 714s + grep -v ^linux-.*6\.12\.0-15-generic.* 715s + true 715s + obsolete_pkgs= 715s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 715s Reading package lists... 715s Building dependency tree... 715s Reading state information... 715s The following packages will be REMOVED: 715s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 715s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 715s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 715s linux-tools-6.11.0-8-generic* 715s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 715s After this operation, 167 MB disk space will be freed. 715s (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.) 715s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 715s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 715s Removing libpython3.12t64:s390x (3.12.9-1) ... 715s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 715s Removing libnsl2:s390x (1.3.0-3build3) ... 715s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 715s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 715s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 716s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 716s Processing triggers for libc-bin (2.40-4ubuntu1) ... 716s (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.) 716s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 716s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 716s + grep -q trusty /etc/lsb-release 716s + [ ! -d /usr/share/doc/unattended-upgrades ] 716s + [ ! -d /usr/share/doc/lxd ] 716s + [ ! -d /usr/share/doc/lxd-client ] 716s + [ ! -d /usr/share/doc/snapd ] 716s + type iptables 716s + cat 716s + chmod 755 /etc/rc.local 716s + . /etc/rc.local 716s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 716s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 716s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 716s + uname -m 716s + [ s390x = ppc64le ] 716s + [ -d /run/systemd/system ] 716s + systemd-detect-virt --quiet --vm 716s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 716s + cat 716s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 716s + echo COMPRESS=lz4 716s autopkgtest: DBG: testbed command exited with code 0 716s autopkgtest [12:41:23]: upgrading testbed (apt dist-upgrade and autopurge) 716s 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'] 716s Reading package lists... 717s Building dependency tree... 717s Reading state information... 717s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 717s Starting 2 pkgProblemResolver with broken count: 0 717s Done 717s Entering ResolveByKeep 717s 717s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 717s autopkgtest: DBG: testbed command exited with code 0 717s 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'] 717s Reading package lists... 717s Building dependency tree... 717s Reading state information... 718s Starting pkgProblemResolver with broken count: 0 718s Starting 2 pkgProblemResolver with broken count: 0 718s Done 718s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 718s autopkgtest: DBG: testbed command exited with code 0 718s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 718s autopkgtest: DBG: testbed command exited with code 1 718s autopkgtest [12:41:25]: rebooting testbed after setup commands that affected boot 718s autopkgtest: DBG: sending command to testbed: reboot 738s autopkgtest: DBG: got reply from testbed: ok 738s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 738s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 738s autopkgtest: DBG: testbed command exited with code 0 738s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 738s autopkgtest: DBG: got reply from testbed: ok 738s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 738s autopkgtest: DBG: testbed command exited with code 0 738s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 738s autopkgtest: DBG: testbed command exited with code 0 738s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 738s autopkgtest: DBG: testbed command exited with code 0 738s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 739s autopkgtest: DBG: testbed command exited with code 0 739s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 739s autopkgtest: DBG: got reply from testbed: ok 739s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 739s autopkgtest: DBG: testbed command exited with code 0 739s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 739s autopkgtest: DBG: testbed command exited with code 0 739s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 739s autopkgtest: DBG: testbed command exited with code 0 739s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 740s autopkgtest: DBG: testbed command exited with code 0 740s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 740s autopkgtest: DBG: got reply from testbed: ok 740s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 740s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 740s autopkgtest: DBG: testbed command exited with code 0 740s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 740s autopkgtest: DBG: got reply from testbed: ok 740s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 740s autopkgtest: DBG: testbed command exited with code 0 740s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 741s autopkgtest: DBG: testbed command exited with code 0 741s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 741s autopkgtest: DBG: testbed command exited with code 0 741s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 741s autopkgtest: DBG: testbed command exited with code 0 741s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 741s autopkgtest: DBG: got reply from testbed: ok 741s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 741s autopkgtest: DBG: testbed command exited with code 0 741s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 741s autopkgtest: DBG: testbed command exited with code 0 741s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 742s autopkgtest: DBG: testbed command exited with code 0 742s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 742s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtqml', 'python3'] 742s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtqml, python3 742s autopkgtest: DBG: can use apt-get on testbed: True 742s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtqml, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 742s Reading package lists... 742s Building dependency tree... 742s Reading state information... 742s Starting pkgProblemResolver with broken count: 0 742s Starting 2 pkgProblemResolver with broken count: 0 742s Done 742s The following NEW packages will be installed: 742s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 742s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 742s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 742s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 742s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 742s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 742s libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 libsm6 libvulkan1 742s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 742s libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 742s libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 742s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xfixes0 742s libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxkbcommon-x11-0 libxrender1 742s libxshmfence1 libxxf86vm1 mesa-libgallium python3-pyside2.qtcore 742s python3-pyside2.qtgui python3-pyside2.qtnetwork python3-pyside2.qtqml 742s x11-common 743s 0 upgraded, 68 newly installed, 0 to remove and 0 not upgraded. 743s Need to get 24.9 MB of archives. 743s After this operation, 93.9 MB of additional disk space will be used. 743s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 743s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 743s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 743s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 743s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 743s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 743s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 743s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 743s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 743s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 743s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 743s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 743s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 743s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 743s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 743s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 743s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 743s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 744s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 744s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 744s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 744s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 744s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 744s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 744s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 744s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 744s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 744s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 744s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 744s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 744s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 744s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 744s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 744s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 744s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 744s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 744s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 744s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 744s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 744s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 744s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 744s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 744s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 744s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 744s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 744s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 744s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 744s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 744s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 744s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 744s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 744s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 744s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 744s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 744s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 744s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 744s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 744s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 744s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 744s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 744s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 744s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 744s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 744s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 744s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 744s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 745s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 745s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtqml s390x 5.15.16-3.1 [138 kB] 745s Fetched 24.9 MB in 2s (11.7 MB/s) 745s Selecting previously unselected package libfreetype6:s390x. 745s (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.) 745s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 745s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 745s Selecting previously unselected package fonts-dejavu-mono. 745s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 745s Unpacking fonts-dejavu-mono (2.37-8) ... 745s Selecting previously unselected package fonts-dejavu-core. 745s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 745s Unpacking fonts-dejavu-core (2.37-8) ... 745s Selecting previously unselected package fontconfig-config. 745s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 745s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 745s Selecting previously unselected package libfontconfig1:s390x. 745s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 745s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 745s Selecting previously unselected package fontconfig. 745s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 745s Unpacking fontconfig (2.15.0-2ubuntu1) ... 745s Selecting previously unselected package libdouble-conversion3:s390x. 745s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 745s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 745s Selecting previously unselected package libdrm-radeon1:s390x. 745s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 745s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 745s Selecting previously unselected package libwayland-server0:s390x. 745s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 745s Unpacking libwayland-server0:s390x (1.23.1-1) ... 745s Selecting previously unselected package libglapi-mesa:s390x. 745s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 745s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 745s Selecting previously unselected package libx11-xcb1:s390x. 745s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 745s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 745s Selecting previously unselected package libxcb-dri3-0:s390x. 745s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 745s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 745s Selecting previously unselected package libxcb-present0:s390x. 745s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 745s Unpacking libxcb-present0:s390x (1.17.0-2) ... 745s Selecting previously unselected package libxcb-randr0:s390x. 745s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 745s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 745s Selecting previously unselected package libxcb-sync1:s390x. 745s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 745s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 745s Selecting previously unselected package libxcb-xfixes0:s390x. 745s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 745s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 745s Selecting previously unselected package libxshmfence1:s390x. 745s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 745s Unpacking libxshmfence1:s390x (1.3-1build5) ... 745s Selecting previously unselected package mesa-libgallium:s390x. 745s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 745s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 745s Selecting previously unselected package libgbm1:s390x. 745s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 745s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 745s Selecting previously unselected package libwayland-client0:s390x. 745s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 745s Unpacking libwayland-client0:s390x (1.23.1-1) ... 745s Selecting previously unselected package libxcb-shm0:s390x. 745s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 745s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 745s Selecting previously unselected package libegl-mesa0:s390x. 745s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 745s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 746s Selecting previously unselected package libvulkan1:s390x. 746s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 746s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 746s Selecting previously unselected package libgl1-mesa-dri:s390x. 746s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 746s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 746s Selecting previously unselected package libxcb-glx0:s390x. 746s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 746s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 746s Selecting previously unselected package libxxf86vm1:s390x. 746s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 746s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 746s Selecting previously unselected package libglx-mesa0:s390x. 746s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 746s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 746s Selecting previously unselected package libgraphite2-3:s390x. 746s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 746s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 746s Selecting previously unselected package libharfbuzz0b:s390x. 746s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 746s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 746s Selecting previously unselected package x11-common. 746s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 746s Unpacking x11-common (1:7.7+23ubuntu3) ... 746s Selecting previously unselected package libice6:s390x. 746s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 746s Unpacking libice6:s390x (2:1.1.1-1) ... 746s Selecting previously unselected package libwacom-common. 746s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 746s Unpacking libwacom-common (2.14.0-1) ... 746s Selecting previously unselected package libwacom9:s390x. 746s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 746s Unpacking libwacom9:s390x (2.14.0-1) ... 746s Selecting previously unselected package libinput-bin. 746s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 746s Unpacking libinput-bin (1.27.1-1) ... 746s Selecting previously unselected package libmtdev1t64:s390x. 746s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 746s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 746s Selecting previously unselected package libinput10:s390x. 746s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 746s Unpacking libinput10:s390x (1.27.1-1) ... 746s Selecting previously unselected package libjpeg-turbo8:s390x. 746s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 746s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 746s Selecting previously unselected package libjpeg8:s390x. 746s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 746s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 746s Selecting previously unselected package libmd4c0:s390x. 746s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 746s Unpacking libmd4c0:s390x (0.5.2-2) ... 746s Selecting previously unselected package libpcre2-16-0:s390x. 746s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 746s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 746s Selecting previously unselected package libqt5core5t64:s390x. 746s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 746s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 746s Selecting previously unselected package libqt5dbus5t64:s390x. 746s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 746s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 746s Selecting previously unselected package libqt5network5t64:s390x. 746s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 746s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 746s Selecting previously unselected package libqt5qml5:s390x. 746s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 746s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 746s Selecting previously unselected package libshiboken2-py3-5.15t64. 746s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 746s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 746s Selecting previously unselected package libpyside2-py3-5.15t64. 746s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 746s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 746s Selecting previously unselected package libglvnd0:s390x. 746s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 746s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 746s Selecting previously unselected package libegl1:s390x. 746s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 746s Unpacking libegl1:s390x (1.7.0-1build1) ... 746s Selecting previously unselected package libglx0:s390x. 746s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 746s Unpacking libglx0:s390x (1.7.0-1build1) ... 746s Selecting previously unselected package libgl1:s390x. 746s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 746s Unpacking libgl1:s390x (1.7.0-1build1) ... 746s Selecting previously unselected package libsm6:s390x. 746s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 746s Unpacking libsm6:s390x (2:1.2.4-1) ... 746s Selecting previously unselected package libxcb-icccm4:s390x. 746s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 746s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 746s Selecting previously unselected package libxcb-util1:s390x. 746s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 746s Unpacking libxcb-util1:s390x (0.4.1-1) ... 746s Selecting previously unselected package libxcb-image0:s390x. 746s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 746s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 746s Selecting previously unselected package libxcb-keysyms1:s390x. 746s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 746s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 746s Selecting previously unselected package libxcb-render0:s390x. 746s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 746s Unpacking libxcb-render0:s390x (1.17.0-2) ... 746s Selecting previously unselected package libxcb-render-util0:s390x. 746s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 746s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 746s Selecting previously unselected package libxcb-shape0:s390x. 746s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 746s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 746s Selecting previously unselected package libxcb-xinerama0:s390x. 746s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 746s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 746s Selecting previously unselected package libxcb-xinput0:s390x. 746s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 746s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 746s Selecting previously unselected package libxcb-xkb1:s390x. 746s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 746s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 746s Selecting previously unselected package libxkbcommon-x11-0:s390x. 746s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 746s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 746s Selecting previously unselected package libxrender1:s390x. 746s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 746s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 746s Selecting previously unselected package libqt5gui5t64:s390x. 746s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 746s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 746s Selecting previously unselected package python3-pyside2.qtcore. 746s Preparing to unpack .../64-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 746s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 746s Selecting previously unselected package python3-pyside2.qtgui. 746s Preparing to unpack .../65-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 746s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 746s Selecting previously unselected package python3-pyside2.qtnetwork. 746s Preparing to unpack .../66-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 746s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 746s Selecting previously unselected package python3-pyside2.qtqml. 746s Preparing to unpack .../67-python3-pyside2.qtqml_5.15.16-3.1_s390x.deb ... 746s Unpacking python3-pyside2.qtqml (5.15.16-3.1) ... 746s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 746s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 746s Setting up libwayland-server0:s390x (1.23.1-1) ... 746s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 746s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 746s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 746s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 746s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 746s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 746s Setting up libxcb-render0:s390x (1.17.0-2) ... 746s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 746s Setting up libglvnd0:s390x (1.7.0-1build1) ... 746s Setting up libxcb-glx0:s390x (1.17.0-2) ... 746s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 746s Setting up libxcb-shape0:s390x (1.17.0-2) ... 746s Setting up x11-common (1:7.7+23ubuntu3) ... 747s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 747s Setting up libxcb-shm0:s390x (1.17.0-2) ... 747s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 747s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 747s Setting up libxcb-util1:s390x (0.4.1-1) ... 747s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 747s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 747s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 747s Setting up libxcb-present0:s390x (1.17.0-2) ... 747s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 747s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 747s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 747s Setting up libxcb-sync1:s390x (1.17.0-2) ... 747s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 747s Setting up fonts-dejavu-mono (2.37-8) ... 747s Setting up fonts-dejavu-core (2.37-8) ... 747s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 747s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 747s Setting up libvulkan1:s390x (1.4.304.0-1) ... 747s Setting up libmtdev1t64:s390x (1.1.7-1) ... 747s Setting up libxshmfence1:s390x (1.3-1build5) ... 747s Setting up libxcb-randr0:s390x (1.17.0-2) ... 747s Setting up libmd4c0:s390x (0.5.2-2) ... 747s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 747s Setting up libwacom-common (2.14.0-1) ... 747s Setting up libwayland-client0:s390x (1.23.1-1) ... 747s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 747s Setting up libice6:s390x (2:1.1.1-1) ... 747s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 747s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 747s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 747s Setting up libwacom9:s390x (2.14.0-1) ... 747s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 747s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 747s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 747s Setting up libinput-bin (1.27.1-1) ... 747s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 747s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 747s Setting up libegl1:s390x (1.7.0-1build1) ... 747s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 747s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 747s Setting up libsm6:s390x (2:1.2.4-1) ... 747s Setting up libinput10:s390x (1.27.1-1) ... 747s Setting up fontconfig (2.15.0-2ubuntu1) ... 749s Regenerating fonts cache... done. 749s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 749s Setting up libglx0:s390x (1.7.0-1build1) ... 749s Setting up libgl1:s390x (1.7.0-1build1) ... 749s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 749s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 749s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 749s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 749s Setting up python3-pyside2.qtqml (5.15.16-3.1) ... 749s Processing triggers for man-db (2.13.0-1) ... 749s Processing triggers for udev (257.2-3ubuntu1) ... 750s Processing triggers for libc-bin (2.40-4ubuntu1) ... 750s autopkgtest: DBG: testbed command exited with code 0 750s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtqml'], kind short, sout pipe, serr pipe, env [] 750s autopkgtest: DBG: testbed command exited with code 0 750s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command4-packages.all"], kind short, sout raw, serr pipe, env [] 750s autopkgtest: DBG: testbed command exited with code 0 750s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command4-packages.all /tmp/autopkgtest-work.fketnn_8/out/command4-packages.all 750s autopkgtest: DBG: got reply from testbed: ok 750s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 751s autopkgtest: DBG: testbed command exited with code 1 751s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 751s autopkgtest: DBG: testbed command exited with code 0 751s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 759s autopkgtest: DBG: got reply from testbed: ok 759s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 760s autopkgtest: DBG: testbed command exited with code 0 760s autopkgtest [12:42:07]: test command4: debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml 760s autopkgtest [12:42:07]: test command4: [----------------------- 760s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command4-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command4-stderr --stdout=/tmp/autopkgtest.SBuPUV/command4-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml'"], kind test, sout raw, serr raw, env [] 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command4-artifacts 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command4-stderr 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command4-stdout 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.VtcVwFOOSC/out to stdout and file: /tmp/autopkgtest.SBuPUV/command4-stdout 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.VtcVwFOOSC/err to standard error and file: /tmp/autopkgtest.SBuPUV/command4-stdout 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2190 to /tmp/autopkgtest_script_pid 760s Testing python3 package python3-pyside2.qtqml 760s Testing with python3.13: 760s 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 760s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 760s autopkgtest: DBG: testbed command exited with code 0 760s autopkgtest [12:42:07]: test command4: -----------------------] 760s autopkgtest: DBG: testbed executing test finished with exit status 0 760s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command4-stdout /tmp/autopkgtest-work.fketnn_8/out/command4-stdout 760s autopkgtest: DBG: got reply from testbed: ok 760s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command4-stderr /tmp/autopkgtest-work.fketnn_8/out/command4-stderr 760s autopkgtest: DBG: got reply from testbed: ok 761s autopkgtest [12:42:08]: test command4: - - - - - - - - - - results - - - - - - - - - - 761s command4 PASS (superficial) 761s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command4-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 761s autopkgtest: DBG: got reply from testbed: ok 761s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command4-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 761s autopkgtest: DBG: testbed command exited with code 0 761s autopkgtest [12:42:08]: test command6: preparing testbed 761s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtqml', 'python3'], deps_new=['python3-pyside2.qthelp', 'python3'] 761s autopkgtest: DBG: testbed reset 761s autopkgtest: DBG: sending command to testbed: revert 895s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 895s autopkgtest: DBG: sending command to testbed: print-execute-command 895s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 895s autopkgtest: DBG: sending command to testbed: capabilities 895s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 895s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 895s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 896s autopkgtest: DBG: testbed command exited with code 0 896s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 896s autopkgtest: DBG: got reply from testbed: ok 896s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 896s autopkgtest: DBG: testbed command exited with code 0 896s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 896s autopkgtest: DBG: testbed command exited with code 0 896s autopkgtest [12:44:23]: testbed dpkg architecture: s390x 896s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 896s autopkgtest: DBG: testbed command exited with code 0 896s autopkgtest [12:44:23]: testbed apt version: 2.9.30 896s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 896s autopkgtest: DBG: testbed command exited with code 0 896s autopkgtest: DBG: testbed has eatmydata 896s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 897s autopkgtest: DBG: testbed command exited with code 0 897s autopkgtest [12:44:24]: @@@@@@@@@@@@@@@@@@@@ test bed setup 897s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 897s autopkgtest: DBG: testbed command exited with code 0 897s autopkgtest [12:44:24]: testbed release detected to be: plucky 897s 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 [] 897s autopkgtest: DBG: testbed command exited with code 0 897s 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 [] 897s autopkgtest: DBG: testbed command exited with code 0 897s autopkgtest: DBG: adding APT source: Types: deb deb-src 897s URIs: http://ftpmaster.internal/ubuntu/ 897s Suites: plucky-proposed 897s Components: main restricted universe multiverse 897s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 897s 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 [] 897s autopkgtest: DBG: testbed command exited with code 0 897s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 897s Package: * 897s Pin: release plucky-proposed 897s Pin-Priority: 500 897s 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 [] 897s autopkgtest: DBG: testbed command exited with code 0 897s autopkgtest [12:44:24]: updating testbed package index (apt update) 897s 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'] 898s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 898s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 898s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 898s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 898s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 898s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 898s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 898s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 898s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 898s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 898s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 899s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 899s Fetched 1700 kB in 1s (1828 kB/s) 899s Reading package lists... 899s autopkgtest: DBG: testbed command exited with code 0 899s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 899s Package: * 899s Pin: release plucky-proposed 899s Pin-Priority: 100 899s 899s Package: src:sphinx:any 899s Pin: release plucky-proposed 899s Pin-Priority: 995 899s 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 [] 900s autopkgtest: DBG: testbed command exited with code 0 900s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 900s autopkgtest: DBG: testbed command exited with code 0 900s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 900s + lsb_release --codename --short 900s + RELEASE=plucky 900s + cat 900s + [ plucky != trusty ] 900s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 900s Reading package lists... 900s Building dependency tree... 900s Reading state information... 900s Calculating upgrade... 900s The following packages were automatically installed and are no longer required: 900s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 900s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 900s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 900s linux-tools-6.11.0-8-generic 900s Use 'sudo apt autoremove' to remove them. 900s The following packages will be upgraded: 900s iproute2 liblsof0 libp11-kit0 lsof 900s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 900s Need to get 1791 kB of archives. 900s After this operation, 17.4 kB of additional disk space will be used. 900s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 901s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 901s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 901s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 901s Preconfiguring packages ... 901s Fetched 1791 kB in 1s (2420 kB/s) 902s (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.) 902s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 902s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 902s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 902s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 902s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 902s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 902s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 902s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 902s Setting up liblsof0 (4.99.4+dfsg-1) ... 902s Setting up iproute2 (6.13.0-1ubuntu1) ... 902s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 902s Setting up lsof (4.99.4+dfsg-1) ... 902s Processing triggers for man-db (2.13.0-1) ... 902s Processing triggers for libc-bin (2.40-4ubuntu1) ... 903s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 903s + /usr/lib/apt/apt-helper analyze-pattern ?true 903s + uname+ sed s/\./\\./g 903s -r 903s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 903s + apt list ?obsolete 903s + cut -d/ -f1 903s + tail -n+2 903s + grep -v ^linux-.*6\.12\.0-15-generic.* 903s + true 903s + obsolete_pkgs= 903s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 903s Reading package lists... 903s Building dependency tree... 903s Reading state information... 903s The following packages will be REMOVED: 903s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 903s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 903s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 903s linux-tools-6.11.0-8-generic* 903s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 903s After this operation, 167 MB disk space will be freed. 903s (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.) 903s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 903s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 903s Removing libpython3.12t64:s390x (3.12.9-1) ... 903s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 903s Removing libnsl2:s390x (1.3.0-3build3) ... 903s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 903s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 904s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 905s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 905s Processing triggers for libc-bin (2.40-4ubuntu1) ... 905s (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.) 905s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 905s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 905s + grep -q trusty /etc/lsb-release 905s + [ ! -d /usr/share/doc/unattended-upgrades ] 905s + [ ! -d /usr/share/doc/lxd ] 905s + [ ! -d /usr/share/doc/lxd-client ] 905s + [ ! -d /usr/share/doc/snapd ] 905s + type iptables 905s + cat 905s + chmod 755 /etc/rc.local 905s + . /etc/rc.local 905s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 905s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 905s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 905s + uname -m 905s + [ s390x = ppc64le ] 905s + [ -d /run/systemd/system ] 905s + systemd-detect-virt --quiet --vm 905s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 905s + cat 905s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 905s + echo COMPRESS=lz4 905s autopkgtest: DBG: testbed command exited with code 0 905s autopkgtest [12:44:32]: upgrading testbed (apt dist-upgrade and autopurge) 905s 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'] 905s Reading package lists... 905s Building dependency tree... 905s Reading state information... 905s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 906s Starting 2 pkgProblemResolver with broken count: 0 906s Done 906s Entering ResolveByKeep 906s 906s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 906s autopkgtest: DBG: testbed command exited with code 0 906s 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'] 906s Reading package lists... 906s Building dependency tree... 906s Reading state information... 907s Starting pkgProblemResolver with broken count: 0 907s Starting 2 pkgProblemResolver with broken count: 0 907s Done 907s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 907s autopkgtest: DBG: testbed command exited with code 0 907s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 907s autopkgtest: DBG: testbed command exited with code 1 907s autopkgtest [12:44:34]: rebooting testbed after setup commands that affected boot 907s autopkgtest: DBG: sending command to testbed: reboot 927s autopkgtest: DBG: got reply from testbed: ok 927s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 927s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 927s autopkgtest: DBG: testbed command exited with code 0 927s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 927s autopkgtest: DBG: got reply from testbed: ok 927s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 927s autopkgtest: DBG: testbed command exited with code 0 927s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 928s autopkgtest: DBG: testbed command exited with code 0 928s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 928s autopkgtest: DBG: testbed command exited with code 0 928s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 928s autopkgtest: DBG: testbed command exited with code 0 928s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 928s autopkgtest: DBG: got reply from testbed: ok 928s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 928s autopkgtest: DBG: testbed command exited with code 0 928s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 929s autopkgtest: DBG: testbed command exited with code 0 929s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 929s autopkgtest: DBG: testbed command exited with code 0 929s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 929s autopkgtest: DBG: testbed command exited with code 0 929s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 931s autopkgtest: DBG: got reply from testbed: ok 931s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 931s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 931s autopkgtest: DBG: testbed command exited with code 0 931s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 931s autopkgtest: DBG: got reply from testbed: ok 931s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 932s autopkgtest: DBG: got reply from testbed: ok 932s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 932s autopkgtest: DBG: testbed command exited with code 0 932s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 933s autopkgtest: DBG: testbed command exited with code 0 933s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 933s autopkgtest: DBG: testbed command exited with code 0 933s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 933s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qthelp', 'python3'] 933s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qthelp, python3 933s autopkgtest: DBG: can use apt-get on testbed: True 933s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qthelp, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 933s Reading package lists... 933s Building dependency tree... 933s Reading state information... 933s Starting pkgProblemResolver with broken count: 0 933s Starting 2 pkgProblemResolver with broken count: 0 933s Done 934s The following NEW packages will be installed: 934s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 934s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 934s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 934s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 934s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 934s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 934s libqt5help5 libqt5network5t64 libqt5qml5 libqt5sql5t64 libqt5widgets5t64 934s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 934s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 934s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 934s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 934s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 934s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 934s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qthelp 934s python3-pyside2.qtwidgets x11-common 934s 0 upgraded, 71 newly installed, 0 to remove and 0 not upgraded. 934s Need to get 29.5 MB of archives. 934s After this operation, 112 MB of additional disk space will be used. 934s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 934s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 934s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 934s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 934s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 934s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 934s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 934s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 934s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 934s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 934s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 934s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 934s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 934s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 934s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 934s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 935s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 935s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 935s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 935s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 935s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 935s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 935s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 935s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 935s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 935s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 935s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 935s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 935s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 935s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 935s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 935s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 935s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 935s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 935s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 935s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 935s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 935s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 935s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 935s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 935s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 936s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 936s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 936s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 936s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 936s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 936s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 936s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 936s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 936s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 936s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 936s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 936s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 936s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 936s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 936s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 936s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 936s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 936s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 936s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 936s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 936s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 936s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 936s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 936s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-4ubuntu1 [130 kB] 936s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 936s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5help5 s390x 5.15.15-6 [172 kB] 936s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 936s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 936s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 937s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qthelp s390x 5.15.16-3.1 [143 kB] 937s Fetched 29.5 MB in 3s (10.2 MB/s) 937s Selecting previously unselected package libfreetype6:s390x. 937s (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.) 937s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 937s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 937s Selecting previously unselected package fonts-dejavu-mono. 937s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 937s Unpacking fonts-dejavu-mono (2.37-8) ... 937s Selecting previously unselected package fonts-dejavu-core. 937s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 937s Unpacking fonts-dejavu-core (2.37-8) ... 937s Selecting previously unselected package fontconfig-config. 937s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 937s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 937s Selecting previously unselected package libfontconfig1:s390x. 937s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 937s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 937s Selecting previously unselected package fontconfig. 937s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 937s Unpacking fontconfig (2.15.0-2ubuntu1) ... 937s Selecting previously unselected package libdouble-conversion3:s390x. 937s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 937s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 937s Selecting previously unselected package libdrm-radeon1:s390x. 937s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 937s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 937s Selecting previously unselected package libwayland-server0:s390x. 937s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 937s Unpacking libwayland-server0:s390x (1.23.1-1) ... 937s Selecting previously unselected package libglapi-mesa:s390x. 937s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 937s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 937s Selecting previously unselected package libx11-xcb1:s390x. 937s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 937s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 937s Selecting previously unselected package libxcb-dri3-0:s390x. 937s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 937s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 937s Selecting previously unselected package libxcb-present0:s390x. 937s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 937s Unpacking libxcb-present0:s390x (1.17.0-2) ... 937s Selecting previously unselected package libxcb-randr0:s390x. 937s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 937s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 937s Selecting previously unselected package libxcb-sync1:s390x. 937s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 937s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 937s Selecting previously unselected package libxcb-xfixes0:s390x. 937s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 937s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 937s Selecting previously unselected package libxshmfence1:s390x. 937s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 937s Unpacking libxshmfence1:s390x (1.3-1build5) ... 937s Selecting previously unselected package mesa-libgallium:s390x. 937s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 937s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 938s Selecting previously unselected package libgbm1:s390x. 938s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 938s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 938s Selecting previously unselected package libwayland-client0:s390x. 938s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 938s Unpacking libwayland-client0:s390x (1.23.1-1) ... 938s Selecting previously unselected package libxcb-shm0:s390x. 938s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 938s Selecting previously unselected package libegl-mesa0:s390x. 938s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 938s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 938s Selecting previously unselected package libvulkan1:s390x. 938s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 938s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 938s Selecting previously unselected package libgl1-mesa-dri:s390x. 938s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 938s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 938s Selecting previously unselected package libxcb-glx0:s390x. 938s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 938s Selecting previously unselected package libxxf86vm1:s390x. 938s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 938s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 938s Selecting previously unselected package libglx-mesa0:s390x. 938s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 938s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 938s Selecting previously unselected package libgraphite2-3:s390x. 938s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 938s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 938s Selecting previously unselected package libharfbuzz0b:s390x. 938s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 938s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 938s Selecting previously unselected package x11-common. 938s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 938s Unpacking x11-common (1:7.7+23ubuntu3) ... 938s Selecting previously unselected package libice6:s390x. 938s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 938s Unpacking libice6:s390x (2:1.1.1-1) ... 938s Selecting previously unselected package libwacom-common. 938s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 938s Unpacking libwacom-common (2.14.0-1) ... 938s Selecting previously unselected package libwacom9:s390x. 938s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 938s Unpacking libwacom9:s390x (2.14.0-1) ... 938s Selecting previously unselected package libinput-bin. 938s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 938s Unpacking libinput-bin (1.27.1-1) ... 938s Selecting previously unselected package libmtdev1t64:s390x. 938s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 938s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 938s Selecting previously unselected package libinput10:s390x. 938s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 938s Unpacking libinput10:s390x (1.27.1-1) ... 938s Selecting previously unselected package libjpeg-turbo8:s390x. 938s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 938s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 938s Selecting previously unselected package libjpeg8:s390x. 938s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 938s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 938s Selecting previously unselected package libmd4c0:s390x. 938s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 938s Unpacking libmd4c0:s390x (0.5.2-2) ... 938s Selecting previously unselected package libpcre2-16-0:s390x. 938s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 938s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 938s Selecting previously unselected package libqt5core5t64:s390x. 938s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 938s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 938s Selecting previously unselected package libqt5dbus5t64:s390x. 938s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 938s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 938s Selecting previously unselected package libqt5network5t64:s390x. 938s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 938s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 938s Selecting previously unselected package libqt5qml5:s390x. 938s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 938s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 938s Selecting previously unselected package libshiboken2-py3-5.15t64. 938s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 938s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 938s Selecting previously unselected package libpyside2-py3-5.15t64. 938s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 938s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 938s Selecting previously unselected package libglvnd0:s390x. 938s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 938s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 938s Selecting previously unselected package libegl1:s390x. 938s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 938s Unpacking libegl1:s390x (1.7.0-1build1) ... 938s Selecting previously unselected package libglx0:s390x. 938s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 938s Unpacking libglx0:s390x (1.7.0-1build1) ... 938s Selecting previously unselected package libgl1:s390x. 938s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 938s Unpacking libgl1:s390x (1.7.0-1build1) ... 938s Selecting previously unselected package libsm6:s390x. 938s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 938s Unpacking libsm6:s390x (2:1.2.4-1) ... 938s Selecting previously unselected package libxcb-icccm4:s390x. 938s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 938s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 938s Selecting previously unselected package libxcb-util1:s390x. 938s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 938s Unpacking libxcb-util1:s390x (0.4.1-1) ... 938s Selecting previously unselected package libxcb-image0:s390x. 938s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 938s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 938s Selecting previously unselected package libxcb-keysyms1:s390x. 938s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 938s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 938s Selecting previously unselected package libxcb-render0:s390x. 938s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-render0:s390x (1.17.0-2) ... 938s Selecting previously unselected package libxcb-render-util0:s390x. 938s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 938s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 938s Selecting previously unselected package libxcb-shape0:s390x. 938s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 938s Selecting previously unselected package libxcb-xinerama0:s390x. 938s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 938s Selecting previously unselected package libxcb-xinput0:s390x. 938s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 938s Selecting previously unselected package libxcb-xkb1:s390x. 938s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 938s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 938s Selecting previously unselected package libxkbcommon-x11-0:s390x. 938s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 938s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 938s Selecting previously unselected package libxrender1:s390x. 938s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 938s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 938s Selecting previously unselected package libqt5gui5t64:s390x. 938s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 938s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 938s Selecting previously unselected package libqt5sql5t64:s390x. 938s Preparing to unpack .../64-libqt5sql5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 938s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 938s Selecting previously unselected package libqt5widgets5t64:s390x. 938s Preparing to unpack .../65-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 938s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 938s Selecting previously unselected package libqt5help5:s390x. 938s Preparing to unpack .../66-libqt5help5_5.15.15-6_s390x.deb ... 938s Unpacking libqt5help5:s390x (5.15.15-6) ... 938s Selecting previously unselected package python3-pyside2.qtcore. 938s Preparing to unpack .../67-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 938s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 938s Selecting previously unselected package python3-pyside2.qtgui. 938s Preparing to unpack .../68-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 938s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 938s Selecting previously unselected package python3-pyside2.qtwidgets. 938s Preparing to unpack .../69-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 938s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 939s Selecting previously unselected package python3-pyside2.qthelp. 939s Preparing to unpack .../70-python3-pyside2.qthelp_5.15.16-3.1_s390x.deb ... 939s Unpacking python3-pyside2.qthelp (5.15.16-3.1) ... 939s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 939s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 939s Setting up libwayland-server0:s390x (1.23.1-1) ... 939s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 939s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 939s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 939s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 939s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 939s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 939s Setting up libxcb-render0:s390x (1.17.0-2) ... 939s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 939s Setting up libglvnd0:s390x (1.7.0-1build1) ... 939s Setting up libxcb-glx0:s390x (1.17.0-2) ... 939s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 939s Setting up libxcb-shape0:s390x (1.17.0-2) ... 939s Setting up x11-common (1:7.7+23ubuntu3) ... 939s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 939s Setting up libxcb-shm0:s390x (1.17.0-2) ... 939s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 939s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 939s Setting up libxcb-util1:s390x (0.4.1-1) ... 939s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 939s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 939s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 939s Setting up libxcb-present0:s390x (1.17.0-2) ... 939s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 939s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 939s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 939s Setting up libxcb-sync1:s390x (1.17.0-2) ... 939s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 939s Setting up fonts-dejavu-mono (2.37-8) ... 939s Setting up fonts-dejavu-core (2.37-8) ... 939s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 939s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 939s Setting up libvulkan1:s390x (1.4.304.0-1) ... 939s Setting up libmtdev1t64:s390x (1.1.7-1) ... 939s Setting up libxshmfence1:s390x (1.3-1build5) ... 939s Setting up libxcb-randr0:s390x (1.17.0-2) ... 939s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 939s Setting up libmd4c0:s390x (0.5.2-2) ... 939s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 939s Setting up libwacom-common (2.14.0-1) ... 939s Setting up libwayland-client0:s390x (1.23.1-1) ... 939s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 939s Setting up libice6:s390x (2:1.1.1-1) ... 939s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 939s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 939s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 939s Setting up libwacom9:s390x (2.14.0-1) ... 939s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 939s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 939s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 939s Setting up libinput-bin (1.27.1-1) ... 939s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 939s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 939s Setting up libegl1:s390x (1.7.0-1build1) ... 939s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 939s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 939s Setting up libsm6:s390x (2:1.2.4-1) ... 939s Setting up libinput10:s390x (1.27.1-1) ... 939s Setting up fontconfig (2.15.0-2ubuntu1) ... 941s Regenerating fonts cache... done. 941s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 941s Setting up libglx0:s390x (1.7.0-1build1) ... 941s Setting up libgl1:s390x (1.7.0-1build1) ... 941s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 941s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 941s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 941s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 941s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 941s Setting up libqt5help5:s390x (5.15.15-6) ... 941s Setting up python3-pyside2.qthelp (5.15.16-3.1) ... 941s Processing triggers for man-db (2.13.0-1) ... 942s Processing triggers for udev (257.2-3ubuntu1) ... 942s Processing triggers for libc-bin (2.40-4ubuntu1) ... 942s autopkgtest: DBG: testbed command exited with code 0 942s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qthelp'], kind short, sout pipe, serr pipe, env [] 943s autopkgtest: DBG: testbed command exited with code 0 943s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command6-packages.all"], kind short, sout raw, serr pipe, env [] 943s autopkgtest: DBG: testbed command exited with code 0 943s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command6-packages.all /tmp/autopkgtest-work.fketnn_8/out/command6-packages.all 943s autopkgtest: DBG: got reply from testbed: ok 943s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 943s autopkgtest: DBG: testbed command exited with code 1 943s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 943s autopkgtest: DBG: testbed command exited with code 0 943s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 949s autopkgtest: DBG: got reply from testbed: ok 949s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 949s autopkgtest: DBG: testbed command exited with code 0 949s autopkgtest [12:45:16]: test command6: debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp 949s autopkgtest [12:45:16]: test command6: [----------------------- 949s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command6-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command6-stderr --stdout=/tmp/autopkgtest.SBuPUV/command6-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp'"], kind test, sout raw, serr raw, env [] 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command6-artifacts 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command6-stderr 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command6-stdout 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.EW6zRGBzq4/out to stdout and file: /tmp/autopkgtest.SBuPUV/command6-stdout 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.EW6zRGBzq4/err to standard error and file: /tmp/autopkgtest.SBuPUV/command6-stdout 949s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2215 to /tmp/autopkgtest_script_pid 949s Testing python3 package python3-pyside2.qthelp 949s Testing with python3.13: 950s 950s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 950s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 950s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 950s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 950s autopkgtest: DBG: testbed command exited with code 0 950s autopkgtest [12:45:17]: test command6: -----------------------] 950s autopkgtest: DBG: testbed executing test finished with exit status 0 950s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command6-stdout /tmp/autopkgtest-work.fketnn_8/out/command6-stdout 950s autopkgtest: DBG: got reply from testbed: ok 950s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command6-stderr /tmp/autopkgtest-work.fketnn_8/out/command6-stderr 950s autopkgtest: DBG: got reply from testbed: ok 950s command6 PASS (superficial) 950s autopkgtest [12:45:17]: test command6: - - - - - - - - - - results - - - - - - - - - - 950s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command6-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 951s autopkgtest: DBG: got reply from testbed: ok 951s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command6-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 951s autopkgtest: DBG: testbed command exited with code 0 951s autopkgtest [12:45:18]: test command7: preparing testbed 951s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qthelp', 'python3'], deps_new=['python3-pyside2.qtnetwork', 'python3'] 951s autopkgtest: DBG: testbed reset 951s autopkgtest: DBG: sending command to testbed: revert 1097s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 1097s autopkgtest: DBG: sending command to testbed: print-execute-command 1097s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 1097s autopkgtest: DBG: sending command to testbed: capabilities 1097s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 1097s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 1097s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1097s autopkgtest: DBG: testbed command exited with code 0 1097s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 1097s autopkgtest: DBG: got reply from testbed: ok 1097s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1098s autopkgtest: DBG: testbed command exited with code 0 1098s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1098s autopkgtest: DBG: testbed command exited with code 0 1098s autopkgtest [12:47:45]: testbed dpkg architecture: s390x 1098s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1098s autopkgtest: DBG: testbed command exited with code 0 1098s autopkgtest [12:47:45]: testbed apt version: 2.9.30 1098s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1098s autopkgtest: DBG: testbed command exited with code 0 1098s autopkgtest: DBG: testbed has eatmydata 1098s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1098s autopkgtest: DBG: testbed command exited with code 0 1098s autopkgtest [12:47:45]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1098s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1098s autopkgtest: DBG: testbed command exited with code 0 1098s autopkgtest [12:47:45]: testbed release detected to be: plucky 1098s 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 [] 1099s autopkgtest: DBG: testbed command exited with code 0 1099s 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 [] 1099s autopkgtest: DBG: testbed command exited with code 0 1099s autopkgtest: DBG: adding APT source: Types: deb deb-src 1099s URIs: http://ftpmaster.internal/ubuntu/ 1099s Suites: plucky-proposed 1099s Components: main restricted universe multiverse 1099s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1099s 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 [] 1099s autopkgtest: DBG: testbed command exited with code 0 1099s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1099s Package: * 1099s Pin: release plucky-proposed 1099s Pin-Priority: 500 1099s 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 [] 1099s autopkgtest: DBG: testbed command exited with code 0 1099s autopkgtest [12:47:46]: updating testbed package index (apt update) 1099s 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'] 1099s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1100s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1100s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1100s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1100s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 1100s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 1100s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1100s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 1100s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 1100s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1100s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 1100s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 1100s Fetched 1700 kB in 1s (1914 kB/s) 1101s Reading package lists... 1101s autopkgtest: DBG: testbed command exited with code 0 1101s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1101s Package: * 1101s Pin: release plucky-proposed 1101s Pin-Priority: 100 1101s 1101s Package: src:sphinx:any 1101s Pin: release plucky-proposed 1101s Pin-Priority: 995 1101s 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 [] 1101s autopkgtest: DBG: testbed command exited with code 0 1101s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1101s autopkgtest: DBG: testbed command exited with code 0 1101s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1101s + lsb_release --codename --short 1101s + RELEASE=plucky 1101s + cat 1101s + [ plucky != trusty ] 1101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1101s Reading package lists... 1102s Building dependency tree... 1102s Reading state information... 1102s Calculating upgrade... 1102s The following packages were automatically installed and are no longer required: 1102s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1102s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1102s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1102s linux-tools-6.11.0-8-generic 1102s Use 'sudo apt autoremove' to remove them. 1102s The following packages will be upgraded: 1102s iproute2 liblsof0 libp11-kit0 lsof 1102s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1102s Need to get 1791 kB of archives. 1102s After this operation, 17.4 kB of additional disk space will be used. 1102s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1103s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 1103s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 1103s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 1103s Preconfiguring packages ... 1103s Fetched 1791 kB in 1s (2614 kB/s) 1103s (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.) 1103s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1103s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1103s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 1103s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 1103s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 1103s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1103s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 1103s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1103s Setting up liblsof0 (4.99.4+dfsg-1) ... 1103s Setting up iproute2 (6.13.0-1ubuntu1) ... 1103s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 1103s Setting up lsof (4.99.4+dfsg-1) ... 1103s Processing triggers for man-db (2.13.0-1) ... 1104s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1104s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1104s + /usr/lib/apt/apt-helper analyze-pattern ?true 1104s + uname -r 1104s + sed s/\./\\./g 1104s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1104s + apt list ?obsolete 1104s + tail -n+2 1104s + grep -v ^linux-.*6\.12\.0-15-generic.* 1104s + cut -d/ -f1 1104s + true 1104s + obsolete_pkgs= 1104s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1104s Reading package lists... 1104s Building dependency tree... 1104s Reading state information... 1105s The following packages will be REMOVED: 1105s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1105s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1105s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1105s linux-tools-6.11.0-8-generic* 1105s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1105s After this operation, 167 MB disk space will be freed. 1105s (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.) 1105s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1105s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1105s Removing libpython3.12t64:s390x (3.12.9-1) ... 1105s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1105s Removing libnsl2:s390x (1.3.0-3build3) ... 1105s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1105s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1105s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1106s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1106s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1106s (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.) 1106s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1106s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1106s + grep -q trusty /etc/lsb-release 1106s + [ ! -d /usr/share/doc/unattended-upgrades ] 1106s + [ ! -d /usr/share/doc/lxd ] 1106s + [ ! -d /usr/share/doc/lxd-client ] 1106s + [ ! -d /usr/share/doc/snapd ] 1106s + type iptables 1106s + cat 1106s + chmod 755 /etc/rc.local 1106s + . /etc/rc.local 1106s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1106s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1106s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1106s + uname -m 1106s + [ s390x = ppc64le ] 1106s + [ -d /run/systemd/system ] 1106s + systemd-detect-virt --quiet --vm 1106s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1106s + cat 1106s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1106s + echo COMPRESS=lz4 1106s autopkgtest: DBG: testbed command exited with code 0 1106s autopkgtest [12:47:53]: upgrading testbed (apt dist-upgrade and autopurge) 1106s 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'] 1107s Reading package lists... 1107s Building dependency tree... 1107s Reading state information... 1107s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1107s Starting 2 pkgProblemResolver with broken count: 0 1107s Done 1107s Entering ResolveByKeep 1107s 1107s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1108s autopkgtest: DBG: testbed command exited with code 0 1108s 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'] 1108s Reading package lists... 1108s Building dependency tree... 1108s Reading state information... 1108s Starting pkgProblemResolver with broken count: 0 1108s Starting 2 pkgProblemResolver with broken count: 0 1108s Done 1108s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1108s autopkgtest: DBG: testbed command exited with code 0 1108s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1109s autopkgtest: DBG: testbed command exited with code 1 1109s autopkgtest [12:47:56]: rebooting testbed after setup commands that affected boot 1109s autopkgtest: DBG: sending command to testbed: reboot 1129s autopkgtest: DBG: got reply from testbed: ok 1129s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1129s autopkgtest: DBG: got reply from testbed: ok 1129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1129s autopkgtest: DBG: got reply from testbed: ok 1129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 1129s autopkgtest: DBG: got reply from testbed: ok 1129s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1129s autopkgtest: DBG: testbed command exited with code 0 1129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1130s autopkgtest: DBG: got reply from testbed: ok 1130s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1130s autopkgtest: DBG: testbed command exited with code 0 1130s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1130s autopkgtest: DBG: testbed command exited with code 0 1130s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1130s autopkgtest: DBG: testbed command exited with code 0 1130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1130s autopkgtest: DBG: testbed command exited with code 0 1130s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1130s autopkgtest: DBG: got reply from testbed: ok 1130s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1131s autopkgtest: DBG: testbed command exited with code 0 1131s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1131s autopkgtest: DBG: testbed command exited with code 0 1131s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1131s autopkgtest: DBG: testbed command exited with code 0 1131s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1131s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtnetwork', 'python3'] 1131s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtnetwork, python3 1131s autopkgtest: DBG: can use apt-get on testbed: True 1131s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtnetwork, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1131s Reading package lists... 1131s Building dependency tree... 1131s Reading state information... 1131s Starting pkgProblemResolver with broken count: 0 1132s Starting 2 pkgProblemResolver with broken count: 0 1132s Done 1132s The following NEW packages will be installed: 1132s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 1132s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 1132s python3-pyside2.qtcore python3-pyside2.qtnetwork 1132s 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded. 1132s Need to get 6823 kB of archives. 1132s After this operation, 24.3 MB of additional disk space will be used. 1132s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 1132s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1132s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1133s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1133s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1133s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1133s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1133s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1133s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1133s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 1133s Fetched 6823 kB in 1s (7529 kB/s) 1133s Selecting previously unselected package libdouble-conversion3:s390x. 1133s (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.) 1133s Preparing to unpack .../0-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 1133s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 1133s Selecting previously unselected package libpcre2-16-0:s390x. 1133s Preparing to unpack .../1-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1133s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1133s Selecting previously unselected package libqt5core5t64:s390x. 1133s Preparing to unpack .../2-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1133s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1133s Selecting previously unselected package libqt5dbus5t64:s390x. 1133s Preparing to unpack .../3-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1133s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1133s Selecting previously unselected package libqt5network5t64:s390x. 1133s Preparing to unpack .../4-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1133s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1133s Selecting previously unselected package libqt5qml5:s390x. 1133s Preparing to unpack .../5-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1133s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1133s Selecting previously unselected package libshiboken2-py3-5.15t64. 1133s Preparing to unpack .../6-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1133s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1133s Selecting previously unselected package libpyside2-py3-5.15t64. 1133s Preparing to unpack .../7-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1133s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1133s Selecting previously unselected package python3-pyside2.qtcore. 1133s Preparing to unpack .../8-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1133s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1133s Selecting previously unselected package python3-pyside2.qtnetwork. 1133s Preparing to unpack .../9-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 1133s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 1133s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 1133s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1133s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1133s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1133s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1133s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1133s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1133s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1134s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1134s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 1134s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1134s autopkgtest: DBG: testbed command exited with code 0 1134s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtnetwork'], kind short, sout pipe, serr pipe, env [] 1134s autopkgtest: DBG: testbed command exited with code 0 1134s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command7-packages.all"], kind short, sout raw, serr pipe, env [] 1134s autopkgtest: DBG: testbed command exited with code 0 1134s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command7-packages.all /tmp/autopkgtest-work.fketnn_8/out/command7-packages.all 1134s autopkgtest: DBG: got reply from testbed: ok 1134s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 1134s autopkgtest: DBG: testbed command exited with code 1 1134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 1135s autopkgtest: DBG: testbed command exited with code 0 1135s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 1139s autopkgtest: DBG: got reply from testbed: ok 1139s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest [12:48:26]: test command7: debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork 1139s autopkgtest [12:48:26]: test command7: [----------------------- 1139s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command7-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command7-stderr --stdout=/tmp/autopkgtest.SBuPUV/command7-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork'"], kind test, sout raw, serr raw, env [] 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command7-artifacts 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1139s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command7-stderr 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command7-stdout 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.XO2eHaAMVK/out to stdout and file: /tmp/autopkgtest.SBuPUV/command7-stdout 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.XO2eHaAMVK/err to standard error and file: /tmp/autopkgtest.SBuPUV/command7-stdout 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 1297 to /tmp/autopkgtest_script_pid 1140s Testing python3 package python3-pyside2.qtnetwork 1140s Testing with python3.13: 1140s 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 1140s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 1140s autopkgtest: DBG: testbed command exited with code 0 1140s autopkgtest [12:48:27]: test command7: -----------------------] 1140s autopkgtest: DBG: testbed executing test finished with exit status 0 1140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command7-stdout /tmp/autopkgtest-work.fketnn_8/out/command7-stdout 1140s autopkgtest: DBG: got reply from testbed: ok 1140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command7-stderr /tmp/autopkgtest-work.fketnn_8/out/command7-stderr 1140s autopkgtest: DBG: got reply from testbed: ok 1140s command7 PASS (superficial) 1140s autopkgtest [12:48:27]: test command7: - - - - - - - - - - results - - - - - - - - - - 1140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command7-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command7-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1141s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest [12:48:28]: test command8: preparing testbed 1141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtnetwork', 'python3'], deps_new=['python3-pyside2.qtmultimediawidgets', 'python3'] 1141s autopkgtest: DBG: testbed reset 1141s autopkgtest: DBG: sending command to testbed: revert 1292s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 1292s autopkgtest: DBG: sending command to testbed: print-execute-command 1292s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 1292s autopkgtest: DBG: sending command to testbed: capabilities 1292s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 1292s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 1292s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1292s autopkgtest: DBG: testbed command exited with code 0 1292s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 1292s autopkgtest: DBG: got reply from testbed: ok 1292s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1292s autopkgtest: DBG: testbed command exited with code 0 1292s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1293s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest [12:51:00]: testbed dpkg architecture: s390x 1293s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1293s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest [12:51:00]: testbed apt version: 2.9.30 1293s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1293s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest: DBG: testbed has eatmydata 1293s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1293s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest [12:51:00]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1293s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1293s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest [12:51:00]: testbed release detected to be: plucky 1293s 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 [] 1294s autopkgtest: DBG: testbed command exited with code 0 1294s 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 [] 1294s autopkgtest: DBG: testbed command exited with code 0 1294s autopkgtest: DBG: adding APT source: Types: deb deb-src 1294s URIs: http://ftpmaster.internal/ubuntu/ 1294s Suites: plucky-proposed 1294s Components: main restricted universe multiverse 1294s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1294s 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 [] 1294s autopkgtest: DBG: testbed command exited with code 0 1294s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1294s Package: * 1294s Pin: release plucky-proposed 1294s Pin-Priority: 500 1294s 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 [] 1294s autopkgtest: DBG: testbed command exited with code 0 1294s autopkgtest [12:51:01]: updating testbed package index (apt update) 1294s 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'] 1295s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1295s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1295s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1295s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1295s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 1295s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 1295s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1295s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 1295s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 1295s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1295s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 1295s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 1295s Fetched 1700 kB in 1s (1499 kB/s) 1296s Reading package lists... 1296s autopkgtest: DBG: testbed command exited with code 0 1296s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1296s Package: * 1296s Pin: release plucky-proposed 1296s Pin-Priority: 100 1296s 1296s Package: src:sphinx:any 1296s Pin: release plucky-proposed 1296s Pin-Priority: 995 1296s 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 [] 1296s autopkgtest: DBG: testbed command exited with code 0 1296s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1296s autopkgtest: DBG: testbed command exited with code 0 1296s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1297s + lsb_release --codename --short 1297s + RELEASE=plucky 1297s + cat 1297s + [ plucky != trusty ] 1297s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1297s Reading package lists... 1297s Building dependency tree... 1297s Reading state information... 1297s Calculating upgrade... 1297s The following packages were automatically installed and are no longer required: 1297s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1297s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1297s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1297s linux-tools-6.11.0-8-generic 1297s Use 'sudo apt autoremove' to remove them. 1297s The following packages will be upgraded: 1297s iproute2 liblsof0 libp11-kit0 lsof 1297s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1297s Need to get 1791 kB of archives. 1297s After this operation, 17.4 kB of additional disk space will be used. 1297s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1298s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 1298s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 1298s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 1298s Preconfiguring packages ... 1298s Fetched 1791 kB in 1s (2734 kB/s) 1298s (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.) 1298s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1298s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1298s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 1298s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 1298s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 1298s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1298s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 1298s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1298s Setting up liblsof0 (4.99.4+dfsg-1) ... 1298s Setting up iproute2 (6.13.0-1ubuntu1) ... 1299s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 1299s Setting up lsof (4.99.4+dfsg-1) ... 1299s Processing triggers for man-db (2.13.0-1) ... 1299s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1299s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1299s + /usr/lib/apt/apt-helper analyze-pattern ?true 1299s + uname -r 1299s + sed s/\./\\./g 1299s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1299s + apt list ?obsolete 1299s + tail -n+2 1299s + grep -v ^linux-.*6\.12\.0-15-generic.* 1299s + cut -d/ -f1 1300s + true 1300s + obsolete_pkgs= 1300s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1300s Reading package lists... 1300s Building dependency tree... 1300s Reading state information... 1300s The following packages will be REMOVED: 1300s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1300s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1300s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1300s linux-tools-6.11.0-8-generic* 1300s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1300s After this operation, 167 MB disk space will be freed. 1300s (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.) 1300s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1300s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1300s Removing libpython3.12t64:s390x (3.12.9-1) ... 1300s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1300s Removing libnsl2:s390x (1.3.0-3build3) ... 1300s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1300s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1300s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1302s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1302s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1302s (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.) 1302s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1302s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1302s + grep -q trusty /etc/lsb-release 1302s + [ ! -d /usr/share/doc/unattended-upgrades ] 1302s + [ ! -d /usr/share/doc/lxd ] 1302s + [ ! -d /usr/share/doc/lxd-client ] 1302s + [ ! -d /usr/share/doc/snapd ] 1302s + type iptables 1302s + cat 1302s + chmod 755 /etc/rc.local 1302s + . /etc/rc.local 1302s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1302s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1302s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1302s + uname -m 1302s + [ s390x = ppc64le ] 1302s + [ -d /run/systemd/system ] 1302s + systemd-detect-virt --quiet --vm 1302s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1302s + cat 1302s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1302s + echo COMPRESS=lz4 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest [12:51:09]: upgrading testbed (apt dist-upgrade and autopurge) 1302s 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'] 1302s Reading package lists... 1303s Building dependency tree... 1303s Reading state information... 1303s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1303s Starting 2 pkgProblemResolver with broken count: 0 1303s Done 1303s Entering ResolveByKeep 1303s 1304s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1304s autopkgtest: DBG: testbed command exited with code 0 1304s 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'] 1304s Reading package lists... 1304s Building dependency tree... 1304s Reading state information... 1304s Starting pkgProblemResolver with broken count: 0 1304s Starting 2 pkgProblemResolver with broken count: 0 1304s Done 1304s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1304s autopkgtest: DBG: testbed command exited with code 0 1304s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1304s autopkgtest: DBG: testbed command exited with code 1 1304s autopkgtest [12:51:11]: rebooting testbed after setup commands that affected boot 1304s autopkgtest: DBG: sending command to testbed: reboot 1325s autopkgtest: DBG: got reply from testbed: ok 1325s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1325s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1326s autopkgtest: DBG: got reply from testbed: ok 1326s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1327s autopkgtest: DBG: got reply from testbed: ok 1327s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1327s autopkgtest: DBG: testbed command exited with code 0 1327s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1327s autopkgtest: DBG: testbed command exited with code 0 1327s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1327s autopkgtest: DBG: testbed command exited with code 0 1327s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 1327s autopkgtest: DBG: testbed command exited with code 0 1327s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 1328s autopkgtest: DBG: got reply from testbed: ok 1328s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1328s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1328s autopkgtest: DBG: got reply from testbed: ok 1328s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1329s autopkgtest: DBG: got reply from testbed: ok 1329s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1329s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtmultimediawidgets', 'python3'] 1329s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtmultimediawidgets, python3 1329s autopkgtest: DBG: can use apt-get on testbed: True 1329s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtmultimediawidgets, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1330s Reading package lists... 1330s Building dependency tree... 1330s Reading state information... 1330s Starting pkgProblemResolver with broken count: 0 1330s Starting 2 pkgProblemResolver with broken count: 0 1330s Done 1330s The following NEW packages will be installed: 1330s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libasyncns0 1330s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libflac12t64 1330s libfontconfig1 libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa 1330s libglvnd0 libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 1330s libinput-bin libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmp3lame0 1330s libmpg123-0t64 libmtdev1t64 libogg0 libopus0 libpcre2-16-0 libpulse0 1330s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1330s libqt5multimedia5 libqt5multimediawidgets5 libqt5network5t64 libqt5qml5 1330s libqt5widgets5t64 libshiboken2-py3-5.15t64 libsm6 libsndfile1 libvorbis0a 1330s libvorbisenc2 libvulkan1 libwacom-common libwacom9 libwayland-client0 1330s libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 1330s libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 1330s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 1330s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 1330s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 1330s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtmultimedia 1330s python3-pyside2.qtmultimediawidgets python3-pyside2.qtnetwork 1330s python3-pyside2.qtwidgets x11-common 1330s 0 upgraded, 83 newly installed, 0 to remove and 0 not upgraded. 1330s Need to get 34.4 MB of archives. 1330s After this operation, 124 MB of additional disk space will be used. 1330s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1331s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1331s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1331s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1331s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1331s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1331s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 1331s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 1331s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1331s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 1331s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1331s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1331s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1331s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1331s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1331s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1331s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1331s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1331s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1332s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1332s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 1332s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1332s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1332s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 1332s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 1332s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1332s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1332s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1332s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1332s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1332s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1332s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1332s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1332s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1332s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1332s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1332s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1332s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1332s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1332s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1332s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1332s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1332s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 1332s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 1332s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 1332s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1332s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 1332s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 1332s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 1332s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 1332s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1332s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1332s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1332s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1332s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1332s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1332s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1332s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1332s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1332s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1332s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1332s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1332s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1333s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1333s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1333s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1333s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1333s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1333s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1333s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1333s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1333s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1333s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1333s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1333s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimedia5 s390x 5.15.15-2 [331 kB] 1333s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 1333s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimediawidgets5 s390x 5.15.15-2 [43.1 kB] 1333s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1333s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1333s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 1333s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtmultimedia s390x 5.15.16-3.1 [391 kB] 1333s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 1333s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtmultimediawidgets s390x 5.15.16-3.1 [58.1 kB] 1334s Fetched 34.4 MB in 3s (11.3 MB/s) 1334s Selecting previously unselected package libfreetype6:s390x. 1334s (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.) 1334s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1334s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1334s Selecting previously unselected package fonts-dejavu-mono. 1334s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1334s Unpacking fonts-dejavu-mono (2.37-8) ... 1334s Selecting previously unselected package fonts-dejavu-core. 1334s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1334s Unpacking fonts-dejavu-core (2.37-8) ... 1334s Selecting previously unselected package fontconfig-config. 1334s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1334s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1334s Selecting previously unselected package libfontconfig1:s390x. 1334s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1334s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1334s Selecting previously unselected package fontconfig. 1334s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1334s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1334s Selecting previously unselected package libasyncns0:s390x. 1334s Preparing to unpack .../06-libasyncns0_0.8-6build4_s390x.deb ... 1334s Unpacking libasyncns0:s390x (0.8-6build4) ... 1334s Selecting previously unselected package libdouble-conversion3:s390x. 1334s Preparing to unpack .../07-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 1334s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 1334s Selecting previously unselected package libdrm-radeon1:s390x. 1334s Preparing to unpack .../08-libdrm-radeon1_2.4.123-1_s390x.deb ... 1334s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1334s Selecting previously unselected package libwayland-server0:s390x. 1334s Preparing to unpack .../09-libwayland-server0_1.23.1-1_s390x.deb ... 1334s Unpacking libwayland-server0:s390x (1.23.1-1) ... 1334s Selecting previously unselected package libglapi-mesa:s390x. 1334s Preparing to unpack .../10-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1334s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1334s Selecting previously unselected package libx11-xcb1:s390x. 1334s Preparing to unpack .../11-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1334s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1334s Selecting previously unselected package libxcb-dri3-0:s390x. 1334s Preparing to unpack .../12-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libxcb-present0:s390x. 1334s Preparing to unpack .../13-libxcb-present0_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libxcb-randr0:s390x. 1334s Preparing to unpack .../14-libxcb-randr0_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libxcb-sync1:s390x. 1334s Preparing to unpack .../15-libxcb-sync1_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libxcb-xfixes0:s390x. 1334s Preparing to unpack .../16-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libxshmfence1:s390x. 1334s Preparing to unpack .../17-libxshmfence1_1.3-1build5_s390x.deb ... 1334s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1334s Selecting previously unselected package mesa-libgallium:s390x. 1334s Preparing to unpack .../18-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1334s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1334s Selecting previously unselected package libgbm1:s390x. 1334s Preparing to unpack .../19-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1334s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1334s Selecting previously unselected package libwayland-client0:s390x. 1334s Preparing to unpack .../20-libwayland-client0_1.23.1-1_s390x.deb ... 1334s Unpacking libwayland-client0:s390x (1.23.1-1) ... 1334s Selecting previously unselected package libxcb-shm0:s390x. 1334s Preparing to unpack .../21-libxcb-shm0_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libegl-mesa0:s390x. 1334s Preparing to unpack .../22-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1334s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1334s Selecting previously unselected package libogg0:s390x. 1334s Preparing to unpack .../23-libogg0_1.3.5-3build1_s390x.deb ... 1334s Unpacking libogg0:s390x (1.3.5-3build1) ... 1334s Selecting previously unselected package libflac12t64:s390x. 1334s Preparing to unpack .../24-libflac12t64_1.4.3+ds-4_s390x.deb ... 1334s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 1334s Selecting previously unselected package libvulkan1:s390x. 1334s Preparing to unpack .../25-libvulkan1_1.4.304.0-1_s390x.deb ... 1334s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1334s Selecting previously unselected package libgl1-mesa-dri:s390x. 1334s Preparing to unpack .../26-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1334s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1334s Selecting previously unselected package libxcb-glx0:s390x. 1334s Preparing to unpack .../27-libxcb-glx0_1.17.0-2_s390x.deb ... 1334s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1334s Selecting previously unselected package libxxf86vm1:s390x. 1334s Preparing to unpack .../28-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1334s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1334s Selecting previously unselected package libglx-mesa0:s390x. 1334s Preparing to unpack .../29-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1334s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1334s Selecting previously unselected package libgraphite2-3:s390x. 1334s Preparing to unpack .../30-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1334s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1334s Selecting previously unselected package libharfbuzz0b:s390x. 1334s Preparing to unpack .../31-libharfbuzz0b_10.2.0-1_s390x.deb ... 1334s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1334s Selecting previously unselected package x11-common. 1334s Preparing to unpack .../32-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1334s Unpacking x11-common (1:7.7+23ubuntu3) ... 1334s Selecting previously unselected package libice6:s390x. 1334s Preparing to unpack .../33-libice6_2%3a1.1.1-1_s390x.deb ... 1334s Unpacking libice6:s390x (2:1.1.1-1) ... 1334s Selecting previously unselected package libwacom-common. 1334s Preparing to unpack .../34-libwacom-common_2.14.0-1_all.deb ... 1334s Unpacking libwacom-common (2.14.0-1) ... 1334s Selecting previously unselected package libwacom9:s390x. 1334s Preparing to unpack .../35-libwacom9_2.14.0-1_s390x.deb ... 1334s Unpacking libwacom9:s390x (2.14.0-1) ... 1334s Selecting previously unselected package libinput-bin. 1334s Preparing to unpack .../36-libinput-bin_1.27.1-1_s390x.deb ... 1334s Unpacking libinput-bin (1.27.1-1) ... 1334s Selecting previously unselected package libmtdev1t64:s390x. 1334s Preparing to unpack .../37-libmtdev1t64_1.1.7-1_s390x.deb ... 1334s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1334s Selecting previously unselected package libinput10:s390x. 1334s Preparing to unpack .../38-libinput10_1.27.1-1_s390x.deb ... 1334s Unpacking libinput10:s390x (1.27.1-1) ... 1334s Selecting previously unselected package libjpeg-turbo8:s390x. 1334s Preparing to unpack .../39-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1334s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1334s Selecting previously unselected package libjpeg8:s390x. 1334s Preparing to unpack .../40-libjpeg8_8c-2ubuntu11_s390x.deb ... 1334s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1334s Selecting previously unselected package libmd4c0:s390x. 1334s Preparing to unpack .../41-libmd4c0_0.5.2-2_s390x.deb ... 1334s Unpacking libmd4c0:s390x (0.5.2-2) ... 1335s Selecting previously unselected package libmp3lame0:s390x. 1335s Preparing to unpack .../42-libmp3lame0_3.100-6build1_s390x.deb ... 1335s Unpacking libmp3lame0:s390x (3.100-6build1) ... 1335s Selecting previously unselected package libmpg123-0t64:s390x. 1335s Preparing to unpack .../43-libmpg123-0t64_1.32.10-1_s390x.deb ... 1335s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 1335s Selecting previously unselected package libopus0:s390x. 1335s Preparing to unpack .../44-libopus0_1.5.2-2_s390x.deb ... 1335s Unpacking libopus0:s390x (1.5.2-2) ... 1335s Selecting previously unselected package libpcre2-16-0:s390x. 1335s Preparing to unpack .../45-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1335s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1335s Selecting previously unselected package libvorbis0a:s390x. 1335s Preparing to unpack .../46-libvorbis0a_1.3.7-2_s390x.deb ... 1335s Unpacking libvorbis0a:s390x (1.3.7-2) ... 1335s Selecting previously unselected package libvorbisenc2:s390x. 1335s Preparing to unpack .../47-libvorbisenc2_1.3.7-2_s390x.deb ... 1335s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 1335s Selecting previously unselected package libsndfile1:s390x. 1335s Preparing to unpack .../48-libsndfile1_1.2.2-2_s390x.deb ... 1335s Unpacking libsndfile1:s390x (1.2.2-2) ... 1335s Selecting previously unselected package libpulse0:s390x. 1335s Preparing to unpack .../49-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 1335s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 1335s Selecting previously unselected package libqt5core5t64:s390x. 1335s Preparing to unpack .../50-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1335s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1335s Selecting previously unselected package libqt5dbus5t64:s390x. 1335s Preparing to unpack .../51-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1335s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1335s Selecting previously unselected package libqt5network5t64:s390x. 1335s Preparing to unpack .../52-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1335s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1335s Selecting previously unselected package libqt5qml5:s390x. 1335s Preparing to unpack .../53-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1335s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1335s Selecting previously unselected package libshiboken2-py3-5.15t64. 1335s Preparing to unpack .../54-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1335s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1335s Selecting previously unselected package libpyside2-py3-5.15t64. 1335s Preparing to unpack .../55-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1335s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1335s Selecting previously unselected package libglvnd0:s390x. 1335s Preparing to unpack .../56-libglvnd0_1.7.0-1build1_s390x.deb ... 1335s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1335s Selecting previously unselected package libegl1:s390x. 1335s Preparing to unpack .../57-libegl1_1.7.0-1build1_s390x.deb ... 1335s Unpacking libegl1:s390x (1.7.0-1build1) ... 1335s Selecting previously unselected package libglx0:s390x. 1335s Preparing to unpack .../58-libglx0_1.7.0-1build1_s390x.deb ... 1335s Unpacking libglx0:s390x (1.7.0-1build1) ... 1335s Selecting previously unselected package libgl1:s390x. 1335s Preparing to unpack .../59-libgl1_1.7.0-1build1_s390x.deb ... 1335s Unpacking libgl1:s390x (1.7.0-1build1) ... 1335s Selecting previously unselected package libsm6:s390x. 1335s Preparing to unpack .../60-libsm6_2%3a1.2.4-1_s390x.deb ... 1335s Unpacking libsm6:s390x (2:1.2.4-1) ... 1335s Selecting previously unselected package libxcb-icccm4:s390x. 1335s Preparing to unpack .../61-libxcb-icccm4_0.4.2-1_s390x.deb ... 1335s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1335s Selecting previously unselected package libxcb-util1:s390x. 1335s Preparing to unpack .../62-libxcb-util1_0.4.1-1_s390x.deb ... 1335s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1335s Selecting previously unselected package libxcb-image0:s390x. 1335s Preparing to unpack .../63-libxcb-image0_0.4.0-2build1_s390x.deb ... 1335s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1335s Selecting previously unselected package libxcb-keysyms1:s390x. 1335s Preparing to unpack .../64-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1335s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1335s Selecting previously unselected package libxcb-render0:s390x. 1335s Preparing to unpack .../65-libxcb-render0_1.17.0-2_s390x.deb ... 1335s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1335s Selecting previously unselected package libxcb-render-util0:s390x. 1335s Preparing to unpack .../66-libxcb-render-util0_0.3.10-1_s390x.deb ... 1335s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1335s Selecting previously unselected package libxcb-shape0:s390x. 1335s Preparing to unpack .../67-libxcb-shape0_1.17.0-2_s390x.deb ... 1335s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1335s Selecting previously unselected package libxcb-xinerama0:s390x. 1335s Preparing to unpack .../68-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1335s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1335s Selecting previously unselected package libxcb-xinput0:s390x. 1335s Preparing to unpack .../69-libxcb-xinput0_1.17.0-2_s390x.deb ... 1335s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1335s Selecting previously unselected package libxcb-xkb1:s390x. 1335s Preparing to unpack .../70-libxcb-xkb1_1.17.0-2_s390x.deb ... 1335s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1335s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1335s Preparing to unpack .../71-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1335s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1335s Selecting previously unselected package libxrender1:s390x. 1335s Preparing to unpack .../72-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1335s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1335s Selecting previously unselected package libqt5gui5t64:s390x. 1335s Preparing to unpack .../73-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1335s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1335s Selecting previously unselected package libqt5multimedia5:s390x. 1335s Preparing to unpack .../74-libqt5multimedia5_5.15.15-2_s390x.deb ... 1335s Unpacking libqt5multimedia5:s390x (5.15.15-2) ... 1335s Selecting previously unselected package libqt5widgets5t64:s390x. 1335s Preparing to unpack .../75-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1335s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1335s Selecting previously unselected package libqt5multimediawidgets5:s390x. 1335s Preparing to unpack .../76-libqt5multimediawidgets5_5.15.15-2_s390x.deb ... 1335s Unpacking libqt5multimediawidgets5:s390x (5.15.15-2) ... 1335s Selecting previously unselected package python3-pyside2.qtcore. 1335s Preparing to unpack .../77-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1335s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1335s Selecting previously unselected package python3-pyside2.qtgui. 1335s Preparing to unpack .../78-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1335s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1335s Selecting previously unselected package python3-pyside2.qtnetwork. 1335s Preparing to unpack .../79-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 1335s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 1335s Selecting previously unselected package python3-pyside2.qtmultimedia. 1335s Preparing to unpack .../80-python3-pyside2.qtmultimedia_5.15.16-3.1_s390x.deb ... 1335s Unpacking python3-pyside2.qtmultimedia (5.15.16-3.1) ... 1335s Selecting previously unselected package python3-pyside2.qtwidgets. 1335s Preparing to unpack .../81-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 1335s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 1335s Selecting previously unselected package python3-pyside2.qtmultimediawidgets. 1335s Preparing to unpack .../82-python3-pyside2.qtmultimediawidgets_5.15.16-3.1_s390x.deb ... 1335s Unpacking python3-pyside2.qtmultimediawidgets (5.15.16-3.1) ... 1335s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1335s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1335s Setting up libwayland-server0:s390x (1.23.1-1) ... 1335s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1335s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 1335s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1335s Setting up libogg0:s390x (1.3.5-3build1) ... 1335s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1335s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1335s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1335s Setting up libxcb-render0:s390x (1.17.0-2) ... 1335s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1335s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1335s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1335s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1335s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1335s Setting up x11-common (1:7.7+23ubuntu3) ... 1336s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1336s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1336s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1336s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 1336s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1336s Setting up libxcb-util1:s390x (0.4.1-1) ... 1336s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1336s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1336s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1336s Setting up libxcb-present0:s390x (1.17.0-2) ... 1336s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1336s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1336s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1336s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1336s Setting up libopus0:s390x (1.5.2-2) ... 1336s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1336s Setting up fonts-dejavu-mono (2.37-8) ... 1336s Setting up libvorbis0a:s390x (1.3.7-2) ... 1336s Setting up fonts-dejavu-core (2.37-8) ... 1336s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1336s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1336s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1336s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1336s Setting up libasyncns0:s390x (0.8-6build4) ... 1336s Setting up libxshmfence1:s390x (1.3-1build5) ... 1336s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1336s Setting up libmd4c0:s390x (0.5.2-2) ... 1336s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1336s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 1336s Setting up libmp3lame0:s390x (3.100-6build1) ... 1336s Setting up libvorbisenc2:s390x (1.3.7-2) ... 1336s Setting up libwacom-common (2.14.0-1) ... 1336s Setting up libwayland-client0:s390x (1.23.1-1) ... 1336s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1336s Setting up libice6:s390x (2:1.1.1-1) ... 1336s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1336s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1336s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1336s Setting up libwacom9:s390x (2.14.0-1) ... 1336s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1336s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1336s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1336s Setting up libinput-bin (1.27.1-1) ... 1336s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1336s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1336s Setting up libegl1:s390x (1.7.0-1build1) ... 1336s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1336s Setting up libsndfile1:s390x (1.2.2-2) ... 1336s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1336s Setting up libsm6:s390x (2:1.2.4-1) ... 1336s Setting up libinput10:s390x (1.27.1-1) ... 1336s Setting up fontconfig (2.15.0-2ubuntu1) ... 1338s Regenerating fonts cache... done. 1338s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1338s Setting up libglx0:s390x (1.7.0-1build1) ... 1338s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 1338s Setting up libgl1:s390x (1.7.0-1build1) ... 1338s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1338s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 1338s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1338s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1338s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1338s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 1338s Setting up libqt5multimedia5:s390x (5.15.15-2) ... 1338s Setting up libqt5multimediawidgets5:s390x (5.15.15-2) ... 1338s Setting up python3-pyside2.qtmultimedia (5.15.16-3.1) ... 1338s Setting up python3-pyside2.qtmultimediawidgets (5.15.16-3.1) ... 1338s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1338s Processing triggers for man-db (2.13.0-1) ... 1339s Processing triggers for udev (257.2-3ubuntu1) ... 1339s autopkgtest: DBG: testbed command exited with code 0 1339s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtmultimediawidgets'], kind short, sout pipe, serr pipe, env [] 1339s autopkgtest: DBG: testbed command exited with code 0 1339s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command8-packages.all"], kind short, sout raw, serr pipe, env [] 1340s autopkgtest: DBG: testbed command exited with code 0 1340s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command8-packages.all /tmp/autopkgtest-work.fketnn_8/out/command8-packages.all 1340s autopkgtest: DBG: got reply from testbed: ok 1340s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 1340s autopkgtest: DBG: testbed command exited with code 1 1340s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 1340s autopkgtest: DBG: testbed command exited with code 0 1340s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 1344s autopkgtest: DBG: got reply from testbed: ok 1344s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 1344s autopkgtest: DBG: testbed command exited with code 0 1344s autopkgtest [12:51:51]: test command8: debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets 1344s autopkgtest [12:51:51]: test command8: [----------------------- 1344s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command8-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command8-stderr --stdout=/tmp/autopkgtest.SBuPUV/command8-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets'"], kind test, sout raw, serr raw, env [] 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command8-artifacts 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command8-stderr 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command8-stdout 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.OtRROt5mt3/out to stdout and file: /tmp/autopkgtest.SBuPUV/command8-stdout 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.OtRROt5mt3/err to standard error and file: /tmp/autopkgtest.SBuPUV/command8-stdout 1344s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2322 to /tmp/autopkgtest_script_pid 1344s Testing python3 package python3-pyside2.qtmultimediawidgets 1344s Testing with python3.13: 1345s 1345s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 1345s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 1345s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 1345s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 1345s autopkgtest: DBG: testbed command exited with code 0 1345s autopkgtest [12:51:52]: test command8: -----------------------] 1345s autopkgtest: DBG: testbed executing test finished with exit status 0 1345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command8-stdout /tmp/autopkgtest-work.fketnn_8/out/command8-stdout 1345s autopkgtest: DBG: got reply from testbed: ok 1345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command8-stderr /tmp/autopkgtest-work.fketnn_8/out/command8-stderr 1345s autopkgtest: DBG: got reply from testbed: ok 1345s command8 PASS (superficial) 1345s autopkgtest [12:51:52]: test command8: - - - - - - - - - - results - - - - - - - - - - 1345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command8-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 1345s autopkgtest: DBG: got reply from testbed: ok 1345s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command8-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1346s autopkgtest: DBG: testbed command exited with code 0 1346s autopkgtest [12:51:53]: test command9: preparing testbed 1346s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtmultimediawidgets', 'python3'], deps_new=['python3-pyside2.qtmultimedia', 'python3'] 1346s autopkgtest: DBG: testbed reset 1346s autopkgtest: DBG: sending command to testbed: revert 1475s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 1475s autopkgtest: DBG: sending command to testbed: print-execute-command 1475s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 1475s autopkgtest: DBG: sending command to testbed: capabilities 1475s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 1475s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 1475s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1476s autopkgtest: DBG: testbed command exited with code 0 1476s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 1476s autopkgtest: DBG: got reply from testbed: ok 1476s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1476s autopkgtest: DBG: testbed command exited with code 0 1476s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1476s autopkgtest: DBG: testbed command exited with code 0 1476s autopkgtest [12:54:03]: testbed dpkg architecture: s390x 1476s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1476s autopkgtest: DBG: testbed command exited with code 0 1476s autopkgtest [12:54:03]: testbed apt version: 2.9.30 1476s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1477s autopkgtest: DBG: testbed command exited with code 0 1477s autopkgtest: DBG: testbed has eatmydata 1477s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1477s autopkgtest: DBG: testbed command exited with code 0 1477s autopkgtest [12:54:04]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1477s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1477s autopkgtest: DBG: testbed command exited with code 0 1477s autopkgtest [12:54:04]: testbed release detected to be: plucky 1477s 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 [] 1477s autopkgtest: DBG: testbed command exited with code 0 1477s 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 [] 1477s autopkgtest: DBG: testbed command exited with code 0 1477s autopkgtest: DBG: adding APT source: Types: deb deb-src 1477s URIs: http://ftpmaster.internal/ubuntu/ 1477s Suites: plucky-proposed 1477s Components: main restricted universe multiverse 1477s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1477s 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 [] 1477s autopkgtest: DBG: testbed command exited with code 0 1477s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1477s Package: * 1477s Pin: release plucky-proposed 1477s Pin-Priority: 500 1477s 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 [] 1478s autopkgtest: DBG: testbed command exited with code 0 1478s autopkgtest [12:54:05]: updating testbed package index (apt update) 1478s 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'] 1478s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1478s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1478s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1478s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1478s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1478s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 1478s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 1479s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 1479s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 1479s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1479s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 1479s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 1479s Fetched 1700 kB in 1s (1885 kB/s) 1479s Reading package lists... 1479s autopkgtest: DBG: testbed command exited with code 0 1479s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1479s Package: * 1479s Pin: release plucky-proposed 1479s Pin-Priority: 100 1479s 1479s Package: src:sphinx:any 1479s Pin: release plucky-proposed 1479s Pin-Priority: 995 1479s 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 [] 1480s autopkgtest: DBG: testbed command exited with code 0 1480s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1480s autopkgtest: DBG: testbed command exited with code 0 1480s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1480s + lsb_release --codename --short 1480s + RELEASE=plucky 1480s + cat 1480s + [ plucky != trusty ] 1480s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1480s Reading package lists... 1480s Building dependency tree... 1480s Reading state information... 1480s Calculating upgrade... 1480s The following packages were automatically installed and are no longer required: 1480s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1480s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1480s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1480s linux-tools-6.11.0-8-generic 1480s Use 'sudo apt autoremove' to remove them. 1480s The following packages will be upgraded: 1480s iproute2 liblsof0 libp11-kit0 lsof 1481s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1481s Need to get 1791 kB of archives. 1481s After this operation, 17.4 kB of additional disk space will be used. 1481s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1481s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 1481s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 1481s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 1481s Preconfiguring packages ... 1481s Fetched 1791 kB in 1s (2840 kB/s) 1482s (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.) 1482s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1482s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1482s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 1482s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 1482s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 1482s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1482s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 1482s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1482s Setting up liblsof0 (4.99.4+dfsg-1) ... 1482s Setting up iproute2 (6.13.0-1ubuntu1) ... 1482s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 1482s Setting up lsof (4.99.4+dfsg-1) ... 1482s Processing triggers for man-db (2.13.0-1) ... 1482s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1483s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1483s + /usr/lib/apt/apt-helper analyze-pattern ?true 1483s + uname -r 1483s + sed s/\./\\./g 1483s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1483s + apt list ?obsolete 1483s + + cut -d/ -f1 1483s tail -n+2 1483s + grep -v ^linux-.*6\.12\.0-15-generic.* 1483s + true 1483s + obsolete_pkgs= 1483s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1483s Reading package lists... 1483s Building dependency tree... 1483s Reading state information... 1483s The following packages will be REMOVED: 1483s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1483s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1483s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1483s linux-tools-6.11.0-8-generic* 1483s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1483s After this operation, 167 MB disk space will be freed. 1483s (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.) 1483s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1484s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1484s Removing libpython3.12t64:s390x (3.12.9-1) ... 1484s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1484s Removing libnsl2:s390x (1.3.0-3build3) ... 1484s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1484s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1484s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1485s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1485s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1485s (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.) 1485s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1485s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1485s + grep -q trusty /etc/lsb-release 1485s + [ ! -d /usr/share/doc/unattended-upgrades ] 1485s + [ ! -d /usr/share/doc/lxd ] 1485s + [ ! -d /usr/share/doc/lxd-client ] 1485s + [ ! -d /usr/share/doc/snapd ] 1485s + type iptables 1485s + cat 1485s + chmod 755 /etc/rc.local 1485s + . /etc/rc.local 1485s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1485s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1485s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1485s + uname -m 1485s + [ s390x = ppc64le ] 1485s + [ -d /run/systemd/system ] 1485s + systemd-detect-virt --quiet --vm 1485s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1485s + cat 1485s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1485s + echo COMPRESS=lz4 1485s autopkgtest: DBG: testbed command exited with code 0 1485s autopkgtest [12:54:12]: upgrading testbed (apt dist-upgrade and autopurge) 1485s 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'] 1485s Reading package lists... 1485s Building dependency tree... 1485s Reading state information... 1486s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1486s Starting 2 pkgProblemResolver with broken count: 0 1486s Done 1486s Entering ResolveByKeep 1486s 1487s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1487s autopkgtest: DBG: testbed command exited with code 0 1487s 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'] 1487s Reading package lists... 1487s Building dependency tree... 1487s Reading state information... 1487s Starting pkgProblemResolver with broken count: 0 1487s Starting 2 pkgProblemResolver with broken count: 0 1487s Done 1487s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1487s autopkgtest: DBG: testbed command exited with code 0 1487s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1487s autopkgtest: DBG: testbed command exited with code 1 1487s autopkgtest [12:54:14]: rebooting testbed after setup commands that affected boot 1487s autopkgtest: DBG: sending command to testbed: reboot 1505s autopkgtest: DBG: got reply from testbed: ok 1505s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1505s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1505s autopkgtest: DBG: testbed command exited with code 0 1505s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1506s autopkgtest: DBG: got reply from testbed: ok 1506s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1506s autopkgtest: DBG: testbed command exited with code 0 1506s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1506s autopkgtest: DBG: testbed command exited with code 0 1506s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1506s autopkgtest: DBG: testbed command exited with code 0 1506s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1506s autopkgtest: DBG: testbed command exited with code 0 1506s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1507s autopkgtest: DBG: got reply from testbed: ok 1507s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1507s autopkgtest: DBG: testbed command exited with code 0 1507s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1507s autopkgtest: DBG: testbed command exited with code 0 1507s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1507s autopkgtest: DBG: testbed command exited with code 0 1507s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 1507s autopkgtest: DBG: testbed command exited with code 0 1507s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 1507s autopkgtest: DBG: got reply from testbed: ok 1507s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1507s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1508s autopkgtest: DBG: got reply from testbed: ok 1508s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1509s autopkgtest: DBG: testbed command exited with code 0 1509s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1509s autopkgtest: DBG: got reply from testbed: ok 1509s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1509s autopkgtest: DBG: testbed command exited with code 0 1509s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1509s autopkgtest: DBG: testbed command exited with code 0 1509s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1509s autopkgtest: DBG: testbed command exited with code 0 1509s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1509s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtmultimedia', 'python3'] 1509s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtmultimedia, python3 1509s autopkgtest: DBG: can use apt-get on testbed: True 1509s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtmultimedia, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1510s Reading package lists... 1510s Building dependency tree... 1510s Reading state information... 1510s Starting pkgProblemResolver with broken count: 0 1510s Starting 2 pkgProblemResolver with broken count: 0 1510s Done 1510s The following NEW packages will be installed: 1510s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libasyncns0 1510s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libflac12t64 1510s libfontconfig1 libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa 1510s libglvnd0 libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 1510s libinput-bin libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmp3lame0 1510s libmpg123-0t64 libmtdev1t64 libogg0 libopus0 libpcre2-16-0 libpulse0 1510s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1510s libqt5multimedia5 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 1510s libsm6 libsndfile1 libvorbis0a libvorbisenc2 libvulkan1 libwacom-common 1510s libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 1510s libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 1510s libxcb-randr0 libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 1510s libxcb-sync1 libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 1510s libxcb-xkb1 libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 1510s mesa-libgallium python3-pyside2.qtcore python3-pyside2.qtgui 1510s python3-pyside2.qtmultimedia python3-pyside2.qtnetwork x11-common 1510s 0 upgraded, 79 newly installed, 0 to remove and 0 not upgraded. 1510s Need to get 29.7 MB of archives. 1510s After this operation, 104 MB of additional disk space will be used. 1510s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1511s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1511s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1511s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1511s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1511s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1511s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 1511s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 1511s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1511s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 1511s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1511s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1511s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1511s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1511s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1511s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1511s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1511s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1511s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1511s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1511s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 1511s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1511s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1511s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 1511s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 1511s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1511s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1511s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1511s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1511s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1511s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1511s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1511s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1511s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1511s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1511s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1511s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1511s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1511s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1511s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1511s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1511s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1511s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 1511s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 1511s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 1511s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1512s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 1512s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 1512s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 1512s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 1512s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1512s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1512s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1512s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1512s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1512s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1512s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1512s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1512s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1512s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1512s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1512s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1512s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1512s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1512s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1512s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1512s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1512s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1512s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1512s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1512s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1512s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1512s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1512s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1512s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimedia5 s390x 5.15.15-2 [331 kB] 1512s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1512s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1512s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 1512s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtmultimedia s390x 5.15.16-3.1 [391 kB] 1513s Fetched 29.7 MB in 2s (13.9 MB/s) 1514s Selecting previously unselected package libfreetype6:s390x. 1514s (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.) 1514s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1514s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1514s Selecting previously unselected package fonts-dejavu-mono. 1514s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1514s Unpacking fonts-dejavu-mono (2.37-8) ... 1514s Selecting previously unselected package fonts-dejavu-core. 1514s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1514s Unpacking fonts-dejavu-core (2.37-8) ... 1514s Selecting previously unselected package fontconfig-config. 1514s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1514s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1514s Selecting previously unselected package libfontconfig1:s390x. 1514s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1514s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1514s Selecting previously unselected package fontconfig. 1514s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1514s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1514s Selecting previously unselected package libasyncns0:s390x. 1514s Preparing to unpack .../06-libasyncns0_0.8-6build4_s390x.deb ... 1514s Unpacking libasyncns0:s390x (0.8-6build4) ... 1514s Selecting previously unselected package libdouble-conversion3:s390x. 1514s Preparing to unpack .../07-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 1514s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 1514s Selecting previously unselected package libdrm-radeon1:s390x. 1514s Preparing to unpack .../08-libdrm-radeon1_2.4.123-1_s390x.deb ... 1514s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1514s Selecting previously unselected package libwayland-server0:s390x. 1514s Preparing to unpack .../09-libwayland-server0_1.23.1-1_s390x.deb ... 1514s Unpacking libwayland-server0:s390x (1.23.1-1) ... 1514s Selecting previously unselected package libglapi-mesa:s390x. 1514s Preparing to unpack .../10-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1514s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1514s Selecting previously unselected package libx11-xcb1:s390x. 1514s Preparing to unpack .../11-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1514s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1514s Selecting previously unselected package libxcb-dri3-0:s390x. 1514s Preparing to unpack .../12-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-present0:s390x. 1514s Preparing to unpack .../13-libxcb-present0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-randr0:s390x. 1514s Preparing to unpack .../14-libxcb-randr0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-sync1:s390x. 1514s Preparing to unpack .../15-libxcb-sync1_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-xfixes0:s390x. 1514s Preparing to unpack .../16-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxshmfence1:s390x. 1514s Preparing to unpack .../17-libxshmfence1_1.3-1build5_s390x.deb ... 1514s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1514s Selecting previously unselected package mesa-libgallium:s390x. 1514s Preparing to unpack .../18-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1514s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1514s Selecting previously unselected package libgbm1:s390x. 1514s Preparing to unpack .../19-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1514s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1514s Selecting previously unselected package libwayland-client0:s390x. 1514s Preparing to unpack .../20-libwayland-client0_1.23.1-1_s390x.deb ... 1514s Unpacking libwayland-client0:s390x (1.23.1-1) ... 1514s Selecting previously unselected package libxcb-shm0:s390x. 1514s Preparing to unpack .../21-libxcb-shm0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libegl-mesa0:s390x. 1514s Preparing to unpack .../22-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1514s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1514s Selecting previously unselected package libogg0:s390x. 1514s Preparing to unpack .../23-libogg0_1.3.5-3build1_s390x.deb ... 1514s Unpacking libogg0:s390x (1.3.5-3build1) ... 1514s Selecting previously unselected package libflac12t64:s390x. 1514s Preparing to unpack .../24-libflac12t64_1.4.3+ds-4_s390x.deb ... 1514s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 1514s Selecting previously unselected package libvulkan1:s390x. 1514s Preparing to unpack .../25-libvulkan1_1.4.304.0-1_s390x.deb ... 1514s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1514s Selecting previously unselected package libgl1-mesa-dri:s390x. 1514s Preparing to unpack .../26-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1514s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1514s Selecting previously unselected package libxcb-glx0:s390x. 1514s Preparing to unpack .../27-libxcb-glx0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxxf86vm1:s390x. 1514s Preparing to unpack .../28-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1514s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1514s Selecting previously unselected package libglx-mesa0:s390x. 1514s Preparing to unpack .../29-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1514s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1514s Selecting previously unselected package libgraphite2-3:s390x. 1514s Preparing to unpack .../30-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1514s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1514s Selecting previously unselected package libharfbuzz0b:s390x. 1514s Preparing to unpack .../31-libharfbuzz0b_10.2.0-1_s390x.deb ... 1514s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1514s Selecting previously unselected package x11-common. 1514s Preparing to unpack .../32-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1514s Unpacking x11-common (1:7.7+23ubuntu3) ... 1514s Selecting previously unselected package libice6:s390x. 1514s Preparing to unpack .../33-libice6_2%3a1.1.1-1_s390x.deb ... 1514s Unpacking libice6:s390x (2:1.1.1-1) ... 1514s Selecting previously unselected package libwacom-common. 1514s Preparing to unpack .../34-libwacom-common_2.14.0-1_all.deb ... 1514s Unpacking libwacom-common (2.14.0-1) ... 1514s Selecting previously unselected package libwacom9:s390x. 1514s Preparing to unpack .../35-libwacom9_2.14.0-1_s390x.deb ... 1514s Unpacking libwacom9:s390x (2.14.0-1) ... 1514s Selecting previously unselected package libinput-bin. 1514s Preparing to unpack .../36-libinput-bin_1.27.1-1_s390x.deb ... 1514s Unpacking libinput-bin (1.27.1-1) ... 1514s Selecting previously unselected package libmtdev1t64:s390x. 1514s Preparing to unpack .../37-libmtdev1t64_1.1.7-1_s390x.deb ... 1514s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1514s Selecting previously unselected package libinput10:s390x. 1514s Preparing to unpack .../38-libinput10_1.27.1-1_s390x.deb ... 1514s Unpacking libinput10:s390x (1.27.1-1) ... 1514s Selecting previously unselected package libjpeg-turbo8:s390x. 1514s Preparing to unpack .../39-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1514s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1514s Selecting previously unselected package libjpeg8:s390x. 1514s Preparing to unpack .../40-libjpeg8_8c-2ubuntu11_s390x.deb ... 1514s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1514s Selecting previously unselected package libmd4c0:s390x. 1514s Preparing to unpack .../41-libmd4c0_0.5.2-2_s390x.deb ... 1514s Unpacking libmd4c0:s390x (0.5.2-2) ... 1514s Selecting previously unselected package libmp3lame0:s390x. 1514s Preparing to unpack .../42-libmp3lame0_3.100-6build1_s390x.deb ... 1514s Unpacking libmp3lame0:s390x (3.100-6build1) ... 1514s Selecting previously unselected package libmpg123-0t64:s390x. 1514s Preparing to unpack .../43-libmpg123-0t64_1.32.10-1_s390x.deb ... 1514s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 1514s Selecting previously unselected package libopus0:s390x. 1514s Preparing to unpack .../44-libopus0_1.5.2-2_s390x.deb ... 1514s Unpacking libopus0:s390x (1.5.2-2) ... 1514s Selecting previously unselected package libpcre2-16-0:s390x. 1514s Preparing to unpack .../45-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1514s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1514s Selecting previously unselected package libvorbis0a:s390x. 1514s Preparing to unpack .../46-libvorbis0a_1.3.7-2_s390x.deb ... 1514s Unpacking libvorbis0a:s390x (1.3.7-2) ... 1514s Selecting previously unselected package libvorbisenc2:s390x. 1514s Preparing to unpack .../47-libvorbisenc2_1.3.7-2_s390x.deb ... 1514s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 1514s Selecting previously unselected package libsndfile1:s390x. 1514s Preparing to unpack .../48-libsndfile1_1.2.2-2_s390x.deb ... 1514s Unpacking libsndfile1:s390x (1.2.2-2) ... 1514s Selecting previously unselected package libpulse0:s390x. 1514s Preparing to unpack .../49-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 1514s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 1514s Selecting previously unselected package libqt5core5t64:s390x. 1514s Preparing to unpack .../50-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1514s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1514s Selecting previously unselected package libqt5dbus5t64:s390x. 1514s Preparing to unpack .../51-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1514s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1514s Selecting previously unselected package libqt5network5t64:s390x. 1514s Preparing to unpack .../52-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1514s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1514s Selecting previously unselected package libqt5qml5:s390x. 1514s Preparing to unpack .../53-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1514s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1514s Selecting previously unselected package libshiboken2-py3-5.15t64. 1514s Preparing to unpack .../54-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1514s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1514s Selecting previously unselected package libpyside2-py3-5.15t64. 1514s Preparing to unpack .../55-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1514s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1514s Selecting previously unselected package libglvnd0:s390x. 1514s Preparing to unpack .../56-libglvnd0_1.7.0-1build1_s390x.deb ... 1514s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1514s Selecting previously unselected package libegl1:s390x. 1514s Preparing to unpack .../57-libegl1_1.7.0-1build1_s390x.deb ... 1514s Unpacking libegl1:s390x (1.7.0-1build1) ... 1514s Selecting previously unselected package libglx0:s390x. 1514s Preparing to unpack .../58-libglx0_1.7.0-1build1_s390x.deb ... 1514s Unpacking libglx0:s390x (1.7.0-1build1) ... 1514s Selecting previously unselected package libgl1:s390x. 1514s Preparing to unpack .../59-libgl1_1.7.0-1build1_s390x.deb ... 1514s Unpacking libgl1:s390x (1.7.0-1build1) ... 1514s Selecting previously unselected package libsm6:s390x. 1514s Preparing to unpack .../60-libsm6_2%3a1.2.4-1_s390x.deb ... 1514s Unpacking libsm6:s390x (2:1.2.4-1) ... 1514s Selecting previously unselected package libxcb-icccm4:s390x. 1514s Preparing to unpack .../61-libxcb-icccm4_0.4.2-1_s390x.deb ... 1514s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1514s Selecting previously unselected package libxcb-util1:s390x. 1514s Preparing to unpack .../62-libxcb-util1_0.4.1-1_s390x.deb ... 1514s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1514s Selecting previously unselected package libxcb-image0:s390x. 1514s Preparing to unpack .../63-libxcb-image0_0.4.0-2build1_s390x.deb ... 1514s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1514s Selecting previously unselected package libxcb-keysyms1:s390x. 1514s Preparing to unpack .../64-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1514s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1514s Selecting previously unselected package libxcb-render0:s390x. 1514s Preparing to unpack .../65-libxcb-render0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-render-util0:s390x. 1514s Preparing to unpack .../66-libxcb-render-util0_0.3.10-1_s390x.deb ... 1514s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1514s Selecting previously unselected package libxcb-shape0:s390x. 1514s Preparing to unpack .../67-libxcb-shape0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-xinerama0:s390x. 1514s Preparing to unpack .../68-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-xinput0:s390x. 1514s Preparing to unpack .../69-libxcb-xinput0_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxcb-xkb1:s390x. 1514s Preparing to unpack .../70-libxcb-xkb1_1.17.0-2_s390x.deb ... 1514s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1514s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1514s Preparing to unpack .../71-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1514s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1514s Selecting previously unselected package libxrender1:s390x. 1514s Preparing to unpack .../72-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1514s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1514s Selecting previously unselected package libqt5gui5t64:s390x. 1514s Preparing to unpack .../73-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1514s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1514s Selecting previously unselected package libqt5multimedia5:s390x. 1514s Preparing to unpack .../74-libqt5multimedia5_5.15.15-2_s390x.deb ... 1514s Unpacking libqt5multimedia5:s390x (5.15.15-2) ... 1514s Selecting previously unselected package python3-pyside2.qtcore. 1514s Preparing to unpack .../75-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1514s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1514s Selecting previously unselected package python3-pyside2.qtgui. 1514s Preparing to unpack .../76-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1514s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1514s Selecting previously unselected package python3-pyside2.qtnetwork. 1514s Preparing to unpack .../77-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 1514s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 1514s Selecting previously unselected package python3-pyside2.qtmultimedia. 1514s Preparing to unpack .../78-python3-pyside2.qtmultimedia_5.15.16-3.1_s390x.deb ... 1514s Unpacking python3-pyside2.qtmultimedia (5.15.16-3.1) ... 1514s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1514s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1514s Setting up libwayland-server0:s390x (1.23.1-1) ... 1514s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1514s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 1514s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1514s Setting up libogg0:s390x (1.3.5-3build1) ... 1514s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1514s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1514s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1514s Setting up libxcb-render0:s390x (1.17.0-2) ... 1514s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1514s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1514s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1514s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1514s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1514s Setting up x11-common (1:7.7+23ubuntu3) ... 1515s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1515s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1515s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1515s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 1515s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1515s Setting up libxcb-util1:s390x (0.4.1-1) ... 1515s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1515s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1515s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1515s Setting up libxcb-present0:s390x (1.17.0-2) ... 1515s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1515s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1515s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1515s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1515s Setting up libopus0:s390x (1.5.2-2) ... 1515s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1515s Setting up fonts-dejavu-mono (2.37-8) ... 1515s Setting up libvorbis0a:s390x (1.3.7-2) ... 1515s Setting up fonts-dejavu-core (2.37-8) ... 1515s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1515s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1515s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1515s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1515s Setting up libasyncns0:s390x (0.8-6build4) ... 1515s Setting up libxshmfence1:s390x (1.3-1build5) ... 1515s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1515s Setting up libmd4c0:s390x (0.5.2-2) ... 1515s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1515s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 1515s Setting up libmp3lame0:s390x (3.100-6build1) ... 1515s Setting up libvorbisenc2:s390x (1.3.7-2) ... 1515s Setting up libwacom-common (2.14.0-1) ... 1515s Setting up libwayland-client0:s390x (1.23.1-1) ... 1515s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1515s Setting up libice6:s390x (2:1.1.1-1) ... 1515s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1515s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1515s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1515s Setting up libwacom9:s390x (2.14.0-1) ... 1515s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1515s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1515s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1515s Setting up libinput-bin (1.27.1-1) ... 1515s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1515s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1515s Setting up libegl1:s390x (1.7.0-1build1) ... 1515s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1515s Setting up libsndfile1:s390x (1.2.2-2) ... 1515s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1515s Setting up libsm6:s390x (2:1.2.4-1) ... 1515s Setting up libinput10:s390x (1.27.1-1) ... 1515s Setting up fontconfig (2.15.0-2ubuntu1) ... 1517s Regenerating fonts cache... done. 1517s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1517s Setting up libglx0:s390x (1.7.0-1build1) ... 1517s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 1517s Setting up libgl1:s390x (1.7.0-1build1) ... 1517s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1517s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 1517s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1517s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1517s Setting up libqt5multimedia5:s390x (5.15.15-2) ... 1517s Setting up python3-pyside2.qtmultimedia (5.15.16-3.1) ... 1517s Processing triggers for udev (257.2-3ubuntu1) ... 1517s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1517s Processing triggers for man-db (2.13.0-1) ... 1518s autopkgtest: DBG: testbed command exited with code 0 1518s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtmultimedia'], kind short, sout pipe, serr pipe, env [] 1518s autopkgtest: DBG: testbed command exited with code 0 1518s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command9-packages.all"], kind short, sout raw, serr pipe, env [] 1518s autopkgtest: DBG: testbed command exited with code 0 1518s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command9-packages.all /tmp/autopkgtest-work.fketnn_8/out/command9-packages.all 1519s autopkgtest: DBG: got reply from testbed: ok 1519s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 1519s autopkgtest: DBG: testbed command exited with code 1 1519s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 1519s autopkgtest: DBG: testbed command exited with code 0 1519s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 1522s autopkgtest: DBG: got reply from testbed: ok 1522s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 1522s autopkgtest: DBG: testbed command exited with code 0 1522s autopkgtest [12:54:49]: test command9: debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia 1522s autopkgtest [12:54:49]: test command9: [----------------------- 1522s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command9-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command9-stderr --stdout=/tmp/autopkgtest.SBuPUV/command9-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia'"], kind test, sout raw, serr raw, env [] 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command9-artifacts 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command9-stderr 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command9-stdout 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.AjyjN7As3f/out to stdout and file: /tmp/autopkgtest.SBuPUV/command9-stdout 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.AjyjN7As3f/err to standard error and file: /tmp/autopkgtest.SBuPUV/command9-stdout 1522s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2283 to /tmp/autopkgtest_script_pid 1522s Testing python3 package python3-pyside2.qtmultimedia 1522s Testing with python3.13: 1523s 1523s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 1523s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 1523s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 1523s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 1523s autopkgtest: DBG: testbed command exited with code 0 1523s autopkgtest [12:54:50]: test command9: -----------------------] 1523s autopkgtest: DBG: testbed executing test finished with exit status 0 1523s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command9-stdout /tmp/autopkgtest-work.fketnn_8/out/command9-stdout 1523s autopkgtest: DBG: got reply from testbed: ok 1523s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command9-stderr /tmp/autopkgtest-work.fketnn_8/out/command9-stderr 1523s autopkgtest: DBG: got reply from testbed: ok 1523s command9 PASS (superficial) 1523s autopkgtest [12:54:50]: test command9: - - - - - - - - - - results - - - - - - - - - - 1523s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command9-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 1523s autopkgtest: DBG: got reply from testbed: ok 1523s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command9-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1524s autopkgtest: DBG: testbed command exited with code 0 1524s autopkgtest [12:54:51]: test command10: preparing testbed 1524s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtmultimedia', 'python3'], deps_new=['python3-pyside2.qtwebchannel', 'python3'] 1524s autopkgtest: DBG: testbed reset 1524s autopkgtest: DBG: sending command to testbed: revert 1654s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 1654s autopkgtest: DBG: sending command to testbed: print-execute-command 1654s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 1654s autopkgtest: DBG: sending command to testbed: capabilities 1654s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 1654s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 1654s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1654s autopkgtest: DBG: testbed command exited with code 0 1654s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 1654s autopkgtest: DBG: got reply from testbed: ok 1654s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s autopkgtest [12:57:02]: testbed dpkg architecture: s390x 1655s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s autopkgtest [12:57:02]: testbed apt version: 2.9.30 1655s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s autopkgtest: DBG: testbed has eatmydata 1655s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s autopkgtest [12:57:02]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1655s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s autopkgtest [12:57:02]: testbed release detected to be: plucky 1655s 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 [] 1655s autopkgtest: DBG: testbed command exited with code 0 1655s 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 [] 1656s autopkgtest: DBG: testbed command exited with code 0 1656s autopkgtest: DBG: adding APT source: Types: deb deb-src 1656s URIs: http://ftpmaster.internal/ubuntu/ 1656s Suites: plucky-proposed 1656s Components: main restricted universe multiverse 1656s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1656s 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 [] 1656s autopkgtest: DBG: testbed command exited with code 0 1656s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1656s Package: * 1656s Pin: release plucky-proposed 1656s Pin-Priority: 500 1656s 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 [] 1656s autopkgtest: DBG: testbed command exited with code 0 1656s autopkgtest [12:57:03]: updating testbed package index (apt update) 1656s 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'] 1656s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1657s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1657s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1657s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1657s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1657s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 1657s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 1657s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 1658s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 1658s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1658s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 1658s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 1658s Fetched 1700 kB in 2s (882 kB/s) 1659s Reading package lists... 1659s autopkgtest: DBG: testbed command exited with code 0 1659s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1659s Package: * 1659s Pin: release plucky-proposed 1659s Pin-Priority: 100 1659s 1659s Package: src:sphinx:any 1659s Pin: release plucky-proposed 1659s Pin-Priority: 995 1659s 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 [] 1659s Reading package lists... 1659s Building dependency tree...autopkgtest: DBG: testbed command exited with code 0 1659s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1659s autopkgtest: DBG: testbed command exited with code 0 1659s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1659s + lsb_release --codename --short 1659s + RELEASE=plucky 1659s + cat 1659s + [ plucky != trusty ] 1659s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1659s 1659s Reading state information... 1659s Calculating upgrade... 1660s The following packages were automatically installed and are no longer required: 1660s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1660s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1660s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1660s linux-tools-6.11.0-8-generic 1660s Use 'sudo apt autoremove' to remove them. 1660s The following packages will be upgraded: 1660s iproute2 liblsof0 libp11-kit0 lsof 1660s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1660s Need to get 1791 kB of archives. 1660s After this operation, 17.4 kB of additional disk space will be used. 1660s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1661s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 1661s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 1661s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 1661s Preconfiguring packages ... 1661s Fetched 1791 kB in 1s (1209 kB/s) 1661s (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.) 1661s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1662s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1662s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 1662s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 1662s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 1662s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1662s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 1662s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1662s Setting up liblsof0 (4.99.4+dfsg-1) ... 1662s Setting up iproute2 (6.13.0-1ubuntu1) ... 1662s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 1662s Setting up lsof (4.99.4+dfsg-1) ... 1662s Processing triggers for man-db (2.13.0-1) ... 1662s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1662s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1662s + /usr/lib/apt/apt-helper analyze-pattern ?true 1662s + uname -r 1662s + sed s/\./\\./g 1662s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1662s + apt list ?obsolete 1662s + + cut -d/ -f1 1662s tail -n+2 1662s + grep -v ^linux-.*6\.12\.0-15-generic.* 1663s + true 1663s + obsolete_pkgs= 1663s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1663s Reading package lists... 1663s Building dependency tree... 1663s Reading state information... 1663s The following packages will be REMOVED: 1663s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1663s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1663s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1663s linux-tools-6.11.0-8-generic* 1663s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1663s After this operation, 167 MB disk space will be freed. 1663s (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.) 1663s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1663s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1663s Removing libpython3.12t64:s390x (3.12.9-1) ... 1663s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1663s Removing libnsl2:s390x (1.3.0-3build3) ... 1663s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1663s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1663s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1664s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1664s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1664s (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.) 1664s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1664s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1664s + grep -q trusty /etc/lsb-release 1664s + [ ! -d /usr/share/doc/unattended-upgrades ] 1664s + [ ! -d /usr/share/doc/lxd ] 1664s + [ ! -d /usr/share/doc/lxd-client ] 1664s + [ ! -d /usr/share/doc/snapd ] 1664s + type iptables 1664s + cat 1664s + chmod 755 /etc/rc.local 1664s + . /etc/rc.local 1664s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1664s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1664s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1664s + uname -m 1664s + [ s390x = ppc64le ] 1664s + [ -d /run/systemd/system ] 1664s + systemd-detect-virt --quiet --vm 1664s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1664s + cat 1664s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1664s + echo COMPRESS=lz4 1664s autopkgtest: DBG: testbed command exited with code 0 1664s autopkgtest [12:57:11]: upgrading testbed (apt dist-upgrade and autopurge) 1664s 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'] 1665s Reading package lists... 1665s Building dependency tree... 1665s Reading state information... 1665s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1665s Starting 2 pkgProblemResolver with broken count: 0 1665s Done 1665s Entering ResolveByKeep 1665s 1665s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1665s autopkgtest: DBG: testbed command exited with code 0 1665s 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'] 1665s Reading package lists... 1666s Building dependency tree... 1666s Reading state information... 1666s Starting pkgProblemResolver with broken count: 0 1666s Starting 2 pkgProblemResolver with broken count: 0 1666s Done 1666s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1666s autopkgtest: DBG: testbed command exited with code 0 1666s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1666s autopkgtest: DBG: testbed command exited with code 1 1666s autopkgtest [12:57:13]: rebooting testbed after setup commands that affected boot 1666s autopkgtest: DBG: sending command to testbed: reboot 1684s autopkgtest: DBG: got reply from testbed: ok 1684s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1684s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1684s autopkgtest: DBG: testbed command exited with code 0 1684s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1684s autopkgtest: DBG: got reply from testbed: ok 1684s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1684s autopkgtest: DBG: testbed command exited with code 0 1684s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1684s autopkgtest: DBG: testbed command exited with code 0 1684s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1684s autopkgtest: DBG: testbed command exited with code 0 1684s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1685s autopkgtest: DBG: testbed command exited with code 0 1685s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1685s autopkgtest: DBG: got reply from testbed: ok 1685s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1685s autopkgtest: DBG: testbed command exited with code 0 1685s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1685s autopkgtest: DBG: testbed command exited with code 0 1685s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1685s autopkgtest: DBG: testbed command exited with code 0 1685s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 1686s autopkgtest: DBG: testbed command exited with code 0 1686s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 1686s autopkgtest: DBG: got reply from testbed: ok 1686s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1686s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1686s autopkgtest: DBG: testbed command exited with code 0 1686s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1686s autopkgtest: DBG: got reply from testbed: ok 1686s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1686s autopkgtest: DBG: testbed command exited with code 0 1686s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1686s autopkgtest: DBG: testbed command exited with code 0 1686s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1687s autopkgtest: DBG: testbed command exited with code 0 1687s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1687s autopkgtest: DBG: testbed command exited with code 0 1687s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1687s autopkgtest: DBG: got reply from testbed: ok 1687s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1687s autopkgtest: DBG: testbed command exited with code 0 1687s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1687s autopkgtest: DBG: testbed command exited with code 0 1687s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1687s autopkgtest: DBG: testbed command exited with code 0 1687s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1687s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtwebchannel', 'python3'] 1687s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtwebchannel, python3 1687s autopkgtest: DBG: can use apt-get on testbed: True 1687s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtwebchannel, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1688s Reading package lists... 1688s Building dependency tree... 1688s Reading state information... 1688s Starting pkgProblemResolver with broken count: 0 1688s Starting 2 pkgProblemResolver with broken count: 0 1688s Done 1688s The following NEW packages will be installed: 1688s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 1688s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5webchannel5 1688s libshiboken2-py3-5.15t64 python3-pyside2.qtcore python3-pyside2.qtwebchannel 1688s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 1688s Need to get 6603 kB of archives. 1688s After this operation, 23.1 MB of additional disk space will be used. 1688s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 1689s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1689s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1690s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1690s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1690s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1691s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1691s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1691s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5webchannel5 s390x 5.15.15-2 [65.9 kB] 1691s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1691s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwebchannel s390x 5.15.16-3.1 [26.2 kB] 1691s Fetched 6603 kB in 3s (2496 kB/s) 1691s Selecting previously unselected package libdouble-conversion3:s390x. 1691s (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.) 1691s Preparing to unpack .../00-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 1691s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 1691s Selecting previously unselected package libpcre2-16-0:s390x. 1691s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1691s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1691s Selecting previously unselected package libqt5core5t64:s390x. 1691s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1691s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1691s Selecting previously unselected package libqt5dbus5t64:s390x. 1691s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1691s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1691s Selecting previously unselected package libqt5network5t64:s390x. 1691s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1691s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1691s Selecting previously unselected package libqt5qml5:s390x. 1691s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1691s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1691s Selecting previously unselected package libshiboken2-py3-5.15t64. 1691s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1691s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1691s Selecting previously unselected package libpyside2-py3-5.15t64. 1691s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1691s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1691s Selecting previously unselected package libqt5webchannel5:s390x. 1691s Preparing to unpack .../08-libqt5webchannel5_5.15.15-2_s390x.deb ... 1691s Unpacking libqt5webchannel5:s390x (5.15.15-2) ... 1691s Selecting previously unselected package python3-pyside2.qtcore. 1691s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1691s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1691s Selecting previously unselected package python3-pyside2.qtwebchannel. 1691s Preparing to unpack .../10-python3-pyside2.qtwebchannel_5.15.16-3.1_s390x.deb ... 1691s Unpacking python3-pyside2.qtwebchannel (5.15.16-3.1) ... 1691s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 1691s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1691s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1691s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1691s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1691s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1691s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1691s Setting up libqt5webchannel5:s390x (5.15.15-2) ... 1691s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1692s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1692s Setting up python3-pyside2.qtwebchannel (5.15.16-3.1) ... 1692s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1692s autopkgtest: DBG: testbed command exited with code 0 1692s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtwebchannel'], kind short, sout pipe, serr pipe, env [] 1692s autopkgtest: DBG: testbed command exited with code 0 1692s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command10-packages.all"], kind short, sout raw, serr pipe, env [] 1692s autopkgtest: DBG: testbed command exited with code 0 1692s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command10-packages.all /tmp/autopkgtest-work.fketnn_8/out/command10-packages.all 1692s autopkgtest: DBG: got reply from testbed: ok 1692s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 1692s autopkgtest: DBG: testbed command exited with code 1 1692s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 1693s autopkgtest: DBG: testbed command exited with code 0 1693s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 1698s autopkgtest: DBG: got reply from testbed: ok 1698s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 1698s autopkgtest: DBG: testbed command exited with code 0 1698s autopkgtest [12:57:45]: test command10: debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel 1698s autopkgtest [12:57:45]: test command10: [----------------------- 1698s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command10-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command10-stderr --stdout=/tmp/autopkgtest.SBuPUV/command10-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel'"], kind test, sout raw, serr raw, env [] 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command10-artifacts 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command10-stderr 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command10-stdout 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.moNZiczfZp/out to stdout and file: /tmp/autopkgtest.SBuPUV/command10-stdout 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.moNZiczfZp/err to standard error and file: /tmp/autopkgtest.SBuPUV/command10-stdout 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 1305 to /tmp/autopkgtest_script_pid 1698s Testing python3 package python3-pyside2.qtwebchannel 1698s Testing with python3.13: 1698s 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 1698s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 1698s autopkgtest: DBG: testbed command exited with code 0 1699s autopkgtest [12:57:46]: test command10: -----------------------] 1699s autopkgtest: DBG: testbed executing test finished with exit status 0 1699s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command10-stdout /tmp/autopkgtest-work.fketnn_8/out/command10-stdout 1699s autopkgtest: DBG: got reply from testbed: ok 1699s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command10-stderr /tmp/autopkgtest-work.fketnn_8/out/command10-stderr 1699s autopkgtest: DBG: got reply from testbed: ok 1699s command10 PASS (superficial) 1699s autopkgtest [12:57:46]: test command10: - - - - - - - - - - results - - - - - - - - - - 1699s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command10-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 1699s autopkgtest: DBG: got reply from testbed: ok 1699s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command10-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1699s autopkgtest: DBG: testbed command exited with code 0 1699s autopkgtest [12:57:46]: test command11: preparing testbed 1699s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtwebchannel', 'python3'], deps_new=['python3-pyside2.qtprintsupport', 'python3'] 1699s autopkgtest: DBG: testbed reset 1699s autopkgtest: DBG: sending command to testbed: revert 1820s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 1820s autopkgtest: DBG: sending command to testbed: print-execute-command 1820s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 1820s autopkgtest: DBG: sending command to testbed: capabilities 1820s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 1820s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 1820s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1820s autopkgtest: DBG: testbed command exited with code 0 1820s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 1820s autopkgtest: DBG: got reply from testbed: ok 1820s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest [12:59:48]: testbed dpkg architecture: s390x 1821s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest [12:59:48]: testbed apt version: 2.9.30 1821s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest: DBG: testbed has eatmydata 1821s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest [12:59:48]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1821s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest [12:59:48]: testbed release detected to be: plucky 1821s 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 [] 1821s autopkgtest: DBG: testbed command exited with code 0 1821s 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 [] 1822s autopkgtest: DBG: testbed command exited with code 0 1822s autopkgtest: DBG: adding APT source: Types: deb deb-src 1822s URIs: http://ftpmaster.internal/ubuntu/ 1822s Suites: plucky-proposed 1822s Components: main restricted universe multiverse 1822s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1822s 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 [] 1822s autopkgtest: DBG: testbed command exited with code 0 1822s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1822s Package: * 1822s Pin: release plucky-proposed 1822s Pin-Priority: 500 1822s 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 [] 1822s autopkgtest: DBG: testbed command exited with code 0 1822s autopkgtest [12:59:49]: updating testbed package index (apt update) 1822s 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'] 1822s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1823s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1823s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1823s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1823s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 1823s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1823s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 1823s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 1823s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 1823s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1823s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 1823s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 1823s Fetched 1700 kB in 1s (1698 kB/s) 1824s Reading package lists... 1824s autopkgtest: DBG: testbed command exited with code 0 1824s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1824s Package: * 1824s Pin: release plucky-proposed 1824s Pin-Priority: 100 1824s 1824s Package: src:sphinx:any 1824s Pin: release plucky-proposed 1824s Pin-Priority: 995 1824s 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 [] 1824s autopkgtest: DBG: testbed command exited with code 0 1824s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1824s autopkgtest: DBG: testbed command exited with code 0 1824s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 1824s + lsb_release --codename --short 1824s + RELEASE=plucky 1824s + cat 1824s + [ plucky != trusty ] 1824s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1824s Reading package lists... 1824s Building dependency tree... 1824s Reading state information... 1825s Calculating upgrade... 1825s The following packages were automatically installed and are no longer required: 1825s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1825s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1825s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1825s linux-tools-6.11.0-8-generic 1825s Use 'sudo apt autoremove' to remove them. 1825s The following packages will be upgraded: 1825s iproute2 liblsof0 libp11-kit0 lsof 1825s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1825s Need to get 1791 kB of archives. 1825s After this operation, 17.4 kB of additional disk space will be used. 1825s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1825s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 1825s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 1825s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 1825s Preconfiguring packages ... 1825s Fetched 1791 kB in 1s (2836 kB/s) 1826s (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.) 1826s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1826s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1826s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 1826s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 1826s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 1826s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1826s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 1826s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1826s Setting up liblsof0 (4.99.4+dfsg-1) ... 1826s Setting up iproute2 (6.13.0-1ubuntu1) ... 1826s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 1826s Setting up lsof (4.99.4+dfsg-1) ... 1826s Processing triggers for man-db (2.13.0-1) ... 1826s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1826s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1826s + /usr/lib/apt/apt-helper analyze-pattern ?true 1826s + uname -r 1826s + sed s/\./\\./g 1826s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1826s + apt list ?obsolete 1826s + + cut -d/ -f1 1827s tail -n+2 1827s + grep -v ^linux-.*6\.12\.0-15-generic.* 1827s + true 1827s + obsolete_pkgs= 1827s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1827s Reading package lists... 1827s Building dependency tree... 1827s Reading state information... 1827s The following packages will be REMOVED: 1827s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1827s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1827s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1827s linux-tools-6.11.0-8-generic* 1827s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1827s After this operation, 167 MB disk space will be freed. 1827s (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.) 1827s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1827s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1827s Removing libpython3.12t64:s390x (3.12.9-1) ... 1827s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1827s Removing libnsl2:s390x (1.3.0-3build3) ... 1827s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1827s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1827s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1828s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1828s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1828s (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.) 1828s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1828s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1828s + grep -q trusty /etc/lsb-release 1828s + [ ! -d /usr/share/doc/unattended-upgrades ] 1828s + [ ! -d /usr/share/doc/lxd ] 1828s + [ ! -d /usr/share/doc/lxd-client ] 1828s + [ ! -d /usr/share/doc/snapd ] 1828s + type iptables 1828s + cat 1828s + chmod 755 /etc/rc.local 1828s + . /etc/rc.local 1828s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1828s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1828s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1828s + uname -m 1828s + [ s390x = ppc64le ] 1828s + [ -d /run/systemd/system ] 1828s + systemd-detect-virt --quiet --vm 1828s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1828s + cat 1828s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1828s + echo COMPRESS=lz4 1828s autopkgtest: DBG: testbed command exited with code 0 1828s autopkgtest [12:59:55]: upgrading testbed (apt dist-upgrade and autopurge) 1828s 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'] 1828s Reading package lists... 1829s Building dependency tree... 1829s Reading state information... 1829s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1829s Starting 2 pkgProblemResolver with broken count: 0 1829s Done 1829s Entering ResolveByKeep 1829s 1829s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1829s autopkgtest: DBG: testbed command exited with code 0 1829s 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'] 1829s Reading package lists... 1829s Building dependency tree... 1829s Reading state information... 1829s Starting pkgProblemResolver with broken count: 0 1830s Starting 2 pkgProblemResolver with broken count: 0 1830s Done 1830s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1830s autopkgtest: DBG: testbed command exited with code 0 1830s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1830s autopkgtest: DBG: testbed command exited with code 1 1830s autopkgtest [12:59:57]: rebooting testbed after setup commands that affected boot 1830s autopkgtest: DBG: sending command to testbed: reboot 1847s autopkgtest: DBG: got reply from testbed: ok 1847s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1847s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1847s autopkgtest: DBG: testbed command exited with code 0 1847s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1848s autopkgtest: DBG: got reply from testbed: ok 1848s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1848s autopkgtest: DBG: testbed command exited with code 0 1848s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1848s autopkgtest: DBG: testbed command exited with code 0 1848s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1848s autopkgtest: DBG: testbed command exited with code 0 1848s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1848s autopkgtest: DBG: testbed command exited with code 0 1848s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1848s autopkgtest: DBG: got reply from testbed: ok 1848s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1849s autopkgtest: DBG: testbed command exited with code 0 1849s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1849s autopkgtest: DBG: testbed command exited with code 0 1849s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1849s autopkgtest: DBG: testbed command exited with code 0 1849s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 1849s autopkgtest: DBG: testbed command exited with code 0 1849s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 1849s autopkgtest: DBG: got reply from testbed: ok 1849s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1849s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1850s autopkgtest: DBG: testbed command exited with code 0 1850s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 1850s autopkgtest: DBG: got reply from testbed: ok 1850s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1850s autopkgtest: DBG: testbed command exited with code 0 1850s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1850s autopkgtest: DBG: testbed command exited with code 0 1850s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1850s autopkgtest: DBG: testbed command exited with code 0 1850s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 1850s autopkgtest: DBG: testbed command exited with code 0 1850s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 1851s autopkgtest: DBG: got reply from testbed: ok 1851s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1851s autopkgtest: DBG: testbed command exited with code 0 1851s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1851s autopkgtest: DBG: testbed command exited with code 0 1851s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1851s autopkgtest: DBG: testbed command exited with code 0 1851s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1851s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtprintsupport', 'python3'] 1851s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtprintsupport, python3 1851s autopkgtest: DBG: can use apt-get on testbed: True 1851s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtprintsupport, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1851s Reading package lists... 1852s Building dependency tree... 1852s Reading state information... 1852s Starting pkgProblemResolver with broken count: 0 1852s Starting 2 pkgProblemResolver with broken count: 0 1852s Done 1852s The following NEW packages will be installed: 1852s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 1852s libavahi-client3 libavahi-common-data libavahi-common3 libcups2t64 1852s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 1852s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 1852s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 1852s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 1852s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1852s libqt5network5t64 libqt5printsupport5t64 libqt5qml5 libqt5widgets5t64 1852s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 1852s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 1852s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 1852s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 1852s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 1852s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 1852s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtprintsupport 1852s python3-pyside2.qtwidgets x11-common 1852s 0 upgraded, 74 newly installed, 0 to remove and 0 not upgraded. 1852s Need to get 29.7 MB of archives. 1852s After this operation, 113 MB of additional disk space will be used. 1852s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1853s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1853s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1853s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1853s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1853s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1853s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 1853s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 1853s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 1853s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 1853s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 1853s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1853s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 1853s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1853s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1853s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1853s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1853s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1853s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1853s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1853s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1853s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1854s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1854s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 1854s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1854s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1854s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1854s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1854s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1854s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1854s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1854s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1854s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1854s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1854s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1854s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1854s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1854s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1854s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1854s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1854s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1854s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1854s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1854s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1854s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1855s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1855s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1855s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1855s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1855s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1855s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1855s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1855s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1855s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1855s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1855s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1855s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1855s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1855s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1855s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1855s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1855s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1855s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1855s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1855s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1855s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1855s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1855s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1855s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 1856s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5printsupport5t64 s390x 5.15.15+dfsg-4ubuntu1 [218 kB] 1856s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1856s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1856s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 1856s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtprintsupport s390x 5.15.16-3.1 [102 kB] 1856s Fetched 29.7 MB in 4s (7538 kB/s) 1856s Selecting previously unselected package libfreetype6:s390x. 1856s (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.) 1856s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1856s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1856s Selecting previously unselected package fonts-dejavu-mono. 1856s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1856s Unpacking fonts-dejavu-mono (2.37-8) ... 1856s Selecting previously unselected package fonts-dejavu-core. 1856s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1856s Unpacking fonts-dejavu-core (2.37-8) ... 1856s Selecting previously unselected package fontconfig-config. 1856s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1857s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1857s Selecting previously unselected package libfontconfig1:s390x. 1857s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1857s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1857s Selecting previously unselected package fontconfig. 1857s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1857s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1857s Selecting previously unselected package libavahi-common-data:s390x. 1857s Preparing to unpack .../06-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 1857s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 1857s Selecting previously unselected package libavahi-common3:s390x. 1857s Preparing to unpack .../07-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 1857s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 1857s Selecting previously unselected package libavahi-client3:s390x. 1857s Preparing to unpack .../08-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 1857s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 1857s Selecting previously unselected package libcups2t64:s390x. 1857s Preparing to unpack .../09-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 1857s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 1857s Selecting previously unselected package libdouble-conversion3:s390x. 1857s Preparing to unpack .../10-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 1857s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 1857s Selecting previously unselected package libdrm-radeon1:s390x. 1857s Preparing to unpack .../11-libdrm-radeon1_2.4.123-1_s390x.deb ... 1857s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1857s Selecting previously unselected package libwayland-server0:s390x. 1857s Preparing to unpack .../12-libwayland-server0_1.23.1-1_s390x.deb ... 1857s Unpacking libwayland-server0:s390x (1.23.1-1) ... 1857s Selecting previously unselected package libglapi-mesa:s390x. 1857s Preparing to unpack .../13-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1857s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1857s Selecting previously unselected package libx11-xcb1:s390x. 1857s Preparing to unpack .../14-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1857s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1857s Selecting previously unselected package libxcb-dri3-0:s390x. 1857s Preparing to unpack .../15-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libxcb-present0:s390x. 1857s Preparing to unpack .../16-libxcb-present0_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libxcb-randr0:s390x. 1857s Preparing to unpack .../17-libxcb-randr0_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libxcb-sync1:s390x. 1857s Preparing to unpack .../18-libxcb-sync1_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libxcb-xfixes0:s390x. 1857s Preparing to unpack .../19-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libxshmfence1:s390x. 1857s Preparing to unpack .../20-libxshmfence1_1.3-1build5_s390x.deb ... 1857s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1857s Selecting previously unselected package mesa-libgallium:s390x. 1857s Preparing to unpack .../21-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1857s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1857s Selecting previously unselected package libgbm1:s390x. 1857s Preparing to unpack .../22-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1857s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1857s Selecting previously unselected package libwayland-client0:s390x. 1857s Preparing to unpack .../23-libwayland-client0_1.23.1-1_s390x.deb ... 1857s Unpacking libwayland-client0:s390x (1.23.1-1) ... 1857s Selecting previously unselected package libxcb-shm0:s390x. 1857s Preparing to unpack .../24-libxcb-shm0_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libegl-mesa0:s390x. 1857s Preparing to unpack .../25-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1857s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1857s Selecting previously unselected package libvulkan1:s390x. 1857s Preparing to unpack .../26-libvulkan1_1.4.304.0-1_s390x.deb ... 1857s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1857s Selecting previously unselected package libgl1-mesa-dri:s390x. 1857s Preparing to unpack .../27-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1857s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1857s Selecting previously unselected package libxcb-glx0:s390x. 1857s Preparing to unpack .../28-libxcb-glx0_1.17.0-2_s390x.deb ... 1857s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1857s Selecting previously unselected package libxxf86vm1:s390x. 1857s Preparing to unpack .../29-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1857s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1857s Selecting previously unselected package libglx-mesa0:s390x. 1857s Preparing to unpack .../30-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1857s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1857s Selecting previously unselected package libgraphite2-3:s390x. 1857s Preparing to unpack .../31-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1857s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1857s Selecting previously unselected package libharfbuzz0b:s390x. 1857s Preparing to unpack .../32-libharfbuzz0b_10.2.0-1_s390x.deb ... 1857s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1857s Selecting previously unselected package x11-common. 1857s Preparing to unpack .../33-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1857s Unpacking x11-common (1:7.7+23ubuntu3) ... 1857s Selecting previously unselected package libice6:s390x. 1857s Preparing to unpack .../34-libice6_2%3a1.1.1-1_s390x.deb ... 1857s Unpacking libice6:s390x (2:1.1.1-1) ... 1857s Selecting previously unselected package libwacom-common. 1857s Preparing to unpack .../35-libwacom-common_2.14.0-1_all.deb ... 1857s Unpacking libwacom-common (2.14.0-1) ... 1857s Selecting previously unselected package libwacom9:s390x. 1857s Preparing to unpack .../36-libwacom9_2.14.0-1_s390x.deb ... 1857s Unpacking libwacom9:s390x (2.14.0-1) ... 1857s Selecting previously unselected package libinput-bin. 1857s Preparing to unpack .../37-libinput-bin_1.27.1-1_s390x.deb ... 1857s Unpacking libinput-bin (1.27.1-1) ... 1857s Selecting previously unselected package libmtdev1t64:s390x. 1857s Preparing to unpack .../38-libmtdev1t64_1.1.7-1_s390x.deb ... 1857s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1857s Selecting previously unselected package libinput10:s390x. 1857s Preparing to unpack .../39-libinput10_1.27.1-1_s390x.deb ... 1857s Unpacking libinput10:s390x (1.27.1-1) ... 1857s Selecting previously unselected package libjpeg-turbo8:s390x. 1857s Preparing to unpack .../40-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1857s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1857s Selecting previously unselected package libjpeg8:s390x. 1857s Preparing to unpack .../41-libjpeg8_8c-2ubuntu11_s390x.deb ... 1857s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1857s Selecting previously unselected package libmd4c0:s390x. 1857s Preparing to unpack .../42-libmd4c0_0.5.2-2_s390x.deb ... 1857s Unpacking libmd4c0:s390x (0.5.2-2) ... 1857s Selecting previously unselected package libpcre2-16-0:s390x. 1857s Preparing to unpack .../43-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1857s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1857s Selecting previously unselected package libqt5core5t64:s390x. 1857s Preparing to unpack .../44-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1857s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1857s Selecting previously unselected package libqt5dbus5t64:s390x. 1857s Preparing to unpack .../45-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1857s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1857s Selecting previously unselected package libqt5network5t64:s390x. 1857s Preparing to unpack .../46-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1857s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1857s Selecting previously unselected package libqt5qml5:s390x. 1857s Preparing to unpack .../47-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1857s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1857s Selecting previously unselected package libshiboken2-py3-5.15t64. 1857s Preparing to unpack .../48-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1857s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1857s Selecting previously unselected package libpyside2-py3-5.15t64. 1857s Preparing to unpack .../49-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1857s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1857s Selecting previously unselected package libglvnd0:s390x. 1857s Preparing to unpack .../50-libglvnd0_1.7.0-1build1_s390x.deb ... 1857s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1858s Selecting previously unselected package libegl1:s390x. 1858s Preparing to unpack .../51-libegl1_1.7.0-1build1_s390x.deb ... 1858s Unpacking libegl1:s390x (1.7.0-1build1) ... 1858s Selecting previously unselected package libglx0:s390x. 1858s Preparing to unpack .../52-libglx0_1.7.0-1build1_s390x.deb ... 1858s Unpacking libglx0:s390x (1.7.0-1build1) ... 1858s Selecting previously unselected package libgl1:s390x. 1858s Preparing to unpack .../53-libgl1_1.7.0-1build1_s390x.deb ... 1858s Unpacking libgl1:s390x (1.7.0-1build1) ... 1858s Selecting previously unselected package libsm6:s390x. 1858s Preparing to unpack .../54-libsm6_2%3a1.2.4-1_s390x.deb ... 1858s Unpacking libsm6:s390x (2:1.2.4-1) ... 1858s Selecting previously unselected package libxcb-icccm4:s390x. 1858s Preparing to unpack .../55-libxcb-icccm4_0.4.2-1_s390x.deb ... 1858s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1858s Selecting previously unselected package libxcb-util1:s390x. 1858s Preparing to unpack .../56-libxcb-util1_0.4.1-1_s390x.deb ... 1858s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1858s Selecting previously unselected package libxcb-image0:s390x. 1858s Preparing to unpack .../57-libxcb-image0_0.4.0-2build1_s390x.deb ... 1858s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1858s Selecting previously unselected package libxcb-keysyms1:s390x. 1858s Preparing to unpack .../58-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1858s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1858s Selecting previously unselected package libxcb-render0:s390x. 1858s Preparing to unpack .../59-libxcb-render0_1.17.0-2_s390x.deb ... 1858s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1858s Selecting previously unselected package libxcb-render-util0:s390x. 1858s Preparing to unpack .../60-libxcb-render-util0_0.3.10-1_s390x.deb ... 1858s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1858s Selecting previously unselected package libxcb-shape0:s390x. 1858s Preparing to unpack .../61-libxcb-shape0_1.17.0-2_s390x.deb ... 1858s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1858s Selecting previously unselected package libxcb-xinerama0:s390x. 1858s Preparing to unpack .../62-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1858s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1858s Selecting previously unselected package libxcb-xinput0:s390x. 1858s Preparing to unpack .../63-libxcb-xinput0_1.17.0-2_s390x.deb ... 1858s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1858s Selecting previously unselected package libxcb-xkb1:s390x. 1858s Preparing to unpack .../64-libxcb-xkb1_1.17.0-2_s390x.deb ... 1858s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1858s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1858s Preparing to unpack .../65-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1858s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1858s Selecting previously unselected package libxrender1:s390x. 1858s Preparing to unpack .../66-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1858s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1858s Selecting previously unselected package libqt5gui5t64:s390x. 1858s Preparing to unpack .../67-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1858s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1858s Selecting previously unselected package libqt5widgets5t64:s390x. 1858s Preparing to unpack .../68-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1858s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1858s Selecting previously unselected package libqt5printsupport5t64:s390x. 1858s Preparing to unpack .../69-libqt5printsupport5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1858s Unpacking libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1858s Selecting previously unselected package python3-pyside2.qtcore. 1858s Preparing to unpack .../70-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1858s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1858s Selecting previously unselected package python3-pyside2.qtgui. 1858s Preparing to unpack .../71-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1858s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1858s Selecting previously unselected package python3-pyside2.qtwidgets. 1858s Preparing to unpack .../72-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 1858s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 1858s Selecting previously unselected package python3-pyside2.qtprintsupport. 1858s Preparing to unpack .../73-python3-pyside2.qtprintsupport_5.15.16-3.1_s390x.deb ... 1858s Unpacking python3-pyside2.qtprintsupport (5.15.16-3.1) ... 1858s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1858s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1858s Setting up libwayland-server0:s390x (1.23.1-1) ... 1858s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1858s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 1858s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1858s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1858s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1858s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1858s Setting up libxcb-render0:s390x (1.17.0-2) ... 1858s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1858s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1858s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1858s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1858s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1858s Setting up x11-common (1:7.7+23ubuntu3) ... 1858s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1858s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1858s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1858s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1858s Setting up libxcb-util1:s390x (0.4.1-1) ... 1858s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1858s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1858s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1858s Setting up libxcb-present0:s390x (1.17.0-2) ... 1858s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1858s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1858s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1858s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1858s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 1858s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1858s Setting up fonts-dejavu-mono (2.37-8) ... 1858s Setting up fonts-dejavu-core (2.37-8) ... 1858s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1858s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1858s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1858s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1858s Setting up libxshmfence1:s390x (1.3-1build5) ... 1858s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1858s Setting up libmd4c0:s390x (0.5.2-2) ... 1858s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1858s Setting up libwacom-common (2.14.0-1) ... 1858s Setting up libwayland-client0:s390x (1.23.1-1) ... 1858s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1858s Setting up libice6:s390x (2:1.1.1-1) ... 1858s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1858s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1858s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1858s Setting up libwacom9:s390x (2.14.0-1) ... 1858s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1858s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1858s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1858s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 1858s Setting up libinput-bin (1.27.1-1) ... 1858s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1858s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1858s Setting up libegl1:s390x (1.7.0-1build1) ... 1858s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1858s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1859s Setting up libsm6:s390x (2:1.2.4-1) ... 1859s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 1859s Setting up libinput10:s390x (1.27.1-1) ... 1859s Setting up fontconfig (2.15.0-2ubuntu1) ... 1861s Regenerating fonts cache... done. 1861s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1861s Setting up libglx0:s390x (1.7.0-1build1) ... 1861s Setting up libgl1:s390x (1.7.0-1build1) ... 1861s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1861s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 1861s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1861s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1861s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1861s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 1861s Setting up libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1861s Setting up python3-pyside2.qtprintsupport (5.15.16-3.1) ... 1861s Processing triggers for man-db (2.13.0-1) ... 1861s Processing triggers for udev (257.2-3ubuntu1) ... 1861s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1862s autopkgtest: DBG: testbed command exited with code 0 1862s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtprintsupport'], kind short, sout pipe, serr pipe, env [] 1862s autopkgtest: DBG: testbed command exited with code 0 1862s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command11-packages.all"], kind short, sout raw, serr pipe, env [] 1862s autopkgtest: DBG: testbed command exited with code 0 1862s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command11-packages.all /tmp/autopkgtest-work.fketnn_8/out/command11-packages.all 1862s autopkgtest: DBG: got reply from testbed: ok 1862s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 1862s autopkgtest: DBG: testbed command exited with code 1 1862s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 1863s autopkgtest: DBG: testbed command exited with code 0 1863s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 1867s autopkgtest: DBG: got reply from testbed: ok 1867s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 1867s autopkgtest: DBG: testbed command exited with code 0 1867s autopkgtest [13:00:34]: test command11: debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport 1867s autopkgtest [13:00:34]: test command11: [----------------------- 1867s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command11-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command11-stderr --stdout=/tmp/autopkgtest.SBuPUV/command11-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport'"], kind test, sout raw, serr raw, env [] 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command11-artifacts 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command11-stderr 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command11-stdout 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.0zUQk8ECma/out to stdout and file: /tmp/autopkgtest.SBuPUV/command11-stdout 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.0zUQk8ECma/err to standard error and file: /tmp/autopkgtest.SBuPUV/command11-stdout 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2242 to /tmp/autopkgtest_script_pid 1867s Testing python3 package python3-pyside2.qtprintsupport 1867s Testing with python3.13: 1867s 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 1867s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 1867s autopkgtest: DBG: testbed command exited with code 0 1867s autopkgtest [13:00:34]: test command11: -----------------------] 1867s autopkgtest: DBG: testbed executing test finished with exit status 0 1867s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command11-stdout /tmp/autopkgtest-work.fketnn_8/out/command11-stdout 1867s autopkgtest: DBG: got reply from testbed: ok 1867s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command11-stderr /tmp/autopkgtest-work.fketnn_8/out/command11-stderr 1868s autopkgtest: DBG: got reply from testbed: ok 1868s autopkgtest [13:00:35]: test command11: - - - - - - - - - - results - - - - - - - - - - 1868s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command11-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 1868s command11 PASS (superficial) 1868s autopkgtest: DBG: got reply from testbed: ok 1868s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command11-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1868s autopkgtest: DBG: testbed command exited with code 0 1868s autopkgtest [13:00:35]: test command12: preparing testbed 1868s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtprintsupport', 'python3'], deps_new=['python3-pyside2.qtxml', 'python3'] 1868s autopkgtest: DBG: testbed reset 1868s autopkgtest: DBG: sending command to testbed: revert 2006s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 2006s autopkgtest: DBG: sending command to testbed: print-execute-command 2006s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 2006s autopkgtest: DBG: sending command to testbed: capabilities 2006s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 2006s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 2006s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2006s autopkgtest: DBG: testbed command exited with code 0 2006s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 2006s autopkgtest: DBG: got reply from testbed: ok 2006s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2007s autopkgtest: DBG: testbed command exited with code 0 2007s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2007s autopkgtest: DBG: testbed command exited with code 0 2007s autopkgtest [13:02:54]: testbed dpkg architecture: s390x 2007s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2007s autopkgtest: DBG: testbed command exited with code 0 2007s autopkgtest [13:02:54]: testbed apt version: 2.9.30 2007s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2007s autopkgtest: DBG: testbed command exited with code 0 2007s autopkgtest: DBG: testbed has eatmydata 2007s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2007s autopkgtest: DBG: testbed command exited with code 0 2007s autopkgtest [13:02:54]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2007s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2007s autopkgtest: DBG: testbed command exited with code 0 2007s autopkgtest [13:02:54]: testbed release detected to be: plucky 2007s 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 [] 2008s autopkgtest: DBG: testbed command exited with code 0 2008s 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 [] 2008s autopkgtest: DBG: testbed command exited with code 0 2008s autopkgtest: DBG: adding APT source: Types: deb deb-src 2008s URIs: http://ftpmaster.internal/ubuntu/ 2008s Suites: plucky-proposed 2008s Components: main restricted universe multiverse 2008s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2008s 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 [] 2008s autopkgtest: DBG: testbed command exited with code 0 2008s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2008s Package: * 2008s Pin: release plucky-proposed 2008s Pin-Priority: 500 2008s 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 [] 2008s autopkgtest: DBG: testbed command exited with code 0 2008s autopkgtest [13:02:55]: updating testbed package index (apt update) 2008s 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'] 2008s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2009s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2009s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2009s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2009s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 2009s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 2009s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 2009s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2009s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 2009s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2009s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 2009s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 2009s Fetched 1700 kB in 1s (1809 kB/s) 2010s Reading package lists... 2010s autopkgtest: DBG: testbed command exited with code 0 2010s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2010s Package: * 2010s Pin: release plucky-proposed 2010s Pin-Priority: 100 2010s 2010s Package: src:sphinx:any 2010s Pin: release plucky-proposed 2010s Pin-Priority: 995 2010s 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 [] 2010s autopkgtest: DBG: testbed command exited with code 0 2010s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2010s autopkgtest: DBG: testbed command exited with code 0 2010s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2010s + lsb_release --codename --short 2010s + RELEASE=plucky 2010s + cat 2010s + [ plucky != trusty ] 2010s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2010s Reading package lists... 2011s Building dependency tree... 2011s Reading state information... 2011s Calculating upgrade... 2011s The following packages were automatically installed and are no longer required: 2011s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2011s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2011s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2011s linux-tools-6.11.0-8-generic 2011s Use 'sudo apt autoremove' to remove them. 2011s The following packages will be upgraded: 2011s iproute2 liblsof0 libp11-kit0 lsof 2011s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2011s Need to get 1791 kB of archives. 2011s After this operation, 17.4 kB of additional disk space will be used. 2011s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2012s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 2012s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 2012s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 2013s Preconfiguring packages ... 2013s Fetched 1791 kB in 2s (1078 kB/s) 2013s (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.) 2013s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2013s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2013s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 2013s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 2013s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 2013s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2013s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 2013s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2013s Setting up liblsof0 (4.99.4+dfsg-1) ... 2013s Setting up iproute2 (6.13.0-1ubuntu1) ... 2013s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 2013s Setting up lsof (4.99.4+dfsg-1) ... 2013s Processing triggers for man-db (2.13.0-1) ... 2014s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2014s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2014s + /usr/lib/apt/apt-helper analyze-pattern ?true 2014s + uname -r 2014s + sed s/\./\\./g 2014s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2014s + apt list ?obsolete 2014s + + tailcut -n+2 2014s -d/ -f1 2014s + grep -v ^linux-.*6\.12\.0-15-generic.* 2014s + true 2014s + obsolete_pkgs= 2014s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2014s Reading package lists... 2014s Building dependency tree... 2014s Reading state information... 2014s The following packages will be REMOVED: 2014s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2014s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2014s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2014s linux-tools-6.11.0-8-generic* 2015s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2015s After this operation, 167 MB disk space will be freed. 2015s (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.) 2015s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2015s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2015s Removing libpython3.12t64:s390x (3.12.9-1) ... 2015s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2015s Removing libnsl2:s390x (1.3.0-3build3) ... 2015s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2015s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2015s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2016s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2016s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2016s (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.) 2016s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2016s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2016s + grep -q trusty /etc/lsb-release 2016s + [ ! -d /usr/share/doc/unattended-upgrades ] 2016s + [ ! -d /usr/share/doc/lxd ] 2016s + [ ! -d /usr/share/doc/lxd-client ] 2016s + [ ! -d /usr/share/doc/snapd ] 2016s + type iptables 2016s + cat 2016s + chmod 755 /etc/rc.local 2016s + . /etc/rc.local 2016s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2016s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2016s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2016s + uname -m 2016s + [ s390x = ppc64le ] 2016s + [ -d /run/systemd/system ] 2016s + systemd-detect-virt --quiet --vm 2016s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2016s + cat 2016s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2016s + echo COMPRESS=lz4 2016s autopkgtest: DBG: testbed command exited with code 0 2016s autopkgtest [13:03:03]: upgrading testbed (apt dist-upgrade and autopurge) 2016s 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'] 2016s Reading package lists... 2016s Building dependency tree... 2016s Reading state information... 2016s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2017s Starting 2 pkgProblemResolver with broken count: 0 2017s Done 2017s Entering ResolveByKeep 2017s 2017s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2017s autopkgtest: DBG: testbed command exited with code 0 2017s 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'] 2017s Reading package lists... 2017s Building dependency tree... 2017s Reading state information... 2017s Starting pkgProblemResolver with broken count: 0 2018s Starting 2 pkgProblemResolver with broken count: 0 2018s Done 2018s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2018s autopkgtest: DBG: testbed command exited with code 0 2018s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2018s autopkgtest: DBG: testbed command exited with code 1 2018s autopkgtest [13:03:05]: rebooting testbed after setup commands that affected boot 2018s autopkgtest: DBG: sending command to testbed: reboot 2037s autopkgtest: DBG: got reply from testbed: ok 2037s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2037s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2037s autopkgtest: DBG: testbed command exited with code 0 2037s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2037s autopkgtest: DBG: got reply from testbed: ok 2037s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2037s autopkgtest: DBG: testbed command exited with code 0 2037s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2037s autopkgtest: DBG: testbed command exited with code 0 2037s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2037s autopkgtest: DBG: testbed command exited with code 0 2037s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2038s autopkgtest: DBG: testbed command exited with code 0 2038s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2038s autopkgtest: DBG: got reply from testbed: ok 2038s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2038s autopkgtest: DBG: testbed command exited with code 0 2038s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2038s autopkgtest: DBG: testbed command exited with code 0 2038s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2038s autopkgtest: DBG: testbed command exited with code 0 2038s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 2039s autopkgtest: DBG: testbed command exited with code 0 2039s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 2039s autopkgtest: DBG: got reply from testbed: ok 2039s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2039s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2039s autopkgtest: DBG: testbed command exited with code 0 2039s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2039s autopkgtest: DBG: got reply from testbed: ok 2039s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2039s autopkgtest: DBG: testbed command exited with code 0 2039s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2039s autopkgtest: DBG: testbed command exited with code 0 2039s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2040s autopkgtest: DBG: testbed command exited with code 0 2040s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2040s autopkgtest: DBG: testbed command exited with code 0 2040s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2040s autopkgtest: DBG: got reply from testbed: ok 2040s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2040s autopkgtest: DBG: testbed command exited with code 0 2040s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2040s autopkgtest: DBG: testbed command exited with code 0 2040s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2040s autopkgtest: DBG: testbed command exited with code 0 2040s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2040s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtxml', 'python3'] 2040s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtxml, python3 2040s autopkgtest: DBG: can use apt-get on testbed: True 2040s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtxml, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2041s Reading package lists... 2041s Building dependency tree... 2041s Reading state information... 2041s Starting pkgProblemResolver with broken count: 0 2041s Starting 2 pkgProblemResolver with broken count: 0 2041s Done 2041s The following NEW packages will be installed: 2041s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 2041s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5xml5t64 2041s libshiboken2-py3-5.15t64 python3-pyside2.qtcore python3-pyside2.qtxml 2041s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 2041s Need to get 6761 kB of archives. 2041s After this operation, 23.8 MB of additional disk space will be used. 2041s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 2042s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2042s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2043s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2043s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2043s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2044s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2044s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2044s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-4ubuntu1 [129 kB] 2044s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2044s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtxml s390x 5.15.16-3.1 [121 kB] 2045s Fetched 6761 kB in 3s (2254 kB/s) 2045s Selecting previously unselected package libdouble-conversion3:s390x. 2045s (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.) 2045s Preparing to unpack .../00-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 2045s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 2045s Selecting previously unselected package libpcre2-16-0:s390x. 2045s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2045s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2045s Selecting previously unselected package libqt5core5t64:s390x. 2045s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2045s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Selecting previously unselected package libqt5dbus5t64:s390x. 2045s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2045s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Selecting previously unselected package libqt5network5t64:s390x. 2045s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2045s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Selecting previously unselected package libqt5qml5:s390x. 2045s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2045s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2045s Selecting previously unselected package libshiboken2-py3-5.15t64. 2045s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2045s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2045s Selecting previously unselected package libpyside2-py3-5.15t64. 2045s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2045s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2045s Selecting previously unselected package libqt5xml5t64:s390x. 2045s Preparing to unpack .../08-libqt5xml5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2045s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Selecting previously unselected package python3-pyside2.qtcore. 2045s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2045s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2045s Selecting previously unselected package python3-pyside2.qtxml. 2045s Preparing to unpack .../10-python3-pyside2.qtxml_5.15.16-3.1_s390x.deb ... 2045s Unpacking python3-pyside2.qtxml (5.15.16-3.1) ... 2045s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 2045s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2045s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2045s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2045s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2045s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2045s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2045s Setting up python3-pyside2.qtxml (5.15.16-3.1) ... 2045s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2045s autopkgtest: DBG: testbed command exited with code 0 2045s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtxml'], kind short, sout pipe, serr pipe, env [] 2045s autopkgtest: DBG: testbed command exited with code 0 2045s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command12-packages.all"], kind short, sout raw, serr pipe, env [] 2046s autopkgtest: DBG: testbed command exited with code 0 2046s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command12-packages.all /tmp/autopkgtest-work.fketnn_8/out/command12-packages.all 2046s autopkgtest: DBG: got reply from testbed: ok 2046s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 2046s autopkgtest: DBG: testbed command exited with code 1 2046s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 2046s autopkgtest: DBG: testbed command exited with code 0 2046s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 2050s autopkgtest: DBG: got reply from testbed: ok 2050s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 2050s autopkgtest: DBG: testbed command exited with code 0 2050s autopkgtest [13:03:37]: test command12: debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml 2050s autopkgtest [13:03:37]: test command12: [----------------------- 2050s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command12-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command12-stderr --stdout=/tmp/autopkgtest.SBuPUV/command12-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml'"], kind test, sout raw, serr raw, env [] 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command12-artifacts 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command12-stderr 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command12-stdout 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.jZ8SbJ2wHN/out to stdout and file: /tmp/autopkgtest.SBuPUV/command12-stdout 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.jZ8SbJ2wHN/err to standard error and file: /tmp/autopkgtest.SBuPUV/command12-stdout 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 1310 to /tmp/autopkgtest_script_pid 2050s Testing python3 package python3-pyside2.qtxml 2050s Testing with python3.13: 2050s 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 2050s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 2050s autopkgtest: DBG: testbed command exited with code 0 2050s autopkgtest [13:03:37]: test command12: -----------------------] 2050s autopkgtest: DBG: testbed executing test finished with exit status 0 2050s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command12-stdout /tmp/autopkgtest-work.fketnn_8/out/command12-stdout 2050s autopkgtest: DBG: got reply from testbed: ok 2050s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command12-stderr /tmp/autopkgtest-work.fketnn_8/out/command12-stderr 2051s autopkgtest: DBG: got reply from testbed: ok 2051s command12 PASS (superficial) 2051s autopkgtest [13:03:38]: test command12: - - - - - - - - - - results - - - - - - - - - - 2051s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command12-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 2051s autopkgtest: DBG: got reply from testbed: ok 2051s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command12-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2051s autopkgtest: DBG: testbed command exited with code 0 2051s autopkgtest [13:03:38]: test command13: preparing testbed 2051s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtxml', 'python3'], deps_new=['python3-pyside2.qttest', 'python3'] 2051s autopkgtest: DBG: testbed reset 2051s autopkgtest: DBG: sending command to testbed: revert 2171s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 2171s autopkgtest: DBG: sending command to testbed: print-execute-command 2171s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 2171s autopkgtest: DBG: sending command to testbed: capabilities 2171s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 2171s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 2171s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2171s autopkgtest: DBG: testbed command exited with code 0 2171s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 2171s autopkgtest: DBG: got reply from testbed: ok 2171s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2172s autopkgtest: DBG: testbed command exited with code 0 2172s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2172s autopkgtest: DBG: testbed command exited with code 0 2172s autopkgtest [13:05:39]: testbed dpkg architecture: s390x 2172s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2172s autopkgtest: DBG: testbed command exited with code 0 2172s autopkgtest [13:05:39]: testbed apt version: 2.9.30 2172s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2172s autopkgtest: DBG: testbed command exited with code 0 2172s autopkgtest: DBG: testbed has eatmydata 2172s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2172s autopkgtest: DBG: testbed command exited with code 0 2172s autopkgtest [13:05:39]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2172s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2172s autopkgtest: DBG: testbed command exited with code 0 2172s autopkgtest [13:05:39]: testbed release detected to be: plucky 2172s 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 [] 2173s autopkgtest: DBG: testbed command exited with code 0 2173s 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 [] 2173s autopkgtest: DBG: testbed command exited with code 0 2173s autopkgtest: DBG: adding APT source: Types: deb deb-src 2173s URIs: http://ftpmaster.internal/ubuntu/ 2173s Suites: plucky-proposed 2173s Components: main restricted universe multiverse 2173s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2173s 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 [] 2173s autopkgtest: DBG: testbed command exited with code 0 2173s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2173s Package: * 2173s Pin: release plucky-proposed 2173s Pin-Priority: 500 2173s 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 [] 2173s autopkgtest: DBG: testbed command exited with code 0 2173s autopkgtest [13:05:40]: updating testbed package index (apt update) 2173s 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'] 2173s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2174s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2174s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2174s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2174s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 2174s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2174s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 2174s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 2174s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 2174s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2174s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 2174s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 2174s Fetched 1711 kB in 1s (1849 kB/s) 2175s Reading package lists... 2175s autopkgtest: DBG: testbed command exited with code 0 2175s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2175s Package: * 2175s Pin: release plucky-proposed 2175s Pin-Priority: 100 2175s 2175s Package: src:sphinx:any 2175s Pin: release plucky-proposed 2175s Pin-Priority: 995 2175s 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 [] 2175s autopkgtest: DBG: testbed command exited with code 0 2175s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2175s autopkgtest: DBG: testbed command exited with code 0 2175s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2175s + lsb_release --codename --short 2175s + RELEASE=plucky 2175s + cat 2175s + [ plucky != trusty ] 2175s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2175s Reading package lists... 2176s Building dependency tree... 2176s Reading state information... 2176s Calculating upgrade... 2176s The following packages were automatically installed and are no longer required: 2176s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2176s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2176s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2176s linux-tools-6.11.0-8-generic 2176s Use 'sudo apt autoremove' to remove them. 2176s The following packages will be upgraded: 2176s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 2176s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2176s Need to get 1982 kB of archives. 2176s After this operation, 22.5 kB of additional disk space will be used. 2176s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 2176s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2176s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 2176s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 2176s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 2176s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 2177s Preconfiguring packages ... 2177s Fetched 1982 kB in 1s (3122 kB/s) 2177s (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.) 2177s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 2177s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 2177s Setting up sysvinit-utils (3.14-1ubuntu1) ... 2177s (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.) 2177s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2177s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2177s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 2177s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 2177s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 2177s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2177s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 2177s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2177s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 2177s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 2177s Setting up liblsof0 (4.99.4+dfsg-1) ... 2177s Setting up iproute2 (6.13.0-1ubuntu1) ... 2177s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 2177s Setting up lsof (4.99.4+dfsg-1) ... 2177s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 2177s Processing triggers for man-db (2.13.0-1) ... 2178s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2178s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2178s + /usr/lib/apt/apt-helper analyze-pattern ?true 2178s + uname -r 2178s + sed s/\./\\./g 2178s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2178s + apt list ?obsolete 2178s + tail -n+2 2178s + + grep -v ^linux-.*6\.12\.0-15-generic.* 2178s cut -d/ -f1 2178s + true 2178s + obsolete_pkgs= 2178s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2178s Reading package lists... 2178s Building dependency tree... 2178s Reading state information... 2178s The following packages will be REMOVED: 2178s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2178s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2178s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2178s linux-tools-6.11.0-8-generic* 2178s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2178s After this operation, 167 MB disk space will be freed. 2178s (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.) 2178s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2178s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2178s Removing libpython3.12t64:s390x (3.12.9-1) ... 2178s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2178s Removing libnsl2:s390x (1.3.0-3build3) ... 2178s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2179s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2179s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2179s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2179s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2179s (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.) 2179s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2179s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2180s + grep -q trusty /etc/lsb-release 2180s + [ ! -d /usr/share/doc/unattended-upgrades ] 2180s + [ ! -d /usr/share/doc/lxd ] 2180s + [ ! -d /usr/share/doc/lxd-client ] 2180s + [ ! -d /usr/share/doc/snapd ] 2180s + type iptables 2180s + cat 2180s + chmod 755 /etc/rc.local 2180s + . /etc/rc.local 2180s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2180s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2180s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2180s + uname -m 2180s + [ s390x = ppc64le ] 2180s + [ -d /run/systemd/system ] 2180s + systemd-detect-virt --quiet --vm 2180s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2180s + cat 2180s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2180s + echo COMPRESS=lz4 2180s autopkgtest: DBG: testbed command exited with code 0 2180s autopkgtest [13:05:47]: upgrading testbed (apt dist-upgrade and autopurge) 2180s 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'] 2180s Reading package lists... 2180s Building dependency tree... 2180s Reading state information... 2180s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2180s Starting 2 pkgProblemResolver with broken count: 0 2180s Done 2180s Entering ResolveByKeep 2180s 2181s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2181s autopkgtest: DBG: testbed command exited with code 0 2181s 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'] 2181s Reading package lists... 2181s Building dependency tree... 2181s Reading state information... 2181s Starting pkgProblemResolver with broken count: 0 2181s Starting 2 pkgProblemResolver with broken count: 0 2181s Done 2181s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2181s autopkgtest: DBG: testbed command exited with code 0 2181s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2181s autopkgtest: DBG: testbed command exited with code 1 2181s autopkgtest [13:05:48]: rebooting testbed after setup commands that affected boot 2181s autopkgtest: DBG: sending command to testbed: reboot 2199s autopkgtest: DBG: got reply from testbed: ok 2199s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2199s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2199s autopkgtest: DBG: testbed command exited with code 0 2199s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2200s autopkgtest: DBG: got reply from testbed: ok 2200s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2200s autopkgtest: DBG: testbed command exited with code 0 2200s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2200s autopkgtest: DBG: testbed command exited with code 0 2200s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2200s autopkgtest: DBG: testbed command exited with code 0 2200s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2200s autopkgtest: DBG: testbed command exited with code 0 2200s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2201s autopkgtest: DBG: got reply from testbed: ok 2201s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2201s autopkgtest: DBG: testbed command exited with code 0 2201s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2201s autopkgtest: DBG: testbed command exited with code 0 2201s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2201s autopkgtest: DBG: testbed command exited with code 0 2201s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 2201s autopkgtest: DBG: testbed command exited with code 0 2201s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 2202s autopkgtest: DBG: got reply from testbed: ok 2202s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2202s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2202s autopkgtest: DBG: testbed command exited with code 0 2202s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2202s autopkgtest: DBG: got reply from testbed: ok 2202s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2202s autopkgtest: DBG: testbed command exited with code 0 2202s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2202s autopkgtest: DBG: testbed command exited with code 0 2202s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2202s autopkgtest: DBG: testbed command exited with code 0 2202s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2203s autopkgtest: DBG: testbed command exited with code 0 2203s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2203s autopkgtest: DBG: got reply from testbed: ok 2203s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2203s autopkgtest: DBG: testbed command exited with code 0 2203s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2203s autopkgtest: DBG: testbed command exited with code 0 2203s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2203s autopkgtest: DBG: testbed command exited with code 0 2203s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2203s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qttest', 'python3'] 2203s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qttest, python3 2203s autopkgtest: DBG: can use apt-get on testbed: True 2203s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qttest, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2204s Reading package lists... 2204s Building dependency tree... 2204s Reading state information... 2204s Starting pkgProblemResolver with broken count: 0 2204s Starting 2 pkgProblemResolver with broken count: 0 2204s Done 2204s The following NEW packages will be installed: 2204s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2204s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2204s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2204s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2204s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2204s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2204s libqt5network5t64 libqt5qml5 libqt5test5t64 libqt5widgets5t64 2204s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 2204s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 2204s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 2204s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 2204s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 2204s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 2204s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qttest 2204s python3-pyside2.qtwidgets x11-common 2204s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 2204s Need to get 29.3 MB of archives. 2204s After this operation, 111 MB of additional disk space will be used. 2204s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2205s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2205s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2205s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2205s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2205s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2205s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 2205s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2205s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 2205s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2205s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2205s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2205s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2205s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2205s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2205s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2205s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2205s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2205s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2205s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 2205s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2205s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2205s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2205s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2205s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2205s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2205s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2205s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2205s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2205s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2205s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2205s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2205s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2205s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2205s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2205s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2205s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2205s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2205s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2205s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2206s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2206s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2206s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2206s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2206s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2206s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2206s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2206s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2206s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2206s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2206s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2206s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2206s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2206s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2206s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2206s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2206s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2206s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2206s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2206s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2206s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2206s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2206s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2206s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2207s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5test5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 2207s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 2207s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2207s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2207s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 2207s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qttest s390x 5.15.16-3.1 [63.3 kB] 2207s Fetched 29.3 MB in 3s (9988 kB/s) 2207s Selecting previously unselected package libfreetype6:s390x. 2207s (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.) 2207s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2207s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2208s Selecting previously unselected package fonts-dejavu-mono. 2208s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2208s Unpacking fonts-dejavu-mono (2.37-8) ... 2208s Selecting previously unselected package fonts-dejavu-core. 2208s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2208s Unpacking fonts-dejavu-core (2.37-8) ... 2208s Selecting previously unselected package fontconfig-config. 2208s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2208s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2208s Selecting previously unselected package libfontconfig1:s390x. 2208s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2208s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2208s Selecting previously unselected package fontconfig. 2208s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2208s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2208s Selecting previously unselected package libdouble-conversion3:s390x. 2208s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 2208s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 2208s Selecting previously unselected package libdrm-radeon1:s390x. 2208s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2208s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2208s Selecting previously unselected package libwayland-server0:s390x. 2208s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 2208s Unpacking libwayland-server0:s390x (1.23.1-1) ... 2208s Selecting previously unselected package libglapi-mesa:s390x. 2208s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2208s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2208s Selecting previously unselected package libx11-xcb1:s390x. 2208s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2208s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2208s Selecting previously unselected package libxcb-dri3-0:s390x. 2208s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-present0:s390x. 2208s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-randr0:s390x. 2208s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-sync1:s390x. 2208s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-xfixes0:s390x. 2208s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxshmfence1:s390x. 2208s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2208s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2208s Selecting previously unselected package mesa-libgallium:s390x. 2208s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2208s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2208s Selecting previously unselected package libgbm1:s390x. 2208s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2208s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2208s Selecting previously unselected package libwayland-client0:s390x. 2208s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 2208s Unpacking libwayland-client0:s390x (1.23.1-1) ... 2208s Selecting previously unselected package libxcb-shm0:s390x. 2208s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libegl-mesa0:s390x. 2208s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2208s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2208s Selecting previously unselected package libvulkan1:s390x. 2208s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2208s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2208s Selecting previously unselected package libgl1-mesa-dri:s390x. 2208s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2208s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2208s Selecting previously unselected package libxcb-glx0:s390x. 2208s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxxf86vm1:s390x. 2208s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2208s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2208s Selecting previously unselected package libglx-mesa0:s390x. 2208s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2208s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2208s Selecting previously unselected package libgraphite2-3:s390x. 2208s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2208s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2208s Selecting previously unselected package libharfbuzz0b:s390x. 2208s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2208s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2208s Selecting previously unselected package x11-common. 2208s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2208s Unpacking x11-common (1:7.7+23ubuntu3) ... 2208s Selecting previously unselected package libice6:s390x. 2208s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2208s Unpacking libice6:s390x (2:1.1.1-1) ... 2208s Selecting previously unselected package libwacom-common. 2208s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2208s Unpacking libwacom-common (2.14.0-1) ... 2208s Selecting previously unselected package libwacom9:s390x. 2208s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2208s Unpacking libwacom9:s390x (2.14.0-1) ... 2208s Selecting previously unselected package libinput-bin. 2208s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2208s Unpacking libinput-bin (1.27.1-1) ... 2208s Selecting previously unselected package libmtdev1t64:s390x. 2208s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2208s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2208s Selecting previously unselected package libinput10:s390x. 2208s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2208s Unpacking libinput10:s390x (1.27.1-1) ... 2208s Selecting previously unselected package libjpeg-turbo8:s390x. 2208s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2208s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2208s Selecting previously unselected package libjpeg8:s390x. 2208s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2208s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2208s Selecting previously unselected package libmd4c0:s390x. 2208s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2208s Unpacking libmd4c0:s390x (0.5.2-2) ... 2208s Selecting previously unselected package libpcre2-16-0:s390x. 2208s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2208s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2208s Selecting previously unselected package libqt5core5t64:s390x. 2208s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2208s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2208s Selecting previously unselected package libqt5dbus5t64:s390x. 2208s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2208s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2208s Selecting previously unselected package libqt5network5t64:s390x. 2208s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2208s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2208s Selecting previously unselected package libqt5qml5:s390x. 2208s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2208s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2208s Selecting previously unselected package libshiboken2-py3-5.15t64. 2208s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2208s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2208s Selecting previously unselected package libpyside2-py3-5.15t64. 2208s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2208s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2208s Selecting previously unselected package libglvnd0:s390x. 2208s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2208s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2208s Selecting previously unselected package libegl1:s390x. 2208s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2208s Unpacking libegl1:s390x (1.7.0-1build1) ... 2208s Selecting previously unselected package libglx0:s390x. 2208s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2208s Unpacking libglx0:s390x (1.7.0-1build1) ... 2208s Selecting previously unselected package libgl1:s390x. 2208s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2208s Unpacking libgl1:s390x (1.7.0-1build1) ... 2208s Selecting previously unselected package libsm6:s390x. 2208s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2208s Unpacking libsm6:s390x (2:1.2.4-1) ... 2208s Selecting previously unselected package libxcb-icccm4:s390x. 2208s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2208s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2208s Selecting previously unselected package libxcb-util1:s390x. 2208s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2208s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2208s Selecting previously unselected package libxcb-image0:s390x. 2208s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2208s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2208s Selecting previously unselected package libxcb-keysyms1:s390x. 2208s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2208s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2208s Selecting previously unselected package libxcb-render0:s390x. 2208s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-render-util0:s390x. 2208s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2208s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2208s Selecting previously unselected package libxcb-shape0:s390x. 2208s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-xinerama0:s390x. 2208s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2208s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2208s Selecting previously unselected package libxcb-xinput0:s390x. 2209s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2209s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2209s Selecting previously unselected package libxcb-xkb1:s390x. 2209s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2209s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2209s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2209s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2209s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2209s Selecting previously unselected package libxrender1:s390x. 2209s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2209s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2209s Selecting previously unselected package libqt5gui5t64:s390x. 2209s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2209s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Selecting previously unselected package libqt5test5t64:s390x. 2209s Preparing to unpack .../64-libqt5test5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2209s Unpacking libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Selecting previously unselected package libqt5widgets5t64:s390x. 2209s Preparing to unpack .../65-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2209s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Selecting previously unselected package python3-pyside2.qtcore. 2209s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2209s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2209s Selecting previously unselected package python3-pyside2.qtgui. 2209s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2209s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2209s Selecting previously unselected package python3-pyside2.qtwidgets. 2209s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 2209s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 2209s Selecting previously unselected package python3-pyside2.qttest. 2209s Preparing to unpack .../69-python3-pyside2.qttest_5.15.16-3.1_s390x.deb ... 2209s Unpacking python3-pyside2.qttest (5.15.16-3.1) ... 2209s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2209s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2209s Setting up libwayland-server0:s390x (1.23.1-1) ... 2209s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2209s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 2209s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2209s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2209s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2209s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2209s Setting up libxcb-render0:s390x (1.17.0-2) ... 2209s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2209s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2209s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2209s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2209s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2209s Setting up x11-common (1:7.7+23ubuntu3) ... 2209s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2209s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2209s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2209s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2209s Setting up libxcb-util1:s390x (0.4.1-1) ... 2209s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2209s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2209s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2209s Setting up libxcb-present0:s390x (1.17.0-2) ... 2209s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2209s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2209s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2209s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2209s Setting up fonts-dejavu-mono (2.37-8) ... 2209s Setting up fonts-dejavu-core (2.37-8) ... 2209s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2209s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2209s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2209s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2209s Setting up libxshmfence1:s390x (1.3-1build5) ... 2209s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2209s Setting up libmd4c0:s390x (0.5.2-2) ... 2209s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2209s Setting up libwacom-common (2.14.0-1) ... 2209s Setting up libwayland-client0:s390x (1.23.1-1) ... 2209s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2209s Setting up libice6:s390x (2:1.1.1-1) ... 2209s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2209s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2209s Setting up libwacom9:s390x (2.14.0-1) ... 2209s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2209s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2209s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Setting up libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2209s Setting up libinput-bin (1.27.1-1) ... 2209s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2209s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2209s Setting up libegl1:s390x (1.7.0-1build1) ... 2209s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2209s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2209s Setting up libsm6:s390x (2:1.2.4-1) ... 2209s Setting up libinput10:s390x (1.27.1-1) ... 2209s Setting up fontconfig (2.15.0-2ubuntu1) ... 2211s Regenerating fonts cache... done. 2211s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2211s Setting up libglx0:s390x (1.7.0-1build1) ... 2211s Setting up libgl1:s390x (1.7.0-1build1) ... 2211s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2211s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2211s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2211s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2211s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 2211s Setting up python3-pyside2.qttest (5.15.16-3.1) ... 2211s Processing triggers for man-db (2.13.0-1) ... 2212s Processing triggers for udev (257.2-3ubuntu1) ... 2212s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2212s autopkgtest: DBG: testbed command exited with code 0 2212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qttest'], kind short, sout pipe, serr pipe, env [] 2213s autopkgtest: DBG: testbed command exited with code 0 2213s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command13-packages.all"], kind short, sout raw, serr pipe, env [] 2213s autopkgtest: DBG: testbed command exited with code 0 2213s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command13-packages.all /tmp/autopkgtest-work.fketnn_8/out/command13-packages.all 2213s autopkgtest: DBG: got reply from testbed: ok 2213s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 2213s autopkgtest: DBG: testbed command exited with code 1 2213s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 2213s autopkgtest: DBG: testbed command exited with code 0 2213s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 2220s autopkgtest: DBG: got reply from testbed: ok 2220s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 2221s autopkgtest: DBG: testbed command exited with code 0 2221s autopkgtest [13:06:28]: test command13: debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest 2221s autopkgtest [13:06:28]: test command13: [----------------------- 2221s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command13-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command13-stderr --stdout=/tmp/autopkgtest.SBuPUV/command13-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest'"], kind test, sout raw, serr raw, env [] 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command13-artifacts 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command13-stderr 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command13-stdout 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.y4IQYwHPsv/out to stdout and file: /tmp/autopkgtest.SBuPUV/command13-stdout 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.y4IQYwHPsv/err to standard error and file: /tmp/autopkgtest.SBuPUV/command13-stdout 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2206 to /tmp/autopkgtest_script_pid 2221s Testing python3 package python3-pyside2.qttest 2221s Testing with python3.13: 2221s 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 2221s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 2221s autopkgtest: DBG: testbed command exited with code 0 2221s autopkgtest [13:06:28]: test command13: -----------------------] 2221s autopkgtest: DBG: testbed executing test finished with exit status 0 2221s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command13-stdout /tmp/autopkgtest-work.fketnn_8/out/command13-stdout 2221s autopkgtest: DBG: got reply from testbed: ok 2221s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command13-stderr /tmp/autopkgtest-work.fketnn_8/out/command13-stderr 2221s autopkgtest: DBG: got reply from testbed: ok 2222s autopkgtest [13:06:29]: test command13: - - - - - - - - - - results - - - - - - - - - - 2222s command13 PASS (superficial) 2222s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command13-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 2222s autopkgtest: DBG: got reply from testbed: ok 2222s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command13-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2222s autopkgtest: DBG: testbed command exited with code 0 2222s autopkgtest [13:06:29]: test command15: preparing testbed 2222s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qttest', 'python3'], deps_new=['python3-pyside2.qtconcurrent', 'python3'] 2222s autopkgtest: DBG: testbed reset 2222s autopkgtest: DBG: sending command to testbed: revert 2345s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 2345s autopkgtest: DBG: sending command to testbed: print-execute-command 2345s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 2345s autopkgtest: DBG: sending command to testbed: capabilities 2345s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 2345s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 2345s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2345s autopkgtest: DBG: testbed command exited with code 0 2345s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 2345s autopkgtest: DBG: got reply from testbed: ok 2345s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2345s autopkgtest: DBG: testbed command exited with code 0 2345s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2345s autopkgtest: DBG: testbed command exited with code 0 2345s autopkgtest [13:08:32]: testbed dpkg architecture: s390x 2345s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2346s autopkgtest: DBG: testbed command exited with code 0 2346s autopkgtest [13:08:33]: testbed apt version: 2.9.30 2346s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2346s autopkgtest: DBG: testbed command exited with code 0 2346s autopkgtest: DBG: testbed has eatmydata 2346s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2346s autopkgtest: DBG: testbed command exited with code 0 2346s autopkgtest [13:08:33]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2346s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2346s autopkgtest: DBG: testbed command exited with code 0 2346s autopkgtest [13:08:33]: testbed release detected to be: plucky 2346s 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 [] 2346s autopkgtest: DBG: testbed command exited with code 0 2346s 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 [] 2346s autopkgtest: DBG: testbed command exited with code 0 2346s autopkgtest: DBG: adding APT source: Types: deb deb-src 2346s URIs: http://ftpmaster.internal/ubuntu/ 2346s Suites: plucky-proposed 2346s Components: main restricted universe multiverse 2346s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2346s 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 [] 2347s autopkgtest: DBG: testbed command exited with code 0 2347s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2347s Package: * 2347s Pin: release plucky-proposed 2347s Pin-Priority: 500 2347s 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 [] 2347s autopkgtest: DBG: testbed command exited with code 0 2347s autopkgtest [13:08:34]: updating testbed package index (apt update) 2347s 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'] 2347s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2347s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2347s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2348s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2348s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2348s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 2348s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 2348s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 2348s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 2348s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2348s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 2348s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 2348s Fetched 1711 kB in 1s (1823 kB/s) 2349s Reading package lists... 2349s autopkgtest: DBG: testbed command exited with code 0 2349s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2349s Package: * 2349s Pin: release plucky-proposed 2349s Pin-Priority: 100 2349s 2349s Package: src:sphinx:any 2349s Pin: release plucky-proposed 2349s Pin-Priority: 995 2349s 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 [] 2349s autopkgtest: DBG: testbed command exited with code 0 2349s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2349s autopkgtest: DBG: testbed command exited with code 0 2349s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2349s + lsb_release --codename --short 2349s + RELEASE=plucky 2349s + cat 2349s + [ plucky != trusty ] 2349s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2349s Reading package lists... 2349s Building dependency tree... 2349s Reading state information... 2349s Calculating upgrade... 2350s The following packages were automatically installed and are no longer required: 2350s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2350s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2350s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2350s linux-tools-6.11.0-8-generic 2350s Use 'sudo apt autoremove' to remove them. 2350s The following packages will be upgraded: 2350s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 2350s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2350s Need to get 1982 kB of archives. 2350s After this operation, 22.5 kB of additional disk space will be used. 2350s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 2350s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2350s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 2350s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 2350s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 2350s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 2351s Preconfiguring packages ... 2351s Fetched 1982 kB in 1s (2795 kB/s) 2351s (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.) 2351s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 2351s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 2351s Setting up sysvinit-utils (3.14-1ubuntu1) ... 2351s (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.) 2351s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2351s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2351s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 2351s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 2351s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 2351s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2351s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 2351s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2351s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 2351s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 2351s Setting up liblsof0 (4.99.4+dfsg-1) ... 2351s Setting up iproute2 (6.13.0-1ubuntu1) ... 2351s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 2351s Setting up lsof (4.99.4+dfsg-1) ... 2351s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 2351s Processing triggers for man-db (2.13.0-1) ... 2352s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2352s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2352s + /usr/lib/apt/apt-helper analyze-pattern ?true 2352s + uname+ -r 2352s sed s/\./\\./g 2352s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2352s + apt list ?obsolete 2352s + tail+ -n+2cut -d/ -f1 2352s 2352s + grep -v ^linux-.*6\.12\.0-15-generic.* 2352s + true 2352s + obsolete_pkgs= 2352s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2352s Reading package lists... 2352s Building dependency tree... 2352s Reading state information... 2353s The following packages will be REMOVED: 2353s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2353s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2353s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2353s linux-tools-6.11.0-8-generic* 2353s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2353s After this operation, 167 MB disk space will be freed. 2353s (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.) 2353s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2353s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2353s Removing libpython3.12t64:s390x (3.12.9-1) ... 2353s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2353s Removing libnsl2:s390x (1.3.0-3build3) ... 2353s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2353s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2353s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2355s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2355s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2355s (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.) 2355s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2355s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2355s + grep -q trusty /etc/lsb-release 2355s + [ ! -d /usr/share/doc/unattended-upgrades ] 2355s + [ ! -d /usr/share/doc/lxd ] 2355s + [ ! -d /usr/share/doc/lxd-client ] 2355s + [ ! -d /usr/share/doc/snapd ] 2355s + type iptables 2355s + cat 2355s + chmod 755 /etc/rc.local 2355s + . /etc/rc.local 2355s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2355s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2355s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2355s + uname -m 2355s + [ s390x = ppc64le ] 2355s + [ -d /run/systemd/system ] 2355s + systemd-detect-virt --quiet --vm 2355s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2355s + cat 2355s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2355s + echo COMPRESS=lz4 2355s autopkgtest: DBG: testbed command exited with code 0 2355s autopkgtest [13:08:42]: upgrading testbed (apt dist-upgrade and autopurge) 2355s 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'] 2355s Reading package lists... 2355s Building dependency tree... 2355s Reading state information... 2356s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2356s Starting 2 pkgProblemResolver with broken count: 0 2356s Done 2356s Entering ResolveByKeep 2356s 2356s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2356s autopkgtest: DBG: testbed command exited with code 0 2356s 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'] 2356s Reading package lists... 2357s Building dependency tree... 2357s Reading state information... 2357s Starting pkgProblemResolver with broken count: 0 2357s Starting 2 pkgProblemResolver with broken count: 0 2357s Done 2357s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2357s autopkgtest: DBG: testbed command exited with code 0 2357s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2357s autopkgtest: DBG: testbed command exited with code 1 2357s autopkgtest [13:08:44]: rebooting testbed after setup commands that affected boot 2357s autopkgtest: DBG: sending command to testbed: reboot 2366s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 2376s autopkgtest: DBG: got reply from testbed: ok 2376s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2376s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2376s autopkgtest: DBG: got reply from testbed: ok 2376s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2377s autopkgtest: DBG: testbed command exited with code 0 2377s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2377s autopkgtest: DBG: testbed command exited with code 0 2377s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2377s autopkgtest: DBG: got reply from testbed: ok 2377s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2377s autopkgtest: DBG: testbed command exited with code 0 2377s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2377s autopkgtest: DBG: testbed command exited with code 0 2377s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2377s autopkgtest: DBG: testbed command exited with code 0 2377s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 2378s autopkgtest: DBG: testbed command exited with code 0 2378s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 2378s autopkgtest: DBG: got reply from testbed: ok 2378s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2378s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2378s autopkgtest: DBG: testbed command exited with code 0 2378s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2378s autopkgtest: DBG: got reply from testbed: ok 2378s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2378s autopkgtest: DBG: testbed command exited with code 0 2378s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2378s autopkgtest: DBG: testbed command exited with code 0 2378s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2379s autopkgtest: DBG: testbed command exited with code 0 2379s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2379s autopkgtest: DBG: testbed command exited with code 0 2379s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2379s autopkgtest: DBG: got reply from testbed: ok 2379s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2379s autopkgtest: DBG: testbed command exited with code 0 2379s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2379s autopkgtest: DBG: testbed command exited with code 0 2379s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2379s autopkgtest: DBG: testbed command exited with code 0 2379s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2379s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtconcurrent', 'python3'] 2379s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtconcurrent, python3 2379s autopkgtest: DBG: can use apt-get on testbed: True 2379s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtconcurrent, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2380s Reading package lists... 2380s Building dependency tree... 2380s Reading state information... 2380s Starting pkgProblemResolver with broken count: 0 2380s Starting 2 pkgProblemResolver with broken count: 0 2380s Done 2380s The following NEW packages will be installed: 2380s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 2380s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 2380s python3-pyside2.qtconcurrent python3-pyside2.qtcore 2380s 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded. 2380s Need to get 6543 kB of archives. 2380s After this operation, 22.9 MB of additional disk space will be used. 2380s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 2381s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2381s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2381s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2381s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2381s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2381s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2381s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2381s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2382s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtconcurrent s390x 5.15.16-3.1 [32.6 kB] 2382s Fetched 6543 kB in 1s (5136 kB/s) 2382s Selecting previously unselected package libdouble-conversion3:s390x. 2382s (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.) 2382s Preparing to unpack .../0-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 2382s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 2382s Selecting previously unselected package libpcre2-16-0:s390x. 2382s Preparing to unpack .../1-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2382s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2382s Selecting previously unselected package libqt5core5t64:s390x. 2382s Preparing to unpack .../2-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2382s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2382s Selecting previously unselected package libqt5dbus5t64:s390x. 2382s Preparing to unpack .../3-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2382s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2382s Selecting previously unselected package libqt5network5t64:s390x. 2382s Preparing to unpack .../4-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2382s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2382s Selecting previously unselected package libqt5qml5:s390x. 2382s Preparing to unpack .../5-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2382s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2382s Selecting previously unselected package libshiboken2-py3-5.15t64. 2382s Preparing to unpack .../6-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2382s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2382s Selecting previously unselected package libpyside2-py3-5.15t64. 2382s Preparing to unpack .../7-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2382s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2382s Selecting previously unselected package python3-pyside2.qtcore. 2382s Preparing to unpack .../8-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2382s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2382s Selecting previously unselected package python3-pyside2.qtconcurrent. 2382s Preparing to unpack .../9-python3-pyside2.qtconcurrent_5.15.16-3.1_s390x.deb ... 2382s Unpacking python3-pyside2.qtconcurrent (5.15.16-3.1) ... 2382s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 2382s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2382s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2382s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2382s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2382s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2382s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2382s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2382s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2382s Setting up python3-pyside2.qtconcurrent (5.15.16-3.1) ... 2382s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2383s autopkgtest: DBG: testbed command exited with code 0 2383s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtconcurrent'], kind short, sout pipe, serr pipe, env [] 2383s autopkgtest: DBG: testbed command exited with code 0 2383s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command15-packages.all"], kind short, sout raw, serr pipe, env [] 2383s autopkgtest: DBG: testbed command exited with code 0 2383s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command15-packages.all /tmp/autopkgtest-work.fketnn_8/out/command15-packages.all 2383s autopkgtest: DBG: got reply from testbed: ok 2383s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 2383s autopkgtest: DBG: testbed command exited with code 1 2383s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 2383s autopkgtest: DBG: testbed command exited with code 0 2383s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 2389s autopkgtest: DBG: got reply from testbed: ok 2389s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 2389s autopkgtest: DBG: testbed command exited with code 0 2389s autopkgtest [13:09:16]: test command15: debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent 2389s autopkgtest [13:09:16]: test command15: [----------------------- 2389s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command15-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command15-stderr --stdout=/tmp/autopkgtest.SBuPUV/command15-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent'"], kind test, sout raw, serr raw, env [] 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command15-artifacts 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command15-stderr 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command15-stdout 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.AdZHrVIOxF/out to stdout and file: /tmp/autopkgtest.SBuPUV/command15-stdout 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.AdZHrVIOxF/err to standard error and file: /tmp/autopkgtest.SBuPUV/command15-stdout 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 1297 to /tmp/autopkgtest_script_pid 2389s Testing python3 package python3-pyside2.qtconcurrent 2389s Testing with python3.13: 2389s 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 2389s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 2389s autopkgtest: DBG: testbed command exited with code 0 2390s autopkgtest [13:09:17]: test command15: -----------------------] 2390s autopkgtest: DBG: testbed executing test finished with exit status 0 2390s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command15-stdout /tmp/autopkgtest-work.fketnn_8/out/command15-stdout 2390s autopkgtest: DBG: got reply from testbed: ok 2390s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command15-stderr /tmp/autopkgtest-work.fketnn_8/out/command15-stderr 2390s autopkgtest: DBG: got reply from testbed: ok 2390s command15 PASS (superficial) 2390s autopkgtest [13:09:17]: test command15: - - - - - - - - - - results - - - - - - - - - - 2390s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command15-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 2390s autopkgtest: DBG: got reply from testbed: ok 2390s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command15-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2390s autopkgtest: DBG: testbed command exited with code 0 2390s autopkgtest [13:09:17]: test command16: preparing testbed 2390s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtconcurrent', 'python3'], deps_new=['python3-pyside2.qtxmlpatterns', 'python3'] 2390s autopkgtest: DBG: testbed reset 2390s autopkgtest: DBG: sending command to testbed: revert 2540s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 2540s autopkgtest: DBG: sending command to testbed: print-execute-command 2540s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 2540s autopkgtest: DBG: sending command to testbed: capabilities 2540s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 2540s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 2540s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2540s autopkgtest: DBG: testbed command exited with code 0 2540s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 2540s autopkgtest: DBG: got reply from testbed: ok 2540s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2541s autopkgtest: DBG: testbed command exited with code 0 2541s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2541s autopkgtest: DBG: testbed command exited with code 0 2541s autopkgtest [13:11:48]: testbed dpkg architecture: s390x 2541s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2541s autopkgtest: DBG: testbed command exited with code 0 2541s autopkgtest [13:11:48]: testbed apt version: 2.9.30 2541s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2541s autopkgtest: DBG: testbed command exited with code 0 2541s autopkgtest: DBG: testbed has eatmydata 2541s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2541s autopkgtest: DBG: testbed command exited with code 0 2541s autopkgtest [13:11:48]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2541s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2541s autopkgtest: DBG: testbed command exited with code 0 2541s autopkgtest [13:11:48]: testbed release detected to be: plucky 2541s 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 [] 2542s autopkgtest: DBG: testbed command exited with code 0 2542s 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 [] 2542s autopkgtest: DBG: testbed command exited with code 0 2542s autopkgtest: DBG: adding APT source: Types: deb deb-src 2542s URIs: http://ftpmaster.internal/ubuntu/ 2542s Suites: plucky-proposed 2542s Components: main restricted universe multiverse 2542s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2542s 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 [] 2542s autopkgtest: DBG: testbed command exited with code 0 2542s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2542s Package: * 2542s Pin: release plucky-proposed 2542s Pin-Priority: 500 2542s 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 [] 2542s autopkgtest: DBG: testbed command exited with code 0 2542s autopkgtest [13:11:49]: updating testbed package index (apt update) 2542s 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'] 2542s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2543s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2543s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2543s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2543s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 2543s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 2543s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 2543s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2543s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 2543s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2543s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 2543s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 2543s Fetched 1711 kB in 1s (1917 kB/s) 2544s Reading package lists... 2544s autopkgtest: DBG: testbed command exited with code 0 2544s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2544s Package: * 2544s Pin: release plucky-proposed 2544s Pin-Priority: 100 2544s 2544s Package: src:sphinx:any 2544s Pin: release plucky-proposed 2544s Pin-Priority: 995 2544s 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 [] 2544s autopkgtest: DBG: testbed command exited with code 0 2544s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2544s autopkgtest: DBG: testbed command exited with code 0 2544s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2544s + lsb_release --codename --short 2544s + RELEASE=plucky 2544s + cat 2544s + [ plucky != trusty ] 2544s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2544s Reading package lists... 2544s Building dependency tree... 2544s Reading state information... 2545s Calculating upgrade... 2545s The following packages were automatically installed and are no longer required: 2545s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2545s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2545s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2545s linux-tools-6.11.0-8-generic 2545s Use 'sudo apt autoremove' to remove them. 2545s The following packages will be upgraded: 2545s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 2545s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2545s Need to get 1982 kB of archives. 2545s After this operation, 22.5 kB of additional disk space will be used. 2545s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 2545s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2545s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 2545s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 2545s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 2545s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 2546s Preconfiguring packages ... 2546s Fetched 1982 kB in 1s (3011 kB/s) 2546s (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.) 2546s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 2546s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 2546s Setting up sysvinit-utils (3.14-1ubuntu1) ... 2546s (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.) 2546s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2546s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2546s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 2546s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 2546s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 2546s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2546s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 2546s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2546s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 2546s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 2546s Setting up liblsof0 (4.99.4+dfsg-1) ... 2546s Setting up iproute2 (6.13.0-1ubuntu1) ... 2546s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 2546s Setting up lsof (4.99.4+dfsg-1) ... 2546s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 2546s Processing triggers for man-db (2.13.0-1) ... 2547s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2547s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2547s + /usr/lib/apt/apt-helper analyze-pattern ?true 2547s + + sed s/\./\\./g 2547s uname -r 2547s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2547s + apt list ?obsolete 2547s + tail -n+2 2547s + cut -d/ -f1+ 2547s grep -v ^linux-.*6\.12\.0-15-generic.* 2547s + true 2547s + obsolete_pkgs= 2547s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2547s Reading package lists... 2548s Building dependency tree... 2548s Reading state information... 2548s The following packages will be REMOVED: 2548s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2548s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2548s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2548s linux-tools-6.11.0-8-generic* 2548s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2548s After this operation, 167 MB disk space will be freed. 2548s (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.) 2548s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2548s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2548s Removing libpython3.12t64:s390x (3.12.9-1) ... 2548s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2548s Removing libnsl2:s390x (1.3.0-3build3) ... 2548s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2548s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2548s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2549s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2549s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2549s (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.) 2549s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2549s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2550s + grep -q trusty /etc/lsb-release 2550s + [ ! -d /usr/share/doc/unattended-upgrades ] 2550s + [ ! -d /usr/share/doc/lxd ] 2550s + [ ! -d /usr/share/doc/lxd-client ] 2550s + [ ! -d /usr/share/doc/snapd ] 2550s + type iptables 2550s + cat 2550s + chmod 755 /etc/rc.local 2550s + . /etc/rc.local 2550s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2550s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2550s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2550s + uname -m 2550s + [ s390x = ppc64le ] 2550s + [ -d /run/systemd/system ] 2550s + systemd-detect-virt --quiet --vm 2550s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2550s + cat 2550s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2550s + echo COMPRESS=lz4 2550s autopkgtest: DBG: testbed command exited with code 0 2550s autopkgtest [13:11:57]: upgrading testbed (apt dist-upgrade and autopurge) 2550s 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'] 2550s Reading package lists... 2550s Building dependency tree... 2550s Reading state information... 2550s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2550s Starting 2 pkgProblemResolver with broken count: 0 2550s Done 2550s Entering ResolveByKeep 2550s 2551s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2551s autopkgtest: DBG: testbed command exited with code 0 2551s 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'] 2551s Reading package lists... 2551s Building dependency tree... 2551s Reading state information... 2551s Starting pkgProblemResolver with broken count: 0 2551s Starting 2 pkgProblemResolver with broken count: 0 2551s Done 2552s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2552s autopkgtest: DBG: testbed command exited with code 0 2552s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2552s autopkgtest: DBG: testbed command exited with code 1 2552s autopkgtest [13:11:59]: rebooting testbed after setup commands that affected boot 2552s autopkgtest: DBG: sending command to testbed: reboot 2571s autopkgtest: DBG: got reply from testbed: ok 2571s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2571s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2571s autopkgtest: DBG: testbed command exited with code 0 2571s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2572s autopkgtest: DBG: got reply from testbed: ok 2572s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2572s autopkgtest: DBG: testbed command exited with code 0 2572s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2572s autopkgtest: DBG: testbed command exited with code 0 2572s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2572s autopkgtest: DBG: testbed command exited with code 0 2572s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2572s autopkgtest: DBG: testbed command exited with code 0 2572s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2572s autopkgtest: DBG: got reply from testbed: ok 2572s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2573s autopkgtest: DBG: testbed command exited with code 0 2573s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2573s autopkgtest: DBG: testbed command exited with code 0 2573s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2573s autopkgtest: DBG: testbed command exited with code 0 2573s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 2573s autopkgtest: DBG: testbed command exited with code 0 2573s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 2573s autopkgtest: DBG: got reply from testbed: ok 2573s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2573s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2573s autopkgtest: DBG: testbed command exited with code 0 2573s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2574s autopkgtest: DBG: got reply from testbed: ok 2574s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2574s autopkgtest: DBG: testbed command exited with code 0 2574s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2574s autopkgtest: DBG: testbed command exited with code 0 2574s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2574s autopkgtest: DBG: testbed command exited with code 0 2574s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2574s autopkgtest: DBG: testbed command exited with code 0 2574s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2575s autopkgtest: DBG: got reply from testbed: ok 2575s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2575s autopkgtest: DBG: testbed command exited with code 0 2575s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2575s autopkgtest: DBG: testbed command exited with code 0 2575s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2575s autopkgtest: DBG: testbed command exited with code 0 2575s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2575s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtxmlpatterns', 'python3'] 2575s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtxmlpatterns, python3 2575s autopkgtest: DBG: can use apt-get on testbed: True 2575s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtxmlpatterns, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2575s Reading package lists... 2575s Building dependency tree... 2575s Reading state information... 2576s Starting pkgProblemResolver with broken count: 0 2576s Starting 2 pkgProblemResolver with broken count: 0 2576s Done 2576s The following NEW packages will be installed: 2576s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 2576s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5xmlpatterns5 2576s libshiboken2-py3-5.15t64 python3-pyside2.qtcore 2576s python3-pyside2.qtxmlpatterns 2576s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 2576s Need to get 7515 kB of archives. 2576s After this operation, 26.5 MB of additional disk space will be used. 2576s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 2576s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2576s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2577s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2577s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2577s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2577s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2577s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2577s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xmlpatterns5 s390x 5.15.15-2 [927 kB] 2577s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2577s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtxmlpatterns s390x 5.15.16-3.1 [76.8 kB] 2577s Fetched 7515 kB in 1s (6205 kB/s) 2577s Selecting previously unselected package libdouble-conversion3:s390x. 2578s (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.) 2578s Preparing to unpack .../00-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 2578s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 2578s Selecting previously unselected package libpcre2-16-0:s390x. 2578s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2578s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2578s Selecting previously unselected package libqt5core5t64:s390x. 2578s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2578s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2578s Selecting previously unselected package libqt5dbus5t64:s390x. 2578s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2578s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2578s Selecting previously unselected package libqt5network5t64:s390x. 2578s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2578s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2578s Selecting previously unselected package libqt5qml5:s390x. 2578s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2578s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2578s Selecting previously unselected package libshiboken2-py3-5.15t64. 2578s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2578s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2578s Selecting previously unselected package libpyside2-py3-5.15t64. 2578s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2578s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2578s Selecting previously unselected package libqt5xmlpatterns5:s390x. 2578s Preparing to unpack .../08-libqt5xmlpatterns5_5.15.15-2_s390x.deb ... 2578s Unpacking libqt5xmlpatterns5:s390x (5.15.15-2) ... 2578s Selecting previously unselected package python3-pyside2.qtcore. 2578s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2578s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2578s Selecting previously unselected package python3-pyside2.qtxmlpatterns. 2578s Preparing to unpack .../10-python3-pyside2.qtxmlpatterns_5.15.16-3.1_s390x.deb ... 2578s Unpacking python3-pyside2.qtxmlpatterns (5.15.16-3.1) ... 2578s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 2578s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2578s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2578s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2578s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2578s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2578s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2578s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2578s Setting up libqt5xmlpatterns5:s390x (5.15.15-2) ... 2578s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2578s Setting up python3-pyside2.qtxmlpatterns (5.15.16-3.1) ... 2578s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2578s autopkgtest: DBG: testbed command exited with code 0 2578s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtxmlpatterns'], kind short, sout pipe, serr pipe, env [] 2578s autopkgtest: DBG: testbed command exited with code 0 2578s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command16-packages.all"], kind short, sout raw, serr pipe, env [] 2579s autopkgtest: DBG: testbed command exited with code 0 2579s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command16-packages.all /tmp/autopkgtest-work.fketnn_8/out/command16-packages.all 2579s autopkgtest: DBG: got reply from testbed: ok 2579s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 2579s autopkgtest: DBG: testbed command exited with code 1 2579s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 2579s autopkgtest: DBG: testbed command exited with code 0 2579s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 2582s autopkgtest: DBG: got reply from testbed: ok 2582s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 2582s autopkgtest: DBG: testbed command exited with code 0 2582s autopkgtest [13:12:29]: test command16: debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns 2582s autopkgtest [13:12:29]: test command16: [----------------------- 2582s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command16-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command16-stderr --stdout=/tmp/autopkgtest.SBuPUV/command16-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns'"], kind test, sout raw, serr raw, env [] 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command16-artifacts 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command16-stderr 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command16-stdout 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.TxHSxNSGJ4/out to stdout and file: /tmp/autopkgtest.SBuPUV/command16-stdout 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.TxHSxNSGJ4/err to standard error and file: /tmp/autopkgtest.SBuPUV/command16-stdout 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 1311 to /tmp/autopkgtest_script_pid 2582s Testing python3 package python3-pyside2.qtxmlpatterns 2582s Testing with python3.13: 2582s 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 2582s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 2582s autopkgtest: DBG: testbed command exited with code 0 2583s autopkgtest [13:12:30]: test command16: -----------------------] 2583s autopkgtest: DBG: testbed executing test finished with exit status 0 2583s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command16-stdout /tmp/autopkgtest-work.fketnn_8/out/command16-stdout 2583s autopkgtest: DBG: got reply from testbed: ok 2583s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command16-stderr /tmp/autopkgtest-work.fketnn_8/out/command16-stderr 2583s autopkgtest: DBG: got reply from testbed: ok 2583s command16 PASS (superficial) 2583s autopkgtest [13:12:30]: test command16: - - - - - - - - - - results - - - - - - - - - - 2583s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command16-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 2583s autopkgtest: DBG: got reply from testbed: ok 2583s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command16-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2583s autopkgtest: DBG: testbed command exited with code 0 2583s autopkgtest [13:12:30]: test command17: preparing testbed 2583s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtxmlpatterns', 'python3'], deps_new=['python3-pyside2.qtuitools', 'python3'] 2583s autopkgtest: DBG: testbed reset 2583s autopkgtest: DBG: sending command to testbed: revert 2732s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 2732s autopkgtest: DBG: sending command to testbed: print-execute-command 2732s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 2732s autopkgtest: DBG: sending command to testbed: capabilities 2732s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 2732s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 2732s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2732s autopkgtest: DBG: testbed command exited with code 0 2732s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 2732s autopkgtest: DBG: got reply from testbed: ok 2732s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2732s autopkgtest: DBG: testbed command exited with code 0 2732s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2733s autopkgtest: DBG: testbed command exited with code 0 2733s autopkgtest [13:15:00]: testbed dpkg architecture: s390x 2733s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2733s autopkgtest: DBG: testbed command exited with code 0 2733s autopkgtest [13:15:00]: testbed apt version: 2.9.30 2733s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2733s autopkgtest: DBG: testbed command exited with code 0 2733s autopkgtest: DBG: testbed has eatmydata 2733s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2733s autopkgtest: DBG: testbed command exited with code 0 2733s autopkgtest [13:15:00]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2733s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2733s autopkgtest: DBG: testbed command exited with code 0 2733s autopkgtest [13:15:00]: testbed release detected to be: plucky 2733s 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 [] 2733s autopkgtest: DBG: testbed command exited with code 0 2733s 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 [] 2734s autopkgtest: DBG: testbed command exited with code 0 2734s autopkgtest: DBG: adding APT source: Types: deb deb-src 2734s URIs: http://ftpmaster.internal/ubuntu/ 2734s Suites: plucky-proposed 2734s Components: main restricted universe multiverse 2734s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2734s 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 [] 2734s autopkgtest: DBG: testbed command exited with code 0 2734s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2734s Package: * 2734s Pin: release plucky-proposed 2734s Pin-Priority: 500 2734s 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 [] 2734s autopkgtest: DBG: testbed command exited with code 0 2734s autopkgtest [13:15:01]: updating testbed package index (apt update) 2734s 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'] 2734s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2734s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2735s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2735s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2735s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 2735s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2735s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 2735s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 2735s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 2735s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2735s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 2735s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 2735s Fetched 1711 kB in 1s (1450 kB/s) 2736s Reading package lists... 2736s autopkgtest: DBG: testbed command exited with code 0 2736s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2736s Package: * 2736s Pin: release plucky-proposed 2736s Pin-Priority: 100 2736s 2736s Package: src:sphinx:any 2736s Pin: release plucky-proposed 2736s Pin-Priority: 995 2736s 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 [] 2736s autopkgtest: DBG: testbed command exited with code 0 2736s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2736s autopkgtest: DBG: testbed command exited with code 0 2736s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2736s + lsb_release --codename --short 2736s + RELEASE=plucky 2736s + cat 2736s + [ plucky != trusty ] 2736s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2736s Reading package lists... 2737s Building dependency tree... 2737s Reading state information... 2737s Calculating upgrade... 2737s The following packages were automatically installed and are no longer required: 2737s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2737s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2737s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2737s linux-tools-6.11.0-8-generic 2737s Use 'sudo apt autoremove' to remove them. 2737s The following packages will be upgraded: 2737s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 2737s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2737s Need to get 1982 kB of archives. 2737s After this operation, 22.5 kB of additional disk space will be used. 2737s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 2737s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2738s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 2738s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 2738s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 2738s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 2738s Preconfiguring packages ... 2738s Fetched 1982 kB in 1s (2544 kB/s) 2738s (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.) 2738s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 2738s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 2738s Setting up sysvinit-utils (3.14-1ubuntu1) ... 2738s (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.) 2738s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2738s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2738s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 2738s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 2738s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 2738s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2738s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 2738s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2738s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 2738s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 2738s Setting up liblsof0 (4.99.4+dfsg-1) ... 2738s Setting up iproute2 (6.13.0-1ubuntu1) ... 2739s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 2739s Setting up lsof (4.99.4+dfsg-1) ... 2739s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 2739s Processing triggers for man-db (2.13.0-1) ... 2739s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2739s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2739s + /usr/lib/apt/apt-helper analyze-pattern ?true 2739s + uname -r 2739s + sed s/\./\\./g 2739s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2739s + apt list ?obsolete 2739s + tail -n+2 2739s + grep -v ^linux-.*6\.12\.0-15-generic.* 2739s + cut -d/ -f1 2739s + true 2739s + obsolete_pkgs= 2739s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2740s Reading package lists... 2740s Building dependency tree... 2740s Reading state information... 2740s The following packages will be REMOVED: 2740s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2740s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2740s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2740s linux-tools-6.11.0-8-generic* 2740s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2740s After this operation, 167 MB disk space will be freed. 2740s (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.) 2740s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2740s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2740s Removing libpython3.12t64:s390x (3.12.9-1) ... 2740s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2740s Removing libnsl2:s390x (1.3.0-3build3) ... 2740s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2740s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2740s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2741s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2741s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2741s (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.) 2741s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2741s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2742s + grep -q trusty /etc/lsb-release 2742s + [ ! -d /usr/share/doc/unattended-upgrades ] 2742s + [ ! -d /usr/share/doc/lxd ] 2742s + [ ! -d /usr/share/doc/lxd-client ] 2742s + [ ! -d /usr/share/doc/snapd ] 2742s + type iptables 2742s + cat 2742s + chmod 755 /etc/rc.local 2742s + . /etc/rc.local 2742s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2742s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2742s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2742s + uname -m 2742s + [ s390x = ppc64le ] 2742s + [ -d /run/systemd/system ] 2742s + systemd-detect-virt --quiet --vm 2742s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2742s + cat 2742s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2742s + echo COMPRESS=lz4 2742s autopkgtest: DBG: testbed command exited with code 0 2742s autopkgtest [13:15:09]: upgrading testbed (apt dist-upgrade and autopurge) 2742s 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'] 2742s Reading package lists... 2742s Building dependency tree... 2742s Reading state information... 2742s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2742s Starting 2 pkgProblemResolver with broken count: 0 2742s Done 2742s Entering ResolveByKeep 2742s 2743s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2743s autopkgtest: DBG: testbed command exited with code 0 2743s 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'] 2743s Reading package lists... 2743s Building dependency tree... 2743s Reading state information... 2743s Starting pkgProblemResolver with broken count: 0 2743s Starting 2 pkgProblemResolver with broken count: 0 2743s Done 2743s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2743s autopkgtest: DBG: testbed command exited with code 0 2743s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2743s autopkgtest: DBG: testbed command exited with code 1 2743s autopkgtest [13:15:10]: rebooting testbed after setup commands that affected boot 2743s autopkgtest: DBG: sending command to testbed: reboot 2763s autopkgtest: DBG: got reply from testbed: ok 2763s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2763s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2764s autopkgtest: DBG: testbed command exited with code 0 2764s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2764s autopkgtest: DBG: got reply from testbed: ok 2764s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2764s autopkgtest: DBG: testbed command exited with code 0 2764s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2764s autopkgtest: DBG: testbed command exited with code 0 2764s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2764s autopkgtest: DBG: testbed command exited with code 0 2764s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2764s autopkgtest: DBG: testbed command exited with code 0 2764s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2764s autopkgtest: DBG: got reply from testbed: ok 2764s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2765s autopkgtest: DBG: testbed command exited with code 0 2765s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2765s autopkgtest: DBG: testbed command exited with code 0 2765s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2765s autopkgtest: DBG: testbed command exited with code 0 2765s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 2765s autopkgtest: DBG: testbed command exited with code 0 2765s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 2765s autopkgtest: DBG: got reply from testbed: ok 2765s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2765s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2765s autopkgtest: DBG: testbed command exited with code 0 2765s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2766s autopkgtest: DBG: got reply from testbed: ok 2766s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2766s autopkgtest: DBG: testbed command exited with code 0 2766s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2766s autopkgtest: DBG: testbed command exited with code 0 2766s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2766s autopkgtest: DBG: testbed command exited with code 0 2766s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2766s autopkgtest: DBG: testbed command exited with code 0 2766s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2767s autopkgtest: DBG: got reply from testbed: ok 2767s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2767s autopkgtest: DBG: testbed command exited with code 0 2767s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2767s autopkgtest: DBG: testbed command exited with code 0 2767s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2767s autopkgtest: DBG: testbed command exited with code 0 2767s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2767s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtuitools', 'python3'] 2767s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtuitools, python3 2767s autopkgtest: DBG: can use apt-get on testbed: True 2767s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtuitools, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2767s Reading package lists... 2768s Building dependency tree... 2768s Reading state information... 2768s Starting pkgProblemResolver with broken count: 0 2768s Starting 2 pkgProblemResolver with broken count: 0 2768s Done 2768s The following NEW packages will be installed: 2768s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2768s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2768s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2768s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2768s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2768s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2768s libqt5network5t64 libqt5qml5 libqt5widgets5t64 libqt5xml5t64 2768s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 2768s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 2768s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 2768s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 2768s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 2768s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 2768s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtuitools 2768s python3-pyside2.qtwidgets python3-pyside2.qtxml x11-common 2768s 0 upgraded, 71 newly installed, 0 to remove and 0 not upgraded. 2768s Need to get 29.5 MB of archives. 2768s After this operation, 112 MB of additional disk space will be used. 2768s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2769s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2769s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2769s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2769s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2769s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2769s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 2769s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2769s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 2769s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2769s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2769s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2769s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2769s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2769s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2769s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2769s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2769s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2770s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2770s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 2770s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2770s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2770s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2770s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2770s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2770s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2770s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2770s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2771s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2771s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2771s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2771s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2771s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2771s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2771s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2771s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2771s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2771s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2771s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2771s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2771s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2771s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2771s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2771s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2771s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2771s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2771s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2771s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2771s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2771s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2771s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2771s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2771s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2771s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2771s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2771s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2771s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2771s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2771s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2771s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2771s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2771s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2771s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2771s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2772s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 2772s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-4ubuntu1 [129 kB] 2772s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2772s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2772s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 2772s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtxml s390x 5.15.16-3.1 [121 kB] 2772s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtuitools s390x 5.15.16-3.1 [186 kB] 2772s Fetched 29.5 MB in 4s (7497 kB/s) 2772s Selecting previously unselected package libfreetype6:s390x. 2772s (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.) 2772s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2772s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2772s Selecting previously unselected package fonts-dejavu-mono. 2772s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2772s Unpacking fonts-dejavu-mono (2.37-8) ... 2772s Selecting previously unselected package fonts-dejavu-core. 2772s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2773s Unpacking fonts-dejavu-core (2.37-8) ... 2773s Selecting previously unselected package fontconfig-config. 2773s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2773s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2773s Selecting previously unselected package libfontconfig1:s390x. 2773s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2773s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2773s Selecting previously unselected package fontconfig. 2773s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2773s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2773s Selecting previously unselected package libdouble-conversion3:s390x. 2773s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 2773s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 2773s Selecting previously unselected package libdrm-radeon1:s390x. 2773s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2773s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2773s Selecting previously unselected package libwayland-server0:s390x. 2773s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 2773s Unpacking libwayland-server0:s390x (1.23.1-1) ... 2773s Selecting previously unselected package libglapi-mesa:s390x. 2773s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2773s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2773s Selecting previously unselected package libx11-xcb1:s390x. 2773s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2773s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2773s Selecting previously unselected package libxcb-dri3-0:s390x. 2773s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-present0:s390x. 2773s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-randr0:s390x. 2773s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-sync1:s390x. 2773s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-xfixes0:s390x. 2773s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxshmfence1:s390x. 2773s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2773s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2773s Selecting previously unselected package mesa-libgallium:s390x. 2773s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2773s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2773s Selecting previously unselected package libgbm1:s390x. 2773s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2773s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2773s Selecting previously unselected package libwayland-client0:s390x. 2773s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 2773s Unpacking libwayland-client0:s390x (1.23.1-1) ... 2773s Selecting previously unselected package libxcb-shm0:s390x. 2773s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libegl-mesa0:s390x. 2773s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2773s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2773s Selecting previously unselected package libvulkan1:s390x. 2773s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2773s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2773s Selecting previously unselected package libgl1-mesa-dri:s390x. 2773s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2773s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2773s Selecting previously unselected package libxcb-glx0:s390x. 2773s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxxf86vm1:s390x. 2773s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2773s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2773s Selecting previously unselected package libglx-mesa0:s390x. 2773s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2773s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2773s Selecting previously unselected package libgraphite2-3:s390x. 2773s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2773s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2773s Selecting previously unselected package libharfbuzz0b:s390x. 2773s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2773s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2773s Selecting previously unselected package x11-common. 2773s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2773s Unpacking x11-common (1:7.7+23ubuntu3) ... 2773s Selecting previously unselected package libice6:s390x. 2773s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2773s Unpacking libice6:s390x (2:1.1.1-1) ... 2773s Selecting previously unselected package libwacom-common. 2773s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2773s Unpacking libwacom-common (2.14.0-1) ... 2773s Selecting previously unselected package libwacom9:s390x. 2773s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2773s Unpacking libwacom9:s390x (2.14.0-1) ... 2773s Selecting previously unselected package libinput-bin. 2773s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2773s Unpacking libinput-bin (1.27.1-1) ... 2773s Selecting previously unselected package libmtdev1t64:s390x. 2773s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2773s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2773s Selecting previously unselected package libinput10:s390x. 2773s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2773s Unpacking libinput10:s390x (1.27.1-1) ... 2773s Selecting previously unselected package libjpeg-turbo8:s390x. 2773s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2773s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2773s Selecting previously unselected package libjpeg8:s390x. 2773s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2773s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2773s Selecting previously unselected package libmd4c0:s390x. 2773s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2773s Unpacking libmd4c0:s390x (0.5.2-2) ... 2773s Selecting previously unselected package libpcre2-16-0:s390x. 2773s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2773s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2773s Selecting previously unselected package libqt5core5t64:s390x. 2773s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2773s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2773s Selecting previously unselected package libqt5dbus5t64:s390x. 2773s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2773s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2773s Selecting previously unselected package libqt5network5t64:s390x. 2773s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2773s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2773s Selecting previously unselected package libqt5qml5:s390x. 2773s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2773s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2773s Selecting previously unselected package libshiboken2-py3-5.15t64. 2773s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2773s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2773s Selecting previously unselected package libpyside2-py3-5.15t64. 2773s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2773s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2773s Selecting previously unselected package libglvnd0:s390x. 2773s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2773s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2773s Selecting previously unselected package libegl1:s390x. 2773s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2773s Unpacking libegl1:s390x (1.7.0-1build1) ... 2773s Selecting previously unselected package libglx0:s390x. 2773s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2773s Unpacking libglx0:s390x (1.7.0-1build1) ... 2773s Selecting previously unselected package libgl1:s390x. 2773s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2773s Unpacking libgl1:s390x (1.7.0-1build1) ... 2773s Selecting previously unselected package libsm6:s390x. 2773s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2773s Unpacking libsm6:s390x (2:1.2.4-1) ... 2773s Selecting previously unselected package libxcb-icccm4:s390x. 2773s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2773s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2773s Selecting previously unselected package libxcb-util1:s390x. 2773s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2773s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2773s Selecting previously unselected package libxcb-image0:s390x. 2773s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2773s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2773s Selecting previously unselected package libxcb-keysyms1:s390x. 2773s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2773s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2773s Selecting previously unselected package libxcb-render0:s390x. 2773s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-render-util0:s390x. 2773s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2773s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2773s Selecting previously unselected package libxcb-shape0:s390x. 2773s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-xinerama0:s390x. 2773s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-xinput0:s390x. 2773s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2773s Selecting previously unselected package libxcb-xkb1:s390x. 2773s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2773s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2774s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2774s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2774s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2774s Selecting previously unselected package libxrender1:s390x. 2774s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2774s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2774s Selecting previously unselected package libqt5gui5t64:s390x. 2774s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2774s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Selecting previously unselected package libqt5widgets5t64:s390x. 2774s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2774s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Selecting previously unselected package libqt5xml5t64:s390x. 2774s Preparing to unpack .../65-libqt5xml5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2774s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Selecting previously unselected package python3-pyside2.qtcore. 2774s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2774s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2774s Selecting previously unselected package python3-pyside2.qtgui. 2774s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2774s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2774s Selecting previously unselected package python3-pyside2.qtwidgets. 2774s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 2774s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 2774s Selecting previously unselected package python3-pyside2.qtxml. 2774s Preparing to unpack .../69-python3-pyside2.qtxml_5.15.16-3.1_s390x.deb ... 2774s Unpacking python3-pyside2.qtxml (5.15.16-3.1) ... 2774s Selecting previously unselected package python3-pyside2.qtuitools. 2774s Preparing to unpack .../70-python3-pyside2.qtuitools_5.15.16-3.1_s390x.deb ... 2774s Unpacking python3-pyside2.qtuitools (5.15.16-3.1) ... 2774s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2774s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2774s Setting up libwayland-server0:s390x (1.23.1-1) ... 2774s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2774s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 2774s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2774s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2774s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2774s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2774s Setting up libxcb-render0:s390x (1.17.0-2) ... 2774s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2774s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2774s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2774s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2774s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2774s Setting up x11-common (1:7.7+23ubuntu3) ... 2774s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2774s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2774s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2774s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2774s Setting up libxcb-util1:s390x (0.4.1-1) ... 2774s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2774s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2774s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2774s Setting up libxcb-present0:s390x (1.17.0-2) ... 2774s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2774s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2774s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2774s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2774s Setting up fonts-dejavu-mono (2.37-8) ... 2774s Setting up fonts-dejavu-core (2.37-8) ... 2774s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2774s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2774s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2774s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2774s Setting up libxshmfence1:s390x (1.3-1build5) ... 2774s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2774s Setting up libmd4c0:s390x (0.5.2-2) ... 2774s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2774s Setting up libwacom-common (2.14.0-1) ... 2774s Setting up libwayland-client0:s390x (1.23.1-1) ... 2774s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2774s Setting up libice6:s390x (2:1.1.1-1) ... 2774s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2774s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2774s Setting up libwacom9:s390x (2.14.0-1) ... 2774s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2774s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2774s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2774s Setting up libinput-bin (1.27.1-1) ... 2774s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2774s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2774s Setting up libegl1:s390x (1.7.0-1build1) ... 2774s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2774s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2774s Setting up libsm6:s390x (2:1.2.4-1) ... 2774s Setting up libinput10:s390x (1.27.1-1) ... 2774s Setting up fontconfig (2.15.0-2ubuntu1) ... 2776s Regenerating fonts cache... done. 2776s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2776s Setting up libglx0:s390x (1.7.0-1build1) ... 2776s Setting up libgl1:s390x (1.7.0-1build1) ... 2776s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2776s Setting up python3-pyside2.qtxml (5.15.16-3.1) ... 2776s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2776s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2776s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2776s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 2776s Setting up python3-pyside2.qtuitools (5.15.16-3.1) ... 2776s Processing triggers for man-db (2.13.0-1) ... 2777s Processing triggers for udev (257.2-3ubuntu1) ... 2777s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2778s autopkgtest: DBG: testbed command exited with code 0 2778s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtuitools'], kind short, sout pipe, serr pipe, env [] 2778s autopkgtest: DBG: testbed command exited with code 0 2778s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command17-packages.all"], kind short, sout raw, serr pipe, env [] 2778s autopkgtest: DBG: testbed command exited with code 0 2778s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command17-packages.all /tmp/autopkgtest-work.fketnn_8/out/command17-packages.all 2778s autopkgtest: DBG: got reply from testbed: ok 2778s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 2778s autopkgtest: DBG: testbed command exited with code 1 2778s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 2778s autopkgtest: DBG: testbed command exited with code 0 2778s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 2792s autopkgtest: DBG: got reply from testbed: ok 2792s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 2792s autopkgtest: DBG: testbed command exited with code 0 2792s autopkgtest [13:15:59]: test command17: debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools 2792s autopkgtest [13:15:59]: test command17: [----------------------- 2792s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command17-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command17-stderr --stdout=/tmp/autopkgtest.SBuPUV/command17-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools'"], kind test, sout raw, serr raw, env [] 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command17-artifacts 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command17-stderr 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command17-stdout 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.mGxmutLqxZ/out to stdout and file: /tmp/autopkgtest.SBuPUV/command17-stdout 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.mGxmutLqxZ/err to standard error and file: /tmp/autopkgtest.SBuPUV/command17-stdout 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2219 to /tmp/autopkgtest_script_pid 2792s Testing python3 package python3-pyside2.qtuitools 2792s Testing with python3.13: 2792s 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 2792s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 2792s autopkgtest: DBG: testbed command exited with code 0 2792s autopkgtest [13:15:59]: test command17: -----------------------] 2792s autopkgtest: DBG: testbed executing test finished with exit status 0 2792s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command17-stdout /tmp/autopkgtest-work.fketnn_8/out/command17-stdout 2793s autopkgtest: DBG: got reply from testbed: ok 2793s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command17-stderr /tmp/autopkgtest-work.fketnn_8/out/command17-stderr 2793s autopkgtest: DBG: got reply from testbed: ok 2793s autopkgtest [13:16:00]: test command17: - - - - - - - - - - results - - - - - - - - - - 2793s command17 PASS (superficial) 2793s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command17-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 2793s autopkgtest: DBG: got reply from testbed: ok 2793s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command17-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2793s autopkgtest: DBG: testbed command exited with code 0 2793s autopkgtest [13:16:00]: test command18: preparing testbed 2793s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtuitools', 'python3'], deps_new=['python3-pyside2.qtopengl', 'python3'] 2793s autopkgtest: DBG: testbed reset 2793s autopkgtest: DBG: sending command to testbed: revert 2912s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 2912s autopkgtest: DBG: sending command to testbed: print-execute-command 2912s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 2912s autopkgtest: DBG: sending command to testbed: capabilities 2912s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 2912s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 2912s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2913s autopkgtest: DBG: testbed command exited with code 0 2913s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 2913s autopkgtest: DBG: got reply from testbed: ok 2913s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2913s autopkgtest: DBG: testbed command exited with code 0 2913s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2913s autopkgtest: DBG: testbed command exited with code 0 2913s autopkgtest [13:18:00]: testbed dpkg architecture: s390x 2913s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2913s autopkgtest: DBG: testbed command exited with code 0 2913s autopkgtest [13:18:00]: testbed apt version: 2.9.30 2913s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s autopkgtest: DBG: testbed has eatmydata 2914s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s autopkgtest [13:18:01]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2914s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s autopkgtest [13:18:01]: testbed release detected to be: plucky 2914s 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 [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s 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 [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s autopkgtest: DBG: adding APT source: Types: deb deb-src 2914s URIs: http://ftpmaster.internal/ubuntu/ 2914s Suites: plucky-proposed 2914s Components: main restricted universe multiverse 2914s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2914s 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 [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2914s Package: * 2914s Pin: release plucky-proposed 2914s Pin-Priority: 500 2914s 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 [] 2914s autopkgtest: DBG: testbed command exited with code 0 2914s autopkgtest [13:18:01]: updating testbed package index (apt update) 2914s 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'] 2915s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2915s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2915s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2915s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2915s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 2915s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 2915s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2915s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 2915s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 2915s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2915s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 2916s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 2916s Fetched 1711 kB in 1s (1769 kB/s) 2916s Reading package lists... 2916s autopkgtest: DBG: testbed command exited with code 0 2916s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2916s Package: * 2916s Pin: release plucky-proposed 2916s Pin-Priority: 100 2916s 2916s Package: src:sphinx:any 2916s Pin: release plucky-proposed 2916s Pin-Priority: 995 2916s 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 [] 2916s autopkgtest: DBG: testbed command exited with code 0 2916s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2917s autopkgtest: DBG: testbed command exited with code 0 2917s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 2917s + lsb_release --codename --short 2917s + RELEASE=plucky 2917s + cat 2917s + [ plucky != trusty ] 2917s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2917s Reading package lists... 2917s Building dependency tree... 2917s Reading state information... 2917s Calculating upgrade... 2917s The following packages were automatically installed and are no longer required: 2917s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2917s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2917s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2917s linux-tools-6.11.0-8-generic 2917s Use 'sudo apt autoremove' to remove them. 2917s The following packages will be upgraded: 2917s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 2917s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2917s Need to get 1982 kB of archives. 2917s After this operation, 22.5 kB of additional disk space will be used. 2917s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 2917s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 2918s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 2918s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 2918s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 2918s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 2919s Preconfiguring packages ... 2919s Fetched 1982 kB in 1s (2155 kB/s) 2919s (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.) 2919s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 2919s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 2919s Setting up sysvinit-utils (3.14-1ubuntu1) ... 2919s (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.) 2919s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 2919s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 2919s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 2919s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 2919s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 2919s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2919s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 2919s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 2919s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 2919s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 2919s Setting up liblsof0 (4.99.4+dfsg-1) ... 2919s Setting up iproute2 (6.13.0-1ubuntu1) ... 2919s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 2919s Setting up lsof (4.99.4+dfsg-1) ... 2919s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 2919s Processing triggers for man-db (2.13.0-1) ... 2920s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2920s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2920s + /usr/lib/apt/apt-helper analyze-pattern ?true 2920s + uname -r 2920s + sed s/\./\\./g 2920s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2920s + + tail -n+2 2920s + grep -v ^linux-.*6\.12\.0-15-generic.* 2920s apt list ?obsolete 2920s + cut -d/ -f1 2920s + true 2920s + obsolete_pkgs= 2920s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2920s Reading package lists... 2920s Building dependency tree... 2920s Reading state information... 2920s The following packages will be REMOVED: 2920s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2920s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2920s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2920s linux-tools-6.11.0-8-generic* 2921s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2921s After this operation, 167 MB disk space will be freed. 2921s (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.) 2921s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2921s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2921s Removing libpython3.12t64:s390x (3.12.9-1) ... 2921s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2921s Removing libnsl2:s390x (1.3.0-3build3) ... 2921s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2921s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2921s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2922s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2922s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2922s (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.) 2922s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2922s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2922s + grep -q trusty /etc/lsb-release 2922s + [ ! -d /usr/share/doc/unattended-upgrades ] 2922s + [ ! -d /usr/share/doc/lxd ] 2922s + [ ! -d /usr/share/doc/lxd-client ] 2922s + [ ! -d /usr/share/doc/snapd ] 2922s + type iptables 2922s + cat 2922s + chmod 755 /etc/rc.local 2922s + . /etc/rc.local 2922s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2922s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2922s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2922s + uname -m 2922s + [ s390x = ppc64le ] 2922s + [ -d /run/systemd/system ] 2922s + systemd-detect-virt --quiet --vm 2922s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2922s + cat 2922s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2922s + echo COMPRESS=lz4 2922s autopkgtest: DBG: testbed command exited with code 0 2922s autopkgtest [13:18:09]: upgrading testbed (apt dist-upgrade and autopurge) 2922s 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'] 2922s Reading package lists... 2922s Building dependency tree... 2922s Reading state information... 2923s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2923s Starting 2 pkgProblemResolver with broken count: 0 2923s Done 2923s Entering ResolveByKeep 2923s 2923s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2923s autopkgtest: DBG: testbed command exited with code 0 2923s 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'] 2923s Reading package lists... 2923s Building dependency tree... 2923s Reading state information... 2924s Starting pkgProblemResolver with broken count: 0 2924s Starting 2 pkgProblemResolver with broken count: 0 2924s Done 2924s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2924s autopkgtest: DBG: testbed command exited with code 0 2924s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2924s autopkgtest: DBG: testbed command exited with code 1 2924s autopkgtest [13:18:11]: rebooting testbed after setup commands that affected boot 2924s autopkgtest: DBG: sending command to testbed: reboot 2943s autopkgtest: DBG: got reply from testbed: ok 2943s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2943s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2943s autopkgtest: DBG: testbed command exited with code 0 2943s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2943s autopkgtest: DBG: got reply from testbed: ok 2943s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2943s autopkgtest: DBG: testbed command exited with code 0 2943s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2943s autopkgtest: DBG: testbed command exited with code 0 2943s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2944s autopkgtest: DBG: testbed command exited with code 0 2944s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2944s autopkgtest: DBG: testbed command exited with code 0 2944s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2944s autopkgtest: DBG: got reply from testbed: ok 2944s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2944s autopkgtest: DBG: testbed command exited with code 0 2944s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2944s autopkgtest: DBG: testbed command exited with code 0 2944s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2944s autopkgtest: DBG: testbed command exited with code 0 2944s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 2944s autopkgtest: DBG: testbed command exited with code 0 2944s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 2945s autopkgtest: DBG: got reply from testbed: ok 2945s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2945s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2945s autopkgtest: DBG: testbed command exited with code 0 2945s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 2945s autopkgtest: DBG: got reply from testbed: ok 2945s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2945s autopkgtest: DBG: testbed command exited with code 0 2945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2946s autopkgtest: DBG: testbed command exited with code 0 2946s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2946s autopkgtest: DBG: testbed command exited with code 0 2946s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 2946s autopkgtest: DBG: testbed command exited with code 0 2946s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 2946s autopkgtest: DBG: got reply from testbed: ok 2946s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2946s autopkgtest: DBG: testbed command exited with code 0 2946s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2947s autopkgtest: DBG: testbed command exited with code 0 2947s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2947s autopkgtest: DBG: testbed command exited with code 0 2947s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2947s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtopengl', 'python3'] 2947s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtopengl, python3 2947s autopkgtest: DBG: can use apt-get on testbed: True 2947s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtopengl, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 2947s Reading package lists... 2947s Building dependency tree... 2947s Reading state information... 2947s Starting pkgProblemResolver with broken count: 0 2947s Starting 2 pkgProblemResolver with broken count: 0 2947s Done 2948s The following NEW packages will be installed: 2948s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2948s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2948s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2948s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2948s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2948s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2948s libqt5network5t64 libqt5opengl5t64 libqt5qml5 libqt5widgets5t64 2948s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 2948s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 2948s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 2948s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 2948s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 2948s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 2948s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtopengl 2948s python3-pyside2.qtwidgets x11-common 2948s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 2948s Need to get 29.3 MB of archives. 2948s After this operation, 112 MB of additional disk space will be used. 2948s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2948s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2948s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2949s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2949s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2949s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2949s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 2949s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2949s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 2949s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2949s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2949s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2949s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2949s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2949s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2949s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2949s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2949s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2950s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2950s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 2950s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2950s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2950s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2950s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2950s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2950s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2950s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2950s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2950s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2950s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2950s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2950s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2950s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2950s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2950s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2950s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2950s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2950s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2950s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2950s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2950s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2950s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2950s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2950s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2950s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2950s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2950s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2950s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2950s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2950s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2950s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2950s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2950s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2950s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2950s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2950s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2950s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2950s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2950s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2950s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2950s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2950s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2950s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2951s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2951s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 2951s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5opengl5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 2951s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2951s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2951s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 2951s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtopengl s390x 5.15.16-3.1 [120 kB] 2951s Fetched 29.3 MB in 3s (8417 kB/s) 2952s Selecting previously unselected package libfreetype6:s390x. 2952s (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.) 2952s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2952s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2952s Selecting previously unselected package fonts-dejavu-mono. 2952s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2952s Unpacking fonts-dejavu-mono (2.37-8) ... 2952s Selecting previously unselected package fonts-dejavu-core. 2952s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2952s Unpacking fonts-dejavu-core (2.37-8) ... 2952s Selecting previously unselected package fontconfig-config. 2952s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2952s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2952s Selecting previously unselected package libfontconfig1:s390x. 2952s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2952s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2952s Selecting previously unselected package fontconfig. 2952s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2952s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2952s Selecting previously unselected package libdouble-conversion3:s390x. 2952s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 2952s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 2952s Selecting previously unselected package libdrm-radeon1:s390x. 2952s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2952s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2952s Selecting previously unselected package libwayland-server0:s390x. 2952s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 2952s Unpacking libwayland-server0:s390x (1.23.1-1) ... 2952s Selecting previously unselected package libglapi-mesa:s390x. 2952s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2952s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2952s Selecting previously unselected package libx11-xcb1:s390x. 2952s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2952s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2952s Selecting previously unselected package libxcb-dri3-0:s390x. 2952s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libxcb-present0:s390x. 2952s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libxcb-randr0:s390x. 2952s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libxcb-sync1:s390x. 2952s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libxcb-xfixes0:s390x. 2952s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libxshmfence1:s390x. 2952s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2952s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2952s Selecting previously unselected package mesa-libgallium:s390x. 2952s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2952s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2952s Selecting previously unselected package libgbm1:s390x. 2952s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2952s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2952s Selecting previously unselected package libwayland-client0:s390x. 2952s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 2952s Unpacking libwayland-client0:s390x (1.23.1-1) ... 2952s Selecting previously unselected package libxcb-shm0:s390x. 2952s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libegl-mesa0:s390x. 2952s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2952s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2952s Selecting previously unselected package libvulkan1:s390x. 2952s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2952s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2952s Selecting previously unselected package libgl1-mesa-dri:s390x. 2952s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2952s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2952s Selecting previously unselected package libxcb-glx0:s390x. 2952s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2952s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2952s Selecting previously unselected package libxxf86vm1:s390x. 2952s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2952s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2952s Selecting previously unselected package libglx-mesa0:s390x. 2952s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2952s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2952s Selecting previously unselected package libgraphite2-3:s390x. 2952s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2952s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2952s Selecting previously unselected package libharfbuzz0b:s390x. 2952s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2952s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2952s Selecting previously unselected package x11-common. 2952s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2952s Unpacking x11-common (1:7.7+23ubuntu3) ... 2952s Selecting previously unselected package libice6:s390x. 2952s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2952s Unpacking libice6:s390x (2:1.1.1-1) ... 2952s Selecting previously unselected package libwacom-common. 2952s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2952s Unpacking libwacom-common (2.14.0-1) ... 2952s Selecting previously unselected package libwacom9:s390x. 2952s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2952s Unpacking libwacom9:s390x (2.14.0-1) ... 2952s Selecting previously unselected package libinput-bin. 2952s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2952s Unpacking libinput-bin (1.27.1-1) ... 2952s Selecting previously unselected package libmtdev1t64:s390x. 2952s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2952s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2952s Selecting previously unselected package libinput10:s390x. 2952s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2952s Unpacking libinput10:s390x (1.27.1-1) ... 2952s Selecting previously unselected package libjpeg-turbo8:s390x. 2952s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2952s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2952s Selecting previously unselected package libjpeg8:s390x. 2952s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2952s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2952s Selecting previously unselected package libmd4c0:s390x. 2952s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2952s Unpacking libmd4c0:s390x (0.5.2-2) ... 2952s Selecting previously unselected package libpcre2-16-0:s390x. 2952s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2952s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2952s Selecting previously unselected package libqt5core5t64:s390x. 2952s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2952s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2952s Selecting previously unselected package libqt5dbus5t64:s390x. 2952s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2952s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2953s Selecting previously unselected package libqt5network5t64:s390x. 2953s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2953s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2953s Selecting previously unselected package libqt5qml5:s390x. 2953s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2953s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2953s Selecting previously unselected package libshiboken2-py3-5.15t64. 2953s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2953s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2953s Selecting previously unselected package libpyside2-py3-5.15t64. 2953s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2953s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2953s Selecting previously unselected package libglvnd0:s390x. 2953s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2953s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2953s Selecting previously unselected package libegl1:s390x. 2953s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2953s Unpacking libegl1:s390x (1.7.0-1build1) ... 2953s Selecting previously unselected package libglx0:s390x. 2953s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2953s Unpacking libglx0:s390x (1.7.0-1build1) ... 2953s Selecting previously unselected package libgl1:s390x. 2953s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2953s Unpacking libgl1:s390x (1.7.0-1build1) ... 2953s Selecting previously unselected package libsm6:s390x. 2953s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2953s Unpacking libsm6:s390x (2:1.2.4-1) ... 2953s Selecting previously unselected package libxcb-icccm4:s390x. 2953s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2953s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2953s Selecting previously unselected package libxcb-util1:s390x. 2953s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2953s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2953s Selecting previously unselected package libxcb-image0:s390x. 2953s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2953s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2953s Selecting previously unselected package libxcb-keysyms1:s390x. 2953s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2953s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2953s Selecting previously unselected package libxcb-render0:s390x. 2953s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2953s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2953s Selecting previously unselected package libxcb-render-util0:s390x. 2953s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2953s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2953s Selecting previously unselected package libxcb-shape0:s390x. 2953s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2953s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2953s Selecting previously unselected package libxcb-xinerama0:s390x. 2953s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2953s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2953s Selecting previously unselected package libxcb-xinput0:s390x. 2953s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2953s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2953s Selecting previously unselected package libxcb-xkb1:s390x. 2953s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2953s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2953s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2953s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2953s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2953s Selecting previously unselected package libxrender1:s390x. 2953s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2953s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2953s Selecting previously unselected package libqt5gui5t64:s390x. 2953s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2953s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2953s Selecting previously unselected package libqt5widgets5t64:s390x. 2953s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2953s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2953s Selecting previously unselected package libqt5opengl5t64:s390x. 2953s Preparing to unpack .../65-libqt5opengl5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2953s Unpacking libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2953s Selecting previously unselected package python3-pyside2.qtcore. 2953s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2953s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2953s Selecting previously unselected package python3-pyside2.qtgui. 2953s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2953s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2953s Selecting previously unselected package python3-pyside2.qtwidgets. 2953s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 2953s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 2953s Selecting previously unselected package python3-pyside2.qtopengl. 2953s Preparing to unpack .../69-python3-pyside2.qtopengl_5.15.16-3.1_s390x.deb ... 2953s Unpacking python3-pyside2.qtopengl (5.15.16-3.1) ... 2953s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2953s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2953s Setting up libwayland-server0:s390x (1.23.1-1) ... 2953s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2953s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 2953s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2953s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2953s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2953s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2953s Setting up libxcb-render0:s390x (1.17.0-2) ... 2953s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2953s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2953s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2953s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2953s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2953s Setting up x11-common (1:7.7+23ubuntu3) ... 2953s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2953s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2953s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2953s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2953s Setting up libxcb-util1:s390x (0.4.1-1) ... 2953s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2953s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2953s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2953s Setting up libxcb-present0:s390x (1.17.0-2) ... 2953s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2953s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2953s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2954s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2954s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2954s Setting up fonts-dejavu-mono (2.37-8) ... 2954s Setting up fonts-dejavu-core (2.37-8) ... 2954s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2954s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2954s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2954s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2954s Setting up libxshmfence1:s390x (1.3-1build5) ... 2954s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2954s Setting up libmd4c0:s390x (0.5.2-2) ... 2954s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2954s Setting up libwacom-common (2.14.0-1) ... 2954s Setting up libwayland-client0:s390x (1.23.1-1) ... 2954s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2954s Setting up libice6:s390x (2:1.1.1-1) ... 2954s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2954s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2954s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2954s Setting up libwacom9:s390x (2.14.0-1) ... 2954s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2954s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2954s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2954s Setting up libinput-bin (1.27.1-1) ... 2954s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2954s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2954s Setting up libegl1:s390x (1.7.0-1build1) ... 2954s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2954s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2954s Setting up libsm6:s390x (2:1.2.4-1) ... 2954s Setting up libinput10:s390x (1.27.1-1) ... 2954s Setting up fontconfig (2.15.0-2ubuntu1) ... 2956s Regenerating fonts cache... done. 2956s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2956s Setting up libglx0:s390x (1.7.0-1build1) ... 2956s Setting up libgl1:s390x (1.7.0-1build1) ... 2956s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2956s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2956s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2956s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2956s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 2956s Setting up libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2956s Setting up python3-pyside2.qtopengl (5.15.16-3.1) ... 2956s Processing triggers for man-db (2.13.0-1) ... 2956s Processing triggers for udev (257.2-3ubuntu1) ... 2957s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2957s autopkgtest: DBG: testbed command exited with code 0 2957s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtopengl'], kind short, sout pipe, serr pipe, env [] 2957s autopkgtest: DBG: testbed command exited with code 0 2957s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command18-packages.all"], kind short, sout raw, serr pipe, env [] 2957s autopkgtest: DBG: testbed command exited with code 0 2957s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command18-packages.all /tmp/autopkgtest-work.fketnn_8/out/command18-packages.all 2957s autopkgtest: DBG: got reply from testbed: ok 2957s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 2958s autopkgtest: DBG: testbed command exited with code 1 2958s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 2958s autopkgtest: DBG: testbed command exited with code 0 2958s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 2962s autopkgtest: DBG: got reply from testbed: ok 2962s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 2962s autopkgtest: DBG: testbed command exited with code 0 2962s autopkgtest [13:18:49]: test command18: debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL 2962s autopkgtest [13:18:49]: test command18: [----------------------- 2962s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command18-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command18-stderr --stdout=/tmp/autopkgtest.SBuPUV/command18-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL'"], kind test, sout raw, serr raw, env [] 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command18-artifacts 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command18-stderr 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command18-stdout 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.hT8o8BweEa/out to stdout and file: /tmp/autopkgtest.SBuPUV/command18-stdout 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.hT8o8BweEa/err to standard error and file: /tmp/autopkgtest.SBuPUV/command18-stdout 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2209 to /tmp/autopkgtest_script_pid 2962s Testing python3 package python3-pyside2.qtopengl 2962s Testing with python3.13: 2962s 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 2962s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 2962s autopkgtest: DBG: testbed command exited with code 0 2962s autopkgtest [13:18:49]: test command18: -----------------------] 2962s autopkgtest: DBG: testbed executing test finished with exit status 0 2962s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command18-stdout /tmp/autopkgtest-work.fketnn_8/out/command18-stdout 2963s autopkgtest: DBG: got reply from testbed: ok 2963s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command18-stderr /tmp/autopkgtest-work.fketnn_8/out/command18-stderr 2963s autopkgtest: DBG: got reply from testbed: ok 2963s command18 PASS (superficial) 2963s autopkgtest [13:18:50]: test command18: - - - - - - - - - - results - - - - - - - - - - 2963s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command18-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 2963s autopkgtest: DBG: got reply from testbed: ok 2963s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command18-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2963s autopkgtest: DBG: testbed command exited with code 0 2963s autopkgtest [13:18:50]: test command19: preparing testbed 2963s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtopengl', 'python3'], deps_new=['python3-pyside2.qtsql', 'python3'] 2963s autopkgtest: DBG: testbed reset 2963s autopkgtest: DBG: sending command to testbed: revert 3088s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 3088s autopkgtest: DBG: sending command to testbed: print-execute-command 3088s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 3088s autopkgtest: DBG: sending command to testbed: capabilities 3088s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 3088s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 3088s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3088s autopkgtest: DBG: testbed command exited with code 0 3088s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 3088s autopkgtest: DBG: got reply from testbed: ok 3088s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3088s autopkgtest: DBG: testbed command exited with code 0 3088s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3089s autopkgtest: DBG: testbed command exited with code 0 3089s autopkgtest [13:20:56]: testbed dpkg architecture: s390x 3089s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3089s autopkgtest: DBG: testbed command exited with code 0 3089s autopkgtest [13:20:56]: testbed apt version: 2.9.30 3089s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3089s autopkgtest: DBG: testbed command exited with code 0 3089s autopkgtest: DBG: testbed has eatmydata 3089s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3089s autopkgtest: DBG: testbed command exited with code 0 3089s autopkgtest [13:20:56]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3089s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 3089s autopkgtest: DBG: testbed command exited with code 0 3089s autopkgtest [13:20:56]: testbed release detected to be: plucky 3089s 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 [] 3089s autopkgtest: DBG: testbed command exited with code 0 3089s 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 [] 3090s autopkgtest: DBG: testbed command exited with code 0 3090s autopkgtest: DBG: adding APT source: Types: deb deb-src 3090s URIs: http://ftpmaster.internal/ubuntu/ 3090s Suites: plucky-proposed 3090s Components: main restricted universe multiverse 3090s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3090s 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 [] 3090s autopkgtest: DBG: testbed command exited with code 0 3090s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3090s Package: * 3090s Pin: release plucky-proposed 3090s Pin-Priority: 500 3090s 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 [] 3090s autopkgtest: DBG: testbed command exited with code 0 3090s autopkgtest [13:20:57]: updating testbed package index (apt update) 3090s 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'] 3090s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3090s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3091s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3091s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3091s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 3091s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 3091s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3091s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 3091s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 3091s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3091s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 3091s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 3091s Fetched 1711 kB in 1s (1835 kB/s) 3092s Reading package lists... 3092s autopkgtest: DBG: testbed command exited with code 0 3092s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3092s Package: * 3092s Pin: release plucky-proposed 3092s Pin-Priority: 100 3092s 3092s Package: src:sphinx:any 3092s Pin: release plucky-proposed 3092s Pin-Priority: 995 3092s 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 [] 3092s autopkgtest: DBG: testbed command exited with code 0 3092s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3092s autopkgtest: DBG: testbed command exited with code 0 3092s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 3092s + lsb_release --codename --short 3092s + RELEASE=plucky 3092s + cat 3092s + [ plucky != trusty ] 3092s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3092s Reading package lists... 3092s Building dependency tree... 3092s Reading state information... 3092s Calculating upgrade... 3093s The following packages were automatically installed and are no longer required: 3093s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3093s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3093s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3093s linux-tools-6.11.0-8-generic 3093s Use 'sudo apt autoremove' to remove them. 3093s The following packages will be upgraded: 3093s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 3093s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3093s Need to get 1982 kB of archives. 3093s After this operation, 22.5 kB of additional disk space will be used. 3093s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 3093s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 3093s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 3093s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 3093s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 3093s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 3093s Preconfiguring packages ... 3093s Fetched 1982 kB in 1s (3125 kB/s) 3094s (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.) 3094s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 3094s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 3094s Setting up sysvinit-utils (3.14-1ubuntu1) ... 3094s (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.) 3094s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 3094s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 3094s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 3094s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 3094s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 3094s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3094s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 3094s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3094s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 3094s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 3094s Setting up liblsof0 (4.99.4+dfsg-1) ... 3094s Setting up iproute2 (6.13.0-1ubuntu1) ... 3094s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 3094s Setting up lsof (4.99.4+dfsg-1) ... 3094s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 3094s Processing triggers for man-db (2.13.0-1) ... 3095s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3095s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3095s + /usr/lib/apt/apt-helper analyze-pattern ?true 3095s + uname -r 3095s + sed s/\./\\./g 3095s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3095s + apt list ?obsolete 3095s + tail -n+2 3095s + grep -v ^linux-.*6\.12\.0-15-generic.* 3095s + cut -d/ -f1 3095s + true 3095s + obsolete_pkgs= 3095s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3095s Reading package lists... 3095s Building dependency tree... 3095s Reading state information... 3095s The following packages will be REMOVED: 3095s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3095s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3095s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3095s linux-tools-6.11.0-8-generic* 3096s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 3096s After this operation, 167 MB disk space will be freed. 3096s (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.) 3096s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3096s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3096s Removing libpython3.12t64:s390x (3.12.9-1) ... 3096s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3096s Removing libnsl2:s390x (1.3.0-3build3) ... 3096s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3096s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3096s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3097s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3097s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3097s (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.) 3097s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3097s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3097s + grep -q trusty /etc/lsb-release 3097s + [ ! -d /usr/share/doc/unattended-upgrades ] 3097s + [ ! -d /usr/share/doc/lxd ] 3097s + [ ! -d /usr/share/doc/lxd-client ] 3097s + [ ! -d /usr/share/doc/snapd ] 3097s + type iptables 3097s + cat 3097s + chmod 755 /etc/rc.local 3097s + . /etc/rc.local 3097s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3097s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3097s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3097s + uname -m 3097s + [ s390x = ppc64le ] 3097s + [ -d /run/systemd/system ] 3097s + systemd-detect-virt --quiet --vm 3097s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3097s + cat 3097s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3097s + echo COMPRESS=lz4 3097s autopkgtest: DBG: testbed command exited with code 0 3097s autopkgtest [13:21:04]: upgrading testbed (apt dist-upgrade and autopurge) 3097s 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'] 3097s Reading package lists... 3097s Building dependency tree... 3097s Reading state information... 3097s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3097s Starting 2 pkgProblemResolver with broken count: 0 3097s Done 3098s Entering ResolveByKeep 3098s 3098s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3098s autopkgtest: DBG: testbed command exited with code 0 3098s 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'] 3098s Reading package lists... 3098s Building dependency tree... 3098s Reading state information... 3098s Starting pkgProblemResolver with broken count: 0 3098s Starting 2 pkgProblemResolver with broken count: 0 3098s Done 3099s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3099s autopkgtest: DBG: testbed command exited with code 0 3099s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3099s autopkgtest: DBG: testbed command exited with code 1 3099s autopkgtest [13:21:06]: rebooting testbed after setup commands that affected boot 3099s autopkgtest: DBG: sending command to testbed: reboot 3118s autopkgtest: DBG: got reply from testbed: ok 3118s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3118s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3118s autopkgtest: DBG: testbed command exited with code 0 3118s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3119s autopkgtest: DBG: got reply from testbed: ok 3119s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3119s autopkgtest: DBG: testbed command exited with code 0 3119s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3119s autopkgtest: DBG: testbed command exited with code 0 3119s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3119s autopkgtest: DBG: testbed command exited with code 0 3119s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3119s autopkgtest: DBG: testbed command exited with code 0 3119s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3120s autopkgtest: DBG: got reply from testbed: ok 3120s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3120s autopkgtest: DBG: testbed command exited with code 0 3120s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3120s autopkgtest: DBG: testbed command exited with code 0 3120s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3120s autopkgtest: DBG: testbed command exited with code 0 3120s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 3120s autopkgtest: DBG: testbed command exited with code 0 3120s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 3121s autopkgtest: DBG: got reply from testbed: ok 3121s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3121s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3121s autopkgtest: DBG: testbed command exited with code 0 3121s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3121s autopkgtest: DBG: got reply from testbed: ok 3121s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3122s autopkgtest: DBG: testbed command exited with code 0 3122s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3122s autopkgtest: DBG: testbed command exited with code 0 3122s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3122s autopkgtest: DBG: testbed command exited with code 0 3122s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3122s autopkgtest: DBG: testbed command exited with code 0 3122s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3122s autopkgtest: DBG: got reply from testbed: ok 3122s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3122s autopkgtest: DBG: testbed command exited with code 0 3122s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3123s autopkgtest: DBG: testbed command exited with code 0 3123s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3123s autopkgtest: DBG: testbed command exited with code 0 3123s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3123s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtsql', 'python3'] 3123s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtsql, python3 3123s autopkgtest: DBG: can use apt-get on testbed: True 3123s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtsql, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3123s Reading package lists... 3123s Building dependency tree... 3123s Reading state information... 3123s Starting pkgProblemResolver with broken count: 0 3123s Starting 2 pkgProblemResolver with broken count: 0 3123s Done 3124s The following NEW packages will be installed: 3124s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 3124s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 3124s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 3124s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 3124s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 3124s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 3124s libqt5network5t64 libqt5qml5 libqt5sql5t64 libqt5widgets5t64 3124s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 3124s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 3124s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 3124s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 3124s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 3124s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 3124s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtsql 3124s python3-pyside2.qtwidgets x11-common 3124s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 3124s Need to get 29.4 MB of archives. 3124s After this operation, 112 MB of additional disk space will be used. 3124s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 3124s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 3124s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 3124s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 3124s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 3124s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 3124s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 3124s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 3124s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 3124s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 3124s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 3124s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 3124s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 3124s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 3124s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 3124s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 3124s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 3124s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 3125s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 3125s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 3125s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 3125s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 3125s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 3125s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 3125s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 3125s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 3125s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 3125s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 3125s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 3125s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 3125s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 3125s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 3125s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 3125s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 3125s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 3125s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 3125s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 3125s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 3125s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 3125s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 3125s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 3125s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 3125s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 3125s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 3125s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 3125s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 3125s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 3125s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 3125s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 3125s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 3125s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 3125s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 3125s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 3125s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 3125s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 3125s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 3125s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 3125s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 3125s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 3125s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 3125s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 3125s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 3125s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 3125s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 3125s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-4ubuntu1 [130 kB] 3125s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 3126s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 3126s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 3126s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 3126s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtsql s390x 5.15.16-3.1 [160 kB] 3126s Fetched 29.4 MB in 2s (14.1 MB/s) 3126s Selecting previously unselected package libfreetype6:s390x. 3126s (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.) 3126s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 3126s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 3126s Selecting previously unselected package fonts-dejavu-mono. 3126s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 3126s Unpacking fonts-dejavu-mono (2.37-8) ... 3126s Selecting previously unselected package fonts-dejavu-core. 3126s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 3126s Unpacking fonts-dejavu-core (2.37-8) ... 3126s Selecting previously unselected package fontconfig-config. 3126s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 3126s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 3126s Selecting previously unselected package libfontconfig1:s390x. 3126s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 3126s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3126s Selecting previously unselected package fontconfig. 3126s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 3126s Unpacking fontconfig (2.15.0-2ubuntu1) ... 3127s Selecting previously unselected package libdouble-conversion3:s390x. 3127s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 3127s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 3127s Selecting previously unselected package libdrm-radeon1:s390x. 3127s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 3127s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 3127s Selecting previously unselected package libwayland-server0:s390x. 3127s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 3127s Unpacking libwayland-server0:s390x (1.23.1-1) ... 3127s Selecting previously unselected package libglapi-mesa:s390x. 3127s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 3127s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3127s Selecting previously unselected package libx11-xcb1:s390x. 3127s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 3127s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 3127s Selecting previously unselected package libxcb-dri3-0:s390x. 3127s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-present0:s390x. 3127s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-present0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-randr0:s390x. 3127s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-sync1:s390x. 3127s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-xfixes0:s390x. 3127s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxshmfence1:s390x. 3127s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 3127s Unpacking libxshmfence1:s390x (1.3-1build5) ... 3127s Selecting previously unselected package mesa-libgallium:s390x. 3127s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 3127s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3127s Selecting previously unselected package libgbm1:s390x. 3127s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 3127s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 3127s Selecting previously unselected package libwayland-client0:s390x. 3127s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 3127s Unpacking libwayland-client0:s390x (1.23.1-1) ... 3127s Selecting previously unselected package libxcb-shm0:s390x. 3127s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libegl-mesa0:s390x. 3127s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3127s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3127s Selecting previously unselected package libvulkan1:s390x. 3127s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 3127s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 3127s Selecting previously unselected package libgl1-mesa-dri:s390x. 3127s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 3127s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3127s Selecting previously unselected package libxcb-glx0:s390x. 3127s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxxf86vm1:s390x. 3127s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 3127s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 3127s Selecting previously unselected package libglx-mesa0:s390x. 3127s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3127s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3127s Selecting previously unselected package libgraphite2-3:s390x. 3127s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 3127s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3127s Selecting previously unselected package libharfbuzz0b:s390x. 3127s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 3127s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 3127s Selecting previously unselected package x11-common. 3127s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 3127s Unpacking x11-common (1:7.7+23ubuntu3) ... 3127s Selecting previously unselected package libice6:s390x. 3127s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 3127s Unpacking libice6:s390x (2:1.1.1-1) ... 3127s Selecting previously unselected package libwacom-common. 3127s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 3127s Unpacking libwacom-common (2.14.0-1) ... 3127s Selecting previously unselected package libwacom9:s390x. 3127s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 3127s Unpacking libwacom9:s390x (2.14.0-1) ... 3127s Selecting previously unselected package libinput-bin. 3127s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 3127s Unpacking libinput-bin (1.27.1-1) ... 3127s Selecting previously unselected package libmtdev1t64:s390x. 3127s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 3127s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 3127s Selecting previously unselected package libinput10:s390x. 3127s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 3127s Unpacking libinput10:s390x (1.27.1-1) ... 3127s Selecting previously unselected package libjpeg-turbo8:s390x. 3127s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 3127s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3127s Selecting previously unselected package libjpeg8:s390x. 3127s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 3127s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 3127s Selecting previously unselected package libmd4c0:s390x. 3127s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 3127s Unpacking libmd4c0:s390x (0.5.2-2) ... 3127s Selecting previously unselected package libpcre2-16-0:s390x. 3127s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 3127s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3127s Selecting previously unselected package libqt5core5t64:s390x. 3127s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3127s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3127s Selecting previously unselected package libqt5dbus5t64:s390x. 3127s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3127s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3127s Selecting previously unselected package libqt5network5t64:s390x. 3127s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3127s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3127s Selecting previously unselected package libqt5qml5:s390x. 3127s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 3127s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 3127s Selecting previously unselected package libshiboken2-py3-5.15t64. 3127s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3127s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3127s Selecting previously unselected package libpyside2-py3-5.15t64. 3127s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3127s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3127s Selecting previously unselected package libglvnd0:s390x. 3127s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 3127s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 3127s Selecting previously unselected package libegl1:s390x. 3127s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 3127s Unpacking libegl1:s390x (1.7.0-1build1) ... 3127s Selecting previously unselected package libglx0:s390x. 3127s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 3127s Unpacking libglx0:s390x (1.7.0-1build1) ... 3127s Selecting previously unselected package libgl1:s390x. 3127s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 3127s Unpacking libgl1:s390x (1.7.0-1build1) ... 3127s Selecting previously unselected package libsm6:s390x. 3127s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 3127s Unpacking libsm6:s390x (2:1.2.4-1) ... 3127s Selecting previously unselected package libxcb-icccm4:s390x. 3127s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 3127s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 3127s Selecting previously unselected package libxcb-util1:s390x. 3127s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 3127s Unpacking libxcb-util1:s390x (0.4.1-1) ... 3127s Selecting previously unselected package libxcb-image0:s390x. 3127s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 3127s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 3127s Selecting previously unselected package libxcb-keysyms1:s390x. 3127s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 3127s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 3127s Selecting previously unselected package libxcb-render0:s390x. 3127s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-render0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-render-util0:s390x. 3127s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 3127s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 3127s Selecting previously unselected package libxcb-shape0:s390x. 3127s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-xinerama0:s390x. 3127s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-xinput0:s390x. 3127s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxcb-xkb1:s390x. 3127s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 3127s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 3127s Selecting previously unselected package libxkbcommon-x11-0:s390x. 3127s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 3127s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 3127s Selecting previously unselected package libxrender1:s390x. 3127s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 3127s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 3127s Selecting previously unselected package libqt5gui5t64:s390x. 3127s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3127s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3127s Selecting previously unselected package libqt5sql5t64:s390x. 3127s Preparing to unpack .../64-libqt5sql5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3127s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3127s Selecting previously unselected package libqt5widgets5t64:s390x. 3127s Preparing to unpack .../65-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3127s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3128s Selecting previously unselected package python3-pyside2.qtcore. 3128s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 3128s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 3128s Selecting previously unselected package python3-pyside2.qtgui. 3128s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 3128s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 3128s Selecting previously unselected package python3-pyside2.qtwidgets. 3128s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 3128s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 3128s Selecting previously unselected package python3-pyside2.qtsql. 3128s Preparing to unpack .../69-python3-pyside2.qtsql_5.15.16-3.1_s390x.deb ... 3128s Unpacking python3-pyside2.qtsql (5.15.16-3.1) ... 3128s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3128s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 3128s Setting up libwayland-server0:s390x (1.23.1-1) ... 3128s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 3128s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 3128s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 3128s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 3128s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 3128s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3128s Setting up libxcb-render0:s390x (1.17.0-2) ... 3128s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 3128s Setting up libglvnd0:s390x (1.7.0-1build1) ... 3128s Setting up libxcb-glx0:s390x (1.17.0-2) ... 3128s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 3128s Setting up libxcb-shape0:s390x (1.17.0-2) ... 3128s Setting up x11-common (1:7.7+23ubuntu3) ... 3128s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 3128s Setting up libxcb-shm0:s390x (1.17.0-2) ... 3128s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 3128s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3128s Setting up libxcb-util1:s390x (0.4.1-1) ... 3128s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 3128s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 3128s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 3128s Setting up libxcb-present0:s390x (1.17.0-2) ... 3128s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3128s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 3128s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 3128s Setting up libxcb-sync1:s390x (1.17.0-2) ... 3128s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 3128s Setting up fonts-dejavu-mono (2.37-8) ... 3128s Setting up fonts-dejavu-core (2.37-8) ... 3128s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3128s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3128s Setting up libvulkan1:s390x (1.4.304.0-1) ... 3128s Setting up libmtdev1t64:s390x (1.1.7-1) ... 3128s Setting up libxshmfence1:s390x (1.3-1build5) ... 3128s Setting up libxcb-randr0:s390x (1.17.0-2) ... 3128s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3128s Setting up libmd4c0:s390x (0.5.2-2) ... 3128s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 3128s Setting up libwacom-common (2.14.0-1) ... 3128s Setting up libwayland-client0:s390x (1.23.1-1) ... 3128s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 3128s Setting up libice6:s390x (2:1.1.1-1) ... 3128s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3128s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3128s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 3128s Setting up libwacom9:s390x (2.14.0-1) ... 3128s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 3128s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3128s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3128s Setting up libinput-bin (1.27.1-1) ... 3128s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3128s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 3128s Setting up libegl1:s390x (1.7.0-1build1) ... 3128s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3128s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3128s Setting up libsm6:s390x (2:1.2.4-1) ... 3128s Setting up libinput10:s390x (1.27.1-1) ... 3128s Setting up fontconfig (2.15.0-2ubuntu1) ... 3130s Regenerating fonts cache... done. 3130s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3130s Setting up libglx0:s390x (1.7.0-1build1) ... 3130s Setting up libgl1:s390x (1.7.0-1build1) ... 3131s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 3131s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3131s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 3131s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3131s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 3131s Setting up python3-pyside2.qtsql (5.15.16-3.1) ... 3131s Processing triggers for man-db (2.13.0-1) ... 3131s Processing triggers for udev (257.2-3ubuntu1) ... 3131s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3132s autopkgtest: DBG: testbed command exited with code 0 3132s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtsql'], kind short, sout pipe, serr pipe, env [] 3132s autopkgtest: DBG: testbed command exited with code 0 3132s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command19-packages.all"], kind short, sout raw, serr pipe, env [] 3132s autopkgtest: DBG: testbed command exited with code 0 3132s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command19-packages.all /tmp/autopkgtest-work.fketnn_8/out/command19-packages.all 3132s autopkgtest: DBG: got reply from testbed: ok 3132s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 3132s autopkgtest: DBG: testbed command exited with code 1 3132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 3133s autopkgtest: DBG: testbed command exited with code 0 3133s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 3143s autopkgtest: DBG: got reply from testbed: ok 3143s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 3143s autopkgtest: DBG: testbed command exited with code 0 3143s autopkgtest [13:21:50]: test command19: debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql 3143s autopkgtest [13:21:50]: test command19: [----------------------- 3143s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command19-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command19-stderr --stdout=/tmp/autopkgtest.SBuPUV/command19-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql'"], kind test, sout raw, serr raw, env [] 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command19-artifacts 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command19-stderr 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command19-stdout 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.VFKbJ4BwQ4/out to stdout and file: /tmp/autopkgtest.SBuPUV/command19-stdout 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.VFKbJ4BwQ4/err to standard error and file: /tmp/autopkgtest.SBuPUV/command19-stdout 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2205 to /tmp/autopkgtest_script_pid 3143s Testing python3 package python3-pyside2.qtsql 3143s Testing with python3.13: 3143s 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 3143s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 3144s autopkgtest: DBG: testbed command exited with code 0 3144s autopkgtest [13:21:51]: test command19: -----------------------] 3144s autopkgtest: DBG: testbed executing test finished with exit status 0 3144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command19-stdout /tmp/autopkgtest-work.fketnn_8/out/command19-stdout 3144s autopkgtest: DBG: got reply from testbed: ok 3144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command19-stderr /tmp/autopkgtest-work.fketnn_8/out/command19-stderr 3144s autopkgtest: DBG: got reply from testbed: ok 3144s autopkgtest [13:21:51]: test command19: - - - - - - - - - - results - - - - - - - - - - 3144s command19 PASS (superficial) 3144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command19-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 3144s autopkgtest: DBG: got reply from testbed: ok 3144s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command19-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3145s autopkgtest: DBG: testbed command exited with code 0 3145s autopkgtest [13:21:52]: test command20: preparing testbed 3145s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtsql', 'python3'], deps_new=['python3-pyside2.qtgui', 'python3'] 3145s autopkgtest: DBG: testbed reset 3145s autopkgtest: DBG: sending command to testbed: revert 3267s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 3267s autopkgtest: DBG: sending command to testbed: print-execute-command 3267s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 3267s autopkgtest: DBG: sending command to testbed: capabilities 3267s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 3267s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 3267s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3267s autopkgtest: DBG: testbed command exited with code 0 3267s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 3267s autopkgtest: DBG: got reply from testbed: ok 3267s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3267s autopkgtest: DBG: testbed command exited with code 0 3267s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3267s autopkgtest: DBG: testbed command exited with code 0 3267s autopkgtest [13:23:54]: testbed dpkg architecture: s390x 3267s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3267s autopkgtest: DBG: testbed command exited with code 0 3267s autopkgtest [13:23:54]: testbed apt version: 2.9.30 3267s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3268s autopkgtest: DBG: testbed command exited with code 0 3268s autopkgtest: DBG: testbed has eatmydata 3268s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3268s autopkgtest: DBG: testbed command exited with code 0 3268s autopkgtest [13:23:55]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3268s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 3268s autopkgtest: DBG: testbed command exited with code 0 3268s autopkgtest [13:23:55]: testbed release detected to be: plucky 3268s 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 [] 3268s autopkgtest: DBG: testbed command exited with code 0 3268s 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 [] 3268s autopkgtest: DBG: testbed command exited with code 0 3268s autopkgtest: DBG: adding APT source: Types: deb deb-src 3268s URIs: http://ftpmaster.internal/ubuntu/ 3268s Suites: plucky-proposed 3268s Components: main restricted universe multiverse 3268s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3268s 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 [] 3269s autopkgtest: DBG: testbed command exited with code 0 3269s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3269s Package: * 3269s Pin: release plucky-proposed 3269s Pin-Priority: 500 3269s 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 [] 3269s autopkgtest: DBG: testbed command exited with code 0 3269s autopkgtest [13:23:56]: updating testbed package index (apt update) 3269s 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'] 3269s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3269s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3269s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3270s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3270s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3270s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 3270s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 3270s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 3270s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 3270s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3270s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 3270s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 3270s Fetched 1711 kB in 1s (1656 kB/s) 3271s Reading package lists... 3271s autopkgtest: DBG: testbed command exited with code 0 3271s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3271s Package: * 3271s Pin: release plucky-proposed 3271s Pin-Priority: 100 3271s 3271s Package: src:sphinx:any 3271s Pin: release plucky-proposed 3271s Pin-Priority: 995 3271s 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 [] 3271s autopkgtest: DBG: testbed command exited with code 0 3271s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3271s autopkgtest: DBG: testbed command exited with code 0 3271s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 3271s + lsb_release --codename --short 3271s + RELEASE=plucky 3271s + cat 3271s + [ plucky != trusty ] 3271s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3271s Reading package lists... 3271s Building dependency tree... 3271s Reading state information... 3272s Calculating upgrade... 3272s The following packages were automatically installed and are no longer required: 3272s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3272s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3272s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3272s linux-tools-6.11.0-8-generic 3272s Use 'sudo apt autoremove' to remove them. 3272s The following packages will be upgraded: 3272s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 3272s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3272s Need to get 1982 kB of archives. 3272s After this operation, 22.5 kB of additional disk space will be used. 3272s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 3272s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 3273s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 3273s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 3273s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 3273s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 3273s Preconfiguring packages ... 3273s Fetched 1982 kB in 1s (1870 kB/s) 3273s (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.) 3273s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 3273s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 3273s Setting up sysvinit-utils (3.14-1ubuntu1) ... 3273s (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.) 3273s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 3273s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 3274s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 3274s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 3274s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 3274s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3274s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 3274s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3274s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 3274s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 3274s Setting up liblsof0 (4.99.4+dfsg-1) ... 3274s Setting up iproute2 (6.13.0-1ubuntu1) ... 3274s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 3274s Setting up lsof (4.99.4+dfsg-1) ... 3274s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 3274s Processing triggers for man-db (2.13.0-1) ... 3275s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3275s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3275s + /usr/lib/apt/apt-helper analyze-pattern ?true 3275s + uname -r 3275s + sed s/\./\\./g 3275s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3275s + apt list ?obsolete 3275s + tail -n+2 3275s + cut -d/ -f1 3275s + grep -v ^linux-.*6\.12\.0-15-generic.* 3275s + true 3275s + obsolete_pkgs= 3275s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3275s Reading package lists... 3275s Building dependency tree... 3275s Reading state information... 3276s The following packages will be REMOVED: 3276s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3276s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3276s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3276s linux-tools-6.11.0-8-generic* 3276s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 3276s After this operation, 167 MB disk space will be freed. 3276s (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.) 3276s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3276s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3276s Removing libpython3.12t64:s390x (3.12.9-1) ... 3276s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3276s Removing libnsl2:s390x (1.3.0-3build3) ... 3276s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3276s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3276s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3277s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3277s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3278s (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.) 3278s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3278s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3278s + grep -q trusty /etc/lsb-release 3278s + [ ! -d /usr/share/doc/unattended-upgrades ] 3278s + [ ! -d /usr/share/doc/lxd ] 3278s + [ ! -d /usr/share/doc/lxd-client ] 3278s + [ ! -d /usr/share/doc/snapd ] 3278s + type iptables 3278s + cat 3278s + chmod 755 /etc/rc.local 3278s + . /etc/rc.local 3278s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3278s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3278s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3278s + uname -m 3278s + [ s390x = ppc64le ] 3278s + [ -d /run/systemd/system ] 3278s + systemd-detect-virt --quiet --vm 3278s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3278s + cat 3278s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3278s + echo COMPRESS=lz4 3278s autopkgtest: DBG: testbed command exited with code 0 3278s autopkgtest [13:24:05]: upgrading testbed (apt dist-upgrade and autopurge) 3278s 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'] 3278s Reading package lists... 3278s Building dependency tree... 3278s Reading state information... 3278s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3278s Starting 2 pkgProblemResolver with broken count: 0 3278s Done 3279s Entering ResolveByKeep 3279s 3279s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3279s autopkgtest: DBG: testbed command exited with code 0 3279s 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'] 3279s Reading package lists... 3280s Building dependency tree... 3280s Reading state information... 3280s Starting pkgProblemResolver with broken count: 0 3280s Starting 2 pkgProblemResolver with broken count: 0 3280s Done 3280s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3280s autopkgtest: DBG: testbed command exited with code 0 3280s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3280s autopkgtest: DBG: testbed command exited with code 1 3280s autopkgtest [13:24:07]: rebooting testbed after setup commands that affected boot 3280s autopkgtest: DBG: sending command to testbed: reboot 3301s autopkgtest: DBG: got reply from testbed: ok 3301s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3301s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3301s autopkgtest: DBG: testbed command exited with code 0 3301s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3301s autopkgtest: DBG: got reply from testbed: ok 3301s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3301s autopkgtest: DBG: testbed command exited with code 0 3301s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3301s autopkgtest: DBG: testbed command exited with code 0 3301s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3302s autopkgtest: DBG: testbed command exited with code 0 3302s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3302s autopkgtest: DBG: testbed command exited with code 0 3302s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3302s autopkgtest: DBG: got reply from testbed: ok 3302s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3302s autopkgtest: DBG: testbed command exited with code 0 3302s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3302s autopkgtest: DBG: testbed command exited with code 0 3302s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3302s autopkgtest: DBG: testbed command exited with code 0 3302s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 3303s autopkgtest: DBG: testbed command exited with code 0 3303s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 3304s autopkgtest: DBG: got reply from testbed: ok 3304s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3304s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3304s autopkgtest: DBG: testbed command exited with code 0 3304s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3304s autopkgtest: DBG: got reply from testbed: ok 3304s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3304s autopkgtest: DBG: testbed command exited with code 0 3304s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3305s autopkgtest: DBG: testbed command exited with code 0 3305s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3305s autopkgtest: DBG: testbed command exited with code 0 3305s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3305s autopkgtest: DBG: testbed command exited with code 0 3305s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3305s autopkgtest: DBG: got reply from testbed: ok 3305s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3305s autopkgtest: DBG: testbed command exited with code 0 3305s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3305s autopkgtest: DBG: testbed command exited with code 0 3305s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3306s autopkgtest: DBG: testbed command exited with code 0 3306s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3306s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtgui', 'python3'] 3306s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtgui, python3 3306s autopkgtest: DBG: can use apt-get on testbed: True 3306s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtgui, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3306s Reading package lists... 3306s Building dependency tree... 3306s Reading state information... 3306s Starting pkgProblemResolver with broken count: 0 3306s Starting 2 pkgProblemResolver with broken count: 0 3306s Done 3307s The following NEW packages will be installed: 3307s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 3307s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 3307s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 3307s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 3307s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 3307s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 3307s libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 libsm6 libvulkan1 3307s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 3307s libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 3307s libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 3307s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xfixes0 3307s libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxkbcommon-x11-0 libxrender1 3307s libxshmfence1 libxxf86vm1 mesa-libgallium python3-pyside2.qtcore 3307s python3-pyside2.qtgui x11-common 3307s 0 upgraded, 66 newly installed, 0 to remove and 0 not upgraded. 3307s Need to get 24.5 MB of archives. 3307s After this operation, 91.7 MB of additional disk space will be used. 3307s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 3307s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 3307s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 3308s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 3308s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 3308s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 3308s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 3308s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 3308s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 3308s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 3308s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 3308s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 3308s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 3308s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 3308s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 3308s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 3308s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 3308s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 3310s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 3310s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 3310s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 3310s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 3310s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 3310s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 3310s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 3310s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 3310s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 3310s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 3310s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 3310s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 3310s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 3310s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 3310s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 3310s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 3310s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 3310s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 3310s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 3310s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 3310s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 3310s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 3310s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 3311s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 3311s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 3311s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 3311s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 3311s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 3311s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 3311s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 3311s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 3311s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 3311s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 3311s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 3311s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 3311s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 3311s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 3311s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 3311s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 3311s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 3311s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 3311s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 3311s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 3311s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 3311s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 3311s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 3311s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 3311s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 3312s Fetched 24.5 MB in 5s (4936 kB/s) 3312s Selecting previously unselected package libfreetype6:s390x. 3312s (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.) 3312s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 3312s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 3312s Selecting previously unselected package fonts-dejavu-mono. 3312s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 3312s Unpacking fonts-dejavu-mono (2.37-8) ... 3312s Selecting previously unselected package fonts-dejavu-core. 3312s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 3312s Unpacking fonts-dejavu-core (2.37-8) ... 3312s Selecting previously unselected package fontconfig-config. 3312s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 3312s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 3312s Selecting previously unselected package libfontconfig1:s390x. 3312s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 3312s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3312s Selecting previously unselected package fontconfig. 3312s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 3312s Unpacking fontconfig (2.15.0-2ubuntu1) ... 3312s Selecting previously unselected package libdouble-conversion3:s390x. 3312s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 3312s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 3312s Selecting previously unselected package libdrm-radeon1:s390x. 3312s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 3312s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 3312s Selecting previously unselected package libwayland-server0:s390x. 3312s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 3312s Unpacking libwayland-server0:s390x (1.23.1-1) ... 3312s Selecting previously unselected package libglapi-mesa:s390x. 3312s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 3312s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3312s Selecting previously unselected package libx11-xcb1:s390x. 3312s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 3312s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 3312s Selecting previously unselected package libxcb-dri3-0:s390x. 3312s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 3312s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 3312s Selecting previously unselected package libxcb-present0:s390x. 3312s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 3312s Unpacking libxcb-present0:s390x (1.17.0-2) ... 3312s Selecting previously unselected package libxcb-randr0:s390x. 3312s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 3312s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 3312s Selecting previously unselected package libxcb-sync1:s390x. 3312s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 3312s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 3312s Selecting previously unselected package libxcb-xfixes0:s390x. 3312s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 3312s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 3312s Selecting previously unselected package libxshmfence1:s390x. 3312s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 3312s Unpacking libxshmfence1:s390x (1.3-1build5) ... 3312s Selecting previously unselected package mesa-libgallium:s390x. 3312s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 3312s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3313s Selecting previously unselected package libgbm1:s390x. 3313s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 3313s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 3313s Selecting previously unselected package libwayland-client0:s390x. 3313s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 3313s Unpacking libwayland-client0:s390x (1.23.1-1) ... 3313s Selecting previously unselected package libxcb-shm0:s390x. 3313s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libegl-mesa0:s390x. 3313s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3313s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3313s Selecting previously unselected package libvulkan1:s390x. 3313s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 3313s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 3313s Selecting previously unselected package libgl1-mesa-dri:s390x. 3313s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 3313s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3313s Selecting previously unselected package libxcb-glx0:s390x. 3313s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libxxf86vm1:s390x. 3313s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 3313s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 3313s Selecting previously unselected package libglx-mesa0:s390x. 3313s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3313s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3313s Selecting previously unselected package libgraphite2-3:s390x. 3313s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 3313s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3313s Selecting previously unselected package libharfbuzz0b:s390x. 3313s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 3313s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 3313s Selecting previously unselected package x11-common. 3313s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 3313s Unpacking x11-common (1:7.7+23ubuntu3) ... 3313s Selecting previously unselected package libice6:s390x. 3313s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 3313s Unpacking libice6:s390x (2:1.1.1-1) ... 3313s Selecting previously unselected package libwacom-common. 3313s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 3313s Unpacking libwacom-common (2.14.0-1) ... 3313s Selecting previously unselected package libwacom9:s390x. 3313s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 3313s Unpacking libwacom9:s390x (2.14.0-1) ... 3313s Selecting previously unselected package libinput-bin. 3313s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 3313s Unpacking libinput-bin (1.27.1-1) ... 3313s Selecting previously unselected package libmtdev1t64:s390x. 3313s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 3313s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 3313s Selecting previously unselected package libinput10:s390x. 3313s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 3313s Unpacking libinput10:s390x (1.27.1-1) ... 3313s Selecting previously unselected package libjpeg-turbo8:s390x. 3313s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 3313s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3313s Selecting previously unselected package libjpeg8:s390x. 3313s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 3313s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 3313s Selecting previously unselected package libmd4c0:s390x. 3313s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 3313s Unpacking libmd4c0:s390x (0.5.2-2) ... 3313s Selecting previously unselected package libpcre2-16-0:s390x. 3313s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 3313s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3313s Selecting previously unselected package libqt5core5t64:s390x. 3313s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3313s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3313s Selecting previously unselected package libqt5dbus5t64:s390x. 3313s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3313s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3313s Selecting previously unselected package libqt5network5t64:s390x. 3313s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3313s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3313s Selecting previously unselected package libqt5qml5:s390x. 3313s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 3313s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 3313s Selecting previously unselected package libshiboken2-py3-5.15t64. 3313s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3313s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3313s Selecting previously unselected package libpyside2-py3-5.15t64. 3313s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3313s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3313s Selecting previously unselected package libglvnd0:s390x. 3313s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 3313s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 3313s Selecting previously unselected package libegl1:s390x. 3313s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 3313s Unpacking libegl1:s390x (1.7.0-1build1) ... 3313s Selecting previously unselected package libglx0:s390x. 3313s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 3313s Unpacking libglx0:s390x (1.7.0-1build1) ... 3313s Selecting previously unselected package libgl1:s390x. 3313s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 3313s Unpacking libgl1:s390x (1.7.0-1build1) ... 3313s Selecting previously unselected package libsm6:s390x. 3313s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 3313s Unpacking libsm6:s390x (2:1.2.4-1) ... 3313s Selecting previously unselected package libxcb-icccm4:s390x. 3313s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 3313s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 3313s Selecting previously unselected package libxcb-util1:s390x. 3313s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 3313s Unpacking libxcb-util1:s390x (0.4.1-1) ... 3313s Selecting previously unselected package libxcb-image0:s390x. 3313s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 3313s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 3313s Selecting previously unselected package libxcb-keysyms1:s390x. 3313s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 3313s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 3313s Selecting previously unselected package libxcb-render0:s390x. 3313s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-render0:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libxcb-render-util0:s390x. 3313s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 3313s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 3313s Selecting previously unselected package libxcb-shape0:s390x. 3313s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libxcb-xinerama0:s390x. 3313s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libxcb-xinput0:s390x. 3313s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libxcb-xkb1:s390x. 3313s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 3313s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 3313s Selecting previously unselected package libxkbcommon-x11-0:s390x. 3313s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 3313s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 3313s Selecting previously unselected package libxrender1:s390x. 3313s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 3313s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 3313s Selecting previously unselected package libqt5gui5t64:s390x. 3313s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3313s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3313s Selecting previously unselected package python3-pyside2.qtcore. 3313s Preparing to unpack .../64-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 3313s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 3313s Selecting previously unselected package python3-pyside2.qtgui. 3313s Preparing to unpack .../65-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 3313s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 3313s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3313s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 3313s Setting up libwayland-server0:s390x (1.23.1-1) ... 3313s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 3313s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 3313s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 3313s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 3313s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 3313s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3313s Setting up libxcb-render0:s390x (1.17.0-2) ... 3313s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 3313s Setting up libglvnd0:s390x (1.7.0-1build1) ... 3313s Setting up libxcb-glx0:s390x (1.17.0-2) ... 3313s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 3313s Setting up libxcb-shape0:s390x (1.17.0-2) ... 3313s Setting up x11-common (1:7.7+23ubuntu3) ... 3314s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 3314s Setting up libxcb-shm0:s390x (1.17.0-2) ... 3314s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 3314s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3314s Setting up libxcb-util1:s390x (0.4.1-1) ... 3314s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 3314s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 3314s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 3314s Setting up libxcb-present0:s390x (1.17.0-2) ... 3314s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3314s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 3314s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 3314s Setting up libxcb-sync1:s390x (1.17.0-2) ... 3314s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 3314s Setting up fonts-dejavu-mono (2.37-8) ... 3314s Setting up fonts-dejavu-core (2.37-8) ... 3314s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3314s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3314s Setting up libvulkan1:s390x (1.4.304.0-1) ... 3314s Setting up libmtdev1t64:s390x (1.1.7-1) ... 3314s Setting up libxshmfence1:s390x (1.3-1build5) ... 3314s Setting up libxcb-randr0:s390x (1.17.0-2) ... 3314s Setting up libmd4c0:s390x (0.5.2-2) ... 3314s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 3314s Setting up libwacom-common (2.14.0-1) ... 3314s Setting up libwayland-client0:s390x (1.23.1-1) ... 3314s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 3314s Setting up libice6:s390x (2:1.1.1-1) ... 3314s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3314s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3314s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 3314s Setting up libwacom9:s390x (2.14.0-1) ... 3314s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 3314s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3314s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3314s Setting up libinput-bin (1.27.1-1) ... 3314s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3314s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 3314s Setting up libegl1:s390x (1.7.0-1build1) ... 3314s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3314s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3314s Setting up libsm6:s390x (2:1.2.4-1) ... 3314s Setting up libinput10:s390x (1.27.1-1) ... 3314s Setting up fontconfig (2.15.0-2ubuntu1) ... 3316s Regenerating fonts cache... done. 3316s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3316s Setting up libglx0:s390x (1.7.0-1build1) ... 3316s Setting up libgl1:s390x (1.7.0-1build1) ... 3316s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 3316s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3316s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 3316s Processing triggers for man-db (2.13.0-1) ... 3317s Processing triggers for udev (257.2-3ubuntu1) ... 3317s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3318s autopkgtest: DBG: testbed command exited with code 0 3318s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtgui'], kind short, sout pipe, serr pipe, env [] 3318s autopkgtest: DBG: testbed command exited with code 0 3318s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command20-packages.all"], kind short, sout raw, serr pipe, env [] 3318s autopkgtest: DBG: testbed command exited with code 0 3318s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command20-packages.all /tmp/autopkgtest-work.fketnn_8/out/command20-packages.all 3318s autopkgtest: DBG: got reply from testbed: ok 3318s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 3318s autopkgtest: DBG: testbed command exited with code 1 3318s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 3318s autopkgtest: DBG: testbed command exited with code 0 3318s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 3322s autopkgtest: DBG: got reply from testbed: ok 3322s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 3322s autopkgtest: DBG: testbed command exited with code 0 3322s autopkgtest [13:24:49]: test command20: debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui 3322s autopkgtest [13:24:49]: test command20: [----------------------- 3322s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command20-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command20-stderr --stdout=/tmp/autopkgtest.SBuPUV/command20-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui'"], kind test, sout raw, serr raw, env [] 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command20-artifacts 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command20-stderr 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command20-stdout 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.SaV1ZrswCa/out to stdout and file: /tmp/autopkgtest.SBuPUV/command20-stdout 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.SaV1ZrswCa/err to standard error and file: /tmp/autopkgtest.SBuPUV/command20-stdout 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2168 to /tmp/autopkgtest_script_pid 3322s Testing python3 package python3-pyside2.qtgui 3322s Testing with python3.13: 3322s 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 3322s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 3322s autopkgtest: DBG: testbed command exited with code 0 3322s autopkgtest [13:24:49]: test command20: -----------------------] 3322s autopkgtest: DBG: testbed executing test finished with exit status 0 3322s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command20-stdout /tmp/autopkgtest-work.fketnn_8/out/command20-stdout 3323s autopkgtest: DBG: got reply from testbed: ok 3323s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command20-stderr /tmp/autopkgtest-work.fketnn_8/out/command20-stderr 3323s autopkgtest: DBG: got reply from testbed: ok 3323s autopkgtest [13:24:50]: test command20: - - - - - - - - - - results - - - - - - - - - - 3323s command20 PASS (superficial) 3323s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command20-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 3323s autopkgtest: DBG: got reply from testbed: ok 3323s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command20-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3323s autopkgtest: DBG: testbed command exited with code 0 3323s autopkgtest [13:24:50]: test command21: preparing testbed 3323s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtgui', 'python3'], deps_new=['python3-pyside2.qtsvg', 'python3'] 3323s autopkgtest: DBG: testbed reset 3323s autopkgtest: DBG: sending command to testbed: revert 3446s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 3446s autopkgtest: DBG: sending command to testbed: print-execute-command 3446s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 3446s autopkgtest: DBG: sending command to testbed: capabilities 3446s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 3446s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 3446s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3446s autopkgtest: DBG: testbed command exited with code 0 3446s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 3446s autopkgtest: DBG: got reply from testbed: ok 3446s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3447s autopkgtest: DBG: testbed command exited with code 0 3447s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3447s autopkgtest: DBG: testbed command exited with code 0 3447s autopkgtest [13:26:54]: testbed dpkg architecture: s390x 3447s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3447s autopkgtest: DBG: testbed command exited with code 0 3447s autopkgtest [13:26:54]: testbed apt version: 2.9.30 3447s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3447s autopkgtest: DBG: testbed command exited with code 0 3447s autopkgtest: DBG: testbed has eatmydata 3447s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3447s autopkgtest: DBG: testbed command exited with code 0 3447s autopkgtest [13:26:54]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3447s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 3447s autopkgtest: DBG: testbed command exited with code 0 3447s autopkgtest [13:26:54]: testbed release detected to be: plucky 3447s 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 [] 3448s autopkgtest: DBG: testbed command exited with code 0 3448s 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 [] 3448s autopkgtest: DBG: testbed command exited with code 0 3448s autopkgtest: DBG: adding APT source: Types: deb deb-src 3448s URIs: http://ftpmaster.internal/ubuntu/ 3448s Suites: plucky-proposed 3448s Components: main restricted universe multiverse 3448s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3448s 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 [] 3448s autopkgtest: DBG: testbed command exited with code 0 3448s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3448s Package: * 3448s Pin: release plucky-proposed 3448s Pin-Priority: 500 3448s 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 [] 3448s autopkgtest: DBG: testbed command exited with code 0 3448s autopkgtest [13:26:55]: updating testbed package index (apt update) 3448s 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'] 3448s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3449s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3449s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3449s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3449s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 3449s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 3449s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3449s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 3449s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 3449s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3449s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 3449s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 3449s Fetched 1711 kB in 1s (1813 kB/s) 3450s Reading package lists... 3450s autopkgtest: DBG: testbed command exited with code 0 3450s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3450s Package: * 3450s Pin: release plucky-proposed 3450s Pin-Priority: 100 3450s 3450s Package: src:sphinx:any 3450s Pin: release plucky-proposed 3450s Pin-Priority: 995 3450s 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 [] 3450s autopkgtest: DBG: testbed command exited with code 0 3450s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3450s autopkgtest: DBG: testbed command exited with code 0 3450s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 3450s + lsb_release --codename --short 3450s + RELEASE=plucky 3450s + cat 3450s + [ plucky != trusty ] 3450s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3450s Reading package lists... 3450s Building dependency tree... 3450s Reading state information... 3451s Calculating upgrade... 3451s The following packages were automatically installed and are no longer required: 3451s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3451s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3451s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3451s linux-tools-6.11.0-8-generic 3451s Use 'sudo apt autoremove' to remove them. 3451s The following packages will be upgraded: 3451s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 3451s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3451s Need to get 1982 kB of archives. 3451s After this operation, 22.5 kB of additional disk space will be used. 3451s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 3451s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 3451s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 3452s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 3452s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 3452s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 3452s Preconfiguring packages ... 3452s Fetched 1982 kB in 1s (1891 kB/s) 3452s (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.) 3452s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 3452s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 3452s Setting up sysvinit-utils (3.14-1ubuntu1) ... 3452s (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.) 3452s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 3452s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 3452s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 3452s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 3452s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 3452s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3452s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 3452s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3452s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 3452s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 3452s Setting up liblsof0 (4.99.4+dfsg-1) ... 3452s Setting up iproute2 (6.13.0-1ubuntu1) ... 3452s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 3452s Setting up lsof (4.99.4+dfsg-1) ... 3452s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 3452s Processing triggers for man-db (2.13.0-1) ... 3453s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3453s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3453s + /usr/lib/apt/apt-helper analyze-pattern ?true 3453s + uname -r 3453s + sed s/\./\\./g 3453s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3453s + apt list ?obsolete 3453s + tail+ cut -d/ -f1 3453s -n+2 3453s + grep -v ^linux-.*6\.12\.0-15-generic.* 3453s + true 3453s + obsolete_pkgs= 3453s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3453s Reading package lists... 3453s Building dependency tree... 3453s Reading state information... 3454s The following packages will be REMOVED: 3454s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3454s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3454s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3454s linux-tools-6.11.0-8-generic* 3454s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 3454s After this operation, 167 MB disk space will be freed. 3454s (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.) 3454s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3454s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3454s Removing libpython3.12t64:s390x (3.12.9-1) ... 3454s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3454s Removing libnsl2:s390x (1.3.0-3build3) ... 3454s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3454s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3454s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3455s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3455s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3455s (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.) 3455s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3455s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3455s + grep -q trusty /etc/lsb-release 3455s + [ ! -d /usr/share/doc/unattended-upgrades ] 3455s + [ ! -d /usr/share/doc/lxd ] 3455s + [ ! -d /usr/share/doc/lxd-client ] 3455s + [ ! -d /usr/share/doc/snapd ] 3455s + type iptables 3455s + cat 3455s + chmod 755 /etc/rc.local 3455s + . /etc/rc.local 3455s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3455s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3455s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3455s + uname -m 3455s + [ s390x = ppc64le ] 3455s + [ -d /run/systemd/system ] 3455s + systemd-detect-virt --quiet --vm 3455s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3455s + cat 3455s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3455s + echo COMPRESS=lz4 3455s autopkgtest: DBG: testbed command exited with code 0 3455s autopkgtest [13:27:02]: upgrading testbed (apt dist-upgrade and autopurge) 3455s 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'] 3455s Reading package lists... 3455s Building dependency tree... 3455s Reading state information... 3456s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3456s Starting 2 pkgProblemResolver with broken count: 0 3456s Done 3456s Entering ResolveByKeep 3456s 3456s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3456s autopkgtest: DBG: testbed command exited with code 0 3456s 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'] 3456s Reading package lists... 3456s Building dependency tree... 3456s Reading state information... 3456s Starting pkgProblemResolver with broken count: 0 3456s Starting 2 pkgProblemResolver with broken count: 0 3456s Done 3457s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3457s autopkgtest: DBG: testbed command exited with code 0 3457s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3457s autopkgtest: DBG: testbed command exited with code 1 3457s autopkgtest [13:27:04]: rebooting testbed after setup commands that affected boot 3457s autopkgtest: DBG: sending command to testbed: reboot 3474s autopkgtest: DBG: got reply from testbed: ok 3474s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3474s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3474s autopkgtest: DBG: testbed command exited with code 0 3474s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3475s autopkgtest: DBG: got reply from testbed: ok 3475s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3475s autopkgtest: DBG: testbed command exited with code 0 3475s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3475s autopkgtest: DBG: testbed command exited with code 0 3475s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3475s autopkgtest: DBG: testbed command exited with code 0 3475s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3475s autopkgtest: DBG: testbed command exited with code 0 3475s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3476s autopkgtest: DBG: got reply from testbed: ok 3476s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3476s autopkgtest: DBG: testbed command exited with code 0 3476s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3476s autopkgtest: DBG: testbed command exited with code 0 3476s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3476s autopkgtest: DBG: testbed command exited with code 0 3476s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 3476s autopkgtest: DBG: testbed command exited with code 0 3476s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 3477s autopkgtest: DBG: got reply from testbed: ok 3477s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3477s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3477s autopkgtest: DBG: testbed command exited with code 0 3477s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3477s autopkgtest: DBG: got reply from testbed: ok 3477s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3478s autopkgtest: DBG: testbed command exited with code 0 3478s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3478s autopkgtest: DBG: testbed command exited with code 0 3478s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3478s autopkgtest: DBG: testbed command exited with code 0 3478s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3478s autopkgtest: DBG: testbed command exited with code 0 3478s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3478s autopkgtest: DBG: got reply from testbed: ok 3478s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3478s autopkgtest: DBG: testbed command exited with code 0 3478s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3479s autopkgtest: DBG: testbed command exited with code 0 3479s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3479s autopkgtest: DBG: testbed command exited with code 0 3479s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3479s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtsvg', 'python3'] 3479s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtsvg, python3 3479s autopkgtest: DBG: can use apt-get on testbed: True 3479s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtsvg, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3479s Reading package lists... 3479s Building dependency tree... 3479s Reading state information... 3479s Starting pkgProblemResolver with broken count: 0 3479s Starting 2 pkgProblemResolver with broken count: 0 3479s Done 3480s The following NEW packages will be installed: 3480s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 3480s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 3480s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 3480s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 3480s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 3480s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 3480s libqt5network5t64 libqt5qml5 libqt5svg5 libqt5widgets5t64 3480s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 3480s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 3480s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 3480s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 3480s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 3480s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 3480s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtsvg 3480s python3-pyside2.qtwidgets x11-common 3480s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 3480s Need to get 29.3 MB of archives. 3480s After this operation, 111 MB of additional disk space will be used. 3480s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 3480s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 3480s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 3480s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 3480s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 3480s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 3481s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 3481s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 3481s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 3481s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 3481s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 3481s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 3481s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 3481s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 3481s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 3481s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 3481s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 3481s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 3482s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 3482s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 3482s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 3482s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 3482s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 3482s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 3482s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 3482s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 3482s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 3482s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 3482s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 3482s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 3482s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 3482s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 3482s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 3482s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 3482s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 3482s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 3482s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 3482s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 3482s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 3482s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 3482s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 3482s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 3482s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 3482s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 3482s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 3482s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 3482s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 3482s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 3482s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 3482s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 3482s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 3482s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 3482s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 3482s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 3482s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 3482s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 3483s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 3483s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 3483s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 3483s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 3483s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 3483s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 3483s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 3483s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 3483s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 3483s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5svg5 s390x 5.15.15-2 [158 kB] 3483s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 3483s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 3483s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 3483s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtsvg s390x 5.15.16-3.1 [53.9 kB] 3484s Fetched 29.3 MB in 4s (7877 kB/s) 3484s Selecting previously unselected package libfreetype6:s390x. 3484s (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.) 3484s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 3484s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 3484s Selecting previously unselected package fonts-dejavu-mono. 3484s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 3484s Unpacking fonts-dejavu-mono (2.37-8) ... 3484s Selecting previously unselected package fonts-dejavu-core. 3484s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 3484s Unpacking fonts-dejavu-core (2.37-8) ... 3484s Selecting previously unselected package fontconfig-config. 3484s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 3484s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 3484s Selecting previously unselected package libfontconfig1:s390x. 3484s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 3484s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3484s Selecting previously unselected package fontconfig. 3484s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 3484s Unpacking fontconfig (2.15.0-2ubuntu1) ... 3484s Selecting previously unselected package libdouble-conversion3:s390x. 3484s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 3484s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 3484s Selecting previously unselected package libdrm-radeon1:s390x. 3484s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 3484s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 3484s Selecting previously unselected package libwayland-server0:s390x. 3484s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 3484s Unpacking libwayland-server0:s390x (1.23.1-1) ... 3484s Selecting previously unselected package libglapi-mesa:s390x. 3484s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 3484s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3484s Selecting previously unselected package libx11-xcb1:s390x. 3484s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 3484s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 3484s Selecting previously unselected package libxcb-dri3-0:s390x. 3484s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libxcb-present0:s390x. 3484s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-present0:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libxcb-randr0:s390x. 3484s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libxcb-sync1:s390x. 3484s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libxcb-xfixes0:s390x. 3484s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libxshmfence1:s390x. 3484s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 3484s Unpacking libxshmfence1:s390x (1.3-1build5) ... 3484s Selecting previously unselected package mesa-libgallium:s390x. 3484s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 3484s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3484s Selecting previously unselected package libgbm1:s390x. 3484s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 3484s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 3484s Selecting previously unselected package libwayland-client0:s390x. 3484s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 3484s Unpacking libwayland-client0:s390x (1.23.1-1) ... 3484s Selecting previously unselected package libxcb-shm0:s390x. 3484s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libegl-mesa0:s390x. 3484s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3484s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3484s Selecting previously unselected package libvulkan1:s390x. 3484s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 3484s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 3484s Selecting previously unselected package libgl1-mesa-dri:s390x. 3484s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 3484s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3484s Selecting previously unselected package libxcb-glx0:s390x. 3484s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 3484s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 3484s Selecting previously unselected package libxxf86vm1:s390x. 3484s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 3484s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 3484s Selecting previously unselected package libglx-mesa0:s390x. 3484s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3484s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3484s Selecting previously unselected package libgraphite2-3:s390x. 3484s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 3484s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3484s Selecting previously unselected package libharfbuzz0b:s390x. 3484s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 3484s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 3484s Selecting previously unselected package x11-common. 3484s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 3484s Unpacking x11-common (1:7.7+23ubuntu3) ... 3484s Selecting previously unselected package libice6:s390x. 3484s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 3484s Unpacking libice6:s390x (2:1.1.1-1) ... 3484s Selecting previously unselected package libwacom-common. 3484s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 3484s Unpacking libwacom-common (2.14.0-1) ... 3484s Selecting previously unselected package libwacom9:s390x. 3484s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 3484s Unpacking libwacom9:s390x (2.14.0-1) ... 3484s Selecting previously unselected package libinput-bin. 3484s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 3484s Unpacking libinput-bin (1.27.1-1) ... 3484s Selecting previously unselected package libmtdev1t64:s390x. 3484s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 3484s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 3484s Selecting previously unselected package libinput10:s390x. 3484s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 3484s Unpacking libinput10:s390x (1.27.1-1) ... 3484s Selecting previously unselected package libjpeg-turbo8:s390x. 3484s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 3484s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3484s Selecting previously unselected package libjpeg8:s390x. 3484s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 3484s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 3484s Selecting previously unselected package libmd4c0:s390x. 3484s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 3484s Unpacking libmd4c0:s390x (0.5.2-2) ... 3484s Selecting previously unselected package libpcre2-16-0:s390x. 3484s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 3484s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3484s Selecting previously unselected package libqt5core5t64:s390x. 3484s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3484s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3484s Selecting previously unselected package libqt5dbus5t64:s390x. 3484s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3484s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3484s Selecting previously unselected package libqt5network5t64:s390x. 3484s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3484s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3484s Selecting previously unselected package libqt5qml5:s390x. 3484s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 3484s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 3485s Selecting previously unselected package libshiboken2-py3-5.15t64. 3485s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3485s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3485s Selecting previously unselected package libpyside2-py3-5.15t64. 3485s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3485s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3485s Selecting previously unselected package libglvnd0:s390x. 3485s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 3485s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 3485s Selecting previously unselected package libegl1:s390x. 3485s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 3485s Unpacking libegl1:s390x (1.7.0-1build1) ... 3485s Selecting previously unselected package libglx0:s390x. 3485s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 3485s Unpacking libglx0:s390x (1.7.0-1build1) ... 3485s Selecting previously unselected package libgl1:s390x. 3485s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 3485s Unpacking libgl1:s390x (1.7.0-1build1) ... 3485s Selecting previously unselected package libsm6:s390x. 3485s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 3485s Unpacking libsm6:s390x (2:1.2.4-1) ... 3485s Selecting previously unselected package libxcb-icccm4:s390x. 3485s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 3485s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 3485s Selecting previously unselected package libxcb-util1:s390x. 3485s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 3485s Unpacking libxcb-util1:s390x (0.4.1-1) ... 3485s Selecting previously unselected package libxcb-image0:s390x. 3485s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 3485s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 3485s Selecting previously unselected package libxcb-keysyms1:s390x. 3485s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 3485s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 3485s Selecting previously unselected package libxcb-render0:s390x. 3485s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 3485s Unpacking libxcb-render0:s390x (1.17.0-2) ... 3485s Selecting previously unselected package libxcb-render-util0:s390x. 3485s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 3485s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 3485s Selecting previously unselected package libxcb-shape0:s390x. 3485s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 3485s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 3485s Selecting previously unselected package libxcb-xinerama0:s390x. 3485s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 3485s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 3485s Selecting previously unselected package libxcb-xinput0:s390x. 3485s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 3485s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 3485s Selecting previously unselected package libxcb-xkb1:s390x. 3485s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 3485s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 3485s Selecting previously unselected package libxkbcommon-x11-0:s390x. 3485s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 3485s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 3485s Selecting previously unselected package libxrender1:s390x. 3485s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 3485s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 3485s Selecting previously unselected package libqt5gui5t64:s390x. 3485s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3485s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3485s Selecting previously unselected package libqt5widgets5t64:s390x. 3485s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3485s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3485s Selecting previously unselected package libqt5svg5:s390x. 3485s Preparing to unpack .../65-libqt5svg5_5.15.15-2_s390x.deb ... 3485s Unpacking libqt5svg5:s390x (5.15.15-2) ... 3485s Selecting previously unselected package python3-pyside2.qtcore. 3485s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 3485s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 3485s Selecting previously unselected package python3-pyside2.qtgui. 3485s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 3485s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 3485s Selecting previously unselected package python3-pyside2.qtwidgets. 3485s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 3485s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 3485s Selecting previously unselected package python3-pyside2.qtsvg. 3485s Preparing to unpack .../69-python3-pyside2.qtsvg_5.15.16-3.1_s390x.deb ... 3485s Unpacking python3-pyside2.qtsvg (5.15.16-3.1) ... 3485s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3485s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 3485s Setting up libwayland-server0:s390x (1.23.1-1) ... 3485s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 3485s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 3485s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 3485s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 3485s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 3485s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3485s Setting up libxcb-render0:s390x (1.17.0-2) ... 3485s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 3485s Setting up libglvnd0:s390x (1.7.0-1build1) ... 3485s Setting up libxcb-glx0:s390x (1.17.0-2) ... 3485s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 3485s Setting up libxcb-shape0:s390x (1.17.0-2) ... 3485s Setting up x11-common (1:7.7+23ubuntu3) ... 3485s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 3485s Setting up libxcb-shm0:s390x (1.17.0-2) ... 3485s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 3485s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3485s Setting up libxcb-util1:s390x (0.4.1-1) ... 3485s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 3485s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 3485s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 3485s Setting up libxcb-present0:s390x (1.17.0-2) ... 3485s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3485s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 3485s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 3485s Setting up libxcb-sync1:s390x (1.17.0-2) ... 3485s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 3485s Setting up fonts-dejavu-mono (2.37-8) ... 3485s Setting up fonts-dejavu-core (2.37-8) ... 3485s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3485s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3485s Setting up libvulkan1:s390x (1.4.304.0-1) ... 3485s Setting up libmtdev1t64:s390x (1.1.7-1) ... 3485s Setting up libxshmfence1:s390x (1.3-1build5) ... 3485s Setting up libxcb-randr0:s390x (1.17.0-2) ... 3485s Setting up libmd4c0:s390x (0.5.2-2) ... 3485s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 3485s Setting up libwacom-common (2.14.0-1) ... 3485s Setting up libwayland-client0:s390x (1.23.1-1) ... 3485s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 3485s Setting up libice6:s390x (2:1.1.1-1) ... 3485s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3485s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3485s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 3485s Setting up libwacom9:s390x (2.14.0-1) ... 3485s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 3485s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3485s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3485s Setting up libinput-bin (1.27.1-1) ... 3485s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3485s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 3485s Setting up libegl1:s390x (1.7.0-1build1) ... 3485s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3485s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3485s Setting up libsm6:s390x (2:1.2.4-1) ... 3485s Setting up libinput10:s390x (1.27.1-1) ... 3485s Setting up fontconfig (2.15.0-2ubuntu1) ... 3487s Regenerating fonts cache... done. 3487s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3487s Setting up libglx0:s390x (1.7.0-1build1) ... 3487s Setting up libgl1:s390x (1.7.0-1build1) ... 3488s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 3488s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3488s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 3488s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3488s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 3488s Setting up libqt5svg5:s390x (5.15.15-2) ... 3488s Setting up python3-pyside2.qtsvg (5.15.16-3.1) ... 3488s Processing triggers for man-db (2.13.0-1) ... 3488s Processing triggers for udev (257.2-3ubuntu1) ... 3488s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3488s autopkgtest: DBG: testbed command exited with code 0 3488s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtsvg'], kind short, sout pipe, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command21-packages.all"], kind short, sout raw, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command21-packages.all /tmp/autopkgtest-work.fketnn_8/out/command21-packages.all 3489s autopkgtest: DBG: got reply from testbed: ok 3489s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 3489s autopkgtest: DBG: testbed command exited with code 1 3489s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 3489s autopkgtest: DBG: testbed command exited with code 0 3489s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 3493s autopkgtest: DBG: got reply from testbed: ok 3493s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 3493s autopkgtest: DBG: testbed command exited with code 0 3493s autopkgtest [13:27:40]: test command21: debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg 3493s autopkgtest [13:27:40]: test command21: [----------------------- 3493s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command21-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command21-stderr --stdout=/tmp/autopkgtest.SBuPUV/command21-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg'"], kind test, sout raw, serr raw, env [] 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command21-artifacts 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command21-stderr 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command21-stdout 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.EPK6vIYXsq/out to stdout and file: /tmp/autopkgtest.SBuPUV/command21-stdout 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.EPK6vIYXsq/err to standard error and file: /tmp/autopkgtest.SBuPUV/command21-stdout 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2202 to /tmp/autopkgtest_script_pid 3493s Testing python3 package python3-pyside2.qtsvg 3493s Testing with python3.13: 3493s 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 3493s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 3493s autopkgtest: DBG: testbed command exited with code 0 3494s autopkgtest [13:27:41]: test command21: -----------------------] 3494s autopkgtest: DBG: testbed executing test finished with exit status 0 3494s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command21-stdout /tmp/autopkgtest-work.fketnn_8/out/command21-stdout 3494s autopkgtest: DBG: got reply from testbed: ok 3494s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command21-stderr /tmp/autopkgtest-work.fketnn_8/out/command21-stderr 3494s autopkgtest: DBG: got reply from testbed: ok 3494s command21 PASS (superficial) 3494s autopkgtest [13:27:41]: test command21: - - - - - - - - - - results - - - - - - - - - - 3494s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command21-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 3494s autopkgtest: DBG: got reply from testbed: ok 3494s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command21-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3494s autopkgtest: DBG: testbed command exited with code 0 3494s autopkgtest [13:27:41]: test command22: preparing testbed 3494s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtsvg', 'python3'], deps_new=['python3-pyside2.qtwebsockets', 'python3'] 3494s autopkgtest: DBG: testbed reset 3494s autopkgtest: DBG: sending command to testbed: revert 3597s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 3597s autopkgtest: DBG: sending command to testbed: print-execute-command 3597s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 3597s autopkgtest: DBG: sending command to testbed: capabilities 3597s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 3597s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 3597s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3598s autopkgtest: DBG: testbed command exited with code 0 3598s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 3598s autopkgtest: DBG: got reply from testbed: ok 3598s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3598s autopkgtest: DBG: testbed command exited with code 0 3598s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3598s autopkgtest: DBG: testbed command exited with code 0 3598s autopkgtest [13:29:25]: testbed dpkg architecture: s390x 3598s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3598s autopkgtest: DBG: testbed command exited with code 0 3598s autopkgtest [13:29:25]: testbed apt version: 2.9.30 3598s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3598s autopkgtest: DBG: testbed command exited with code 0 3598s autopkgtest: DBG: testbed has eatmydata 3598s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3599s autopkgtest: DBG: testbed command exited with code 0 3599s autopkgtest [13:29:26]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3599s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 3599s autopkgtest: DBG: testbed command exited with code 0 3599s autopkgtest [13:29:26]: testbed release detected to be: plucky 3599s 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 [] 3599s autopkgtest: DBG: testbed command exited with code 0 3599s 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 [] 3599s autopkgtest: DBG: testbed command exited with code 0 3599s autopkgtest: DBG: adding APT source: Types: deb deb-src 3599s URIs: http://ftpmaster.internal/ubuntu/ 3599s Suites: plucky-proposed 3599s Components: main restricted universe multiverse 3599s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3599s 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 [] 3599s autopkgtest: DBG: testbed command exited with code 0 3599s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3599s Package: * 3599s Pin: release plucky-proposed 3599s Pin-Priority: 500 3599s 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 [] 3599s autopkgtest: DBG: testbed command exited with code 0 3599s autopkgtest [13:29:26]: updating testbed package index (apt update) 3599s 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'] 3600s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3600s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3600s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3600s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3600s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 3600s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 3600s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3600s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 3600s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 3600s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3600s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 3601s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 3601s Fetched 1711 kB in 1s (1201 kB/s) 3602s Reading package lists... 3602s autopkgtest: DBG: testbed command exited with code 0 3602s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3602s Package: * 3602s Pin: release plucky-proposed 3602s Pin-Priority: 100 3602s 3602s Package: src:sphinx:any 3602s Pin: release plucky-proposed 3602s Pin-Priority: 995 3602s 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 [] 3602s autopkgtest: DBG: testbed command exited with code 0 3602s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3602s autopkgtest: DBG: testbed command exited with code 0 3602s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 3602s + lsb_release --codename --short 3602s + RELEASE=plucky 3602s + cat 3602s + [ plucky != trusty ] 3602s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3602s Reading package lists... 3602s Building dependency tree... 3602s Reading state information... 3603s Calculating upgrade... 3603s The following packages were automatically installed and are no longer required: 3603s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3603s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3603s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3603s linux-tools-6.11.0-8-generic 3603s Use 'sudo apt autoremove' to remove them. 3603s The following packages will be upgraded: 3603s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 3603s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3603s Need to get 1982 kB of archives. 3603s After this operation, 22.5 kB of additional disk space will be used. 3603s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 3603s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 3603s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 3603s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 3603s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 3603s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 3604s Preconfiguring packages ... 3604s Fetched 1982 kB in 1s (3155 kB/s) 3604s (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.) 3604s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 3604s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 3604s Setting up sysvinit-utils (3.14-1ubuntu1) ... 3604s (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.) 3604s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 3604s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 3604s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 3604s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 3604s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 3604s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3604s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 3604s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3604s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 3604s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 3604s Setting up liblsof0 (4.99.4+dfsg-1) ... 3604s Setting up iproute2 (6.13.0-1ubuntu1) ... 3604s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 3604s Setting up lsof (4.99.4+dfsg-1) ... 3604s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 3604s Processing triggers for man-db (2.13.0-1) ... 3605s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3605s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3605s + /usr/lib/apt/apt-helper analyze-pattern ?true 3605s + uname -r 3605s + sed s/\./\\./g 3605s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3605s + apt list ?obsolete 3605s + tail -n+2 3605s + cut -d/ -f1+ grep -v ^linux-.*6\.12\.0-15-generic.* 3605s 3605s + true 3605s + obsolete_pkgs= 3605s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3605s Reading package lists... 3605s Building dependency tree... 3605s Reading state information... 3606s The following packages will be REMOVED: 3606s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3606s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3606s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3606s linux-tools-6.11.0-8-generic* 3606s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 3606s After this operation, 167 MB disk space will be freed. 3606s (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.) 3606s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3606s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3606s Removing libpython3.12t64:s390x (3.12.9-1) ... 3606s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3606s Removing libnsl2:s390x (1.3.0-3build3) ... 3606s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3606s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3606s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3607s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3607s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3607s (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.) 3607s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3607s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3607s + grep -q trusty /etc/lsb-release 3607s + [ ! -d /usr/share/doc/unattended-upgrades ] 3607s + [ ! -d /usr/share/doc/lxd ] 3607s + [ ! -d /usr/share/doc/lxd-client ] 3607s + [ ! -d /usr/share/doc/snapd ] 3607s + type iptables 3607s + cat 3607s + chmod 755 /etc/rc.local 3607s + . /etc/rc.local 3607s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3607s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3607s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3607s + uname -m 3607s + [ s390x = ppc64le ] 3607s + [ -d /run/systemd/system ] 3607s + systemd-detect-virt --quiet --vm 3607s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3607s + cat 3607s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3607s + echo COMPRESS=lz4 3607s autopkgtest: DBG: testbed command exited with code 0 3607s autopkgtest [13:29:34]: upgrading testbed (apt dist-upgrade and autopurge) 3607s 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'] 3608s Reading package lists... 3608s Building dependency tree... 3608s Reading state information... 3608s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3608s Starting 2 pkgProblemResolver with broken count: 0 3608s Done 3608s Entering ResolveByKeep 3608s 3608s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3608s autopkgtest: DBG: testbed command exited with code 0 3608s 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'] 3609s Reading package lists... 3609s Building dependency tree... 3609s Reading state information... 3609s Starting pkgProblemResolver with broken count: 0 3609s Starting 2 pkgProblemResolver with broken count: 0 3609s Done 3609s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3609s autopkgtest: DBG: testbed command exited with code 0 3609s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3609s autopkgtest: DBG: testbed command exited with code 1 3609s autopkgtest [13:29:36]: rebooting testbed after setup commands that affected boot 3609s autopkgtest: DBG: sending command to testbed: reboot 3618s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 3625s autopkgtest: DBG: got reply from testbed: ok 3625s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3625s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3625s autopkgtest: DBG: testbed command exited with code 0 3625s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3626s autopkgtest: DBG: got reply from testbed: ok 3626s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3626s autopkgtest: DBG: testbed command exited with code 0 3626s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3626s autopkgtest: DBG: testbed command exited with code 0 3626s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3626s autopkgtest: DBG: testbed command exited with code 0 3626s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3626s autopkgtest: DBG: testbed command exited with code 0 3626s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3627s autopkgtest: DBG: got reply from testbed: ok 3627s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3627s autopkgtest: DBG: testbed command exited with code 0 3627s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3627s autopkgtest: DBG: testbed command exited with code 0 3627s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3627s autopkgtest: DBG: testbed command exited with code 0 3627s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 3627s autopkgtest: DBG: testbed command exited with code 0 3627s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 3627s autopkgtest: DBG: got reply from testbed: ok 3627s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3627s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3628s autopkgtest: DBG: testbed command exited with code 0 3628s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3628s autopkgtest: DBG: got reply from testbed: ok 3628s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3628s autopkgtest: DBG: testbed command exited with code 0 3628s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3628s autopkgtest: DBG: testbed command exited with code 0 3628s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3628s autopkgtest: DBG: testbed command exited with code 0 3628s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3628s autopkgtest: DBG: testbed command exited with code 0 3628s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3629s autopkgtest: DBG: got reply from testbed: ok 3629s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3629s autopkgtest: DBG: testbed command exited with code 0 3629s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3629s autopkgtest: DBG: testbed command exited with code 0 3629s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3629s autopkgtest: DBG: testbed command exited with code 0 3629s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3629s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtwebsockets', 'python3'] 3629s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtwebsockets, python3 3629s autopkgtest: DBG: can use apt-get on testbed: True 3629s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtwebsockets, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3629s Reading package lists... 3630s Building dependency tree... 3630s Reading state information... 3630s Starting pkgProblemResolver with broken count: 0 3630s Starting 2 pkgProblemResolver with broken count: 0 3630s Done 3630s The following NEW packages will be installed: 3630s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 3630s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5websockets5 3630s libshiboken2-py3-5.15t64 python3-pyside2.qtcore python3-pyside2.qtnetwork 3630s python3-pyside2.qtwebsockets 3630s 0 upgraded, 12 newly installed, 0 to remove and 0 not upgraded. 3630s Need to get 6931 kB of archives. 3630s After this operation, 24.7 MB of additional disk space will be used. 3630s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 3630s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 3630s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 3631s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 3631s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 3631s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 3631s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 3631s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 3631s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5websockets5 s390x 5.15.15-2 [64.3 kB] 3631s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 3631s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 3631s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwebsockets s390x 5.15.16-3.1 [43.1 kB] 3631s Fetched 6931 kB in 1s (7453 kB/s) 3631s Selecting previously unselected package libdouble-conversion3:s390x. 3631s (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.) 3631s Preparing to unpack .../00-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 3631s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 3631s Selecting previously unselected package libpcre2-16-0:s390x. 3631s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 3631s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3631s Selecting previously unselected package libqt5core5t64:s390x. 3631s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3631s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3631s Selecting previously unselected package libqt5dbus5t64:s390x. 3631s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3631s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3631s Selecting previously unselected package libqt5network5t64:s390x. 3631s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3631s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3631s Selecting previously unselected package libqt5qml5:s390x. 3631s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 3631s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 3631s Selecting previously unselected package libshiboken2-py3-5.15t64. 3631s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3631s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3631s Selecting previously unselected package libpyside2-py3-5.15t64. 3631s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3631s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3631s Selecting previously unselected package libqt5websockets5:s390x. 3631s Preparing to unpack .../08-libqt5websockets5_5.15.15-2_s390x.deb ... 3631s Unpacking libqt5websockets5:s390x (5.15.15-2) ... 3631s Selecting previously unselected package python3-pyside2.qtcore. 3631s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 3631s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 3631s Selecting previously unselected package python3-pyside2.qtnetwork. 3631s Preparing to unpack .../10-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 3631s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 3631s Selecting previously unselected package python3-pyside2.qtwebsockets. 3631s Preparing to unpack .../11-python3-pyside2.qtwebsockets_5.15.16-3.1_s390x.deb ... 3631s Unpacking python3-pyside2.qtwebsockets (5.15.16-3.1) ... 3631s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 3631s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3631s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3631s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3631s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3631s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3631s Setting up libqt5websockets5:s390x (5.15.15-2) ... 3631s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 3631s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3632s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 3632s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 3632s Setting up python3-pyside2.qtwebsockets (5.15.16-3.1) ... 3632s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3632s autopkgtest: DBG: testbed command exited with code 0 3632s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtwebsockets'], kind short, sout pipe, serr pipe, env [] 3632s autopkgtest: DBG: testbed command exited with code 0 3632s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command22-packages.all"], kind short, sout raw, serr pipe, env [] 3632s autopkgtest: DBG: testbed command exited with code 0 3632s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command22-packages.all /tmp/autopkgtest-work.fketnn_8/out/command22-packages.all 3632s autopkgtest: DBG: got reply from testbed: ok 3632s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 3632s autopkgtest: DBG: testbed command exited with code 1 3632s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 3633s autopkgtest: DBG: testbed command exited with code 0 3633s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 3635s autopkgtest: DBG: got reply from testbed: ok 3635s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 3635s autopkgtest: DBG: testbed command exited with code 0 3635s autopkgtest [13:30:02]: test command22: debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets 3635s autopkgtest [13:30:02]: test command22: [----------------------- 3635s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command22-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command22-stderr --stdout=/tmp/autopkgtest.SBuPUV/command22-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets'"], kind test, sout raw, serr raw, env [] 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command22-artifacts 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command22-stderr 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command22-stdout 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.jq4TuJZmzz/out to stdout and file: /tmp/autopkgtest.SBuPUV/command22-stdout 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.jq4TuJZmzz/err to standard error and file: /tmp/autopkgtest.SBuPUV/command22-stdout 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 1315 to /tmp/autopkgtest_script_pid 3635s Testing python3 package python3-pyside2.qtwebsockets 3635s Testing with python3.13: 3635s 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 3635s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 3635s autopkgtest: DBG: testbed command exited with code 0 3636s autopkgtest [13:30:03]: test command22: -----------------------] 3636s autopkgtest: DBG: testbed executing test finished with exit status 0 3636s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command22-stdout /tmp/autopkgtest-work.fketnn_8/out/command22-stdout 3636s autopkgtest: DBG: got reply from testbed: ok 3636s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command22-stderr /tmp/autopkgtest-work.fketnn_8/out/command22-stderr 3636s autopkgtest: DBG: got reply from testbed: ok 3636s autopkgtest [13:30:03]: test command22: - - - - - - - - - - results - - - - - - - - - - 3636s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command22-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 3636s command22 PASS (superficial) 3636s autopkgtest: DBG: got reply from testbed: ok 3636s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command22-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3636s autopkgtest: DBG: testbed command exited with code 0 3636s autopkgtest [13:30:03]: test command23: preparing testbed 3636s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtwebsockets', 'python3'], deps_new=['python3-pyside2.qtopenglfunctions', 'python3'] 3636s autopkgtest: DBG: testbed reset 3636s autopkgtest: DBG: sending command to testbed: revert 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for cda09acf-2592-4ca5-aea5-917ff08e1e3f to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 967a2ba9-fff8-4a45-83c2-bd907a38af59 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 7446a171-e7a7-4394-a606-4e775d357f34 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for cbcf0f14-9f14-4e10-8c59-354c6a7725b1 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for ab627b65-2149-4f84-884e-aa013152a506 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for d3171650-bbac-44d9-94a0-6e314263f348 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 98336881-f0e1-40ba-b913-773c1c72cb11 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for d27a1578-f8ea-4095-8bc5-a5e88376849e to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for ba1e219c-7fb7-4bd3-80a6-7fb6bec4d44b to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 7c53e3fb-7668-4963-866b-4b169159ee7b to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for f9668fb2-a146-4f92-8859-a5435a159903 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 78fbc9ea-b4f6-4d84-bb4e-35e4b4033984 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 28608cff-f801-43a8-9fb0-59246df585ed to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 4e2579b0-1877-4b50-83b6-d93c324c9718 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 9c06b617-a0ca-40f5-ace6-f2cf6ddaea36 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for f5d90696-c3cd-4a86-9a78-370a4ec421f8 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 2fb99df7-44a2-4ea5-8b27-4406e2f7aa8f to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for a940b193-e284-4571-8030-7101d4884e55 to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s flock: timeout while waiting to get lock 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3724s nova [W] Timed out waiting for 4a241917-8467-4113-94e6-f8ca95feadda to get deleted. 3724s nova [W] Using flock in prodstack6-s390x 3724s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3725s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.SBuPUV 3725s autopkgtest: DBG: sending command to testbed: print-execute-command 3725s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.2am56wuk/runcmd 3725s autopkgtest: DBG: sending command to testbed: capabilities 3725s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system isolation-machine ok revert reboot suggested-normal-user=ubuntu 3725s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'isolation-machine', 'ok', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 3725s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3725s autopkgtest: DBG: testbed command exited with code 0 3725s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.SBuPUV/wrapper.sh 3726s autopkgtest: DBG: got reply from testbed: ok 3726s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 3726s autopkgtest: DBG: testbed command exited with code 0 3726s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 3726s autopkgtest: DBG: testbed command exited with code 0 3726s autopkgtest [13:31:33]: testbed dpkg architecture: s390x 3726s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 3726s autopkgtest: DBG: testbed command exited with code 0 3726s autopkgtest [13:31:33]: testbed apt version: 2.9.30 3726s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 3726s autopkgtest: DBG: testbed command exited with code 0 3726s autopkgtest: DBG: testbed has eatmydata 3726s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 3726s autopkgtest: DBG: testbed command exited with code 0 3726s autopkgtest [13:31:33]: @@@@@@@@@@@@@@@@@@@@ test bed setup 3726s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 3727s autopkgtest: DBG: testbed command exited with code 0 3727s autopkgtest [13:31:34]: testbed release detected to be: plucky 3727s 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 [] 3727s autopkgtest: DBG: testbed command exited with code 0 3727s 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 [] 3727s autopkgtest: DBG: testbed command exited with code 0 3727s autopkgtest: DBG: adding APT source: Types: deb deb-src 3727s URIs: http://ftpmaster.internal/ubuntu/ 3727s Suites: plucky-proposed 3727s Components: main restricted universe multiverse 3727s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 3727s 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 [] 3727s autopkgtest: DBG: testbed command exited with code 0 3727s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 3727s Package: * 3727s Pin: release plucky-proposed 3727s Pin-Priority: 500 3727s 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 [] 3727s autopkgtest: DBG: testbed command exited with code 0 3727s autopkgtest [13:31:34]: updating testbed package index (apt update) 3727s 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'] 3728s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 3728s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 3728s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 3728s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 3728s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 3728s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 3728s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 3728s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 3728s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 3728s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 3728s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 3728s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 3728s Fetched 1711 kB in 1s (1906 kB/s) 3729s Reading package lists... 3729s autopkgtest: DBG: testbed command exited with code 0 3729s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 3729s Package: * 3729s Pin: release plucky-proposed 3729s Pin-Priority: 100 3729s 3729s Package: src:sphinx:any 3729s Pin: release plucky-proposed 3729s Pin-Priority: 995 3729s 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 [] 3729s autopkgtest: DBG: testbed command exited with code 0 3729s 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.SBuPUV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 3729s autopkgtest: DBG: testbed command exited with code 0 3729s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 3730s + lsb_release --codename --short 3730s + RELEASE=plucky 3730s + cat 3730s + [ plucky != trusty ] 3730s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 3730s Reading package lists... 3730s Building dependency tree... 3730s Reading state information... 3730s Calculating upgrade... 3730s The following packages were automatically installed and are no longer required: 3730s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 3730s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 3730s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 3730s linux-tools-6.11.0-8-generic 3730s Use 'sudo apt autoremove' to remove them. 3730s The following packages will be upgraded: 3730s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 3730s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3730s Need to get 1982 kB of archives. 3730s After this operation, 22.5 kB of additional disk space will be used. 3730s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 3730s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 3731s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 3731s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 3731s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 3731s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 3731s Preconfiguring packages ... 3731s Fetched 1982 kB in 1s (3213 kB/s) 3731s (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.) 3731s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 3731s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 3731s Setting up sysvinit-utils (3.14-1ubuntu1) ... 3731s (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.) 3731s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 3731s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 3731s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 3731s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 3731s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 3731s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3731s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 3731s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 3731s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 3731s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 3731s Setting up liblsof0 (4.99.4+dfsg-1) ... 3731s Setting up iproute2 (6.13.0-1ubuntu1) ... 3731s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 3731s Setting up lsof (4.99.4+dfsg-1) ... 3731s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 3731s Processing triggers for man-db (2.13.0-1) ... 3732s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3732s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 3732s + /usr/lib/apt/apt-helper analyze-pattern ?true 3732s + uname -r 3732s + sed s/\./\\./g 3732s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 3732s + apt list ?obsolete 3732s + + cut -d/ -f1 3732s tail -n+2 3732s + grep -v ^linux-.*6\.12\.0-15-generic.* 3733s + true 3733s + obsolete_pkgs= 3733s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 3733s Reading package lists... 3733s Building dependency tree... 3733s Reading state information... 3733s The following packages will be REMOVED: 3733s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 3733s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 3733s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 3733s linux-tools-6.11.0-8-generic* 3733s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 3733s After this operation, 167 MB disk space will be freed. 3733s (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.) 3733s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 3733s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 3733s Removing libpython3.12t64:s390x (3.12.9-1) ... 3733s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 3733s Removing libnsl2:s390x (1.3.0-3build3) ... 3733s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 3733s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 3733s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 3734s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3735s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3735s (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.) 3735s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 3735s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 3735s + grep -q trusty /etc/lsb-release 3735s + [ ! -d /usr/share/doc/unattended-upgrades ] 3735s + [ ! -d /usr/share/doc/lxd ] 3735s + [ ! -d /usr/share/doc/lxd-client ] 3735s + [ ! -d /usr/share/doc/snapd ] 3735s + type iptables 3735s + cat 3735s + chmod 755 /etc/rc.local 3735s + . /etc/rc.local 3735s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 3735s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 3735s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 3735s + uname -m 3735s + [ s390x = ppc64le ] 3735s + [ -d /run/systemd/system ] 3735s + systemd-detect-virt --quiet --vm 3735s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 3735s + cat 3735s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 3735s + echo COMPRESS=lz4 3735s autopkgtest: DBG: testbed command exited with code 0 3735s autopkgtest [13:31:42]: upgrading testbed (apt dist-upgrade and autopurge) 3735s 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'] 3735s Reading package lists... 3735s Building dependency tree... 3735s Reading state information... 3735s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 3735s Starting 2 pkgProblemResolver with broken count: 0 3735s Done 3736s Entering ResolveByKeep 3736s 3736s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3736s autopkgtest: DBG: testbed command exited with code 0 3736s 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'] 3736s Reading package lists... 3736s Building dependency tree... 3736s Reading state information... 3736s Starting pkgProblemResolver with broken count: 0 3736s Starting 2 pkgProblemResolver with broken count: 0 3736s Done 3737s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 3737s autopkgtest: DBG: testbed command exited with code 0 3737s 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.SBuPUV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 3737s autopkgtest: DBG: testbed command exited with code 1 3737s autopkgtest [13:31:44]: rebooting testbed after setup commands that affected boot 3737s autopkgtest: DBG: sending command to testbed: reboot 3750s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 3755s autopkgtest: DBG: got reply from testbed: ok 3755s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3755s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3755s autopkgtest: DBG: testbed command exited with code 0 3755s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3755s autopkgtest: DBG: got reply from testbed: ok 3755s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3755s autopkgtest: DBG: testbed command exited with code 0 3755s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3755s autopkgtest: DBG: testbed command exited with code 0 3755s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3756s autopkgtest: DBG: testbed command exited with code 0 3756s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3756s autopkgtest: DBG: testbed command exited with code 0 3756s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3756s autopkgtest: DBG: got reply from testbed: ok 3756s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3756s autopkgtest: DBG: testbed command exited with code 0 3756s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3756s autopkgtest: DBG: testbed command exited with code 0 3756s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3756s autopkgtest: DBG: testbed command exited with code 0 3756s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/testbed-packages"], kind short, sout raw, serr pipe, env [] 3757s autopkgtest: DBG: testbed command exited with code 0 3757s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/testbed-packages /tmp/autopkgtest-work.fketnn_8/out/testbed-packages 3757s autopkgtest: DBG: got reply from testbed: ok 3757s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 3757s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3757s autopkgtest: DBG: testbed command exited with code 0 3757s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot 3757s autopkgtest: DBG: got reply from testbed: ok 3757s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3757s autopkgtest: DBG: testbed command exited with code 0 3757s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3758s autopkgtest: DBG: testbed command exited with code 0 3758s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 3758s autopkgtest: DBG: testbed command exited with code 0 3758s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV'], kind short, sout raw, serr pipe, env [] 3758s autopkgtest: DBG: testbed command exited with code 0 3758s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare 3758s autopkgtest: DBG: got reply from testbed: ok 3758s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3758s autopkgtest: DBG: testbed command exited with code 0 3758s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.SBuPUV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 3758s autopkgtest: DBG: testbed command exited with code 0 3758s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 3759s autopkgtest: DBG: testbed command exited with code 0 3759s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 3759s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtopenglfunctions', 'python3'] 3759s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtopenglfunctions, python3 3759s autopkgtest: DBG: can use apt-get on testbed: True 3759s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-pyside2.qtopenglfunctions, python3'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 3759s Reading package lists... 3759s Building dependency tree... 3759s Reading state information... 3759s Starting pkgProblemResolver with broken count: 0 3759s Starting 2 pkgProblemResolver with broken count: 0 3759s Done 3759s The following NEW packages will be installed: 3759s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 3759s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 3759s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 3759s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 3759s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 3759s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 3759s libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 libsm6 libvulkan1 3759s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 3759s libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 3759s libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 3759s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xfixes0 3759s libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxkbcommon-x11-0 libxrender1 3759s libxshmfence1 libxxf86vm1 mesa-libgallium python3-pyside2.qtcore 3759s python3-pyside2.qtgui python3-pyside2.qtopenglfunctions x11-common 3760s 0 upgraded, 67 newly installed, 0 to remove and 0 not upgraded. 3760s Need to get 25.6 MB of archives. 3760s After this operation, 102 MB of additional disk space will be used. 3760s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 3760s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 3760s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 3760s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 3760s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 3760s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 3760s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 3760s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 3760s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 3760s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 3760s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 3760s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 3760s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 3760s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 3760s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 3760s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 3760s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 3760s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 3760s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 3760s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 3760s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 3760s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 3760s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 3760s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 3760s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 3760s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 3760s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 3760s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 3760s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 3760s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 3760s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 3760s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 3760s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 3760s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 3760s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 3760s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 3761s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 3761s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 3761s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 3761s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 3761s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 3761s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 3761s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 3761s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 3761s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 3761s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 3761s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 3761s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 3761s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 3761s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 3761s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 3761s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 3761s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 3761s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 3761s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 3761s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 3761s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 3761s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 3761s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 3761s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 3761s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 3761s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 3761s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 3761s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 3761s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 3761s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 3761s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtopenglfunctions s390x 5.15.16-3.1 [1157 kB] 3761s Fetched 25.6 MB in 2s (15.2 MB/s) 3761s Selecting previously unselected package libfreetype6:s390x. 3762s (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.) 3762s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 3762s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 3762s Selecting previously unselected package fonts-dejavu-mono. 3762s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 3762s Unpacking fonts-dejavu-mono (2.37-8) ... 3762s Selecting previously unselected package fonts-dejavu-core. 3762s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 3762s Unpacking fonts-dejavu-core (2.37-8) ... 3762s Selecting previously unselected package fontconfig-config. 3762s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 3762s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 3762s Selecting previously unselected package libfontconfig1:s390x. 3762s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 3762s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3762s Selecting previously unselected package fontconfig. 3762s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 3762s Unpacking fontconfig (2.15.0-2ubuntu1) ... 3762s Selecting previously unselected package libdouble-conversion3:s390x. 3762s Preparing to unpack .../06-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 3762s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 3762s Selecting previously unselected package libdrm-radeon1:s390x. 3762s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 3762s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 3762s Selecting previously unselected package libwayland-server0:s390x. 3762s Preparing to unpack .../08-libwayland-server0_1.23.1-1_s390x.deb ... 3762s Unpacking libwayland-server0:s390x (1.23.1-1) ... 3762s Selecting previously unselected package libglapi-mesa:s390x. 3762s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 3762s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3762s Selecting previously unselected package libx11-xcb1:s390x. 3762s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 3762s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 3762s Selecting previously unselected package libxcb-dri3-0:s390x. 3762s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libxcb-present0:s390x. 3762s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-present0:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libxcb-randr0:s390x. 3762s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libxcb-sync1:s390x. 3762s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libxcb-xfixes0:s390x. 3762s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libxshmfence1:s390x. 3762s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 3762s Unpacking libxshmfence1:s390x (1.3-1build5) ... 3762s Selecting previously unselected package mesa-libgallium:s390x. 3762s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 3762s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3762s Selecting previously unselected package libgbm1:s390x. 3762s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 3762s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 3762s Selecting previously unselected package libwayland-client0:s390x. 3762s Preparing to unpack .../19-libwayland-client0_1.23.1-1_s390x.deb ... 3762s Unpacking libwayland-client0:s390x (1.23.1-1) ... 3762s Selecting previously unselected package libxcb-shm0:s390x. 3762s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libegl-mesa0:s390x. 3762s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3762s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3762s Selecting previously unselected package libvulkan1:s390x. 3762s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 3762s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 3762s Selecting previously unselected package libgl1-mesa-dri:s390x. 3762s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 3762s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3762s Selecting previously unselected package libxcb-glx0:s390x. 3762s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 3762s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 3762s Selecting previously unselected package libxxf86vm1:s390x. 3762s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 3762s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 3762s Selecting previously unselected package libglx-mesa0:s390x. 3762s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 3762s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3762s Selecting previously unselected package libgraphite2-3:s390x. 3762s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 3762s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3762s Selecting previously unselected package libharfbuzz0b:s390x. 3762s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 3762s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 3762s Selecting previously unselected package x11-common. 3762s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 3762s Unpacking x11-common (1:7.7+23ubuntu3) ... 3762s Selecting previously unselected package libice6:s390x. 3762s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 3762s Unpacking libice6:s390x (2:1.1.1-1) ... 3762s Selecting previously unselected package libwacom-common. 3762s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 3762s Unpacking libwacom-common (2.14.0-1) ... 3762s Selecting previously unselected package libwacom9:s390x. 3762s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 3762s Unpacking libwacom9:s390x (2.14.0-1) ... 3762s Selecting previously unselected package libinput-bin. 3762s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 3762s Unpacking libinput-bin (1.27.1-1) ... 3762s Selecting previously unselected package libmtdev1t64:s390x. 3762s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 3762s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 3762s Selecting previously unselected package libinput10:s390x. 3762s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 3762s Unpacking libinput10:s390x (1.27.1-1) ... 3762s Selecting previously unselected package libjpeg-turbo8:s390x. 3762s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 3762s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3762s Selecting previously unselected package libjpeg8:s390x. 3762s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 3762s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 3762s Selecting previously unselected package libmd4c0:s390x. 3762s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 3762s Unpacking libmd4c0:s390x (0.5.2-2) ... 3762s Selecting previously unselected package libpcre2-16-0:s390x. 3762s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 3762s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3762s Selecting previously unselected package libqt5core5t64:s390x. 3762s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3762s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3762s Selecting previously unselected package libqt5dbus5t64:s390x. 3762s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3762s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3762s Selecting previously unselected package libqt5network5t64:s390x. 3762s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3762s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3762s Selecting previously unselected package libqt5qml5:s390x. 3762s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 3762s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 3763s Selecting previously unselected package libshiboken2-py3-5.15t64. 3763s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3763s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3763s Selecting previously unselected package libpyside2-py3-5.15t64. 3763s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 3763s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3763s Selecting previously unselected package libglvnd0:s390x. 3763s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 3763s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 3763s Selecting previously unselected package libegl1:s390x. 3763s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 3763s Unpacking libegl1:s390x (1.7.0-1build1) ... 3763s Selecting previously unselected package libglx0:s390x. 3763s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 3763s Unpacking libglx0:s390x (1.7.0-1build1) ... 3763s Selecting previously unselected package libgl1:s390x. 3763s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 3763s Unpacking libgl1:s390x (1.7.0-1build1) ... 3763s Selecting previously unselected package libsm6:s390x. 3763s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 3763s Unpacking libsm6:s390x (2:1.2.4-1) ... 3763s Selecting previously unselected package libxcb-icccm4:s390x. 3763s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 3763s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 3763s Selecting previously unselected package libxcb-util1:s390x. 3763s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 3763s Unpacking libxcb-util1:s390x (0.4.1-1) ... 3763s Selecting previously unselected package libxcb-image0:s390x. 3763s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 3763s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 3763s Selecting previously unselected package libxcb-keysyms1:s390x. 3763s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 3763s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 3763s Selecting previously unselected package libxcb-render0:s390x. 3763s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 3763s Unpacking libxcb-render0:s390x (1.17.0-2) ... 3763s Selecting previously unselected package libxcb-render-util0:s390x. 3763s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 3763s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 3763s Selecting previously unselected package libxcb-shape0:s390x. 3763s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 3763s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 3763s Selecting previously unselected package libxcb-xinerama0:s390x. 3763s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 3763s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 3763s Selecting previously unselected package libxcb-xinput0:s390x. 3763s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 3763s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 3763s Selecting previously unselected package libxcb-xkb1:s390x. 3763s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 3763s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 3763s Selecting previously unselected package libxkbcommon-x11-0:s390x. 3763s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 3763s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 3763s Selecting previously unselected package libxrender1:s390x. 3763s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 3763s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 3763s Selecting previously unselected package libqt5gui5t64:s390x. 3763s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 3763s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3763s Selecting previously unselected package python3-pyside2.qtcore. 3763s Preparing to unpack .../64-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 3763s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 3763s Selecting previously unselected package python3-pyside2.qtgui. 3763s Preparing to unpack .../65-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 3763s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 3763s Selecting previously unselected package python3-pyside2.qtopenglfunctions. 3763s Preparing to unpack .../66-python3-pyside2.qtopenglfunctions_5.15.16-3.1_s390x.deb ... 3763s Unpacking python3-pyside2.qtopenglfunctions (5.15.16-3.1) ... 3763s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 3763s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 3763s Setting up libwayland-server0:s390x (1.23.1-1) ... 3763s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 3763s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 3763s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 3763s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 3763s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 3763s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 3763s Setting up libxcb-render0:s390x (1.17.0-2) ... 3763s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 3763s Setting up libglvnd0:s390x (1.7.0-1build1) ... 3763s Setting up libxcb-glx0:s390x (1.17.0-2) ... 3763s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 3763s Setting up libxcb-shape0:s390x (1.17.0-2) ... 3763s Setting up x11-common (1:7.7+23ubuntu3) ... 3763s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 3763s Setting up libxcb-shm0:s390x (1.17.0-2) ... 3763s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 3763s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 3763s Setting up libxcb-util1:s390x (0.4.1-1) ... 3763s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 3763s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 3763s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 3763s Setting up libxcb-present0:s390x (1.17.0-2) ... 3763s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3763s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 3763s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 3763s Setting up libxcb-sync1:s390x (1.17.0-2) ... 3763s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 3763s Setting up fonts-dejavu-mono (2.37-8) ... 3763s Setting up fonts-dejavu-core (2.37-8) ... 3763s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 3763s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 3763s Setting up libvulkan1:s390x (1.4.304.0-1) ... 3763s Setting up libmtdev1t64:s390x (1.1.7-1) ... 3763s Setting up libxshmfence1:s390x (1.3-1build5) ... 3763s Setting up libxcb-randr0:s390x (1.17.0-2) ... 3763s Setting up libmd4c0:s390x (0.5.2-2) ... 3763s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 3763s Setting up libwacom-common (2.14.0-1) ... 3763s Setting up libwayland-client0:s390x (1.23.1-1) ... 3763s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 3763s Setting up libice6:s390x (2:1.1.1-1) ... 3763s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 3763s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3763s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 3763s Setting up libwacom9:s390x (2.14.0-1) ... 3763s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 3763s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 3763s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3763s Setting up libinput-bin (1.27.1-1) ... 3763s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 3763s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 3763s Setting up libegl1:s390x (1.7.0-1build1) ... 3763s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 3763s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 3763s Setting up libsm6:s390x (2:1.2.4-1) ... 3763s Setting up libinput10:s390x (1.27.1-1) ... 3763s Setting up fontconfig (2.15.0-2ubuntu1) ... 3765s Regenerating fonts cache... done. 3765s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 3765s Setting up libglx0:s390x (1.7.0-1build1) ... 3765s Setting up libgl1:s390x (1.7.0-1build1) ... 3766s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 3766s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 3766s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 3766s Setting up python3-pyside2.qtopenglfunctions (5.15.16-3.1) ... 3766s Processing triggers for man-db (2.13.0-1) ... 3766s Processing triggers for udev (257.2-3ubuntu1) ... 3766s Processing triggers for libc-bin (2.40-4ubuntu1) ... 3767s autopkgtest: DBG: testbed command exited with code 0 3767s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtopenglfunctions'], kind short, sout pipe, serr pipe, env [] 3767s autopkgtest: DBG: testbed command exited with code 0 3767s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.SBuPUV/command23-packages.all"], kind short, sout raw, serr pipe, env [] 3767s autopkgtest: DBG: testbed command exited with code 0 3767s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command23-packages.all /tmp/autopkgtest-work.fketnn_8/out/command23-packages.all 3767s autopkgtest: DBG: got reply from testbed: ok 3767s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr raw, env [] 3767s autopkgtest: DBG: testbed command exited with code 1 3767s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.SBuPUV/build.Lvm'], kind short, sout raw, serr pipe, env [] 3768s autopkgtest: DBG: testbed command exited with code 0 3768s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.fketnn_8/out/tests-tree/ /tmp/autopkgtest.SBuPUV/build.Lvm/src/ 3769s autopkgtest: DBG: got reply from testbed: ok 3769s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.SBuPUV/build.Lvm/src'], kind short, sout raw, serr pipe, env [] 3769s autopkgtest: DBG: testbed command exited with code 0 3769s autopkgtest [13:32:16]: test command23: debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions 3769s autopkgtest [13:32:16]: test command23: [----------------------- 3769s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.SBuPUV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.SBuPUV/command23-artifacts --chdir=/tmp/autopkgtest.SBuPUV/build.Lvm/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.SBuPUV/command23-stderr --stdout=/tmp/autopkgtest.SBuPUV/command23-stdout --tmp=/tmp/autopkgtest.SBuPUV/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions'"], kind test, sout raw, serr raw, env [] 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.SBuPUV/command23-artifacts 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: changing to directory: /tmp/autopkgtest.SBuPUV/build.Lvm/src 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: LANG=C.UTF-8 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LANGUAGE 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ADDRESS 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_ALL 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_COLLATE 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_CTYPE 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MEASUREMENT 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MESSAGES 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_MONETARY 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NAME 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_NUMERIC 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_PAPER 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TELEPHONE 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: unsetting environment: LC_TIME 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: pretending to be a login shell 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write standard error to /tmp/autopkgtest.SBuPUV/command23-stderr 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: will write stdout to /tmp/autopkgtest.SBuPUV/command23-stdout 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.SBuPUV/autopkgtest_tmp 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.o0Rtn39qaP/out to stdout and file: /tmp/autopkgtest.SBuPUV/command23-stdout 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: copying /tmp/tmp.o0Rtn39qaP/err to standard error and file: /tmp/autopkgtest.SBuPUV/command23-stdout 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: writing script pid 2176 to /tmp/autopkgtest_script_pid 3770s Testing python3 package python3-pyside2.qtopenglfunctions 3770s Testing with python3.13: 3770s 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: checking for leaked background processes... 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: waiting for tee/cat subprocesses... 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: cleaning up... 3770s /tmp/autopkgtest.SBuPUV/wrapper.sh: Exit status: 0 3770s autopkgtest: DBG: testbed command exited with code 0 3770s autopkgtest [13:32:17]: test command23: -----------------------] 3770s autopkgtest: DBG: testbed executing test finished with exit status 0 3770s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command23-stdout /tmp/autopkgtest-work.fketnn_8/out/command23-stdout 3770s autopkgtest: DBG: got reply from testbed: ok 3770s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command23-stderr /tmp/autopkgtest-work.fketnn_8/out/command23-stderr 3770s autopkgtest: DBG: got reply from testbed: ok 3770s autopkgtest [13:32:17]: test command23: - - - - - - - - - - results - - - - - - - - - - 3770s command23 PASS (superficial) 3770s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.SBuPUV/command23-artifacts/ /tmp/autopkgtest-work.fketnn_8/out/artifacts/ 3771s autopkgtest: DBG: got reply from testbed: ok 3771s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.SBuPUV/command23-artifacts', '/tmp/autopkgtest.SBuPUV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 3771s autopkgtest: DBG: testbed command exited with code 0 3771s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 3771s autopkgtest [13:32:18]: @@@@@@@@@@@@@@@@@@@@ summary 3771s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 3771s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 3771s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 3771s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 3771s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 3771s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 3771s command1 PASS (superficial) 3771s command2 PASS (superficial) 3771s command3 PASS (superficial) 3771s command4 PASS (superficial) 3771s command6 PASS (superficial) 3771s command7 PASS (superficial) 3771s command8 PASS (superficial) 3771s command9 PASS (superficial) 3771s command10 PASS (superficial) 3771s command11 PASS (superficial) 3771s command12 PASS (superficial) 3771s command13 PASS (superficial) 3771s command15 PASS (superficial) 3771s command16 PASS (superficial) 3771s command17 PASS (superficial) 3771s command18 PASS (superficial) 3771s command19 PASS (superficial) 3771s command20 PASS (superficial) 3771s command21 PASS (superficial) 3771s command22 PASS (superficial) 3771s command23 PASS (superficial) 3771s autopkgtest: DBG: testbed stop 3771s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.SBuPUV 3771s autopkgtest: DBG: sending command to testbed: close 3788s autopkgtest: DBG: got reply from testbed: ok 3788s autopkgtest: DBG: sending command to testbed: quit 3788s nova [W] Timed out waiting for a6a3795e-32de-428c-991d-96fab4e4e03a to get deleted. 3788s nova [W] Using flock in prodstack6-s390x 3788s Creating nova instance adt-plucky-s390x-pyside2-20250219-122927-juju-7f2275-prod-proposed-migration-environment-15-df86bd4a-0afc-4f00-9835-9321d178160e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 3788s nova [W] Timed out waiting for 26d9ddf8-bcc5-414b-8260-e71524e6b5cf to get deleted.