0s autopkgtest: DBG: testbed init 0s autopkgtest [13:58:22]: starting date and time: 2025-02-21 13:58:22+0000 0s autopkgtest [13:58:22]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [13:58:22]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.nwculqua/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:llvm-toolchain-20 --apt-upgrade pyside2 --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-31.secgroup --name adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 --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 104s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 104s autopkgtest: DBG: sending command to testbed: print-execute-command 104s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 104s autopkgtest: DBG: sending command to testbed: capabilities 104s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu isolation-machine revert-full-system reboot revert root-on-testbed 104s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [14:00:07]: testbed dpkg architecture: s390x 105s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [14:00:07]: testbed apt version: 2.9.30ubuntu1 105s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed has eatmydata 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [14:00:07]: @@@@@@@@@@@@@@@@@@@@ test bed setup 105s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [14:00:08]: testbed release detected to be: None 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: adding APT source: Types: deb deb-src 106s URIs: http://ftpmaster.internal/ubuntu/ 106s Suites: plucky-proposed 106s Components: main restricted universe multiverse 106s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 106s Package: * 106s Pin: release plucky-proposed 106s Pin-Priority: 500 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [14:00:08]: updating testbed package index (apt update) 106s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 107s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 107s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 107s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 107s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 107s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 107s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 107s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 107s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 107s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 107s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 107s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 107s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 107s Fetched 1711 kB in 1s (1769 kB/s) 108s Reading package lists... 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 100 108s 108s Package: src:llvm-toolchain-20:any 108s Pin: release plucky-proposed 108s Pin-Priority: 995 108s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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'] 109s + lsb_release --codename --short 109s + RELEASE=plucky 109s + cat 109s + [ plucky != trusty ] 109s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 109s Reading package lists... 109s Building dependency tree... 109s Reading state information... 109s Calculating upgrade... 109s Calculating upgrade... 109s The following packages were automatically installed and are no longer required: 109s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 109s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 109s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 109s linux-tools-6.11.0-8-generic 109s Use 'sudo apt autoremove' to remove them. 109s The following packages will be upgraded: 109s base-files gcc-14-base motd-news-config 109s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 109s Need to get 134 kB of archives. 109s After this operation, 0 B of additional disk space will be used. 109s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 109s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 109s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 110s Fetched 134 kB in 0s (314 kB/s) 110s (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.) 110s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 110s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 110s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 110s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 110s Setting up base-files (13.6ubuntu1) ... 110s Updating /root/.profile to current default. 110s motd-news.service is a disabled or a static unit not running, not starting it. 110s (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.) 110s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 110s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 110s Setting up motd-news-config (13.6ubuntu1) ... 110s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 110s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 110s Processing triggers for install-info (7.1.1-1) ... 110s Processing triggers for man-db (2.13.0-1) ... 111s Processing triggers for initramfs-tools (0.145ubuntu2) ... 111s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 111s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 114s Using config file '/etc/zipl.conf' 114s Building bootmap in '/boot' 114s Adding IPL section 'ubuntu' (default) 114s Preparing boot device for LD-IPL: vda (0000). 114s Done. 115s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 115s + /usr/lib/apt/apt-helper analyze-pattern ?true 115s + uname -r 115s + sed s/\./\\./g 115s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 115s + apt list ?obsolete 115s + tail -n+2 115s + cut+ grep -v ^linux-.*6\.12\.0-15-generic.* 115s -d/ -f1 115s + true 115s + obsolete_pkgs= 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Solving dependencies... 115s The following packages will be REMOVED: 115s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 115s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 115s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 115s linux-tools-6.11.0-8-generic* 115s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 115s After this operation, 167 MB disk space will be freed. 115s (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.) 115s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 115s Removing libpython3.12t64:s390x (3.12.9-1) ... 115s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 115s Removing libnsl2:s390x (1.3.0-3build3) ... 115s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 115s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 116s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s Processing triggers for libc-bin (2.40-4ubuntu1) ... 116s (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 ... 55930 files and directories currently installed.) 116s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 116s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s + grep -q trusty /etc/lsb-release 116s + [ ! -d /usr/share/doc/unattended-upgrades ] 116s + [ ! -d /usr/share/doc/lxd ] 116s + [ ! -d /usr/share/doc/lxd-client ] 116s + [ ! -d /usr/share/doc/snapd ] 116s + type iptables 116s + cat 116s + chmod 755 /etc/rc.local 116s + . /etc/rc.local 116s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 116s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 116s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 116s + uname -m 116s + [ s390x = ppc64le ] 116s + [ -d /run/systemd/system ] 116s + systemd-detect-virt --quiet --vm 116s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 116s + cat 116s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 116s + echo COMPRESS=lz4 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [14:00:18]: upgrading testbed (apt dist-upgrade and autopurge) 116s 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'] 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 117s Starting 2 pkgProblemResolver with broken count: 0 117s Done 117s Entering ResolveByKeep 117s 117s Calculating upgrade... 117s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 118s Solving dependencies... 118s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 1 118s autopkgtest [14:00:20]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest [14:00:40]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 138s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: Binaries: initialising 141s autopkgtest [14:00:43]: @@@@@@@@@@@@@@@@@@@@ apt-source pyside2 141s autopkgtest: DBG: blame += pyside2 141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 141s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pyside2'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtquick$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtquick=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtwidgets$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtwidgets=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^shiboken2$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'shiboken2=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libpyside2-py3-5\\.15t64$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libpyside2-py3-5.15t64=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libshiboken2-py3-5\\.15t64$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libshiboken2-py3-5.15t64=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libpyside2-dev$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libpyside2-dev=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtgui$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtgui=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtprintsupport$'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtprintsupport=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^shiboken2-doc$'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'shiboken2-doc=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qttest$'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qttest=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtsvg$'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtsvg=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtxmlpatterns$'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtxmlpatterns=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtconcurrent$'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtconcurrent=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qthelp$'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qthelp=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtcore$'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtcore=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtnetwork$'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtnetwork=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-pyside2-doc$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-pyside2-doc=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtsql$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtsql=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtuitools$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtuitools=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtmultimediawidgets$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtmultimediawidgets=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtwebsockets$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtwebsockets=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtopenglfunctions$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtopenglfunctions=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtxml$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtxml=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtmultimedia$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtmultimedia=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtopengl$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtopengl=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtqml$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtqml=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pyside2\\.qtwebchannel$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pyside2.qtwebchannel=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^pyside2-tools$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'pyside2-tools=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libshiboken2-dev$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libshiboken2-dev=5.15.16-3.1'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: install_deps: deps_new=[] 154s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s 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.TH8HvJ/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=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5'] 155s + cd / 155s + mktemp -d /tmp/autopkgtest.TH8HvJ/build.XXX 155s + builddir=/tmp/autopkgtest.TH8HvJ/build.4T4 155s + cd /tmp/autopkgtest.TH8HvJ/build.4T4 155s + apt-get source -d -q --only-source pyside2=5.15.16-3.1 156s + OUT=Reading package lists... 156s NOTICE: 'pyside2' packaging is maintained in the 'Git' version control system at: 156s https://salsa.debian.org/qt-kde-team/qt/pyside2.git 156s Please use: 156s git clone https://salsa.debian.org/qt-kde-team/qt/pyside2.git 156s to retrieve the latest (possibly unreleased) updates to the package. 156s Need to get 3620 kB of source archives. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (dsc) [5372 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (tar) [3586 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (diff) [29.0 kB] 156s Fetched 3620 kB in 1s (3079 kB/s) 156s Download complete and in download only mode 156s + [ -n ] 156s + grep ^Get: 156s + echo Reading package lists... 156s NOTICE: 'pyside2' packaging is maintained in the 'Git' version control system at: 156s https://salsa.debian.org/qt-kde-team/qt/pyside2.git 156s Please use: 156s git clone https://salsa.debian.org/qt-kde-team/qt/pyside2.git 156s to retrieve the latest (possibly unreleased) updates to the package. 156s Need to get 3620 kB of source archives. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (dsc) [5372 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (tar) [3586 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (diff) [29.0 kB] 156s Fetched 3620 kB in 1s (3079 kB/s) 156s Download complete and in download only mode 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (dsc) [5372 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (tar) [3586 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyside2 5.15.16-3.1 (diff) [29.0 kB] 156s + dpkg-source -x pyside2_5.15.16-3.1.dsc src 156s gpgv: Signature made Sat Jan 25 16:38:19 2025 UTC 156s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 156s gpgv: Can't check signature: No public key 156s dpkg-source: warning: cannot verify inline signature for ./pyside2_5.15.16-3.1.dsc: no acceptable signature found 156s + chmod -R a+rX . 157s + cd src/. 157s + pwd 157s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest [14:00:59]: testing package pyside2 version 5.15.16-3.1 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/build.4T4/src/debian/ /tmp/autopkgtest-work.nwculqua/out/pkg/debian/ 157s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: processing dependency python3-pyside2.qtcore 159s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtcore'] as a synthesised dependency 159s autopkgtest: DBG: processing dependency python3 159s 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'] 161s autopkgtest: DBG: processing dependency python3-pyside2.qtwidgets 161s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwidgets'] as a synthesised dependency 161s autopkgtest: DBG: processing dependency python3 161s 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'] 163s autopkgtest: DBG: processing dependency python3-pyside2.qtquick 163s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtquick'] as a synthesised dependency 163s autopkgtest: DBG: processing dependency python3 163s 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'] 165s autopkgtest: DBG: processing dependency python3-pyside2.qtqml 165s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtqml'] as a synthesised dependency 165s autopkgtest: DBG: processing dependency python3 165s 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'] 166s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginecore 166s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginecore'] as a synthesised dependency 166s autopkgtest: DBG: processing dependency python3 166s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 168s autopkgtest: DBG: processing dependency python3-pyside2.qthelp 168s autopkgtest: DBG: marked alternatives ['python3-pyside2.qthelp'] as a synthesised dependency 168s autopkgtest: DBG: processing dependency python3 168s 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'] 170s autopkgtest: DBG: processing dependency python3-pyside2.qtnetwork 170s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtnetwork'] as a synthesised dependency 170s autopkgtest: DBG: processing dependency python3 170s 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'] 172s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimediawidgets 172s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimediawidgets'] as a synthesised dependency 172s autopkgtest: DBG: processing dependency python3 172s 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'] 173s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimedia 173s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimedia'] as a synthesised dependency 173s autopkgtest: DBG: processing dependency python3 173s 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'] 175s autopkgtest: DBG: processing dependency python3-pyside2.qtwebchannel 175s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebchannel'] as a synthesised dependency 175s autopkgtest: DBG: processing dependency python3 175s 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'] 177s autopkgtest: DBG: processing dependency python3-pyside2.qtprintsupport 177s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtprintsupport'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency python3 177s 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'] 179s autopkgtest: DBG: processing dependency python3-pyside2.qtxml 179s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxml'] as a synthesised dependency 179s autopkgtest: DBG: processing dependency python3 179s 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'] 181s autopkgtest: DBG: processing dependency python3-pyside2.qttest 181s autopkgtest: DBG: marked alternatives ['python3-pyside2.qttest'] as a synthesised dependency 181s autopkgtest: DBG: processing dependency python3 181s 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'] 183s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginewidgets 183s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginewidgets'] as a synthesised dependency 183s autopkgtest: DBG: processing dependency python3 184s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 185s autopkgtest: DBG: processing dependency python3-pyside2.qtconcurrent 185s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtconcurrent'] as a synthesised dependency 185s autopkgtest: DBG: processing dependency python3 185s 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'] 187s autopkgtest: DBG: processing dependency python3-pyside2.qtxmlpatterns 187s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxmlpatterns'] as a synthesised dependency 187s autopkgtest: DBG: processing dependency python3 187s 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'] 189s autopkgtest: DBG: processing dependency python3-pyside2.qtuitools 189s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtuitools'] as a synthesised dependency 189s autopkgtest: DBG: processing dependency python3 189s 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'] 191s autopkgtest: DBG: processing dependency python3-pyside2.qtopengl 191s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopengl'] as a synthesised dependency 191s autopkgtest: DBG: processing dependency python3 191s 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'] 193s autopkgtest: DBG: processing dependency python3-pyside2.qtsql 193s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsql'] as a synthesised dependency 193s autopkgtest: DBG: processing dependency python3 193s 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'] 194s autopkgtest: DBG: processing dependency python3-pyside2.qtgui 194s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtgui'] as a synthesised dependency 194s autopkgtest: DBG: processing dependency python3 194s 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'] 196s autopkgtest: DBG: processing dependency python3-pyside2.qtsvg 196s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsvg'] as a synthesised dependency 196s autopkgtest: DBG: processing dependency python3 196s 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'] 198s autopkgtest: DBG: processing dependency python3-pyside2.qtwebsockets 198s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebsockets'] as a synthesised dependency 198s autopkgtest: DBG: processing dependency python3 198s 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'] 200s autopkgtest: DBG: processing dependency python3-pyside2.qtopenglfunctions 200s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopenglfunctions'] as a synthesised dependency 200s autopkgtest: DBG: processing dependency python3 200s 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'] 202s autopkgtest: DBG: processing dependency python3-pyside2.qtwebengine 202s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebengine'] as a synthesised dependency 202s autopkgtest: DBG: processing dependency python3 202s autopkgtest [14:01:44]: build not needed 202s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 202s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/build.4T4/src/ /tmp/autopkgtest-work.nwculqua/out/tests-tree/ 207s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest: DBG: processing dependency python3-pyside2.qtcore 209s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtcore'] as a synthesised dependency 209s autopkgtest: DBG: processing dependency python3 209s 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'] 211s autopkgtest: DBG: processing dependency python3-pyside2.qtwidgets 211s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwidgets'] as a synthesised dependency 211s autopkgtest: DBG: processing dependency python3 211s 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'] 213s autopkgtest: DBG: processing dependency python3-pyside2.qtquick 213s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtquick'] as a synthesised dependency 213s autopkgtest: DBG: processing dependency python3 213s 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'] 215s autopkgtest: DBG: processing dependency python3-pyside2.qtqml 215s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtqml'] as a synthesised dependency 215s autopkgtest: DBG: processing dependency python3 215s 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'] 217s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginecore 217s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginecore'] as a synthesised dependency 217s autopkgtest: DBG: processing dependency python3 217s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 219s autopkgtest: DBG: processing dependency python3-pyside2.qthelp 219s autopkgtest: DBG: marked alternatives ['python3-pyside2.qthelp'] as a synthesised dependency 219s autopkgtest: DBG: processing dependency python3 219s 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'] 221s autopkgtest: DBG: processing dependency python3-pyside2.qtnetwork 221s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtnetwork'] as a synthesised dependency 221s autopkgtest: DBG: processing dependency python3 221s 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'] 224s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimediawidgets 224s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimediawidgets'] as a synthesised dependency 224s autopkgtest: DBG: processing dependency python3 224s 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'] 225s autopkgtest: DBG: processing dependency python3-pyside2.qtmultimedia 225s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtmultimedia'] as a synthesised dependency 225s autopkgtest: DBG: processing dependency python3 225s 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'] 227s autopkgtest: DBG: processing dependency python3-pyside2.qtwebchannel 227s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebchannel'] as a synthesised dependency 227s autopkgtest: DBG: processing dependency python3 227s 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'] 229s autopkgtest: DBG: processing dependency python3-pyside2.qtprintsupport 229s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtprintsupport'] as a synthesised dependency 229s autopkgtest: DBG: processing dependency python3 229s 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'] 231s autopkgtest: DBG: processing dependency python3-pyside2.qtxml 231s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxml'] as a synthesised dependency 231s autopkgtest: DBG: processing dependency python3 231s 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'] 232s autopkgtest: DBG: processing dependency python3-pyside2.qttest 232s autopkgtest: DBG: marked alternatives ['python3-pyside2.qttest'] as a synthesised dependency 232s autopkgtest: DBG: processing dependency python3 232s 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'] 234s autopkgtest: DBG: processing dependency python3-pyside2.qtwebenginewidgets 234s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebenginewidgets'] as a synthesised dependency 234s autopkgtest: DBG: processing dependency python3 234s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 236s autopkgtest: DBG: processing dependency python3-pyside2.qtconcurrent 236s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtconcurrent'] as a synthesised dependency 236s autopkgtest: DBG: processing dependency python3 236s 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'] 238s autopkgtest: DBG: processing dependency python3-pyside2.qtxmlpatterns 238s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtxmlpatterns'] as a synthesised dependency 238s autopkgtest: DBG: processing dependency python3 238s 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'] 240s autopkgtest: DBG: processing dependency python3-pyside2.qtuitools 240s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtuitools'] as a synthesised dependency 240s autopkgtest: DBG: processing dependency python3 240s 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'] 242s autopkgtest: DBG: processing dependency python3-pyside2.qtopengl 242s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopengl'] as a synthesised dependency 242s autopkgtest: DBG: processing dependency python3 242s 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'] 244s autopkgtest: DBG: processing dependency python3-pyside2.qtsql 244s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsql'] as a synthesised dependency 244s autopkgtest: DBG: processing dependency python3 244s 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'] 245s autopkgtest: DBG: processing dependency python3-pyside2.qtgui 245s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtgui'] as a synthesised dependency 245s autopkgtest: DBG: processing dependency python3 245s 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'] 247s autopkgtest: DBG: processing dependency python3-pyside2.qtsvg 247s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtsvg'] as a synthesised dependency 247s autopkgtest: DBG: processing dependency python3 247s 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'] 249s autopkgtest: DBG: processing dependency python3-pyside2.qtwebsockets 249s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebsockets'] as a synthesised dependency 249s autopkgtest: DBG: processing dependency python3 249s 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'] 251s autopkgtest: DBG: processing dependency python3-pyside2.qtopenglfunctions 251s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtopenglfunctions'] as a synthesised dependency 251s autopkgtest: DBG: processing dependency python3 251s 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'] 253s autopkgtest: DBG: processing dependency python3-pyside2.qtwebengine 253s autopkgtest: DBG: marked alternatives ['python3-pyside2.qtwebengine'] as a synthesised dependency 253s autopkgtest: DBG: processing dependency python3 253s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 253s autopkgtest [14:02:35]: test command1: preparing testbed 253s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-pyside2.qtcore', 'python3'] 253s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 253s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtcore', 'python3'] 253s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtcore, python3 253s autopkgtest: DBG: can use apt-get on testbed: True 253s 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'] 254s Reading package lists... 254s Building dependency tree... 254s Reading state information... 254s Starting pkgProblemResolver with broken count: 0 254s Starting 2 pkgProblemResolver with broken count: 0 254s Done 254s The following NEW packages will be installed: 254s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 254s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 254s python3-pyside2.qtcore 254s 0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded. 254s Need to get 6510 kB of archives. 254s After this operation, 22.7 MB of additional disk space will be used. 254s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 254s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 255s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 255s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 255s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 255s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 255s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 255s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 255s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 256s Fetched 6510 kB in 2s (4257 kB/s) 256s Selecting previously unselected package libdouble-conversion3:s390x. 256s (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 ... 55928 files and directories currently installed.) 256s Preparing to unpack .../0-libdouble-conversion3_3.3.1-1_s390x.deb ... 256s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 256s Selecting previously unselected package libpcre2-16-0:s390x. 256s Preparing to unpack .../1-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 256s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 256s Selecting previously unselected package libqt5core5t64:s390x. 256s Preparing to unpack .../2-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 256s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 256s Selecting previously unselected package libqt5dbus5t64:s390x. 256s Preparing to unpack .../3-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 256s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 256s Selecting previously unselected package libqt5network5t64:s390x. 256s Preparing to unpack .../4-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 256s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 256s Selecting previously unselected package libqt5qml5:s390x. 256s Preparing to unpack .../5-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 256s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 256s Selecting previously unselected package libshiboken2-py3-5.15t64. 256s Preparing to unpack .../6-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 256s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 256s Selecting previously unselected package libpyside2-py3-5.15t64. 256s Preparing to unpack .../7-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 256s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 256s Selecting previously unselected package python3-pyside2.qtcore. 256s Preparing to unpack .../8-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 256s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 256s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 256s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 256s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 256s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 256s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 256s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 256s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 256s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 256s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 256s Processing triggers for libc-bin (2.40-4ubuntu1) ... 256s autopkgtest: DBG: testbed command exited with code 0 256s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtcore'], kind short, sout pipe, serr pipe, env [] 257s autopkgtest: DBG: testbed command exited with code 0 257s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command1-packages.all"], kind short, sout raw, serr pipe, env [] 257s autopkgtest: DBG: testbed command exited with code 0 257s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command1-packages.all /tmp/autopkgtest-work.nwculqua/out/command1-packages.all 257s autopkgtest: DBG: got reply from testbed: ok 257s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 257s autopkgtest: DBG: testbed command exited with code 0 257s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.TH8HvJ/build.4T4/src already exists 257s autopkgtest [14:02:39]: test command1: debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore 257s autopkgtest [14:02:39]: test command1: [----------------------- 257s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command1-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command1-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command1-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore'"], kind test, sout raw, serr raw, env [] 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command1-artifacts 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command1-stderr 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command1-stdout 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtcore PySide2.QtCore 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.QtPD6MHvHl/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command1-stdout 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.QtPD6MHvHl/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command1-stdout 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2106 to /tmp/autopkgtest_script_pid 257s Testing python3 package python3-pyside2.qtcore 257s Testing with python3.13: 257s 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 257s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 257s autopkgtest: DBG: testbed command exited with code 0 258s autopkgtest [14:02:40]: test command1: -----------------------] 258s autopkgtest: DBG: testbed executing test finished with exit status 0 258s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command1-stdout /tmp/autopkgtest-work.nwculqua/out/command1-stdout 258s autopkgtest: DBG: got reply from testbed: ok 258s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command1-stderr /tmp/autopkgtest-work.nwculqua/out/command1-stderr 258s autopkgtest: DBG: got reply from testbed: ok 258s autopkgtest [14:02:40]: test command1: - - - - - - - - - - results - - - - - - - - - - 258s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command1-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 258s command1 PASS (superficial) 258s autopkgtest: DBG: got reply from testbed: ok 258s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command1-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest [14:02:41]: test command2: preparing testbed 259s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtcore', 'python3'], deps_new=['python3-pyside2.qtwidgets', 'python3'] 259s autopkgtest: DBG: testbed reset 259s autopkgtest: DBG: sending command to testbed: revert 357s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 357s autopkgtest: DBG: sending command to testbed: print-execute-command 357s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 357s autopkgtest: DBG: sending command to testbed: capabilities 357s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 357s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 357s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 357s autopkgtest: DBG: testbed command exited with code 0 357s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 357s autopkgtest: DBG: got reply from testbed: ok 357s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 357s autopkgtest: DBG: testbed command exited with code 0 357s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest [14:04:20]: testbed dpkg architecture: s390x 358s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest [14:04:20]: testbed apt version: 2.9.30ubuntu1 358s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest: DBG: testbed has eatmydata 358s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest [14:04:20]: @@@@@@@@@@@@@@@@@@@@ test bed setup 358s 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 [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest [14:04:20]: testbed release detected to be: plucky 358s 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 [] 358s autopkgtest: DBG: testbed command exited with code 0 358s 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 [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: adding APT source: Types: deb deb-src 359s URIs: http://ftpmaster.internal/ubuntu/ 359s Suites: plucky-proposed 359s Components: main restricted universe multiverse 359s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 359s 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 [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 359s Package: * 359s Pin: release plucky-proposed 359s Pin-Priority: 500 359s 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 [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest [14:04:21]: updating testbed package index (apt update) 359s 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'] 359s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 360s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 360s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 360s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 360s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 360s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 360s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 360s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 360s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 360s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 360s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 360s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 360s Fetched 1711 kB in 1s (1943 kB/s) 361s Reading package lists... 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 361s Package: * 361s Pin: release plucky-proposed 361s Pin-Priority: 100 361s 361s Package: src:llvm-toolchain-20:any 361s Pin: release plucky-proposed 361s Pin-Priority: 995 361s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s 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'] 361s + lsb_release --codename --short 361s + RELEASE=plucky 361s + cat 361s + [ plucky != trusty ] 361s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 361s Reading package lists... 361s Building dependency tree... 361s Reading state information... 361s Calculating upgrade... 362s Calculating upgrade... 362s The following packages were automatically installed and are no longer required: 362s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 362s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 362s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 362s linux-tools-6.11.0-8-generic 362s Use 'sudo apt autoremove' to remove them. 362s The following packages will be upgraded: 362s base-files gcc-14-base motd-news-config 362s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 362s Need to get 134 kB of archives. 362s After this operation, 0 B of additional disk space will be used. 362s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 362s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 362s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 362s Fetched 134 kB in 0s (332 kB/s) 362s (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.) 362s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 362s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 362s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 362s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 363s Setting up base-files (13.6ubuntu1) ... 363s Updating /root/.profile to current default. 363s motd-news.service is a disabled or a static unit not running, not starting it. 363s (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.) 363s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 363s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 363s Setting up motd-news-config (13.6ubuntu1) ... 363s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 363s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 363s Processing triggers for install-info (7.1.1-1) ... 363s Processing triggers for man-db (2.13.0-1) ... 363s Processing triggers for initramfs-tools (0.145ubuntu2) ... 363s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 363s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 367s Using config file '/etc/zipl.conf' 367s Building bootmap in '/boot' 367s Adding IPL section 'ubuntu' (default) 367s Preparing boot device for LD-IPL: vda (0000). 367s Done. 367s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 367s + /usr/lib/apt/apt-helper analyze-pattern ?true 367s + uname -r 367s + sed s/\./\\./g 367s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 367s + apt list ?obsolete 367s + tail -n+2 367s + grep -v ^linux-.*6\.12\.0-15-generic.* 367s + cut -d/ -f1 367s + true 367s + obsolete_pkgs= 367s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 367s Reading package lists... 367s Building dependency tree... 367s Reading state information... 367s Solving dependencies... 368s The following packages will be REMOVED: 368s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 368s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 368s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 368s linux-tools-6.11.0-8-generic* 368s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 368s After this operation, 167 MB disk space will be freed. 368s (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.) 368s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 368s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 368s Removing libpython3.12t64:s390x (3.12.9-1) ... 368s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 368s Removing libnsl2:s390x (1.3.0-3build3) ... 368s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 368s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 368s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 369s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 369s Processing triggers for libc-bin (2.40-4ubuntu1) ... 369s (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 ... 55930 files and directories currently installed.) 369s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 369s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 369s + grep -q trusty /etc/lsb-release 369s + [ ! -d /usr/share/doc/unattended-upgrades ] 369s + [ ! -d /usr/share/doc/lxd ] 369s + [ ! -d /usr/share/doc/lxd-client ] 369s + [ ! -d /usr/share/doc/snapd ] 369s + type iptables 369s + cat 369s + chmod 755 /etc/rc.local 369s + . /etc/rc.local 369s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 369s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 369s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 369s + uname -m 369s + [ s390x = ppc64le ] 369s + [ -d /run/systemd/system ] 369s + systemd-detect-virt --quiet --vm 369s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 369s + cat 369s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 369s + echo COMPRESS=lz4 369s autopkgtest: DBG: testbed command exited with code 0 369s autopkgtest [14:04:31]: upgrading testbed (apt dist-upgrade and autopurge) 369s 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'] 369s Reading package lists... 369s Building dependency tree... 369s Reading state information... 369s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 369s Starting 2 pkgProblemResolver with broken count: 0 369s Done 370s Entering ResolveByKeep 370s 370s Calculating upgrade... 370s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 370s autopkgtest: DBG: testbed command exited with code 0 370s 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'] 370s Reading package lists... 370s Building dependency tree... 370s Reading state information... 370s Starting pkgProblemResolver with broken count: 0 370s Starting 2 pkgProblemResolver with broken count: 0 370s Done 371s Solving dependencies... 371s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 371s autopkgtest: DBG: testbed command exited with code 0 371s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 371s autopkgtest: DBG: testbed command exited with code 1 371s autopkgtest [14:04:33]: rebooting testbed after setup commands that affected boot 371s autopkgtest: DBG: sending command to testbed: reboot 388s autopkgtest: DBG: got reply from testbed: ok 388s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 388s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 388s autopkgtest: DBG: testbed command exited with code 0 388s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 388s autopkgtest: DBG: got reply from testbed: ok 388s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 388s autopkgtest: DBG: testbed command exited with code 0 388s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 388s autopkgtest: DBG: testbed command exited with code 0 388s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 389s autopkgtest: DBG: testbed command exited with code 0 389s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 389s autopkgtest: DBG: testbed command exited with code 0 389s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 389s autopkgtest: DBG: got reply from testbed: ok 389s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 389s autopkgtest: DBG: testbed command exited with code 0 389s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 389s autopkgtest: DBG: testbed command exited with code 0 389s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 390s autopkgtest: DBG: testbed command exited with code 0 390s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 390s autopkgtest: DBG: testbed command exited with code 0 390s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 390s autopkgtest: DBG: got reply from testbed: ok 390s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 390s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 390s autopkgtest: DBG: testbed command exited with code 0 390s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 390s autopkgtest: DBG: got reply from testbed: ok 390s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 391s autopkgtest: DBG: testbed command exited with code 0 391s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 391s autopkgtest: DBG: testbed command exited with code 0 391s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 391s autopkgtest: DBG: testbed command exited with code 0 391s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 391s autopkgtest: DBG: testbed command exited with code 0 391s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 392s autopkgtest: DBG: got reply from testbed: ok 392s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 392s autopkgtest: DBG: testbed command exited with code 0 392s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 392s autopkgtest: DBG: testbed command exited with code 0 392s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 392s autopkgtest: DBG: testbed command exited with code 0 392s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 392s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtwidgets', 'python3'] 392s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtwidgets, python3 392s autopkgtest: DBG: can use apt-get on testbed: True 392s 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'] 392s Reading package lists... 393s Building dependency tree... 393s Reading state information... 393s Starting pkgProblemResolver with broken count: 0 393s Starting 2 pkgProblemResolver with broken count: 0 393s Done 393s The following NEW packages will be installed: 393s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 393s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 393s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 393s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 393s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 393s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 393s libqt5network5t64 libqt5qml5 libqt5widgets5t64 libshiboken2-py3-5.15t64 393s libsm6 libvulkan1 libwacom-common libwacom9 libwayland-client0 393s libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 393s libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 393s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 393s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 393s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 393s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtwidgets 393s x11-common 393s 0 upgraded, 68 newly installed, 0 to remove and 0 not upgraded. 393s Need to get 29.1 MB of archives. 393s After this operation, 111 MB of additional disk space will be used. 393s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 393s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 393s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 394s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 394s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 394s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 394s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 394s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 394s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 394s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 394s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 394s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 394s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 394s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 394s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 394s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 394s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 394s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 394s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 394s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 394s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 394s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 394s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 394s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 394s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 394s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 394s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 394s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 394s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 394s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 394s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 394s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 394s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 394s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 394s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 394s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 394s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 394s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 394s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 394s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 394s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 394s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 394s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 394s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 394s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 394s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 394s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 394s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 394s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 394s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 394s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 394s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 394s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 394s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 394s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 394s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 394s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 394s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 394s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 394s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 394s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 394s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 394s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 394s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 395s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 395s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 395s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 395s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 395s Fetched 29.1 MB in 2s (14.3 MB/s) 395s Selecting previously unselected package libfreetype6:s390x. 395s (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 ... 55928 files and directories currently installed.) 395s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 395s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 395s Selecting previously unselected package fonts-dejavu-mono. 395s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 395s Unpacking fonts-dejavu-mono (2.37-8) ... 395s Selecting previously unselected package fonts-dejavu-core. 395s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 395s Unpacking fonts-dejavu-core (2.37-8) ... 395s Selecting previously unselected package fontconfig-config. 395s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 396s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 396s Selecting previously unselected package libfontconfig1:s390x. 396s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 396s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 396s Selecting previously unselected package fontconfig. 396s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 396s Unpacking fontconfig (2.15.0-2ubuntu1) ... 396s Selecting previously unselected package libdouble-conversion3:s390x. 396s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 396s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 396s Selecting previously unselected package libdrm-radeon1:s390x. 396s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 396s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 396s Selecting previously unselected package libwayland-server0:s390x. 396s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 396s Unpacking libwayland-server0:s390x (1.23.1-3) ... 396s Selecting previously unselected package libglapi-mesa:s390x. 396s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 396s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 396s Selecting previously unselected package libx11-xcb1:s390x. 396s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 396s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 396s Selecting previously unselected package libxcb-dri3-0:s390x. 396s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-present0:s390x. 396s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-present0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-randr0:s390x. 396s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-sync1:s390x. 396s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-xfixes0:s390x. 396s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxshmfence1:s390x. 396s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 396s Unpacking libxshmfence1:s390x (1.3-1build5) ... 396s Selecting previously unselected package mesa-libgallium:s390x. 396s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 396s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 396s Selecting previously unselected package libgbm1:s390x. 396s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 396s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 396s Selecting previously unselected package libwayland-client0:s390x. 396s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 396s Unpacking libwayland-client0:s390x (1.23.1-3) ... 396s Selecting previously unselected package libxcb-shm0:s390x. 396s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libegl-mesa0:s390x. 396s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 396s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 396s Selecting previously unselected package libvulkan1:s390x. 396s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 396s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 396s Selecting previously unselected package libgl1-mesa-dri:s390x. 396s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 396s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 396s Selecting previously unselected package libxcb-glx0:s390x. 396s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxxf86vm1:s390x. 396s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 396s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 396s Selecting previously unselected package libglx-mesa0:s390x. 396s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 396s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 396s Selecting previously unselected package libgraphite2-3:s390x. 396s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 396s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 396s Selecting previously unselected package libharfbuzz0b:s390x. 396s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 396s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 396s Selecting previously unselected package x11-common. 396s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 396s Unpacking x11-common (1:7.7+23ubuntu3) ... 396s Selecting previously unselected package libice6:s390x. 396s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 396s Unpacking libice6:s390x (2:1.1.1-1) ... 396s Selecting previously unselected package libwacom-common. 396s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 396s Unpacking libwacom-common (2.14.0-1) ... 396s Selecting previously unselected package libwacom9:s390x. 396s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 396s Unpacking libwacom9:s390x (2.14.0-1) ... 396s Selecting previously unselected package libinput-bin. 396s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 396s Unpacking libinput-bin (1.27.1-1) ... 396s Selecting previously unselected package libmtdev1t64:s390x. 396s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 396s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 396s Selecting previously unselected package libinput10:s390x. 396s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 396s Unpacking libinput10:s390x (1.27.1-1) ... 396s Selecting previously unselected package libjpeg-turbo8:s390x. 396s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 396s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 396s Selecting previously unselected package libjpeg8:s390x. 396s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 396s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 396s Selecting previously unselected package libmd4c0:s390x. 396s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 396s Unpacking libmd4c0:s390x (0.5.2-2) ... 396s Selecting previously unselected package libpcre2-16-0:s390x. 396s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 396s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 396s Selecting previously unselected package libqt5core5t64:s390x. 396s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 396s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 396s Selecting previously unselected package libqt5dbus5t64:s390x. 396s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 396s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 396s Selecting previously unselected package libqt5network5t64:s390x. 396s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 396s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 396s Selecting previously unselected package libqt5qml5:s390x. 396s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 396s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 396s Selecting previously unselected package libshiboken2-py3-5.15t64. 396s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 396s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 396s Selecting previously unselected package libpyside2-py3-5.15t64. 396s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 396s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 396s Selecting previously unselected package libglvnd0:s390x. 396s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 396s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 396s Selecting previously unselected package libegl1:s390x. 396s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 396s Unpacking libegl1:s390x (1.7.0-1build1) ... 396s Selecting previously unselected package libglx0:s390x. 396s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 396s Unpacking libglx0:s390x (1.7.0-1build1) ... 396s Selecting previously unselected package libgl1:s390x. 396s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 396s Unpacking libgl1:s390x (1.7.0-1build1) ... 396s Selecting previously unselected package libsm6:s390x. 396s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 396s Unpacking libsm6:s390x (2:1.2.4-1) ... 396s Selecting previously unselected package libxcb-icccm4:s390x. 396s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 396s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 396s Selecting previously unselected package libxcb-util1:s390x. 396s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 396s Unpacking libxcb-util1:s390x (0.4.1-1) ... 396s Selecting previously unselected package libxcb-image0:s390x. 396s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 396s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 396s Selecting previously unselected package libxcb-keysyms1:s390x. 396s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 396s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 396s Selecting previously unselected package libxcb-render0:s390x. 396s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-render0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-render-util0:s390x. 396s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 396s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 396s Selecting previously unselected package libxcb-shape0:s390x. 396s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-xinerama0:s390x. 396s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-xinput0:s390x. 396s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxcb-xkb1:s390x. 396s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 396s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 396s Selecting previously unselected package libxkbcommon-x11-0:s390x. 396s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 396s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 396s Selecting previously unselected package libxrender1:s390x. 396s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 396s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 396s Selecting previously unselected package libqt5gui5t64:s390x. 396s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 396s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 396s Selecting previously unselected package libqt5widgets5t64:s390x. 396s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 396s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 396s Selecting previously unselected package python3-pyside2.qtcore. 396s Preparing to unpack .../65-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 396s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 396s Selecting previously unselected package python3-pyside2.qtgui. 396s Preparing to unpack .../66-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 396s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 396s Selecting previously unselected package python3-pyside2.qtwidgets. 396s Preparing to unpack .../67-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 396s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 397s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 397s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 397s Setting up libwayland-server0:s390x (1.23.1-3) ... 397s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 397s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 397s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 397s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 397s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 397s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 397s Setting up libxcb-render0:s390x (1.17.0-2) ... 397s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 397s Setting up libglvnd0:s390x (1.7.0-1build1) ... 397s Setting up libxcb-glx0:s390x (1.17.0-2) ... 397s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 397s Setting up libxcb-shape0:s390x (1.17.0-2) ... 397s Setting up x11-common (1:7.7+23ubuntu3) ... 397s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 397s Setting up libxcb-shm0:s390x (1.17.0-2) ... 397s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 397s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 397s Setting up libxcb-util1:s390x (0.4.1-1) ... 397s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 397s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 397s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 397s Setting up libxcb-present0:s390x (1.17.0-2) ... 397s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 397s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 397s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 397s Setting up libxcb-sync1:s390x (1.17.0-2) ... 397s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 397s Setting up fonts-dejavu-mono (2.37-8) ... 397s Setting up fonts-dejavu-core (2.37-8) ... 397s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 397s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 397s Setting up libvulkan1:s390x (1.4.304.0-1) ... 397s Setting up libmtdev1t64:s390x (1.1.7-1) ... 397s Setting up libxshmfence1:s390x (1.3-1build5) ... 397s Setting up libxcb-randr0:s390x (1.17.0-2) ... 397s Setting up libmd4c0:s390x (0.5.2-2) ... 397s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 397s Setting up libwacom-common (2.14.0-1) ... 397s Setting up libwayland-client0:s390x (1.23.1-3) ... 397s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 397s Setting up libice6:s390x (2:1.1.1-1) ... 397s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 397s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 397s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 397s Setting up libwacom9:s390x (2.14.0-1) ... 397s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 397s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 397s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 397s Setting up libinput-bin (1.27.1-1) ... 397s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 397s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 397s Setting up libegl1:s390x (1.7.0-1build1) ... 397s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 397s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 397s Setting up libsm6:s390x (2:1.2.4-1) ... 397s Setting up libinput10:s390x (1.27.1-1) ... 397s Setting up fontconfig (2.15.0-2ubuntu1) ... 399s Regenerating fonts cache... done. 399s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 399s Setting up libglx0:s390x (1.7.0-1build1) ... 399s Setting up libgl1:s390x (1.7.0-1build1) ... 399s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 399s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 399s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 399s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 399s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 399s Processing triggers for udev (257.2-3ubuntu1) ... 399s Processing triggers for libc-bin (2.40-4ubuntu1) ... 399s Processing triggers for man-db (2.13.0-1) ... 400s autopkgtest: DBG: testbed command exited with code 0 400s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtwidgets'], kind short, sout pipe, serr pipe, env [] 400s autopkgtest: DBG: testbed command exited with code 0 400s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command2-packages.all"], kind short, sout raw, serr pipe, env [] 400s autopkgtest: DBG: testbed command exited with code 0 400s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command2-packages.all /tmp/autopkgtest-work.nwculqua/out/command2-packages.all 401s autopkgtest: DBG: got reply from testbed: ok 401s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 401s autopkgtest: DBG: testbed command exited with code 1 401s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 401s autopkgtest: DBG: testbed command exited with code 0 401s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 408s autopkgtest: DBG: got reply from testbed: ok 408s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 408s autopkgtest: DBG: testbed command exited with code 0 408s autopkgtest [14:05:10]: test command2: debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets 408s autopkgtest [14:05:10]: test command2: [----------------------- 408s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command2-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command2-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command2-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets'"], kind test, sout raw, serr raw, env [] 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command2-artifacts 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command2-stderr 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command2-stdout 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtwidgets PySide2.QtWidgets 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.xjNStV9585/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command2-stdout 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.xjNStV9585/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command2-stdout 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2223 to /tmp/autopkgtest_script_pid 408s Testing python3 package python3-pyside2.qtwidgets 408s Testing with python3.13: 408s 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 408s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 408s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest [14:05:11]: test command2: -----------------------] 409s autopkgtest: DBG: testbed executing test finished with exit status 0 409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command2-stdout /tmp/autopkgtest-work.nwculqua/out/command2-stdout 409s autopkgtest: DBG: got reply from testbed: ok 409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command2-stderr /tmp/autopkgtest-work.nwculqua/out/command2-stderr 409s autopkgtest: DBG: got reply from testbed: ok 409s autopkgtest [14:05:11]: test command2: - - - - - - - - - - results - - - - - - - - - - 409s command2 PASS (superficial) 409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command2-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 409s autopkgtest: DBG: got reply from testbed: ok 409s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command2-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 409s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest [14:05:11]: test command3: preparing testbed 409s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtwidgets', 'python3'], deps_new=['python3-pyside2.qtquick', 'python3'] 409s autopkgtest: DBG: testbed reset 409s autopkgtest: DBG: sending command to testbed: revert 475s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 475s autopkgtest: DBG: sending command to testbed: print-execute-command 475s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 475s autopkgtest: DBG: sending command to testbed: capabilities 475s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 475s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 475s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 476s autopkgtest: DBG: got reply from testbed: ok 476s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest [14:06:18]: testbed dpkg architecture: s390x 476s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest [14:06:18]: testbed apt version: 2.9.30ubuntu1 476s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 476s autopkgtest: DBG: testbed command exited with code 0 476s autopkgtest: DBG: testbed has eatmydata 476s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest [14:06:19]: @@@@@@@@@@@@@@@@@@@@ test bed setup 477s 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 [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest [14:06:19]: testbed release detected to be: plucky 477s 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 [] 477s autopkgtest: DBG: testbed command exited with code 0 477s 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 [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: adding APT source: Types: deb deb-src 477s URIs: http://ftpmaster.internal/ubuntu/ 477s Suites: plucky-proposed 477s Components: main restricted universe multiverse 477s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 477s 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 [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 477s Package: * 477s Pin: release plucky-proposed 477s Pin-Priority: 500 477s 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 [] 477s autopkgtest: DBG: testbed command exited with code 0 477s autopkgtest [14:06:19]: updating testbed package index (apt update) 477s 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'] 478s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 480s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 480s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 480s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 480s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 480s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 480s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 480s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 480s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 480s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 480s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 481s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 481s Fetched 1711 kB in 3s (583 kB/s) 481s Reading package lists... 481s autopkgtest: DBG: testbed command exited with code 0 481s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 481s Package: * 481s Pin: release plucky-proposed 481s Pin-Priority: 100 481s 481s Package: src:llvm-toolchain-20:any 481s Pin: release plucky-proposed 481s Pin-Priority: 995 481s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 481s autopkgtest: DBG: testbed command exited with code 0 481s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 482s autopkgtest: DBG: testbed command exited with code 0 482s 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'] 482s + lsb_release --codename --short 482s + RELEASE=plucky 482s + cat 482s + [ plucky != trusty ] 482s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 482s Reading package lists... 482s Building dependency tree... 482s Reading state information... 482s Calculating upgrade... 482s Calculating upgrade... 482s The following packages were automatically installed and are no longer required: 482s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 482s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 482s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 482s linux-tools-6.11.0-8-generic 482s Use 'sudo apt autoremove' to remove them. 482s The following packages will be upgraded: 482s base-files gcc-14-base motd-news-config 482s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 482s Need to get 134 kB of archives. 482s After this operation, 0 B of additional disk space will be used. 482s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 482s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 483s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 483s Fetched 134 kB in 0s (329 kB/s) 483s (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.) 483s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 483s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 483s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 483s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 483s Setting up base-files (13.6ubuntu1) ... 483s Updating /root/.profile to current default. 484s motd-news.service is a disabled or a static unit not running, not starting it. 484s (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.) 484s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 484s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 484s Setting up motd-news-config (13.6ubuntu1) ... 484s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 484s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 484s Processing triggers for install-info (7.1.1-1) ... 484s Processing triggers for man-db (2.13.0-1) ... 484s Processing triggers for initramfs-tools (0.145ubuntu2) ... 484s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 484s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 488s Using config file '/etc/zipl.conf' 488s Building bootmap in '/boot' 488s Adding IPL section 'ubuntu' (default) 488s Preparing boot device for LD-IPL: vda (0000). 488s Done. 488s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 488s + /usr/lib/apt/apt-helper analyze-pattern ?true 488s + uname -r 488s + sed s/\./\\./g 488s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 488s + apt list ?obsolete 488s + tail -n+2 488s + cut+ -d/ -f1 488s grep -v ^linux-.*6\.12\.0-15-generic.* 488s + true 488s + obsolete_pkgs= 488s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 488s Reading package lists... 488s Building dependency tree... 488s Reading state information... 488s Solving dependencies... 488s The following packages will be REMOVED: 488s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 488s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 488s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 488s linux-tools-6.11.0-8-generic* 489s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 489s After this operation, 167 MB disk space will be freed. 489s (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.) 489s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 489s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 489s Removing libpython3.12t64:s390x (3.12.9-1) ... 489s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 489s Removing libnsl2:s390x (1.3.0-3build3) ... 489s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 489s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 489s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 490s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 490s Processing triggers for libc-bin (2.40-4ubuntu1) ... 490s (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 ... 55930 files and directories currently installed.) 490s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 490s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 490s + grep -q trusty /etc/lsb-release 490s + [ ! -d /usr/share/doc/unattended-upgrades ] 490s + [ ! -d /usr/share/doc/lxd ] 490s + [ ! -d /usr/share/doc/lxd-client ] 490s + [ ! -d /usr/share/doc/snapd ] 490s + type iptables 490s + cat 490s + chmod 755 /etc/rc.local 490s + . /etc/rc.local 490s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 490s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 490s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 490s + uname -m 490s + [ s390x = ppc64le ] 490s + [ -d /run/systemd/system ] 490s + systemd-detect-virt --quiet --vm 490s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 490s + cat 490s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 490s + echo COMPRESS=lz4 490s autopkgtest: DBG: testbed command exited with code 0 490s autopkgtest [14:06:32]: upgrading testbed (apt dist-upgrade and autopurge) 490s 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'] 490s Reading package lists... 490s Building dependency tree... 490s Reading state information... 490s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 490s Starting 2 pkgProblemResolver with broken count: 0 490s Done 490s Entering ResolveByKeep 491s 491s Calculating upgrade... 491s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 491s autopkgtest: DBG: testbed command exited with code 0 491s 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'] 491s Reading package lists... 491s Building dependency tree... 491s Reading state information... 491s Starting pkgProblemResolver with broken count: 0 491s Starting 2 pkgProblemResolver with broken count: 0 491s Done 491s Solving dependencies... 491s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 491s autopkgtest: DBG: testbed command exited with code 0 491s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 492s autopkgtest: DBG: testbed command exited with code 1 492s autopkgtest [14:06:34]: rebooting testbed after setup commands that affected boot 492s autopkgtest: DBG: sending command to testbed: reboot 507s autopkgtest: DBG: got reply from testbed: ok 507s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 507s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 507s autopkgtest: DBG: testbed command exited with code 0 507s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 508s autopkgtest: DBG: got reply from testbed: ok 508s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 509s autopkgtest: DBG: got reply from testbed: ok 509s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 510s autopkgtest: DBG: testbed command exited with code 0 510s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 511s autopkgtest: DBG: got reply from testbed: ok 511s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 511s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 511s autopkgtest: DBG: testbed command exited with code 0 511s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 511s autopkgtest: DBG: got reply from testbed: ok 511s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 511s autopkgtest: DBG: testbed command exited with code 0 511s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 511s autopkgtest: DBG: testbed command exited with code 0 511s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 512s autopkgtest: DBG: testbed command exited with code 0 512s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 512s autopkgtest: DBG: testbed command exited with code 0 512s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 512s autopkgtest: DBG: got reply from testbed: ok 512s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 512s autopkgtest: DBG: testbed command exited with code 0 512s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 512s autopkgtest: DBG: testbed command exited with code 0 512s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 513s autopkgtest: DBG: testbed command exited with code 0 513s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 513s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtquick', 'python3'] 513s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtquick, python3 513s autopkgtest: DBG: can use apt-get on testbed: True 513s 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'] 513s Reading package lists... 513s Building dependency tree... 513s Reading state information... 513s Starting pkgProblemResolver with broken count: 0 513s Starting 2 pkgProblemResolver with broken count: 0 513s Done 513s The following NEW packages will be installed: 513s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 513s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 513s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 513s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 513s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 513s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 513s libqt5network5t64 libqt5qml5 libqt5qmlmodels5 libqt5quick5 513s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 513s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 513s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 513s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 513s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 513s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 513s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtnetwork 513s python3-pyside2.qtqml python3-pyside2.qtquick x11-common 513s 0 upgraded, 71 newly installed, 0 to remove and 0 not upgraded. 513s Need to get 27.2 MB of archives. 513s After this operation, 102 MB of additional disk space will be used. 513s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 514s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 514s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 514s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 514s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 514s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 514s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 514s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 514s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 514s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 514s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 514s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 514s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 514s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 514s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 514s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 514s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 514s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 515s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 515s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 515s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 515s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 515s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 515s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 515s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 515s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 515s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 515s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 515s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 515s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 515s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 515s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 515s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 515s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 515s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 515s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 515s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 515s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 516s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 516s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 516s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 516s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 516s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 516s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 516s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 516s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 516s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 516s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 516s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 516s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 516s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 516s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 516s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 516s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 516s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 516s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 516s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 516s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 516s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 516s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 516s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 516s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 516s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 516s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 517s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qmlmodels5 s390x 5.15.15+dfsg-3 [217 kB] 517s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5quick5 s390x 5.15.15+dfsg-3 [1827 kB] 517s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 517s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 517s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 517s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtqml s390x 5.15.16-3.1 [138 kB] 517s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtquick s390x 5.15.16-3.1 [200 kB] 518s Fetched 27.2 MB in 4s (6849 kB/s) 518s Selecting previously unselected package libfreetype6:s390x. 518s (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 ... 55928 files and directories currently installed.) 518s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 518s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 518s Selecting previously unselected package fonts-dejavu-mono. 518s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 518s Unpacking fonts-dejavu-mono (2.37-8) ... 518s Selecting previously unselected package fonts-dejavu-core. 518s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 518s Unpacking fonts-dejavu-core (2.37-8) ... 518s Selecting previously unselected package fontconfig-config. 518s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 518s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 518s Selecting previously unselected package libfontconfig1:s390x. 518s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 518s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 518s Selecting previously unselected package fontconfig. 518s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 518s Unpacking fontconfig (2.15.0-2ubuntu1) ... 518s Selecting previously unselected package libdouble-conversion3:s390x. 518s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 518s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 518s Selecting previously unselected package libdrm-radeon1:s390x. 518s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 518s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 518s Selecting previously unselected package libwayland-server0:s390x. 518s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 518s Unpacking libwayland-server0:s390x (1.23.1-3) ... 518s Selecting previously unselected package libglapi-mesa:s390x. 518s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 518s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 518s Selecting previously unselected package libx11-xcb1:s390x. 518s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 518s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 518s Selecting previously unselected package libxcb-dri3-0:s390x. 518s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 518s Selecting previously unselected package libxcb-present0:s390x. 518s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-present0:s390x (1.17.0-2) ... 518s Selecting previously unselected package libxcb-randr0:s390x. 518s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 518s Selecting previously unselected package libxcb-sync1:s390x. 518s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 518s Selecting previously unselected package libxcb-xfixes0:s390x. 518s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 518s Selecting previously unselected package libxshmfence1:s390x. 518s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 518s Unpacking libxshmfence1:s390x (1.3-1build5) ... 518s Selecting previously unselected package mesa-libgallium:s390x. 518s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 518s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 518s Selecting previously unselected package libgbm1:s390x. 518s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 518s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 518s Selecting previously unselected package libwayland-client0:s390x. 518s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 518s Unpacking libwayland-client0:s390x (1.23.1-3) ... 518s Selecting previously unselected package libxcb-shm0:s390x. 518s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 518s Selecting previously unselected package libegl-mesa0:s390x. 518s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 518s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 518s Selecting previously unselected package libvulkan1:s390x. 518s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 518s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 518s Selecting previously unselected package libgl1-mesa-dri:s390x. 518s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 518s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 518s Selecting previously unselected package libxcb-glx0:s390x. 518s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 518s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 518s Selecting previously unselected package libxxf86vm1:s390x. 518s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 518s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 518s Selecting previously unselected package libglx-mesa0:s390x. 518s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 518s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 518s Selecting previously unselected package libgraphite2-3:s390x. 518s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 518s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 518s Selecting previously unselected package libharfbuzz0b:s390x. 518s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 518s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 518s Selecting previously unselected package x11-common. 518s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 518s Unpacking x11-common (1:7.7+23ubuntu3) ... 518s Selecting previously unselected package libice6:s390x. 518s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 518s Unpacking libice6:s390x (2:1.1.1-1) ... 518s Selecting previously unselected package libwacom-common. 518s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 518s Unpacking libwacom-common (2.14.0-1) ... 518s Selecting previously unselected package libwacom9:s390x. 518s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 518s Unpacking libwacom9:s390x (2.14.0-1) ... 518s Selecting previously unselected package libinput-bin. 518s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 518s Unpacking libinput-bin (1.27.1-1) ... 518s Selecting previously unselected package libmtdev1t64:s390x. 518s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 518s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 518s Selecting previously unselected package libinput10:s390x. 518s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 518s Unpacking libinput10:s390x (1.27.1-1) ... 518s Selecting previously unselected package libjpeg-turbo8:s390x. 518s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 518s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 518s Selecting previously unselected package libjpeg8:s390x. 518s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 518s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 518s Selecting previously unselected package libmd4c0:s390x. 518s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 518s Unpacking libmd4c0:s390x (0.5.2-2) ... 518s Selecting previously unselected package libpcre2-16-0:s390x. 518s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 518s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 518s Selecting previously unselected package libqt5core5t64:s390x. 518s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 518s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 518s Selecting previously unselected package libqt5dbus5t64:s390x. 518s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 518s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 518s Selecting previously unselected package libqt5network5t64:s390x. 518s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 518s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 518s Selecting previously unselected package libqt5qml5:s390x. 518s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 518s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 518s Selecting previously unselected package libshiboken2-py3-5.15t64. 518s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 518s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 519s Selecting previously unselected package libpyside2-py3-5.15t64. 519s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 519s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 519s Selecting previously unselected package libglvnd0:s390x. 519s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 519s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 519s Selecting previously unselected package libegl1:s390x. 519s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 519s Unpacking libegl1:s390x (1.7.0-1build1) ... 519s Selecting previously unselected package libglx0:s390x. 519s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 519s Unpacking libglx0:s390x (1.7.0-1build1) ... 519s Selecting previously unselected package libgl1:s390x. 519s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 519s Unpacking libgl1:s390x (1.7.0-1build1) ... 519s Selecting previously unselected package libsm6:s390x. 519s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 519s Unpacking libsm6:s390x (2:1.2.4-1) ... 519s Selecting previously unselected package libxcb-icccm4:s390x. 519s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 519s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 519s Selecting previously unselected package libxcb-util1:s390x. 519s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 519s Unpacking libxcb-util1:s390x (0.4.1-1) ... 519s Selecting previously unselected package libxcb-image0:s390x. 519s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 519s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 519s Selecting previously unselected package libxcb-keysyms1:s390x. 519s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 519s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 519s Selecting previously unselected package libxcb-render0:s390x. 519s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 519s Unpacking libxcb-render0:s390x (1.17.0-2) ... 519s Selecting previously unselected package libxcb-render-util0:s390x. 519s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 519s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 519s Selecting previously unselected package libxcb-shape0:s390x. 519s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 519s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 519s Selecting previously unselected package libxcb-xinerama0:s390x. 519s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 519s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 519s Selecting previously unselected package libxcb-xinput0:s390x. 519s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 519s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 519s Selecting previously unselected package libxcb-xkb1:s390x. 519s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 519s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 519s Selecting previously unselected package libxkbcommon-x11-0:s390x. 519s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 519s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 519s Selecting previously unselected package libxrender1:s390x. 519s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 519s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 519s Selecting previously unselected package libqt5gui5t64:s390x. 519s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 519s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 519s Selecting previously unselected package libqt5qmlmodels5:s390x. 519s Preparing to unpack .../64-libqt5qmlmodels5_5.15.15+dfsg-3_s390x.deb ... 519s Unpacking libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 519s Selecting previously unselected package libqt5quick5:s390x. 519s Preparing to unpack .../65-libqt5quick5_5.15.15+dfsg-3_s390x.deb ... 519s Unpacking libqt5quick5:s390x (5.15.15+dfsg-3) ... 519s Selecting previously unselected package python3-pyside2.qtcore. 519s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 519s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 519s Selecting previously unselected package python3-pyside2.qtgui. 519s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 519s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 519s Selecting previously unselected package python3-pyside2.qtnetwork. 519s Preparing to unpack .../68-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 519s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 519s Selecting previously unselected package python3-pyside2.qtqml. 519s Preparing to unpack .../69-python3-pyside2.qtqml_5.15.16-3.1_s390x.deb ... 519s Unpacking python3-pyside2.qtqml (5.15.16-3.1) ... 519s Selecting previously unselected package python3-pyside2.qtquick. 519s Preparing to unpack .../70-python3-pyside2.qtquick_5.15.16-3.1_s390x.deb ... 519s Unpacking python3-pyside2.qtquick (5.15.16-3.1) ... 519s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 519s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 519s Setting up libwayland-server0:s390x (1.23.1-3) ... 519s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 519s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 519s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 519s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 519s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 519s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 519s Setting up libxcb-render0:s390x (1.17.0-2) ... 519s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 519s Setting up libglvnd0:s390x (1.7.0-1build1) ... 519s Setting up libxcb-glx0:s390x (1.17.0-2) ... 519s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 519s Setting up libxcb-shape0:s390x (1.17.0-2) ... 519s Setting up x11-common (1:7.7+23ubuntu3) ... 519s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 519s Setting up libxcb-shm0:s390x (1.17.0-2) ... 519s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 519s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 519s Setting up libxcb-util1:s390x (0.4.1-1) ... 519s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 519s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 519s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 519s Setting up libxcb-present0:s390x (1.17.0-2) ... 519s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 519s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 519s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 519s Setting up libxcb-sync1:s390x (1.17.0-2) ... 519s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 519s Setting up fonts-dejavu-mono (2.37-8) ... 519s Setting up fonts-dejavu-core (2.37-8) ... 519s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 519s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 519s Setting up libvulkan1:s390x (1.4.304.0-1) ... 519s Setting up libmtdev1t64:s390x (1.1.7-1) ... 519s Setting up libxshmfence1:s390x (1.3-1build5) ... 519s Setting up libxcb-randr0:s390x (1.17.0-2) ... 519s Setting up libmd4c0:s390x (0.5.2-2) ... 519s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 519s Setting up libwacom-common (2.14.0-1) ... 519s Setting up libwayland-client0:s390x (1.23.1-3) ... 519s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 519s Setting up libice6:s390x (2:1.1.1-1) ... 519s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 519s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 519s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 519s Setting up libwacom9:s390x (2.14.0-1) ... 519s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 519s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 519s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 519s Setting up libinput-bin (1.27.1-1) ... 519s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 519s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 519s Setting up libegl1:s390x (1.7.0-1build1) ... 519s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 519s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 519s Setting up libsm6:s390x (2:1.2.4-1) ... 519s Setting up libinput10:s390x (1.27.1-1) ... 519s Setting up fontconfig (2.15.0-2ubuntu1) ... 521s Regenerating fonts cache... done. 521s Setting up libqt5qmlmodels5:s390x (5.15.15+dfsg-3) ... 521s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 521s Setting up libglx0:s390x (1.7.0-1build1) ... 522s Setting up libgl1:s390x (1.7.0-1build1) ... 522s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 522s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 522s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 522s Setting up libqt5quick5:s390x (5.15.15+dfsg-3) ... 522s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 522s Setting up python3-pyside2.qtqml (5.15.16-3.1) ... 522s Setting up python3-pyside2.qtquick (5.15.16-3.1) ... 522s Processing triggers for man-db (2.13.0-1) ... 522s Processing triggers for udev (257.2-3ubuntu1) ... 522s Processing triggers for libc-bin (2.40-4ubuntu1) ... 522s autopkgtest: DBG: testbed command exited with code 0 522s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtquick'], kind short, sout pipe, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command3-packages.all"], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command3-packages.all /tmp/autopkgtest-work.nwculqua/out/command3-packages.all 523s autopkgtest: DBG: got reply from testbed: ok 523s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 523s autopkgtest: DBG: testbed command exited with code 1 523s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 525s autopkgtest: DBG: got reply from testbed: ok 525s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 525s autopkgtest: DBG: testbed command exited with code 0 525s autopkgtest [14:07:07]: test command3: debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick 525s autopkgtest [14:07:07]: test command3: [----------------------- 525s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command3-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command3-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command3-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick'"], kind test, sout raw, serr raw, env [] 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command3-artifacts 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command3-stderr 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command3-stdout 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtquick PySide2.QtQuick 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.a1xj5xl9TY/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command3-stdout 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.a1xj5xl9TY/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command3-stdout 525s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2253 to /tmp/autopkgtest_script_pid 525s Testing python3 package python3-pyside2.qtquick 525s Testing with python3.13: 526s 526s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 526s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 526s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 526s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 526s autopkgtest: DBG: testbed command exited with code 0 526s autopkgtest [14:07:08]: test command3: -----------------------] 526s autopkgtest: DBG: testbed executing test finished with exit status 0 526s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command3-stdout /tmp/autopkgtest-work.nwculqua/out/command3-stdout 526s autopkgtest: DBG: got reply from testbed: ok 526s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command3-stderr /tmp/autopkgtest-work.nwculqua/out/command3-stderr 526s autopkgtest: DBG: got reply from testbed: ok 526s command3 PASS (superficial) 526s autopkgtest [14:07:08]: test command3: - - - - - - - - - - results - - - - - - - - - - 526s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command3-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 526s autopkgtest: DBG: got reply from testbed: ok 526s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command3-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 527s autopkgtest: DBG: testbed command exited with code 0 527s autopkgtest [14:07:09]: test command4: preparing testbed 527s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtquick', 'python3'], deps_new=['python3-pyside2.qtqml', 'python3'] 527s autopkgtest: DBG: testbed reset 527s autopkgtest: DBG: sending command to testbed: revert 609s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 609s autopkgtest: DBG: sending command to testbed: print-execute-command 609s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 609s autopkgtest: DBG: sending command to testbed: capabilities 609s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 609s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 609s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 609s autopkgtest: DBG: testbed command exited with code 0 609s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 609s autopkgtest: DBG: got reply from testbed: ok 609s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 609s autopkgtest: DBG: testbed command exited with code 0 609s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest [14:08:32]: testbed dpkg architecture: s390x 610s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest [14:08:32]: testbed apt version: 2.9.30ubuntu1 610s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest: DBG: testbed has eatmydata 610s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest [14:08:32]: @@@@@@@@@@@@@@@@@@@@ test bed setup 610s 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 [] 610s autopkgtest: DBG: testbed command exited with code 0 610s autopkgtest [14:08:32]: testbed release detected to be: plucky 610s 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 [] 611s autopkgtest: DBG: testbed command exited with code 0 611s 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 [] 611s autopkgtest: DBG: testbed command exited with code 0 611s autopkgtest: DBG: adding APT source: Types: deb deb-src 611s URIs: http://ftpmaster.internal/ubuntu/ 611s Suites: plucky-proposed 611s Components: main restricted universe multiverse 611s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 611s 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 [] 611s autopkgtest: DBG: testbed command exited with code 0 611s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 611s Package: * 611s Pin: release plucky-proposed 611s Pin-Priority: 500 611s 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 [] 611s autopkgtest: DBG: testbed command exited with code 0 611s autopkgtest [14:08:33]: updating testbed package index (apt update) 611s 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'] 611s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 612s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 612s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 612s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 612s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 612s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 612s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 612s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 612s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 612s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 612s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 612s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 612s Fetched 1711 kB in 1s (1857 kB/s) 613s Reading package lists... 613s autopkgtest: DBG: testbed command exited with code 0 613s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 613s Package: * 613s Pin: release plucky-proposed 613s Pin-Priority: 100 613s 613s Package: src:llvm-toolchain-20:any 613s Pin: release plucky-proposed 613s Pin-Priority: 995 613s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 613s autopkgtest: DBG: testbed command exited with code 0 613s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 613s autopkgtest: DBG: testbed command exited with code 0 613s 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'] 613s + lsb_release --codename --short 613s + RELEASE=plucky 613s + cat 613s + [ plucky != trusty ] 613s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 613s Reading package lists... 613s Building dependency tree... 613s Reading state information... 614s Calculating upgrade... 614s Calculating upgrade... 614s The following packages were automatically installed and are no longer required: 614s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 614s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 614s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 614s linux-tools-6.11.0-8-generic 614s Use 'sudo apt autoremove' to remove them. 614s The following packages will be upgraded: 614s base-files gcc-14-base motd-news-config 614s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 614s Need to get 134 kB of archives. 614s After this operation, 0 B of additional disk space will be used. 614s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 614s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 614s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 614s Fetched 134 kB in 0s (335 kB/s) 614s (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.) 614s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 614s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 614s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 615s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 615s Setting up base-files (13.6ubuntu1) ... 615s Updating /root/.profile to current default. 615s motd-news.service is a disabled or a static unit not running, not starting it. 615s (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.) 615s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 615s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 615s Setting up motd-news-config (13.6ubuntu1) ... 615s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 615s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 615s Processing triggers for install-info (7.1.1-1) ... 615s Processing triggers for man-db (2.13.0-1) ... 615s Processing triggers for initramfs-tools (0.145ubuntu2) ... 615s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 615s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 619s Using config file '/etc/zipl.conf' 619s Building bootmap in '/boot' 619s Adding IPL section 'ubuntu' (default) 619s Preparing boot device for LD-IPL: vda (0000). 619s Done. 619s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 619s + /usr/lib/apt/apt-helper analyze-pattern ?true 619s + uname -r 619s + sed s/\./\\./g 619s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 619s + apt list ?obsolete 619s + tail -n+2+ 619s cut -d/ -f1 619s + grep -v ^linux-.*6\.12\.0-15-generic.* 619s + true 619s + obsolete_pkgs= 619s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 619s Reading package lists... 620s Building dependency tree... 620s Reading state information... 620s Solving dependencies... 620s The following packages will be REMOVED: 620s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 620s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 620s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 620s linux-tools-6.11.0-8-generic* 620s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 620s After this operation, 167 MB disk space will be freed. 620s (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.) 620s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 620s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 620s Removing libpython3.12t64:s390x (3.12.9-1) ... 620s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 620s Removing libnsl2:s390x (1.3.0-3build3) ... 620s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 620s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 620s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 621s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 621s Processing triggers for libc-bin (2.40-4ubuntu1) ... 621s (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 ... 55930 files and directories currently installed.) 621s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 621s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 621s + grep -q trusty /etc/lsb-release 621s + [ ! -d /usr/share/doc/unattended-upgrades ] 621s + [ ! -d /usr/share/doc/lxd ] 621s + [ ! -d /usr/share/doc/lxd-client ] 621s + [ ! -d /usr/share/doc/snapd ] 621s + type iptables 621s + cat 621s + chmod 755 /etc/rc.local 621s + . /etc/rc.local 621s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 621s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 621s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 621s + uname -m 621s + [ s390x = ppc64le ] 621s + [ -d /run/systemd/system ] 621s + systemd-detect-virt --quiet --vm 621s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 621s + cat 621s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 621s + echo COMPRESS=lz4 621s autopkgtest: DBG: testbed command exited with code 0 621s autopkgtest [14:08:43]: upgrading testbed (apt dist-upgrade and autopurge) 621s 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'] 621s Reading package lists... 621s Building dependency tree... 621s Reading state information... 621s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 622s Starting 2 pkgProblemResolver with broken count: 0 622s Done 622s Entering ResolveByKeep 622s 622s Calculating upgrade... 622s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 622s autopkgtest: DBG: testbed command exited with code 0 622s 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'] 622s Reading package lists... 622s Building dependency tree... 622s Reading state information... 622s Starting pkgProblemResolver with broken count: 0 622s Starting 2 pkgProblemResolver with broken count: 0 622s Done 623s Solving dependencies... 623s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 623s autopkgtest: DBG: testbed command exited with code 0 623s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 623s autopkgtest: DBG: testbed command exited with code 1 623s autopkgtest [14:08:45]: rebooting testbed after setup commands that affected boot 623s autopkgtest: DBG: sending command to testbed: reboot 639s autopkgtest: DBG: got reply from testbed: ok 639s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 639s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 639s autopkgtest: DBG: testbed command exited with code 0 639s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 639s autopkgtest: DBG: got reply from testbed: ok 639s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 639s autopkgtest: DBG: testbed command exited with code 0 639s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 640s autopkgtest: DBG: testbed command exited with code 0 640s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 640s autopkgtest: DBG: testbed command exited with code 0 640s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 640s autopkgtest: DBG: testbed command exited with code 0 640s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 640s autopkgtest: DBG: got reply from testbed: ok 640s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 640s autopkgtest: DBG: testbed command exited with code 0 640s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 641s autopkgtest: DBG: testbed command exited with code 0 641s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 642s autopkgtest: DBG: got reply from testbed: ok 642s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 642s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 642s autopkgtest: DBG: got reply from testbed: ok 642s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 642s autopkgtest: DBG: testbed command exited with code 0 642s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 643s autopkgtest: DBG: got reply from testbed: ok 643s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 643s autopkgtest: DBG: testbed command exited with code 0 643s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 644s autopkgtest: DBG: testbed command exited with code 0 644s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 644s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtqml', 'python3'] 644s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtqml, python3 644s autopkgtest: DBG: can use apt-get on testbed: True 644s 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'] 644s Reading package lists... 644s Building dependency tree... 644s Reading state information... 644s Starting pkgProblemResolver with broken count: 0 644s Starting 2 pkgProblemResolver with broken count: 0 644s Done 644s The following NEW packages will be installed: 644s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 644s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 644s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 644s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 644s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 644s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 644s libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 libsm6 libvulkan1 644s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 644s libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 644s libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 644s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xfixes0 644s libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxkbcommon-x11-0 libxrender1 644s libxshmfence1 libxxf86vm1 mesa-libgallium python3-pyside2.qtcore 644s python3-pyside2.qtgui python3-pyside2.qtnetwork python3-pyside2.qtqml 644s x11-common 644s 0 upgraded, 68 newly installed, 0 to remove and 0 not upgraded. 644s Need to get 24.9 MB of archives. 644s After this operation, 93.9 MB of additional disk space will be used. 644s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 645s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 645s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 645s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 645s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 645s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 645s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 645s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 645s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 645s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 645s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 645s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 645s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 645s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 645s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 645s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 645s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 645s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 645s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 645s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 645s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 645s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 645s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 645s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 645s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 645s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 645s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 645s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 645s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 645s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 645s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 645s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 645s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 645s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 645s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 645s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 645s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 646s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 646s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 646s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 646s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 646s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 646s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 646s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 646s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 646s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 646s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 646s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 646s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 646s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 646s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 646s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 646s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 646s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 646s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 646s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 646s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 646s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 646s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 646s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 646s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 646s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 646s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 646s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 646s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 646s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 646s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 646s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtqml s390x 5.15.16-3.1 [138 kB] 646s Fetched 24.9 MB in 2s (15.2 MB/s) 646s Selecting previously unselected package libfreetype6:s390x. 646s (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 ... 55928 files and directories currently installed.) 646s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 646s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 646s Selecting previously unselected package fonts-dejavu-mono. 646s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 646s Unpacking fonts-dejavu-mono (2.37-8) ... 646s Selecting previously unselected package fonts-dejavu-core. 646s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 646s Unpacking fonts-dejavu-core (2.37-8) ... 646s Selecting previously unselected package fontconfig-config. 646s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 647s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 647s Selecting previously unselected package libfontconfig1:s390x. 647s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 647s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 647s Selecting previously unselected package fontconfig. 647s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 647s Unpacking fontconfig (2.15.0-2ubuntu1) ... 647s Selecting previously unselected package libdouble-conversion3:s390x. 647s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 647s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 647s Selecting previously unselected package libdrm-radeon1:s390x. 647s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 647s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 647s Selecting previously unselected package libwayland-server0:s390x. 647s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 647s Unpacking libwayland-server0:s390x (1.23.1-3) ... 647s Selecting previously unselected package libglapi-mesa:s390x. 647s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 647s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 647s Selecting previously unselected package libx11-xcb1:s390x. 647s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 647s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 647s Selecting previously unselected package libxcb-dri3-0:s390x. 647s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-present0:s390x. 647s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-present0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-randr0:s390x. 647s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-sync1:s390x. 647s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-xfixes0:s390x. 647s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxshmfence1:s390x. 647s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 647s Unpacking libxshmfence1:s390x (1.3-1build5) ... 647s Selecting previously unselected package mesa-libgallium:s390x. 647s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 647s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 647s Selecting previously unselected package libgbm1:s390x. 647s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 647s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 647s Selecting previously unselected package libwayland-client0:s390x. 647s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 647s Unpacking libwayland-client0:s390x (1.23.1-3) ... 647s Selecting previously unselected package libxcb-shm0:s390x. 647s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libegl-mesa0:s390x. 647s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 647s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 647s Selecting previously unselected package libvulkan1:s390x. 647s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 647s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 647s Selecting previously unselected package libgl1-mesa-dri:s390x. 647s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 647s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 647s Selecting previously unselected package libxcb-glx0:s390x. 647s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxxf86vm1:s390x. 647s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 647s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 647s Selecting previously unselected package libglx-mesa0:s390x. 647s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 647s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 647s Selecting previously unselected package libgraphite2-3:s390x. 647s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 647s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 647s Selecting previously unselected package libharfbuzz0b:s390x. 647s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 647s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 647s Selecting previously unselected package x11-common. 647s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 647s Unpacking x11-common (1:7.7+23ubuntu3) ... 647s Selecting previously unselected package libice6:s390x. 647s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 647s Unpacking libice6:s390x (2:1.1.1-1) ... 647s Selecting previously unselected package libwacom-common. 647s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 647s Unpacking libwacom-common (2.14.0-1) ... 647s Selecting previously unselected package libwacom9:s390x. 647s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 647s Unpacking libwacom9:s390x (2.14.0-1) ... 647s Selecting previously unselected package libinput-bin. 647s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 647s Unpacking libinput-bin (1.27.1-1) ... 647s Selecting previously unselected package libmtdev1t64:s390x. 647s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 647s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 647s Selecting previously unselected package libinput10:s390x. 647s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 647s Unpacking libinput10:s390x (1.27.1-1) ... 647s Selecting previously unselected package libjpeg-turbo8:s390x. 647s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 647s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 647s Selecting previously unselected package libjpeg8:s390x. 647s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 647s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 647s Selecting previously unselected package libmd4c0:s390x. 647s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 647s Unpacking libmd4c0:s390x (0.5.2-2) ... 647s Selecting previously unselected package libpcre2-16-0:s390x. 647s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 647s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 647s Selecting previously unselected package libqt5core5t64:s390x. 647s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 647s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 647s Selecting previously unselected package libqt5dbus5t64:s390x. 647s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 647s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 647s Selecting previously unselected package libqt5network5t64:s390x. 647s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 647s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 647s Selecting previously unselected package libqt5qml5:s390x. 647s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 647s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 647s Selecting previously unselected package libshiboken2-py3-5.15t64. 647s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 647s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 647s Selecting previously unselected package libpyside2-py3-5.15t64. 647s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 647s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 647s Selecting previously unselected package libglvnd0:s390x. 647s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 647s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 647s Selecting previously unselected package libegl1:s390x. 647s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 647s Unpacking libegl1:s390x (1.7.0-1build1) ... 647s Selecting previously unselected package libglx0:s390x. 647s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 647s Unpacking libglx0:s390x (1.7.0-1build1) ... 647s Selecting previously unselected package libgl1:s390x. 647s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 647s Unpacking libgl1:s390x (1.7.0-1build1) ... 647s Selecting previously unselected package libsm6:s390x. 647s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 647s Unpacking libsm6:s390x (2:1.2.4-1) ... 647s Selecting previously unselected package libxcb-icccm4:s390x. 647s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 647s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 647s Selecting previously unselected package libxcb-util1:s390x. 647s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 647s Unpacking libxcb-util1:s390x (0.4.1-1) ... 647s Selecting previously unselected package libxcb-image0:s390x. 647s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 647s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 647s Selecting previously unselected package libxcb-keysyms1:s390x. 647s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 647s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 647s Selecting previously unselected package libxcb-render0:s390x. 647s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-render0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-render-util0:s390x. 647s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 647s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 647s Selecting previously unselected package libxcb-shape0:s390x. 647s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-xinerama0:s390x. 647s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-xinput0:s390x. 647s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxcb-xkb1:s390x. 647s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 647s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 647s Selecting previously unselected package libxkbcommon-x11-0:s390x. 647s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 647s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 647s Selecting previously unselected package libxrender1:s390x. 647s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 647s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 647s Selecting previously unselected package libqt5gui5t64:s390x. 647s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 647s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 647s Selecting previously unselected package python3-pyside2.qtcore. 647s Preparing to unpack .../64-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 647s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 647s Selecting previously unselected package python3-pyside2.qtgui. 647s Preparing to unpack .../65-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 647s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 647s Selecting previously unselected package python3-pyside2.qtnetwork. 647s Preparing to unpack .../66-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 647s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 647s Selecting previously unselected package python3-pyside2.qtqml. 647s Preparing to unpack .../67-python3-pyside2.qtqml_5.15.16-3.1_s390x.deb ... 647s Unpacking python3-pyside2.qtqml (5.15.16-3.1) ... 647s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 647s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 647s Setting up libwayland-server0:s390x (1.23.1-3) ... 647s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 647s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 647s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 647s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 647s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 647s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 648s Setting up libxcb-render0:s390x (1.17.0-2) ... 648s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 648s Setting up libglvnd0:s390x (1.7.0-1build1) ... 648s Setting up libxcb-glx0:s390x (1.17.0-2) ... 648s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 648s Setting up libxcb-shape0:s390x (1.17.0-2) ... 648s Setting up x11-common (1:7.7+23ubuntu3) ... 648s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 648s Setting up libxcb-shm0:s390x (1.17.0-2) ... 648s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 648s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 648s Setting up libxcb-util1:s390x (0.4.1-1) ... 648s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 648s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 648s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 648s Setting up libxcb-present0:s390x (1.17.0-2) ... 648s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 648s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 648s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 648s Setting up libxcb-sync1:s390x (1.17.0-2) ... 648s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 648s Setting up fonts-dejavu-mono (2.37-8) ... 648s Setting up fonts-dejavu-core (2.37-8) ... 648s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 648s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 648s Setting up libvulkan1:s390x (1.4.304.0-1) ... 648s Setting up libmtdev1t64:s390x (1.1.7-1) ... 648s Setting up libxshmfence1:s390x (1.3-1build5) ... 648s Setting up libxcb-randr0:s390x (1.17.0-2) ... 648s Setting up libmd4c0:s390x (0.5.2-2) ... 648s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 648s Setting up libwacom-common (2.14.0-1) ... 648s Setting up libwayland-client0:s390x (1.23.1-3) ... 648s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 648s Setting up libice6:s390x (2:1.1.1-1) ... 648s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 648s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 648s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 648s Setting up libwacom9:s390x (2.14.0-1) ... 648s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 648s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 648s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 648s Setting up libinput-bin (1.27.1-1) ... 648s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 648s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 648s Setting up libegl1:s390x (1.7.0-1build1) ... 648s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 648s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 648s Setting up libsm6:s390x (2:1.2.4-1) ... 648s Setting up libinput10:s390x (1.27.1-1) ... 648s Setting up fontconfig (2.15.0-2ubuntu1) ... 650s Regenerating fonts cache... done. 650s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 650s Setting up libglx0:s390x (1.7.0-1build1) ... 650s Setting up libgl1:s390x (1.7.0-1build1) ... 650s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 650s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 650s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 650s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 650s Setting up python3-pyside2.qtqml (5.15.16-3.1) ... 650s Processing triggers for man-db (2.13.0-1) ... 650s Processing triggers for udev (257.2-3ubuntu1) ... 651s Processing triggers for libc-bin (2.40-4ubuntu1) ... 651s autopkgtest: DBG: testbed command exited with code 0 651s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtqml'], kind short, sout pipe, serr pipe, env [] 651s autopkgtest: DBG: testbed command exited with code 0 651s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command4-packages.all"], kind short, sout raw, serr pipe, env [] 651s autopkgtest: DBG: testbed command exited with code 0 651s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command4-packages.all /tmp/autopkgtest-work.nwculqua/out/command4-packages.all 652s autopkgtest: DBG: got reply from testbed: ok 652s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 652s autopkgtest: DBG: testbed command exited with code 1 652s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 652s autopkgtest: DBG: testbed command exited with code 0 652s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 655s autopkgtest: DBG: got reply from testbed: ok 655s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 655s autopkgtest: DBG: testbed command exited with code 0 655s autopkgtest [14:09:17]: test command4: debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml 655s autopkgtest [14:09:17]: test command4: [----------------------- 655s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command4-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command4-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command4-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml'"], kind test, sout raw, serr raw, env [] 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command4-artifacts 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command4-stderr 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command4-stdout 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtqml PySide2.QtQml 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.jhCPy4bYgd/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command4-stdout 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.jhCPy4bYgd/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command4-stdout 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2229 to /tmp/autopkgtest_script_pid 655s Testing python3 package python3-pyside2.qtqml 655s Testing with python3.13: 655s 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 655s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 655s autopkgtest: DBG: testbed command exited with code 0 655s autopkgtest [14:09:17]: test command4: -----------------------] 655s autopkgtest: DBG: testbed executing test finished with exit status 0 655s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command4-stdout /tmp/autopkgtest-work.nwculqua/out/command4-stdout 656s autopkgtest: DBG: got reply from testbed: ok 656s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command4-stderr /tmp/autopkgtest-work.nwculqua/out/command4-stderr 656s autopkgtest: DBG: got reply from testbed: ok 656s command4 PASS (superficial) 656s autopkgtest [14:09:18]: test command4: - - - - - - - - - - results - - - - - - - - - - 656s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command4-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 656s autopkgtest: DBG: got reply from testbed: ok 656s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command4-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 656s autopkgtest: DBG: testbed command exited with code 0 656s autopkgtest [14:09:18]: test command6: preparing testbed 656s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtqml', 'python3'], deps_new=['python3-pyside2.qthelp', 'python3'] 656s autopkgtest: DBG: testbed reset 656s autopkgtest: DBG: sending command to testbed: revert 731s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 731s autopkgtest: DBG: sending command to testbed: print-execute-command 731s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 731s autopkgtest: DBG: sending command to testbed: capabilities 731s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 731s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 731s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 731s autopkgtest: DBG: testbed command exited with code 0 731s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 731s autopkgtest: DBG: got reply from testbed: ok 731s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 732s autopkgtest: DBG: testbed command exited with code 0 732s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 732s autopkgtest: DBG: testbed command exited with code 0 732s autopkgtest [14:10:34]: testbed dpkg architecture: s390x 732s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 732s autopkgtest: DBG: testbed command exited with code 0 732s autopkgtest [14:10:34]: testbed apt version: 2.9.30ubuntu1 732s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 732s autopkgtest: DBG: testbed command exited with code 0 732s autopkgtest: DBG: testbed has eatmydata 732s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 732s autopkgtest: DBG: testbed command exited with code 0 732s autopkgtest [14:10:34]: @@@@@@@@@@@@@@@@@@@@ test bed setup 732s 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 [] 732s autopkgtest: DBG: testbed command exited with code 0 732s autopkgtest [14:10:34]: testbed release detected to be: plucky 732s 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 [] 733s autopkgtest: DBG: testbed command exited with code 0 733s 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 [] 733s autopkgtest: DBG: testbed command exited with code 0 733s autopkgtest: DBG: adding APT source: Types: deb deb-src 733s URIs: http://ftpmaster.internal/ubuntu/ 733s Suites: plucky-proposed 733s Components: main restricted universe multiverse 733s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 733s 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 [] 733s autopkgtest: DBG: testbed command exited with code 0 733s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 733s Package: * 733s Pin: release plucky-proposed 733s Pin-Priority: 500 733s 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 [] 733s autopkgtest: DBG: testbed command exited with code 0 733s autopkgtest [14:10:35]: updating testbed package index (apt update) 733s 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'] 733s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 734s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 734s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 734s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 734s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 734s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 734s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 734s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 734s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 734s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 734s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 734s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 734s Fetched 1711 kB in 1s (1924 kB/s) 735s Reading package lists... 735s autopkgtest: DBG: testbed command exited with code 0 735s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 735s Package: * 735s Pin: release plucky-proposed 735s Pin-Priority: 100 735s 735s Package: src:llvm-toolchain-20:any 735s Pin: release plucky-proposed 735s Pin-Priority: 995 735s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 735s autopkgtest: DBG: testbed command exited with code 0 735s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 735s autopkgtest: DBG: testbed command exited with code 0 735s 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'] 735s + lsb_release --codename --short 735s + RELEASE=plucky 735s + cat 735s + [ plucky != trusty ] 735s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 735s Reading package lists... 736s Building dependency tree... 736s Reading state information... 736s Calculating upgrade... 736s Calculating upgrade... 736s The following packages were automatically installed and are no longer required: 736s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 736s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 736s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 736s linux-tools-6.11.0-8-generic 736s Use 'sudo apt autoremove' to remove them. 736s The following packages will be upgraded: 736s base-files gcc-14-base motd-news-config 736s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 736s Need to get 134 kB of archives. 736s After this operation, 0 B of additional disk space will be used. 736s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 736s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 736s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 737s Fetched 134 kB in 1s (188 kB/s) 737s (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.) 737s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 737s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 737s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 737s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 737s Setting up base-files (13.6ubuntu1) ... 737s Updating /root/.profile to current default. 737s motd-news.service is a disabled or a static unit not running, not starting it. 738s (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.) 738s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 738s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 738s Setting up motd-news-config (13.6ubuntu1) ... 738s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 738s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 738s Processing triggers for install-info (7.1.1-1) ... 738s Processing triggers for man-db (2.13.0-1) ... 738s Processing triggers for initramfs-tools (0.145ubuntu2) ... 738s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 738s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 741s Using config file '/etc/zipl.conf' 741s Building bootmap in '/boot' 741s Adding IPL section 'ubuntu' (default) 741s Preparing boot device for LD-IPL: vda (0000). 741s Done. 742s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 742s + /usr/lib/apt/apt-helper analyze-pattern ?true 742s + uname -r 742s + sed s/\./\\./g 742s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 742s + apt list ?obsolete 742s + tail -n+2 742s + + grep -v ^linux-.*6\.12\.0-15-generic.* 742s cut -d/ -f1 742s + true 742s + obsolete_pkgs= 742s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 742s Reading package lists... 742s Building dependency tree... 742s Reading state information... 742s Solving dependencies... 742s The following packages will be REMOVED: 742s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 742s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 742s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 742s linux-tools-6.11.0-8-generic* 742s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 742s After this operation, 167 MB disk space will be freed. 742s (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.) 742s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 742s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 742s Removing libpython3.12t64:s390x (3.12.9-1) ... 742s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 742s Removing libnsl2:s390x (1.3.0-3build3) ... 742s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 742s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 742s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 743s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 743s Processing triggers for libc-bin (2.40-4ubuntu1) ... 743s (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 ... 55930 files and directories currently installed.) 743s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 743s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 743s + grep -q trusty /etc/lsb-release 743s + [ ! -d /usr/share/doc/unattended-upgrades ] 743s + [ ! -d /usr/share/doc/lxd ] 743s + [ ! -d /usr/share/doc/lxd-client ] 743s + [ ! -d /usr/share/doc/snapd ] 743s + type iptables 743s + cat 743s + chmod 755 /etc/rc.local 743s + . /etc/rc.local 743s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 743s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 743s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 743s + uname -m 743s + [ s390x = ppc64le ] 743s + [ -d /run/systemd/system ] 743s + systemd-detect-virt --quiet --vm 743s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 743s + cat 743s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 743s + echo COMPRESS=lz4 743s autopkgtest: DBG: testbed command exited with code 0 743s autopkgtest [14:10:45]: upgrading testbed (apt dist-upgrade and autopurge) 743s 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'] 744s Reading package lists... 744s Building dependency tree... 744s Reading state information... 744s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 744s Starting 2 pkgProblemResolver with broken count: 0 744s Done 744s Entering ResolveByKeep 744s 744s Calculating upgrade... 744s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 744s autopkgtest: DBG: testbed command exited with code 0 744s 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'] 745s Reading package lists... 745s Building dependency tree... 745s Reading state information... 745s Starting pkgProblemResolver with broken count: 0 745s Starting 2 pkgProblemResolver with broken count: 0 745s Done 745s Solving dependencies... 745s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 745s autopkgtest: DBG: testbed command exited with code 0 745s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 745s autopkgtest: DBG: testbed command exited with code 1 745s autopkgtest [14:10:47]: rebooting testbed after setup commands that affected boot 745s autopkgtest: DBG: sending command to testbed: reboot 763s autopkgtest: DBG: got reply from testbed: ok 763s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 763s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 763s autopkgtest: DBG: testbed command exited with code 0 763s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 763s autopkgtest: DBG: got reply from testbed: ok 763s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 763s autopkgtest: DBG: testbed command exited with code 0 763s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 764s autopkgtest: DBG: testbed command exited with code 0 764s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 764s autopkgtest: DBG: testbed command exited with code 0 764s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 764s autopkgtest: DBG: testbed command exited with code 0 764s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 764s autopkgtest: DBG: got reply from testbed: ok 764s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 764s autopkgtest: DBG: testbed command exited with code 0 764s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 764s autopkgtest: DBG: testbed command exited with code 0 764s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 765s autopkgtest: DBG: testbed command exited with code 0 765s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 765s autopkgtest: DBG: testbed command exited with code 0 765s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 765s autopkgtest: DBG: got reply from testbed: ok 765s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 765s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 765s autopkgtest: DBG: testbed command exited with code 0 765s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 765s autopkgtest: DBG: got reply from testbed: ok 765s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 765s autopkgtest: DBG: testbed command exited with code 0 765s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 766s autopkgtest: DBG: testbed command exited with code 0 766s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 766s autopkgtest: DBG: testbed command exited with code 0 766s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 766s autopkgtest: DBG: testbed command exited with code 0 766s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 766s autopkgtest: DBG: got reply from testbed: ok 766s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 766s autopkgtest: DBG: testbed command exited with code 0 766s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 766s autopkgtest: DBG: testbed command exited with code 0 766s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 767s autopkgtest: DBG: testbed command exited with code 0 767s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 767s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qthelp', 'python3'] 767s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qthelp, python3 767s autopkgtest: DBG: can use apt-get on testbed: True 767s 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'] 767s Reading package lists... 767s Building dependency tree... 767s Reading state information... 767s Starting pkgProblemResolver with broken count: 0 767s Starting 2 pkgProblemResolver with broken count: 0 767s Done 767s The following NEW packages will be installed: 767s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 767s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 767s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 767s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 767s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 767s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 767s libqt5help5 libqt5network5t64 libqt5qml5 libqt5sql5t64 libqt5widgets5t64 767s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 767s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 767s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 767s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 767s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 767s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 767s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qthelp 767s python3-pyside2.qtwidgets x11-common 768s 0 upgraded, 71 newly installed, 0 to remove and 0 not upgraded. 768s Need to get 29.5 MB of archives. 768s After this operation, 112 MB of additional disk space will be used. 768s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 768s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 768s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 768s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 768s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 768s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 768s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 768s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 768s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 768s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 768s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 768s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 768s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 768s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 768s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 768s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 768s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 768s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 769s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 769s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 769s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 769s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 769s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 769s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 769s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 769s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 769s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 769s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 769s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 769s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 769s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 769s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 769s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 769s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 769s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 769s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 769s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 769s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 769s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 769s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 769s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 769s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 769s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 769s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 769s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 769s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 769s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 769s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 769s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 769s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 769s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 769s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 769s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 769s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 769s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 769s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 769s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 769s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 769s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 769s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 769s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 769s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 769s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 769s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 769s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-4ubuntu1 [130 kB] 769s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 770s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5help5 s390x 5.15.15-6build1 [172 kB] 770s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 770s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 770s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 770s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qthelp s390x 5.15.16-3.1 [143 kB] 770s Fetched 29.5 MB in 2s (11.8 MB/s) 770s Selecting previously unselected package libfreetype6:s390x. 770s (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 ... 55928 files and directories currently installed.) 770s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 770s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 770s Selecting previously unselected package fonts-dejavu-mono. 770s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 770s Unpacking fonts-dejavu-mono (2.37-8) ... 770s Selecting previously unselected package fonts-dejavu-core. 770s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 770s Unpacking fonts-dejavu-core (2.37-8) ... 770s Selecting previously unselected package fontconfig-config. 770s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 770s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 770s Selecting previously unselected package libfontconfig1:s390x. 770s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 770s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 770s Selecting previously unselected package fontconfig. 770s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 770s Unpacking fontconfig (2.15.0-2ubuntu1) ... 770s Selecting previously unselected package libdouble-conversion3:s390x. 770s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 770s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 770s Selecting previously unselected package libdrm-radeon1:s390x. 770s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 770s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 770s Selecting previously unselected package libwayland-server0:s390x. 770s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 770s Unpacking libwayland-server0:s390x (1.23.1-3) ... 770s Selecting previously unselected package libglapi-mesa:s390x. 770s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 770s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 770s Selecting previously unselected package libx11-xcb1:s390x. 770s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 770s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 771s Selecting previously unselected package libxcb-dri3-0:s390x. 771s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-present0:s390x. 771s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-present0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-randr0:s390x. 771s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-sync1:s390x. 771s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-xfixes0:s390x. 771s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxshmfence1:s390x. 771s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 771s Unpacking libxshmfence1:s390x (1.3-1build5) ... 771s Selecting previously unselected package mesa-libgallium:s390x. 771s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 771s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 771s Selecting previously unselected package libgbm1:s390x. 771s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 771s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 771s Selecting previously unselected package libwayland-client0:s390x. 771s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 771s Unpacking libwayland-client0:s390x (1.23.1-3) ... 771s Selecting previously unselected package libxcb-shm0:s390x. 771s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libegl-mesa0:s390x. 771s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 771s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 771s Selecting previously unselected package libvulkan1:s390x. 771s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 771s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 771s Selecting previously unselected package libgl1-mesa-dri:s390x. 771s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 771s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 771s Selecting previously unselected package libxcb-glx0:s390x. 771s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxxf86vm1:s390x. 771s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 771s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 771s Selecting previously unselected package libglx-mesa0:s390x. 771s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 771s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 771s Selecting previously unselected package libgraphite2-3:s390x. 771s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 771s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 771s Selecting previously unselected package libharfbuzz0b:s390x. 771s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 771s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 771s Selecting previously unselected package x11-common. 771s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 771s Unpacking x11-common (1:7.7+23ubuntu3) ... 771s Selecting previously unselected package libice6:s390x. 771s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 771s Unpacking libice6:s390x (2:1.1.1-1) ... 771s Selecting previously unselected package libwacom-common. 771s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 771s Unpacking libwacom-common (2.14.0-1) ... 771s Selecting previously unselected package libwacom9:s390x. 771s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 771s Unpacking libwacom9:s390x (2.14.0-1) ... 771s Selecting previously unselected package libinput-bin. 771s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 771s Unpacking libinput-bin (1.27.1-1) ... 771s Selecting previously unselected package libmtdev1t64:s390x. 771s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 771s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 771s Selecting previously unselected package libinput10:s390x. 771s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 771s Unpacking libinput10:s390x (1.27.1-1) ... 771s Selecting previously unselected package libjpeg-turbo8:s390x. 771s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 771s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 771s Selecting previously unselected package libjpeg8:s390x. 771s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 771s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 771s Selecting previously unselected package libmd4c0:s390x. 771s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 771s Unpacking libmd4c0:s390x (0.5.2-2) ... 771s Selecting previously unselected package libpcre2-16-0:s390x. 771s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 771s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 771s Selecting previously unselected package libqt5core5t64:s390x. 771s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 771s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 771s Selecting previously unselected package libqt5dbus5t64:s390x. 771s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 771s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 771s Selecting previously unselected package libqt5network5t64:s390x. 771s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 771s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 771s Selecting previously unselected package libqt5qml5:s390x. 771s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 771s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 771s Selecting previously unselected package libshiboken2-py3-5.15t64. 771s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 771s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 771s Selecting previously unselected package libpyside2-py3-5.15t64. 771s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 771s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 771s Selecting previously unselected package libglvnd0:s390x. 771s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 771s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 771s Selecting previously unselected package libegl1:s390x. 771s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 771s Unpacking libegl1:s390x (1.7.0-1build1) ... 771s Selecting previously unselected package libglx0:s390x. 771s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 771s Unpacking libglx0:s390x (1.7.0-1build1) ... 771s Selecting previously unselected package libgl1:s390x. 771s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 771s Unpacking libgl1:s390x (1.7.0-1build1) ... 771s Selecting previously unselected package libsm6:s390x. 771s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 771s Unpacking libsm6:s390x (2:1.2.4-1) ... 771s Selecting previously unselected package libxcb-icccm4:s390x. 771s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 771s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 771s Selecting previously unselected package libxcb-util1:s390x. 771s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 771s Unpacking libxcb-util1:s390x (0.4.1-1) ... 771s Selecting previously unselected package libxcb-image0:s390x. 771s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 771s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 771s Selecting previously unselected package libxcb-keysyms1:s390x. 771s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 771s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 771s Selecting previously unselected package libxcb-render0:s390x. 771s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-render0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-render-util0:s390x. 771s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 771s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 771s Selecting previously unselected package libxcb-shape0:s390x. 771s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-xinerama0:s390x. 771s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-xinput0:s390x. 771s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxcb-xkb1:s390x. 771s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 771s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 771s Selecting previously unselected package libxkbcommon-x11-0:s390x. 771s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 771s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 771s Selecting previously unselected package libxrender1:s390x. 771s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 771s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 771s Selecting previously unselected package libqt5gui5t64:s390x. 771s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 771s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 771s Selecting previously unselected package libqt5sql5t64:s390x. 771s Preparing to unpack .../64-libqt5sql5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 771s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 771s Selecting previously unselected package libqt5widgets5t64:s390x. 771s Preparing to unpack .../65-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 771s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 771s Selecting previously unselected package libqt5help5:s390x. 771s Preparing to unpack .../66-libqt5help5_5.15.15-6build1_s390x.deb ... 771s Unpacking libqt5help5:s390x (5.15.15-6build1) ... 771s Selecting previously unselected package python3-pyside2.qtcore. 771s Preparing to unpack .../67-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 771s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 771s Selecting previously unselected package python3-pyside2.qtgui. 771s Preparing to unpack .../68-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 771s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 771s Selecting previously unselected package python3-pyside2.qtwidgets. 771s Preparing to unpack .../69-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 771s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 771s Selecting previously unselected package python3-pyside2.qthelp. 771s Preparing to unpack .../70-python3-pyside2.qthelp_5.15.16-3.1_s390x.deb ... 771s Unpacking python3-pyside2.qthelp (5.15.16-3.1) ... 771s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 771s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 771s Setting up libwayland-server0:s390x (1.23.1-3) ... 771s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 771s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 771s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 771s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 771s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 771s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 772s Setting up libxcb-render0:s390x (1.17.0-2) ... 772s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 772s Setting up libglvnd0:s390x (1.7.0-1build1) ... 772s Setting up libxcb-glx0:s390x (1.17.0-2) ... 772s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 772s Setting up libxcb-shape0:s390x (1.17.0-2) ... 772s Setting up x11-common (1:7.7+23ubuntu3) ... 772s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 772s Setting up libxcb-shm0:s390x (1.17.0-2) ... 772s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 772s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 772s Setting up libxcb-util1:s390x (0.4.1-1) ... 772s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 772s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 772s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 772s Setting up libxcb-present0:s390x (1.17.0-2) ... 772s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 772s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 772s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 772s Setting up libxcb-sync1:s390x (1.17.0-2) ... 772s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 772s Setting up fonts-dejavu-mono (2.37-8) ... 772s Setting up fonts-dejavu-core (2.37-8) ... 772s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 772s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 772s Setting up libvulkan1:s390x (1.4.304.0-1) ... 772s Setting up libmtdev1t64:s390x (1.1.7-1) ... 772s Setting up libxshmfence1:s390x (1.3-1build5) ... 772s Setting up libxcb-randr0:s390x (1.17.0-2) ... 772s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 772s Setting up libmd4c0:s390x (0.5.2-2) ... 772s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 772s Setting up libwacom-common (2.14.0-1) ... 772s Setting up libwayland-client0:s390x (1.23.1-3) ... 772s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 772s Setting up libice6:s390x (2:1.1.1-1) ... 772s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 772s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 772s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 772s Setting up libwacom9:s390x (2.14.0-1) ... 772s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 772s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 772s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 772s Setting up libinput-bin (1.27.1-1) ... 772s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 772s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 772s Setting up libegl1:s390x (1.7.0-1build1) ... 772s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 772s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 772s Setting up libsm6:s390x (2:1.2.4-1) ... 772s Setting up libinput10:s390x (1.27.1-1) ... 772s Setting up fontconfig (2.15.0-2ubuntu1) ... 774s Regenerating fonts cache... done. 774s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 774s Setting up libglx0:s390x (1.7.0-1build1) ... 774s Setting up libgl1:s390x (1.7.0-1build1) ... 774s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 774s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 774s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 774s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 774s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 774s Setting up libqt5help5:s390x (5.15.15-6build1) ... 774s Setting up python3-pyside2.qthelp (5.15.16-3.1) ... 774s Processing triggers for man-db (2.13.0-1) ... 774s Processing triggers for udev (257.2-3ubuntu1) ... 775s Processing triggers for libc-bin (2.40-4ubuntu1) ... 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qthelp'], kind short, sout pipe, serr pipe, env [] 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command6-packages.all"], kind short, sout raw, serr pipe, env [] 775s autopkgtest: DBG: testbed command exited with code 0 775s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command6-packages.all /tmp/autopkgtest-work.nwculqua/out/command6-packages.all 776s autopkgtest: DBG: got reply from testbed: ok 776s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 776s autopkgtest: DBG: testbed command exited with code 1 776s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 776s autopkgtest: DBG: testbed command exited with code 0 776s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 778s autopkgtest: DBG: got reply from testbed: ok 778s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 778s autopkgtest: DBG: testbed command exited with code 0 778s autopkgtest [14:11:20]: test command6: debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp 778s autopkgtest [14:11:20]: test command6: [----------------------- 778s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command6-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command6-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command6-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp'"], kind test, sout raw, serr raw, env [] 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command6-artifacts 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command6-stderr 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command6-stdout 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qthelp PySide2.QtHelp 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.9tYGXKXJuS/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command6-stdout 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.9tYGXKXJuS/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command6-stdout 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2255 to /tmp/autopkgtest_script_pid 778s Testing python3 package python3-pyside2.qthelp 778s Testing with python3.13: 778s 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 778s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 778s autopkgtest: DBG: testbed command exited with code 0 778s autopkgtest [14:11:20]: test command6: -----------------------] 778s autopkgtest: DBG: testbed executing test finished with exit status 0 778s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command6-stdout /tmp/autopkgtest-work.nwculqua/out/command6-stdout 779s autopkgtest: DBG: got reply from testbed: ok 779s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command6-stderr /tmp/autopkgtest-work.nwculqua/out/command6-stderr 779s autopkgtest: DBG: got reply from testbed: ok 779s autopkgtest [14:11:21]: test command6: - - - - - - - - - - results - - - - - - - - - - 779s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command6-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 779s command6 PASS (superficial) 779s autopkgtest: DBG: got reply from testbed: ok 779s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command6-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 779s autopkgtest: DBG: testbed command exited with code 0 779s autopkgtest [14:11:21]: test command7: preparing testbed 779s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qthelp', 'python3'], deps_new=['python3-pyside2.qtnetwork', 'python3'] 779s autopkgtest: DBG: testbed reset 779s autopkgtest: DBG: sending command to testbed: revert 851s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 851s autopkgtest: DBG: sending command to testbed: print-execute-command 851s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 851s autopkgtest: DBG: sending command to testbed: capabilities 851s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 851s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 851s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 851s autopkgtest: DBG: testbed command exited with code 0 851s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 852s autopkgtest: DBG: got reply from testbed: ok 852s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 852s autopkgtest: DBG: testbed command exited with code 0 852s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 852s autopkgtest: DBG: testbed command exited with code 0 852s autopkgtest [14:12:34]: testbed dpkg architecture: s390x 852s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 852s autopkgtest: DBG: testbed command exited with code 0 852s autopkgtest [14:12:34]: testbed apt version: 2.9.30ubuntu1 852s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 852s autopkgtest: DBG: testbed command exited with code 0 852s autopkgtest: DBG: testbed has eatmydata 852s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 852s autopkgtest: DBG: testbed command exited with code 0 852s autopkgtest [14:12:34]: @@@@@@@@@@@@@@@@@@@@ test bed setup 852s 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 [] 853s autopkgtest: DBG: testbed command exited with code 0 853s autopkgtest [14:12:35]: testbed release detected to be: plucky 853s 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 [] 853s autopkgtest: DBG: testbed command exited with code 0 853s 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 [] 853s autopkgtest: DBG: testbed command exited with code 0 853s autopkgtest: DBG: adding APT source: Types: deb deb-src 853s URIs: http://ftpmaster.internal/ubuntu/ 853s Suites: plucky-proposed 853s Components: main restricted universe multiverse 853s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 853s 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 [] 853s autopkgtest: DBG: testbed command exited with code 0 853s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 853s Package: * 853s Pin: release plucky-proposed 853s Pin-Priority: 500 853s 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 [] 853s autopkgtest: DBG: testbed command exited with code 0 853s autopkgtest [14:12:35]: updating testbed package index (apt update) 853s 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'] 854s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 854s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 854s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 854s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 854s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 854s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 854s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 854s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 854s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 854s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 854s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 854s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 855s Fetched 1711 kB in 1s (1850 kB/s) 855s Reading package lists... 855s autopkgtest: DBG: testbed command exited with code 0 855s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 855s Package: * 855s Pin: release plucky-proposed 855s Pin-Priority: 100 855s 855s Package: src:llvm-toolchain-20:any 855s Pin: release plucky-proposed 855s Pin-Priority: 995 855s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 855s autopkgtest: DBG: testbed command exited with code 0 855s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 856s autopkgtest: DBG: testbed command exited with code 0 856s 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'] 856s + lsb_release --codename --short 856s + RELEASE=plucky 856s + cat 856s + [ plucky != trusty ] 856s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 856s Reading package lists... 856s Building dependency tree... 856s Reading state information... 856s Calculating upgrade... 856s Calculating upgrade... 856s The following packages were automatically installed and are no longer required: 856s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 856s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 856s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 856s linux-tools-6.11.0-8-generic 856s Use 'sudo apt autoremove' to remove them. 856s The following packages will be upgraded: 856s base-files gcc-14-base motd-news-config 856s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 856s Need to get 134 kB of archives. 856s After this operation, 0 B of additional disk space will be used. 856s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 856s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 857s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 857s Fetched 134 kB in 1s (241 kB/s) 857s (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.) 857s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 857s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 857s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 857s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 857s Setting up base-files (13.6ubuntu1) ... 857s Updating /root/.profile to current default. 858s motd-news.service is a disabled or a static unit not running, not starting it. 858s (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.) 858s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 858s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 858s Setting up motd-news-config (13.6ubuntu1) ... 858s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 858s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 858s Processing triggers for install-info (7.1.1-1) ... 858s Processing triggers for man-db (2.13.0-1) ... 858s Processing triggers for initramfs-tools (0.145ubuntu2) ... 858s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 858s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 862s Using config file '/etc/zipl.conf' 862s Building bootmap in '/boot' 862s Adding IPL section 'ubuntu' (default) 862s Preparing boot device for LD-IPL: vda (0000). 862s Done. 862s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 862s + /usr/lib/apt/apt-helper analyze-pattern ?true 862s + uname -r 862s + sed s/\./\\./g 862s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 862s + + tail -n+2 862s apt list ?obsolete 862s + cut -d/ -f1 862s + grep -v ^linux-.*6\.12\.0-15-generic.* 862s + true 862s + obsolete_pkgs= 862s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 862s Reading package lists... 862s Building dependency tree... 862s Reading state information... 862s Solving dependencies... 862s The following packages will be REMOVED: 862s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 862s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 862s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 862s linux-tools-6.11.0-8-generic* 862s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 862s After this operation, 167 MB disk space will be freed. 862s (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.) 862s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 862s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 862s Removing libpython3.12t64:s390x (3.12.9-1) ... 862s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 862s Removing libnsl2:s390x (1.3.0-3build3) ... 862s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 863s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 863s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 863s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 863s Processing triggers for libc-bin (2.40-4ubuntu1) ... 863s (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 ... 55930 files and directories currently installed.) 863s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 863s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 864s + grep -q trusty /etc/lsb-release 864s + [ ! -d /usr/share/doc/unattended-upgrades ] 864s + [ ! -d /usr/share/doc/lxd ] 864s + [ ! -d /usr/share/doc/lxd-client ] 864s + [ ! -d /usr/share/doc/snapd ] 864s + type iptables 864s + cat 864s + chmod 755 /etc/rc.local 864s + . /etc/rc.local 864s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 864s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 864s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 864s + uname -m 864s + [ s390x = ppc64le ] 864s + [ -d /run/systemd/system ] 864s + systemd-detect-virt --quiet --vm 864s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 864s + cat 864s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 864s + echo COMPRESS=lz4 864s autopkgtest: DBG: testbed command exited with code 0 864s autopkgtest [14:12:46]: upgrading testbed (apt dist-upgrade and autopurge) 864s 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'] 864s Reading package lists... 864s Building dependency tree... 864s Reading state information... 864s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 864s Starting 2 pkgProblemResolver with broken count: 0 864s Done 864s Entering ResolveByKeep 864s 864s Calculating upgrade... 865s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 865s autopkgtest: DBG: testbed command exited with code 0 865s 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'] 865s Reading package lists... 865s Building dependency tree... 865s Reading state information... 865s Starting pkgProblemResolver with broken count: 0 865s Starting 2 pkgProblemResolver with broken count: 0 865s Done 865s Solving dependencies... 865s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 865s autopkgtest: DBG: testbed command exited with code 0 865s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 865s autopkgtest: DBG: testbed command exited with code 1 865s autopkgtest [14:12:47]: rebooting testbed after setup commands that affected boot 865s autopkgtest: DBG: sending command to testbed: reboot 881s autopkgtest: DBG: got reply from testbed: ok 881s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 881s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 881s autopkgtest: DBG: testbed command exited with code 0 881s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 881s autopkgtest: DBG: got reply from testbed: ok 881s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 882s autopkgtest: DBG: testbed command exited with code 0 882s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 882s autopkgtest: DBG: testbed command exited with code 0 882s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 882s autopkgtest: DBG: testbed command exited with code 0 882s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 882s autopkgtest: DBG: testbed command exited with code 0 882s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 882s autopkgtest: DBG: got reply from testbed: ok 882s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 882s autopkgtest: DBG: testbed command exited with code 0 882s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 883s autopkgtest: DBG: testbed command exited with code 0 883s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 883s autopkgtest: DBG: testbed command exited with code 0 883s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 883s autopkgtest: DBG: testbed command exited with code 0 883s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 883s autopkgtest: DBG: got reply from testbed: ok 883s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 883s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 883s autopkgtest: DBG: testbed command exited with code 0 883s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 884s autopkgtest: DBG: got reply from testbed: ok 884s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 884s autopkgtest: DBG: testbed command exited with code 0 884s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 884s autopkgtest: DBG: testbed command exited with code 0 884s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 884s autopkgtest: DBG: testbed command exited with code 0 884s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 884s autopkgtest: DBG: testbed command exited with code 0 884s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 885s autopkgtest: DBG: got reply from testbed: ok 885s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 885s autopkgtest: DBG: testbed command exited with code 0 885s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 885s autopkgtest: DBG: testbed command exited with code 0 885s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 885s autopkgtest: DBG: testbed command exited with code 0 885s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 885s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtnetwork', 'python3'] 885s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtnetwork, python3 885s autopkgtest: DBG: can use apt-get on testbed: True 885s 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'] 885s Reading package lists... 885s Building dependency tree... 885s Reading state information... 885s Starting pkgProblemResolver with broken count: 0 885s Starting 2 pkgProblemResolver with broken count: 0 885s Done 886s The following NEW packages will be installed: 886s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 886s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 886s python3-pyside2.qtcore python3-pyside2.qtnetwork 886s 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded. 886s Need to get 6823 kB of archives. 886s After this operation, 24.3 MB of additional disk space will be used. 886s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 886s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 886s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 886s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 886s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 886s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 886s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 886s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 886s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 886s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 887s Fetched 6823 kB in 1s (8341 kB/s) 887s Selecting previously unselected package libdouble-conversion3:s390x. 887s (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 ... 55928 files and directories currently installed.) 887s Preparing to unpack .../0-libdouble-conversion3_3.3.1-1_s390x.deb ... 887s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 887s Selecting previously unselected package libpcre2-16-0:s390x. 887s Preparing to unpack .../1-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 887s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 887s Selecting previously unselected package libqt5core5t64:s390x. 887s Preparing to unpack .../2-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 887s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 887s Selecting previously unselected package libqt5dbus5t64:s390x. 887s Preparing to unpack .../3-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 887s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 887s Selecting previously unselected package libqt5network5t64:s390x. 887s Preparing to unpack .../4-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 887s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 887s Selecting previously unselected package libqt5qml5:s390x. 887s Preparing to unpack .../5-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 887s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 887s Selecting previously unselected package libshiboken2-py3-5.15t64. 887s Preparing to unpack .../6-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 887s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 887s Selecting previously unselected package libpyside2-py3-5.15t64. 887s Preparing to unpack .../7-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 887s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 887s Selecting previously unselected package python3-pyside2.qtcore. 887s Preparing to unpack .../8-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 887s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 887s Selecting previously unselected package python3-pyside2.qtnetwork. 887s Preparing to unpack .../9-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 887s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 887s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 887s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 887s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 887s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 887s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 887s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 887s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 887s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 887s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 887s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 887s Processing triggers for libc-bin (2.40-4ubuntu1) ... 887s autopkgtest: DBG: testbed command exited with code 0 887s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtnetwork'], kind short, sout pipe, serr pipe, env [] 888s autopkgtest: DBG: testbed command exited with code 0 888s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command7-packages.all"], kind short, sout raw, serr pipe, env [] 888s autopkgtest: DBG: testbed command exited with code 0 888s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command7-packages.all /tmp/autopkgtest-work.nwculqua/out/command7-packages.all 888s autopkgtest: DBG: got reply from testbed: ok 888s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 888s autopkgtest: DBG: testbed command exited with code 1 888s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 888s autopkgtest: DBG: testbed command exited with code 0 888s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 890s autopkgtest: DBG: got reply from testbed: ok 890s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 890s autopkgtest: DBG: testbed command exited with code 0 890s autopkgtest [14:13:12]: test command7: debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork 890s autopkgtest [14:13:12]: test command7: [----------------------- 890s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command7-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command7-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command7-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork'"], kind test, sout raw, serr raw, env [] 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command7-artifacts 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command7-stderr 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command7-stdout 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtnetwork PySide2.QtNetwork 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.Lg7MEfPHZo/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command7-stdout 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.Lg7MEfPHZo/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command7-stdout 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 1342 to /tmp/autopkgtest_script_pid 890s Testing python3 package python3-pyside2.qtnetwork 890s Testing with python3.13: 890s 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 890s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 890s autopkgtest: DBG: testbed command exited with code 0 891s autopkgtest [14:13:13]: test command7: -----------------------] 891s autopkgtest: DBG: testbed executing test finished with exit status 0 891s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command7-stdout /tmp/autopkgtest-work.nwculqua/out/command7-stdout 891s autopkgtest: DBG: got reply from testbed: ok 891s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command7-stderr /tmp/autopkgtest-work.nwculqua/out/command7-stderr 892s autopkgtest: DBG: got reply from testbed: ok 892s command7 PASS (superficial) 892s autopkgtest [14:13:13]: test command7: - - - - - - - - - - results - - - - - - - - - - 892s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command7-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 893s autopkgtest: DBG: got reply from testbed: ok 893s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command7-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 893s autopkgtest: DBG: testbed command exited with code 0 893s autopkgtest [14:13:15]: test command8: preparing testbed 893s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtnetwork', 'python3'], deps_new=['python3-pyside2.qtmultimediawidgets', 'python3'] 893s autopkgtest: DBG: testbed reset 893s autopkgtest: DBG: sending command to testbed: revert 949s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 949s autopkgtest: DBG: sending command to testbed: print-execute-command 949s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 949s autopkgtest: DBG: sending command to testbed: capabilities 949s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 949s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 949s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 949s autopkgtest: DBG: testbed command exited with code 0 949s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 949s autopkgtest: DBG: got reply from testbed: ok 949s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 950s autopkgtest: DBG: testbed command exited with code 0 950s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 950s autopkgtest: DBG: testbed command exited with code 0 950s autopkgtest [14:14:12]: testbed dpkg architecture: s390x 950s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 950s autopkgtest: DBG: testbed command exited with code 0 950s autopkgtest [14:14:12]: testbed apt version: 2.9.30ubuntu1 950s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 950s autopkgtest: DBG: testbed command exited with code 0 950s autopkgtest: DBG: testbed has eatmydata 950s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 950s autopkgtest: DBG: testbed command exited with code 0 950s autopkgtest [14:14:12]: @@@@@@@@@@@@@@@@@@@@ test bed setup 950s 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 [] 951s autopkgtest: DBG: testbed command exited with code 0 951s autopkgtest [14:14:13]: testbed release detected to be: plucky 951s 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 [] 951s autopkgtest: DBG: testbed command exited with code 0 951s 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 [] 951s autopkgtest: DBG: testbed command exited with code 0 951s autopkgtest: DBG: adding APT source: Types: deb deb-src 951s URIs: http://ftpmaster.internal/ubuntu/ 951s Suites: plucky-proposed 951s Components: main restricted universe multiverse 951s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 951s 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 [] 951s autopkgtest: DBG: testbed command exited with code 0 951s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 951s Package: * 951s Pin: release plucky-proposed 951s Pin-Priority: 500 951s 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 [] 951s autopkgtest: DBG: testbed command exited with code 0 951s autopkgtest [14:14:13]: updating testbed package index (apt update) 951s 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'] 952s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 952s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 952s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 952s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 952s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 952s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 952s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 952s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 952s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 952s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 952s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 952s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 952s Fetched 1711 kB in 1s (1873 kB/s) 953s Reading package lists... 953s autopkgtest: DBG: testbed command exited with code 0 953s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 953s Package: * 953s Pin: release plucky-proposed 953s Pin-Priority: 100 953s 953s Package: src:llvm-toolchain-20:any 953s Pin: release plucky-proposed 953s Pin-Priority: 995 953s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 953s autopkgtest: DBG: testbed command exited with code 0 953s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 953s autopkgtest: DBG: testbed command exited with code 0 953s 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'] 953s + lsb_release --codename --short 954s + RELEASE=plucky 954s + cat 954s + [ plucky != trusty ] 954s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 954s Reading package lists... 954s Building dependency tree... 954s Reading state information... 954s Calculating upgrade... 954s Calculating upgrade... 954s The following packages were automatically installed and are no longer required: 954s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 954s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 954s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 954s linux-tools-6.11.0-8-generic 954s Use 'sudo apt autoremove' to remove them. 954s The following packages will be upgraded: 954s base-files gcc-14-base motd-news-config 954s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 954s Need to get 134 kB of archives. 954s After this operation, 0 B of additional disk space will be used. 954s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 954s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 954s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 955s Fetched 134 kB in 0s (335 kB/s) 955s (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.) 955s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 955s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 955s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 955s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 955s Setting up base-files (13.6ubuntu1) ... 955s Updating /root/.profile to current default. 955s motd-news.service is a disabled or a static unit not running, not starting it. 955s (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.) 955s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 955s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 955s Setting up motd-news-config (13.6ubuntu1) ... 955s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 955s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 955s Processing triggers for install-info (7.1.1-1) ... 955s Processing triggers for man-db (2.13.0-1) ... 955s Processing triggers for initramfs-tools (0.145ubuntu2) ... 955s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 955s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 959s Using config file '/etc/zipl.conf' 959s Building bootmap in '/boot' 959s Adding IPL section 'ubuntu' (default) 959s Preparing boot device for LD-IPL: vda (0000). 959s Done. 959s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 959s + /usr/lib/apt/apt-helper analyze-pattern ?true 959s + uname -r 959s + sed s/\./\\./g 959s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 959s + apt list ?obsolete 959s + + tail -n+2 959s cut -d/ -f1 959s + grep -v ^linux-.*6\.12\.0-15-generic.* 959s + true 959s + obsolete_pkgs= 959s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 959s Reading package lists... 960s Building dependency tree... 960s Reading state information... 960s Solving dependencies... 960s The following packages will be REMOVED: 960s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 960s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 960s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 960s linux-tools-6.11.0-8-generic* 960s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 960s After this operation, 167 MB disk space will be freed. 960s (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.) 960s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 960s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 960s Removing libpython3.12t64:s390x (3.12.9-1) ... 960s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 960s Removing libnsl2:s390x (1.3.0-3build3) ... 960s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 960s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 960s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 961s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 961s Processing triggers for libc-bin (2.40-4ubuntu1) ... 961s (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 ... 55930 files and directories currently installed.) 961s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 961s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 961s + grep -q trusty /etc/lsb-release 961s + [ ! -d /usr/share/doc/unattended-upgrades ] 961s + [ ! -d /usr/share/doc/lxd ] 961s + [ ! -d /usr/share/doc/lxd-client ] 961s + [ ! -d /usr/share/doc/snapd ] 961s + type iptables 961s + cat 961s + chmod 755 /etc/rc.local 961s + . /etc/rc.local 961s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 961s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 961s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 961s + uname -m 961s + [ s390x = ppc64le ] 961s + [ -d /run/systemd/system ] 961s + systemd-detect-virt --quiet --vm 961s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 961s + cat 961s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 961s + echo COMPRESS=lz4 961s autopkgtest: DBG: testbed command exited with code 0 961s autopkgtest [14:14:23]: upgrading testbed (apt dist-upgrade and autopurge) 961s 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'] 961s Reading package lists... 961s Building dependency tree... 961s Reading state information... 962s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 962s Starting 2 pkgProblemResolver with broken count: 0 962s Done 962s Entering ResolveByKeep 962s 962s Calculating upgrade... 962s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 962s autopkgtest: DBG: testbed command exited with code 0 962s 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'] 962s Reading package lists... 962s Building dependency tree... 962s Reading state information... 962s Starting pkgProblemResolver with broken count: 0 962s Starting 2 pkgProblemResolver with broken count: 0 962s Done 963s Solving dependencies... 963s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 963s autopkgtest: DBG: testbed command exited with code 0 963s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 963s autopkgtest: DBG: testbed command exited with code 1 963s autopkgtest [14:14:25]: rebooting testbed after setup commands that affected boot 963s autopkgtest: DBG: sending command to testbed: reboot 983s autopkgtest: DBG: got reply from testbed: ok 983s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 983s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 983s autopkgtest: DBG: testbed command exited with code 0 983s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 983s autopkgtest: DBG: got reply from testbed: ok 983s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 983s autopkgtest: DBG: testbed command exited with code 0 983s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 983s autopkgtest: DBG: testbed command exited with code 0 983s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 983s autopkgtest: DBG: testbed command exited with code 0 983s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 984s autopkgtest: DBG: testbed command exited with code 0 984s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 984s autopkgtest: DBG: got reply from testbed: ok 984s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 984s autopkgtest: DBG: testbed command exited with code 0 984s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 984s autopkgtest: DBG: testbed command exited with code 0 984s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 984s autopkgtest: DBG: testbed command exited with code 0 984s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 985s autopkgtest: DBG: testbed command exited with code 0 985s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 985s autopkgtest: DBG: got reply from testbed: ok 985s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 985s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 985s autopkgtest: DBG: testbed command exited with code 0 985s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 985s autopkgtest: DBG: got reply from testbed: ok 985s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 985s autopkgtest: DBG: testbed command exited with code 0 985s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 986s autopkgtest: DBG: testbed command exited with code 0 986s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 986s autopkgtest: DBG: testbed command exited with code 0 986s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 986s autopkgtest: DBG: testbed command exited with code 0 986s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 986s autopkgtest: DBG: got reply from testbed: ok 986s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 986s autopkgtest: DBG: testbed command exited with code 0 986s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 987s autopkgtest: DBG: testbed command exited with code 0 987s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 987s autopkgtest: DBG: testbed command exited with code 0 987s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 987s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtmultimediawidgets', 'python3'] 987s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtmultimediawidgets, python3 987s autopkgtest: DBG: can use apt-get on testbed: True 987s 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'] 987s Reading package lists... 987s Building dependency tree... 987s Reading state information... 987s Starting pkgProblemResolver with broken count: 0 987s Starting 2 pkgProblemResolver with broken count: 0 987s Done 987s The following NEW packages will be installed: 987s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libasyncns0 987s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libflac12t64 987s libfontconfig1 libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa 987s libglvnd0 libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 987s libinput-bin libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmp3lame0 987s libmpg123-0t64 libmtdev1t64 libogg0 libopus0 libpcre2-16-0 libpulse0 987s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 987s libqt5multimedia5 libqt5multimediawidgets5 libqt5network5t64 libqt5qml5 987s libqt5widgets5t64 libshiboken2-py3-5.15t64 libsm6 libsndfile1 libvorbis0a 987s libvorbisenc2 libvulkan1 libwacom-common libwacom9 libwayland-client0 987s libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 987s libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 987s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 987s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 987s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 987s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtmultimedia 987s python3-pyside2.qtmultimediawidgets python3-pyside2.qtnetwork 987s python3-pyside2.qtwidgets x11-common 988s 0 upgraded, 83 newly installed, 0 to remove and 0 not upgraded. 988s Need to get 34.4 MB of archives. 988s After this operation, 124 MB of additional disk space will be used. 988s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 988s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 988s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 988s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 988s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 988s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 988s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 988s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 988s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 988s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 988s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 988s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 988s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 988s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 988s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 988s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 988s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 988s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 988s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 988s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 988s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 988s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 988s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 988s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 988s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 988s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 988s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 988s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 989s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 989s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 989s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 989s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 989s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 989s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 989s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 989s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 989s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 989s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 989s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 989s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 989s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 989s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 989s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 989s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 989s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 989s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 989s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 989s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 989s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 989s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 989s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 989s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 989s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 989s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 989s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 989s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 989s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 989s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 989s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 989s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 989s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 989s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 989s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 989s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 989s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 989s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 989s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 989s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 989s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 989s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 989s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 989s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 989s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 989s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 989s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimedia5 s390x 5.15.15-2 [331 kB] 989s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 989s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimediawidgets5 s390x 5.15.15-2 [43.1 kB] 989s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 989s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 990s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 990s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtmultimedia s390x 5.15.16-3.1 [391 kB] 990s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 990s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtmultimediawidgets s390x 5.15.16-3.1 [58.1 kB] 990s Fetched 34.4 MB in 2s (15.7 MB/s) 990s Selecting previously unselected package libfreetype6:s390x. 990s (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 ... 55928 files and directories currently installed.) 990s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 990s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 990s Selecting previously unselected package fonts-dejavu-mono. 990s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 990s Unpacking fonts-dejavu-mono (2.37-8) ... 990s Selecting previously unselected package fonts-dejavu-core. 990s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 990s Unpacking fonts-dejavu-core (2.37-8) ... 990s Selecting previously unselected package fontconfig-config. 990s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 990s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 990s Selecting previously unselected package libfontconfig1:s390x. 990s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 990s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 990s Selecting previously unselected package fontconfig. 990s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 990s Unpacking fontconfig (2.15.0-2ubuntu1) ... 990s Selecting previously unselected package libasyncns0:s390x. 990s Preparing to unpack .../06-libasyncns0_0.8-6build4_s390x.deb ... 990s Unpacking libasyncns0:s390x (0.8-6build4) ... 990s Selecting previously unselected package libdouble-conversion3:s390x. 990s Preparing to unpack .../07-libdouble-conversion3_3.3.1-1_s390x.deb ... 990s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 990s Selecting previously unselected package libdrm-radeon1:s390x. 990s Preparing to unpack .../08-libdrm-radeon1_2.4.123-1_s390x.deb ... 990s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 990s Selecting previously unselected package libwayland-server0:s390x. 990s Preparing to unpack .../09-libwayland-server0_1.23.1-3_s390x.deb ... 990s Unpacking libwayland-server0:s390x (1.23.1-3) ... 990s Selecting previously unselected package libglapi-mesa:s390x. 990s Preparing to unpack .../10-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 990s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 990s Selecting previously unselected package libx11-xcb1:s390x. 990s Preparing to unpack .../11-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 990s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 990s Selecting previously unselected package libxcb-dri3-0:s390x. 990s Preparing to unpack .../12-libxcb-dri3-0_1.17.0-2_s390x.deb ... 990s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 990s Selecting previously unselected package libxcb-present0:s390x. 990s Preparing to unpack .../13-libxcb-present0_1.17.0-2_s390x.deb ... 990s Unpacking libxcb-present0:s390x (1.17.0-2) ... 990s Selecting previously unselected package libxcb-randr0:s390x. 990s Preparing to unpack .../14-libxcb-randr0_1.17.0-2_s390x.deb ... 990s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 990s Selecting previously unselected package libxcb-sync1:s390x. 990s Preparing to unpack .../15-libxcb-sync1_1.17.0-2_s390x.deb ... 990s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 990s Selecting previously unselected package libxcb-xfixes0:s390x. 990s Preparing to unpack .../16-libxcb-xfixes0_1.17.0-2_s390x.deb ... 990s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 990s Selecting previously unselected package libxshmfence1:s390x. 990s Preparing to unpack .../17-libxshmfence1_1.3-1build5_s390x.deb ... 990s Unpacking libxshmfence1:s390x (1.3-1build5) ... 990s Selecting previously unselected package mesa-libgallium:s390x. 990s Preparing to unpack .../18-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 990s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 990s Selecting previously unselected package libgbm1:s390x. 990s Preparing to unpack .../19-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 990s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 990s Selecting previously unselected package libwayland-client0:s390x. 990s Preparing to unpack .../20-libwayland-client0_1.23.1-3_s390x.deb ... 990s Unpacking libwayland-client0:s390x (1.23.1-3) ... 990s Selecting previously unselected package libxcb-shm0:s390x. 990s Preparing to unpack .../21-libxcb-shm0_1.17.0-2_s390x.deb ... 990s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 990s Selecting previously unselected package libegl-mesa0:s390x. 990s Preparing to unpack .../22-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 990s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 991s Selecting previously unselected package libogg0:s390x. 991s Preparing to unpack .../23-libogg0_1.3.5-3build1_s390x.deb ... 991s Unpacking libogg0:s390x (1.3.5-3build1) ... 991s Selecting previously unselected package libflac12t64:s390x. 991s Preparing to unpack .../24-libflac12t64_1.4.3+ds-4_s390x.deb ... 991s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 991s Selecting previously unselected package libvulkan1:s390x. 991s Preparing to unpack .../25-libvulkan1_1.4.304.0-1_s390x.deb ... 991s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 991s Selecting previously unselected package libgl1-mesa-dri:s390x. 991s Preparing to unpack .../26-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 991s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 991s Selecting previously unselected package libxcb-glx0:s390x. 991s Preparing to unpack .../27-libxcb-glx0_1.17.0-2_s390x.deb ... 991s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 991s Selecting previously unselected package libxxf86vm1:s390x. 991s Preparing to unpack .../28-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 991s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 991s Selecting previously unselected package libglx-mesa0:s390x. 991s Preparing to unpack .../29-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 991s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 991s Selecting previously unselected package libgraphite2-3:s390x. 991s Preparing to unpack .../30-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 991s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 991s Selecting previously unselected package libharfbuzz0b:s390x. 991s Preparing to unpack .../31-libharfbuzz0b_10.2.0-1_s390x.deb ... 991s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 991s Selecting previously unselected package x11-common. 991s Preparing to unpack .../32-x11-common_1%3a7.7+23ubuntu3_all.deb ... 991s Unpacking x11-common (1:7.7+23ubuntu3) ... 991s Selecting previously unselected package libice6:s390x. 991s Preparing to unpack .../33-libice6_2%3a1.1.1-1_s390x.deb ... 991s Unpacking libice6:s390x (2:1.1.1-1) ... 991s Selecting previously unselected package libwacom-common. 991s Preparing to unpack .../34-libwacom-common_2.14.0-1_all.deb ... 991s Unpacking libwacom-common (2.14.0-1) ... 991s Selecting previously unselected package libwacom9:s390x. 991s Preparing to unpack .../35-libwacom9_2.14.0-1_s390x.deb ... 991s Unpacking libwacom9:s390x (2.14.0-1) ... 991s Selecting previously unselected package libinput-bin. 991s Preparing to unpack .../36-libinput-bin_1.27.1-1_s390x.deb ... 991s Unpacking libinput-bin (1.27.1-1) ... 991s Selecting previously unselected package libmtdev1t64:s390x. 991s Preparing to unpack .../37-libmtdev1t64_1.1.7-1_s390x.deb ... 991s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 991s Selecting previously unselected package libinput10:s390x. 991s Preparing to unpack .../38-libinput10_1.27.1-1_s390x.deb ... 991s Unpacking libinput10:s390x (1.27.1-1) ... 991s Selecting previously unselected package libjpeg-turbo8:s390x. 991s Preparing to unpack .../39-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 991s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 991s Selecting previously unselected package libjpeg8:s390x. 991s Preparing to unpack .../40-libjpeg8_8c-2ubuntu11_s390x.deb ... 991s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 991s Selecting previously unselected package libmd4c0:s390x. 991s Preparing to unpack .../41-libmd4c0_0.5.2-2_s390x.deb ... 991s Unpacking libmd4c0:s390x (0.5.2-2) ... 991s Selecting previously unselected package libmp3lame0:s390x. 991s Preparing to unpack .../42-libmp3lame0_3.100-6build1_s390x.deb ... 991s Unpacking libmp3lame0:s390x (3.100-6build1) ... 991s Selecting previously unselected package libmpg123-0t64:s390x. 991s Preparing to unpack .../43-libmpg123-0t64_1.32.10-1_s390x.deb ... 991s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 991s Selecting previously unselected package libopus0:s390x. 991s Preparing to unpack .../44-libopus0_1.5.2-2_s390x.deb ... 991s Unpacking libopus0:s390x (1.5.2-2) ... 991s Selecting previously unselected package libpcre2-16-0:s390x. 991s Preparing to unpack .../45-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 991s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 991s Selecting previously unselected package libvorbis0a:s390x. 991s Preparing to unpack .../46-libvorbis0a_1.3.7-2_s390x.deb ... 991s Unpacking libvorbis0a:s390x (1.3.7-2) ... 991s Selecting previously unselected package libvorbisenc2:s390x. 991s Preparing to unpack .../47-libvorbisenc2_1.3.7-2_s390x.deb ... 991s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 991s Selecting previously unselected package libsndfile1:s390x. 991s Preparing to unpack .../48-libsndfile1_1.2.2-2_s390x.deb ... 991s Unpacking libsndfile1:s390x (1.2.2-2) ... 991s Selecting previously unselected package libpulse0:s390x. 991s Preparing to unpack .../49-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 991s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 991s Selecting previously unselected package libqt5core5t64:s390x. 991s Preparing to unpack .../50-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 991s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 991s Selecting previously unselected package libqt5dbus5t64:s390x. 991s Preparing to unpack .../51-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 991s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 991s Selecting previously unselected package libqt5network5t64:s390x. 991s Preparing to unpack .../52-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 991s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 991s Selecting previously unselected package libqt5qml5:s390x. 991s Preparing to unpack .../53-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 991s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 991s Selecting previously unselected package libshiboken2-py3-5.15t64. 991s Preparing to unpack .../54-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 991s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 991s Selecting previously unselected package libpyside2-py3-5.15t64. 991s Preparing to unpack .../55-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 991s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 991s Selecting previously unselected package libglvnd0:s390x. 991s Preparing to unpack .../56-libglvnd0_1.7.0-1build1_s390x.deb ... 991s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 991s Selecting previously unselected package libegl1:s390x. 991s Preparing to unpack .../57-libegl1_1.7.0-1build1_s390x.deb ... 991s Unpacking libegl1:s390x (1.7.0-1build1) ... 991s Selecting previously unselected package libglx0:s390x. 991s Preparing to unpack .../58-libglx0_1.7.0-1build1_s390x.deb ... 991s Unpacking libglx0:s390x (1.7.0-1build1) ... 991s Selecting previously unselected package libgl1:s390x. 991s Preparing to unpack .../59-libgl1_1.7.0-1build1_s390x.deb ... 991s Unpacking libgl1:s390x (1.7.0-1build1) ... 991s Selecting previously unselected package libsm6:s390x. 991s Preparing to unpack .../60-libsm6_2%3a1.2.4-1_s390x.deb ... 991s Unpacking libsm6:s390x (2:1.2.4-1) ... 991s Selecting previously unselected package libxcb-icccm4:s390x. 991s Preparing to unpack .../61-libxcb-icccm4_0.4.2-1_s390x.deb ... 991s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 991s Selecting previously unselected package libxcb-util1:s390x. 991s Preparing to unpack .../62-libxcb-util1_0.4.1-1_s390x.deb ... 991s Unpacking libxcb-util1:s390x (0.4.1-1) ... 991s Selecting previously unselected package libxcb-image0:s390x. 991s Preparing to unpack .../63-libxcb-image0_0.4.0-2build1_s390x.deb ... 991s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 991s Selecting previously unselected package libxcb-keysyms1:s390x. 991s Preparing to unpack .../64-libxcb-keysyms1_0.4.1-1_s390x.deb ... 991s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 991s Selecting previously unselected package libxcb-render0:s390x. 991s Preparing to unpack .../65-libxcb-render0_1.17.0-2_s390x.deb ... 991s Unpacking libxcb-render0:s390x (1.17.0-2) ... 991s Selecting previously unselected package libxcb-render-util0:s390x. 991s Preparing to unpack .../66-libxcb-render-util0_0.3.10-1_s390x.deb ... 991s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 991s Selecting previously unselected package libxcb-shape0:s390x. 991s Preparing to unpack .../67-libxcb-shape0_1.17.0-2_s390x.deb ... 991s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 991s Selecting previously unselected package libxcb-xinerama0:s390x. 991s Preparing to unpack .../68-libxcb-xinerama0_1.17.0-2_s390x.deb ... 991s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 991s Selecting previously unselected package libxcb-xinput0:s390x. 991s Preparing to unpack .../69-libxcb-xinput0_1.17.0-2_s390x.deb ... 991s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 991s Selecting previously unselected package libxcb-xkb1:s390x. 991s Preparing to unpack .../70-libxcb-xkb1_1.17.0-2_s390x.deb ... 991s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 991s Selecting previously unselected package libxkbcommon-x11-0:s390x. 991s Preparing to unpack .../71-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 991s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 991s Selecting previously unselected package libxrender1:s390x. 991s Preparing to unpack .../72-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 991s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 991s Selecting previously unselected package libqt5gui5t64:s390x. 991s Preparing to unpack .../73-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 991s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 991s Selecting previously unselected package libqt5multimedia5:s390x. 991s Preparing to unpack .../74-libqt5multimedia5_5.15.15-2_s390x.deb ... 991s Unpacking libqt5multimedia5:s390x (5.15.15-2) ... 991s Selecting previously unselected package libqt5widgets5t64:s390x. 991s Preparing to unpack .../75-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 991s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 991s Selecting previously unselected package libqt5multimediawidgets5:s390x. 991s Preparing to unpack .../76-libqt5multimediawidgets5_5.15.15-2_s390x.deb ... 991s Unpacking libqt5multimediawidgets5:s390x (5.15.15-2) ... 991s Selecting previously unselected package python3-pyside2.qtcore. 991s Preparing to unpack .../77-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 991s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 991s Selecting previously unselected package python3-pyside2.qtgui. 991s Preparing to unpack .../78-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 991s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 991s Selecting previously unselected package python3-pyside2.qtnetwork. 991s Preparing to unpack .../79-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 991s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 991s Selecting previously unselected package python3-pyside2.qtmultimedia. 991s Preparing to unpack .../80-python3-pyside2.qtmultimedia_5.15.16-3.1_s390x.deb ... 991s Unpacking python3-pyside2.qtmultimedia (5.15.16-3.1) ... 991s Selecting previously unselected package python3-pyside2.qtwidgets. 991s Preparing to unpack .../81-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 991s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 991s Selecting previously unselected package python3-pyside2.qtmultimediawidgets. 991s Preparing to unpack .../82-python3-pyside2.qtmultimediawidgets_5.15.16-3.1_s390x.deb ... 991s Unpacking python3-pyside2.qtmultimediawidgets (5.15.16-3.1) ... 991s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 991s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 991s Setting up libwayland-server0:s390x (1.23.1-3) ... 991s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 991s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 991s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 991s Setting up libogg0:s390x (1.3.5-3build1) ... 991s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 991s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 991s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 992s Setting up libxcb-render0:s390x (1.17.0-2) ... 992s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 992s Setting up libglvnd0:s390x (1.7.0-1build1) ... 992s Setting up libxcb-glx0:s390x (1.17.0-2) ... 992s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 992s Setting up libxcb-shape0:s390x (1.17.0-2) ... 992s Setting up x11-common (1:7.7+23ubuntu3) ... 992s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 992s Setting up libxcb-shm0:s390x (1.17.0-2) ... 992s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 992s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 992s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 992s Setting up libxcb-util1:s390x (0.4.1-1) ... 992s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 992s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 992s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 992s Setting up libxcb-present0:s390x (1.17.0-2) ... 992s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 992s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 992s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 992s Setting up libxcb-sync1:s390x (1.17.0-2) ... 992s Setting up libopus0:s390x (1.5.2-2) ... 992s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 992s Setting up fonts-dejavu-mono (2.37-8) ... 992s Setting up libvorbis0a:s390x (1.3.7-2) ... 992s Setting up fonts-dejavu-core (2.37-8) ... 992s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 992s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 992s Setting up libvulkan1:s390x (1.4.304.0-1) ... 992s Setting up libmtdev1t64:s390x (1.1.7-1) ... 992s Setting up libasyncns0:s390x (0.8-6build4) ... 992s Setting up libxshmfence1:s390x (1.3-1build5) ... 992s Setting up libxcb-randr0:s390x (1.17.0-2) ... 992s Setting up libmd4c0:s390x (0.5.2-2) ... 992s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 992s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 992s Setting up libmp3lame0:s390x (3.100-6build1) ... 992s Setting up libvorbisenc2:s390x (1.3.7-2) ... 992s Setting up libwacom-common (2.14.0-1) ... 992s Setting up libwayland-client0:s390x (1.23.1-3) ... 992s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 992s Setting up libice6:s390x (2:1.1.1-1) ... 992s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 992s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 992s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 992s Setting up libwacom9:s390x (2.14.0-1) ... 992s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 992s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 992s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 992s Setting up libinput-bin (1.27.1-1) ... 992s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 992s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 992s Setting up libegl1:s390x (1.7.0-1build1) ... 992s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 992s Setting up libsndfile1:s390x (1.2.2-2) ... 992s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 992s Setting up libsm6:s390x (2:1.2.4-1) ... 992s Setting up libinput10:s390x (1.27.1-1) ... 992s Setting up fontconfig (2.15.0-2ubuntu1) ... 994s Regenerating fonts cache... done. 994s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 994s Setting up libglx0:s390x (1.7.0-1build1) ... 994s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 994s Setting up libgl1:s390x (1.7.0-1build1) ... 994s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 994s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 994s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 994s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 994s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 994s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 994s Setting up libqt5multimedia5:s390x (5.15.15-2) ... 994s Setting up libqt5multimediawidgets5:s390x (5.15.15-2) ... 994s Setting up python3-pyside2.qtmultimedia (5.15.16-3.1) ... 994s Setting up python3-pyside2.qtmultimediawidgets (5.15.16-3.1) ... 994s Processing triggers for libc-bin (2.40-4ubuntu1) ... 994s Processing triggers for man-db (2.13.0-1) ... 995s Processing triggers for udev (257.2-3ubuntu1) ... 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtmultimediawidgets'], kind short, sout pipe, serr pipe, env [] 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command8-packages.all"], kind short, sout raw, serr pipe, env [] 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command8-packages.all /tmp/autopkgtest-work.nwculqua/out/command8-packages.all 996s autopkgtest: DBG: got reply from testbed: ok 996s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 996s autopkgtest: DBG: testbed command exited with code 1 996s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 996s autopkgtest: DBG: testbed command exited with code 0 996s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1000s autopkgtest: DBG: got reply from testbed: ok 1000s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1000s autopkgtest: DBG: testbed command exited with code 0 1000s autopkgtest [14:15:02]: test command8: debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets 1000s autopkgtest [14:15:02]: test command8: [----------------------- 1000s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command8-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command8-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command8-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets'"], kind test, sout raw, serr raw, env [] 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command8-artifacts 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command8-stderr 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command8-stdout 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtmultimediawidgets PySide2.QtMultimediaWidgets 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.6IDmUOskoU/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command8-stdout 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.6IDmUOskoU/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command8-stdout 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2362 to /tmp/autopkgtest_script_pid 1000s Testing python3 package python3-pyside2.qtmultimediawidgets 1000s Testing with python3.13: 1000s 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1000s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1000s autopkgtest: DBG: testbed command exited with code 0 1000s autopkgtest [14:15:02]: test command8: -----------------------] 1000s autopkgtest: DBG: testbed executing test finished with exit status 0 1000s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command8-stdout /tmp/autopkgtest-work.nwculqua/out/command8-stdout 1001s autopkgtest: DBG: got reply from testbed: ok 1001s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command8-stderr /tmp/autopkgtest-work.nwculqua/out/command8-stderr 1001s autopkgtest: DBG: got reply from testbed: ok 1001s command8 PASS (superficial) 1001s autopkgtest [14:15:03]: test command8: - - - - - - - - - - results - - - - - - - - - - 1001s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command8-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1002s autopkgtest: DBG: got reply from testbed: ok 1002s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command8-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1002s autopkgtest: DBG: testbed command exited with code 0 1002s autopkgtest [14:15:04]: test command9: preparing testbed 1002s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtmultimediawidgets', 'python3'], deps_new=['python3-pyside2.qtmultimedia', 'python3'] 1002s autopkgtest: DBG: testbed reset 1002s autopkgtest: DBG: sending command to testbed: revert 1092s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1092s autopkgtest: DBG: sending command to testbed: print-execute-command 1092s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1092s autopkgtest: DBG: sending command to testbed: capabilities 1092s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1092s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1092s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1092s autopkgtest: DBG: testbed command exited with code 0 1092s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1092s autopkgtest: DBG: got reply from testbed: ok 1092s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1092s autopkgtest: DBG: testbed command exited with code 0 1092s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1092s autopkgtest: DBG: testbed command exited with code 0 1092s autopkgtest [14:16:34]: testbed dpkg architecture: s390x 1092s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1093s autopkgtest: DBG: testbed command exited with code 0 1093s autopkgtest [14:16:35]: testbed apt version: 2.9.30ubuntu1 1093s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1093s autopkgtest: DBG: testbed command exited with code 0 1093s autopkgtest: DBG: testbed has eatmydata 1093s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1093s autopkgtest: DBG: testbed command exited with code 0 1093s autopkgtest [14:16:35]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1093s 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 [] 1093s autopkgtest: DBG: testbed command exited with code 0 1093s autopkgtest [14:16:35]: testbed release detected to be: plucky 1093s 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 [] 1093s autopkgtest: DBG: testbed command exited with code 0 1093s 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 [] 1093s autopkgtest: DBG: testbed command exited with code 0 1093s autopkgtest: DBG: adding APT source: Types: deb deb-src 1093s URIs: http://ftpmaster.internal/ubuntu/ 1093s Suites: plucky-proposed 1093s Components: main restricted universe multiverse 1093s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1093s 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 [] 1094s autopkgtest: DBG: testbed command exited with code 0 1094s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1094s Package: * 1094s Pin: release plucky-proposed 1094s Pin-Priority: 500 1094s 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 [] 1094s autopkgtest: DBG: testbed command exited with code 0 1094s autopkgtest [14:16:36]: updating testbed package index (apt update) 1094s 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'] 1094s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1094s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1094s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1094s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1095s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1095s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1095s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1095s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1095s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1095s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1095s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1095s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1095s Fetched 1711 kB in 1s (1911 kB/s) 1095s Reading package lists... 1095s autopkgtest: DBG: testbed command exited with code 0 1095s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1095s Package: * 1095s Pin: release plucky-proposed 1095s Pin-Priority: 100 1095s 1095s Package: src:llvm-toolchain-20:any 1095s Pin: release plucky-proposed 1095s Pin-Priority: 995 1095s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1096s autopkgtest: DBG: testbed command exited with code 0 1096s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1096s autopkgtest: DBG: testbed command exited with code 0 1096s 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'] 1096s + lsb_release --codename --short 1096s + RELEASE=plucky 1096s + cat 1096s + [ plucky != trusty ] 1096s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1096s Reading package lists... 1096s Building dependency tree... 1096s Reading state information... 1096s Calculating upgrade... 1096s Calculating upgrade... 1096s The following packages were automatically installed and are no longer required: 1096s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1096s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1096s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1096s linux-tools-6.11.0-8-generic 1096s Use 'sudo apt autoremove' to remove them. 1096s The following packages will be upgraded: 1096s base-files gcc-14-base motd-news-config 1096s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1096s Need to get 134 kB of archives. 1096s After this operation, 0 B of additional disk space will be used. 1096s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1097s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1097s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1097s Fetched 134 kB in 0s (331 kB/s) 1097s (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.) 1097s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1097s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1097s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1097s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1097s Setting up base-files (13.6ubuntu1) ... 1097s Updating /root/.profile to current default. 1098s motd-news.service is a disabled or a static unit not running, not starting it. 1098s (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.) 1098s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1098s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1098s Setting up motd-news-config (13.6ubuntu1) ... 1098s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1098s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1098s Processing triggers for install-info (7.1.1-1) ... 1098s Processing triggers for man-db (2.13.0-1) ... 1098s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1098s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1098s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1101s Using config file '/etc/zipl.conf' 1102s Building bootmap in '/boot' 1102s Adding IPL section 'ubuntu' (default) 1102s Preparing boot device for LD-IPL: vda (0000). 1102s Done. 1102s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1102s + /usr/lib/apt/apt-helper analyze-pattern ?true 1102s + uname -r 1102s + sed s/\./\\./g 1102s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1102s + apt list ?obsolete 1102s + tail -n+2 1102s + cut -d/ -f1 1102s + grep -v ^linux-.*6\.12\.0-15-generic.* 1102s + true 1102s + obsolete_pkgs= 1102s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1102s Reading package lists... 1102s Building dependency tree... 1102s Reading state information... 1102s Solving dependencies... 1102s The following packages will be REMOVED: 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 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1102s After this operation, 167 MB disk space will be freed. 1102s (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.) 1102s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1102s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1102s Removing libpython3.12t64:s390x (3.12.9-1) ... 1102s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1102s Removing libnsl2:s390x (1.3.0-3build3) ... 1102s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1102s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1103s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1103s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1103s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55930 files and directories currently installed.) 1103s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1103s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1103s + grep -q trusty /etc/lsb-release 1103s + [ ! -d /usr/share/doc/unattended-upgrades ] 1103s + [ ! -d /usr/share/doc/lxd ] 1103s + [ ! -d /usr/share/doc/lxd-client ] 1103s + [ ! -d /usr/share/doc/snapd ] 1103s + type iptables 1103s + cat 1103s + chmod 755 /etc/rc.local 1103s + . /etc/rc.local 1103s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1103s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1103s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1103s + uname -m 1103s + [ s390x = ppc64le ] 1103s + [ -d /run/systemd/system ] 1103s + systemd-detect-virt --quiet --vm 1103s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1103s + cat 1103s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1104s + echo COMPRESS=lz4 1104s autopkgtest: DBG: testbed command exited with code 0 1104s autopkgtest [14:16:46]: upgrading testbed (apt dist-upgrade and autopurge) 1104s 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'] 1104s Reading package lists... 1104s Building dependency tree... 1104s Reading state information... 1104s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1104s Starting 2 pkgProblemResolver with broken count: 0 1104s Done 1104s Entering ResolveByKeep 1104s 1104s Calculating upgrade... 1104s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1104s autopkgtest: DBG: testbed command exited with code 0 1104s 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'] 1105s Reading package lists... 1105s Building dependency tree... 1105s Reading state information... 1105s Starting pkgProblemResolver with broken count: 0 1105s Starting 2 pkgProblemResolver with broken count: 0 1105s Done 1105s Solving dependencies... 1105s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1105s autopkgtest: DBG: testbed command exited with code 0 1105s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1105s autopkgtest: DBG: testbed command exited with code 1 1105s autopkgtest [14:16:47]: rebooting testbed after setup commands that affected boot 1105s autopkgtest: DBG: sending command to testbed: reboot 1123s autopkgtest: DBG: got reply from testbed: ok 1123s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1123s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1123s autopkgtest: DBG: testbed command exited with code 0 1123s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1124s autopkgtest: DBG: got reply from testbed: ok 1124s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1124s autopkgtest: DBG: got reply from testbed: ok 1124s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1125s autopkgtest: DBG: testbed command exited with code 0 1125s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1125s autopkgtest: DBG: testbed command exited with code 0 1125s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1125s autopkgtest: DBG: testbed command exited with code 0 1125s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1125s autopkgtest: DBG: testbed command exited with code 0 1125s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1126s autopkgtest: DBG: got reply from testbed: ok 1126s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1126s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1126s autopkgtest: DBG: testbed command exited with code 0 1126s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1126s autopkgtest: DBG: got reply from testbed: ok 1126s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1126s autopkgtest: DBG: testbed command exited with code 0 1126s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1126s autopkgtest: DBG: testbed command exited with code 0 1126s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1127s autopkgtest: DBG: testbed command exited with code 0 1127s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1127s autopkgtest: DBG: testbed command exited with code 0 1127s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1127s autopkgtest: DBG: got reply from testbed: ok 1127s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1127s autopkgtest: DBG: testbed command exited with code 0 1127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1127s autopkgtest: DBG: testbed command exited with code 0 1127s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1127s autopkgtest: DBG: testbed command exited with code 0 1127s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1127s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtmultimedia', 'python3'] 1127s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtmultimedia, python3 1127s autopkgtest: DBG: can use apt-get on testbed: True 1127s 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'] 1128s Reading package lists... 1128s Building dependency tree... 1128s Reading state information... 1128s Starting pkgProblemResolver with broken count: 0 1128s Starting 2 pkgProblemResolver with broken count: 0 1128s Done 1128s The following NEW packages will be installed: 1128s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libasyncns0 1128s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libflac12t64 1128s libfontconfig1 libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa 1128s libglvnd0 libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 1128s libinput-bin libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmp3lame0 1128s libmpg123-0t64 libmtdev1t64 libogg0 libopus0 libpcre2-16-0 libpulse0 1128s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1128s libqt5multimedia5 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 1128s libsm6 libsndfile1 libvorbis0a libvorbisenc2 libvulkan1 libwacom-common 1128s libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 1128s libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 1128s libxcb-randr0 libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 1128s libxcb-sync1 libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 1128s libxcb-xkb1 libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 1128s mesa-libgallium python3-pyside2.qtcore python3-pyside2.qtgui 1128s python3-pyside2.qtmultimedia python3-pyside2.qtnetwork x11-common 1128s 0 upgraded, 79 newly installed, 0 to remove and 0 not upgraded. 1128s Need to get 29.7 MB of archives. 1128s After this operation, 104 MB of additional disk space will be used. 1128s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1129s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1129s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1129s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1129s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1129s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1129s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 1129s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1129s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1129s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 1129s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1129s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1129s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1129s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1129s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1129s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1129s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1129s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1129s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1129s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1129s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 1129s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1129s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1129s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 1129s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 1129s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1129s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1129s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1129s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1129s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1129s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1129s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1129s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1129s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1129s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1129s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1129s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1129s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1129s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1129s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1129s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1129s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1129s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 1129s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 1129s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 1130s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1130s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 1130s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 1130s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 1130s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 1130s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1130s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1130s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1130s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1130s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1130s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1130s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1130s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1130s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1130s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1130s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1130s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1130s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1130s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1130s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1130s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1130s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1130s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1130s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1130s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1130s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1130s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1130s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1130s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1130s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5multimedia5 s390x 5.15.15-2 [331 kB] 1130s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1130s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1130s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 1130s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtmultimedia s390x 5.15.16-3.1 [391 kB] 1130s Fetched 29.7 MB in 2s (15.4 MB/s) 1130s Selecting previously unselected package libfreetype6:s390x. 1131s (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 ... 55928 files and directories currently installed.) 1131s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1131s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1131s Selecting previously unselected package fonts-dejavu-mono. 1131s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1131s Unpacking fonts-dejavu-mono (2.37-8) ... 1131s Selecting previously unselected package fonts-dejavu-core. 1131s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1131s Unpacking fonts-dejavu-core (2.37-8) ... 1131s Selecting previously unselected package fontconfig-config. 1131s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1131s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1131s Selecting previously unselected package libfontconfig1:s390x. 1131s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1131s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1131s Selecting previously unselected package fontconfig. 1131s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1131s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1131s Selecting previously unselected package libasyncns0:s390x. 1131s Preparing to unpack .../06-libasyncns0_0.8-6build4_s390x.deb ... 1131s Unpacking libasyncns0:s390x (0.8-6build4) ... 1131s Selecting previously unselected package libdouble-conversion3:s390x. 1131s Preparing to unpack .../07-libdouble-conversion3_3.3.1-1_s390x.deb ... 1131s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1131s Selecting previously unselected package libdrm-radeon1:s390x. 1131s Preparing to unpack .../08-libdrm-radeon1_2.4.123-1_s390x.deb ... 1131s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1131s Selecting previously unselected package libwayland-server0:s390x. 1131s Preparing to unpack .../09-libwayland-server0_1.23.1-3_s390x.deb ... 1131s Unpacking libwayland-server0:s390x (1.23.1-3) ... 1131s Selecting previously unselected package libglapi-mesa:s390x. 1131s Preparing to unpack .../10-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1131s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1131s Selecting previously unselected package libx11-xcb1:s390x. 1131s Preparing to unpack .../11-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1131s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1131s Selecting previously unselected package libxcb-dri3-0:s390x. 1131s Preparing to unpack .../12-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libxcb-present0:s390x. 1131s Preparing to unpack .../13-libxcb-present0_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libxcb-randr0:s390x. 1131s Preparing to unpack .../14-libxcb-randr0_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libxcb-sync1:s390x. 1131s Preparing to unpack .../15-libxcb-sync1_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libxcb-xfixes0:s390x. 1131s Preparing to unpack .../16-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libxshmfence1:s390x. 1131s Preparing to unpack .../17-libxshmfence1_1.3-1build5_s390x.deb ... 1131s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1131s Selecting previously unselected package mesa-libgallium:s390x. 1131s Preparing to unpack .../18-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1131s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1131s Selecting previously unselected package libgbm1:s390x. 1131s Preparing to unpack .../19-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1131s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1131s Selecting previously unselected package libwayland-client0:s390x. 1131s Preparing to unpack .../20-libwayland-client0_1.23.1-3_s390x.deb ... 1131s Unpacking libwayland-client0:s390x (1.23.1-3) ... 1131s Selecting previously unselected package libxcb-shm0:s390x. 1131s Preparing to unpack .../21-libxcb-shm0_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libegl-mesa0:s390x. 1131s Preparing to unpack .../22-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1131s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1131s Selecting previously unselected package libogg0:s390x. 1131s Preparing to unpack .../23-libogg0_1.3.5-3build1_s390x.deb ... 1131s Unpacking libogg0:s390x (1.3.5-3build1) ... 1131s Selecting previously unselected package libflac12t64:s390x. 1131s Preparing to unpack .../24-libflac12t64_1.4.3+ds-4_s390x.deb ... 1131s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 1131s Selecting previously unselected package libvulkan1:s390x. 1131s Preparing to unpack .../25-libvulkan1_1.4.304.0-1_s390x.deb ... 1131s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1131s Selecting previously unselected package libgl1-mesa-dri:s390x. 1131s Preparing to unpack .../26-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1131s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1131s Selecting previously unselected package libxcb-glx0:s390x. 1131s Preparing to unpack .../27-libxcb-glx0_1.17.0-2_s390x.deb ... 1131s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1131s Selecting previously unselected package libxxf86vm1:s390x. 1131s Preparing to unpack .../28-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1131s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1131s Selecting previously unselected package libglx-mesa0:s390x. 1131s Preparing to unpack .../29-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1131s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1131s Selecting previously unselected package libgraphite2-3:s390x. 1131s Preparing to unpack .../30-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1131s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1131s Selecting previously unselected package libharfbuzz0b:s390x. 1131s Preparing to unpack .../31-libharfbuzz0b_10.2.0-1_s390x.deb ... 1131s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1131s Selecting previously unselected package x11-common. 1131s Preparing to unpack .../32-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1131s Unpacking x11-common (1:7.7+23ubuntu3) ... 1131s Selecting previously unselected package libice6:s390x. 1131s Preparing to unpack .../33-libice6_2%3a1.1.1-1_s390x.deb ... 1131s Unpacking libice6:s390x (2:1.1.1-1) ... 1131s Selecting previously unselected package libwacom-common. 1131s Preparing to unpack .../34-libwacom-common_2.14.0-1_all.deb ... 1131s Unpacking libwacom-common (2.14.0-1) ... 1131s Selecting previously unselected package libwacom9:s390x. 1131s Preparing to unpack .../35-libwacom9_2.14.0-1_s390x.deb ... 1131s Unpacking libwacom9:s390x (2.14.0-1) ... 1131s Selecting previously unselected package libinput-bin. 1131s Preparing to unpack .../36-libinput-bin_1.27.1-1_s390x.deb ... 1131s Unpacking libinput-bin (1.27.1-1) ... 1131s Selecting previously unselected package libmtdev1t64:s390x. 1131s Preparing to unpack .../37-libmtdev1t64_1.1.7-1_s390x.deb ... 1131s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1131s Selecting previously unselected package libinput10:s390x. 1131s Preparing to unpack .../38-libinput10_1.27.1-1_s390x.deb ... 1131s Unpacking libinput10:s390x (1.27.1-1) ... 1131s Selecting previously unselected package libjpeg-turbo8:s390x. 1131s Preparing to unpack .../39-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1131s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1131s Selecting previously unselected package libjpeg8:s390x. 1131s Preparing to unpack .../40-libjpeg8_8c-2ubuntu11_s390x.deb ... 1131s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1131s Selecting previously unselected package libmd4c0:s390x. 1131s Preparing to unpack .../41-libmd4c0_0.5.2-2_s390x.deb ... 1131s Unpacking libmd4c0:s390x (0.5.2-2) ... 1131s Selecting previously unselected package libmp3lame0:s390x. 1131s Preparing to unpack .../42-libmp3lame0_3.100-6build1_s390x.deb ... 1131s Unpacking libmp3lame0:s390x (3.100-6build1) ... 1131s Selecting previously unselected package libmpg123-0t64:s390x. 1131s Preparing to unpack .../43-libmpg123-0t64_1.32.10-1_s390x.deb ... 1131s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 1131s Selecting previously unselected package libopus0:s390x. 1131s Preparing to unpack .../44-libopus0_1.5.2-2_s390x.deb ... 1131s Unpacking libopus0:s390x (1.5.2-2) ... 1131s Selecting previously unselected package libpcre2-16-0:s390x. 1131s Preparing to unpack .../45-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1131s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1131s Selecting previously unselected package libvorbis0a:s390x. 1131s Preparing to unpack .../46-libvorbis0a_1.3.7-2_s390x.deb ... 1131s Unpacking libvorbis0a:s390x (1.3.7-2) ... 1131s Selecting previously unselected package libvorbisenc2:s390x. 1131s Preparing to unpack .../47-libvorbisenc2_1.3.7-2_s390x.deb ... 1131s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 1131s Selecting previously unselected package libsndfile1:s390x. 1131s Preparing to unpack .../48-libsndfile1_1.2.2-2_s390x.deb ... 1131s Unpacking libsndfile1:s390x (1.2.2-2) ... 1131s Selecting previously unselected package libpulse0:s390x. 1131s Preparing to unpack .../49-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 1131s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 1131s Selecting previously unselected package libqt5core5t64:s390x. 1131s Preparing to unpack .../50-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1131s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1131s Selecting previously unselected package libqt5dbus5t64:s390x. 1131s Preparing to unpack .../51-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1131s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1131s Selecting previously unselected package libqt5network5t64:s390x. 1131s Preparing to unpack .../52-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1131s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1131s Selecting previously unselected package libqt5qml5:s390x. 1131s Preparing to unpack .../53-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1131s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1131s Selecting previously unselected package libshiboken2-py3-5.15t64. 1131s Preparing to unpack .../54-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1131s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1131s Selecting previously unselected package libpyside2-py3-5.15t64. 1131s Preparing to unpack .../55-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1131s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1131s Selecting previously unselected package libglvnd0:s390x. 1131s Preparing to unpack .../56-libglvnd0_1.7.0-1build1_s390x.deb ... 1131s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1131s Selecting previously unselected package libegl1:s390x. 1131s Preparing to unpack .../57-libegl1_1.7.0-1build1_s390x.deb ... 1131s Unpacking libegl1:s390x (1.7.0-1build1) ... 1131s Selecting previously unselected package libglx0:s390x. 1131s Preparing to unpack .../58-libglx0_1.7.0-1build1_s390x.deb ... 1131s Unpacking libglx0:s390x (1.7.0-1build1) ... 1132s Selecting previously unselected package libgl1:s390x. 1132s Preparing to unpack .../59-libgl1_1.7.0-1build1_s390x.deb ... 1132s Unpacking libgl1:s390x (1.7.0-1build1) ... 1132s Selecting previously unselected package libsm6:s390x. 1132s Preparing to unpack .../60-libsm6_2%3a1.2.4-1_s390x.deb ... 1132s Unpacking libsm6:s390x (2:1.2.4-1) ... 1132s Selecting previously unselected package libxcb-icccm4:s390x. 1132s Preparing to unpack .../61-libxcb-icccm4_0.4.2-1_s390x.deb ... 1132s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1132s Selecting previously unselected package libxcb-util1:s390x. 1132s Preparing to unpack .../62-libxcb-util1_0.4.1-1_s390x.deb ... 1132s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1132s Selecting previously unselected package libxcb-image0:s390x. 1132s Preparing to unpack .../63-libxcb-image0_0.4.0-2build1_s390x.deb ... 1132s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1132s Selecting previously unselected package libxcb-keysyms1:s390x. 1132s Preparing to unpack .../64-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1132s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1132s Selecting previously unselected package libxcb-render0:s390x. 1132s Preparing to unpack .../65-libxcb-render0_1.17.0-2_s390x.deb ... 1132s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1132s Selecting previously unselected package libxcb-render-util0:s390x. 1132s Preparing to unpack .../66-libxcb-render-util0_0.3.10-1_s390x.deb ... 1132s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1132s Selecting previously unselected package libxcb-shape0:s390x. 1132s Preparing to unpack .../67-libxcb-shape0_1.17.0-2_s390x.deb ... 1132s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1132s Selecting previously unselected package libxcb-xinerama0:s390x. 1132s Preparing to unpack .../68-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1132s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1132s Selecting previously unselected package libxcb-xinput0:s390x. 1132s Preparing to unpack .../69-libxcb-xinput0_1.17.0-2_s390x.deb ... 1132s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1132s Selecting previously unselected package libxcb-xkb1:s390x. 1132s Preparing to unpack .../70-libxcb-xkb1_1.17.0-2_s390x.deb ... 1132s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1132s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1132s Preparing to unpack .../71-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1132s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1132s Selecting previously unselected package libxrender1:s390x. 1132s Preparing to unpack .../72-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1132s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1132s Selecting previously unselected package libqt5gui5t64:s390x. 1132s Preparing to unpack .../73-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1132s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1132s Selecting previously unselected package libqt5multimedia5:s390x. 1132s Preparing to unpack .../74-libqt5multimedia5_5.15.15-2_s390x.deb ... 1132s Unpacking libqt5multimedia5:s390x (5.15.15-2) ... 1132s Selecting previously unselected package python3-pyside2.qtcore. 1132s Preparing to unpack .../75-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1132s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1132s Selecting previously unselected package python3-pyside2.qtgui. 1132s Preparing to unpack .../76-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1132s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1132s Selecting previously unselected package python3-pyside2.qtnetwork. 1132s Preparing to unpack .../77-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 1132s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 1132s Selecting previously unselected package python3-pyside2.qtmultimedia. 1132s Preparing to unpack .../78-python3-pyside2.qtmultimedia_5.15.16-3.1_s390x.deb ... 1132s Unpacking python3-pyside2.qtmultimedia (5.15.16-3.1) ... 1132s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1132s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1132s Setting up libwayland-server0:s390x (1.23.1-3) ... 1132s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1132s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1132s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1132s Setting up libogg0:s390x (1.3.5-3build1) ... 1132s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1132s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1132s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1132s Setting up libxcb-render0:s390x (1.17.0-2) ... 1132s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1132s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1132s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1132s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1132s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1132s Setting up x11-common (1:7.7+23ubuntu3) ... 1132s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1132s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1132s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1132s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 1132s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1132s Setting up libxcb-util1:s390x (0.4.1-1) ... 1132s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1132s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1132s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1132s Setting up libxcb-present0:s390x (1.17.0-2) ... 1132s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1132s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1132s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1132s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1132s Setting up libopus0:s390x (1.5.2-2) ... 1132s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1132s Setting up fonts-dejavu-mono (2.37-8) ... 1132s Setting up libvorbis0a:s390x (1.3.7-2) ... 1132s Setting up fonts-dejavu-core (2.37-8) ... 1132s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1132s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1132s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1132s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1132s Setting up libasyncns0:s390x (0.8-6build4) ... 1132s Setting up libxshmfence1:s390x (1.3-1build5) ... 1132s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1132s Setting up libmd4c0:s390x (0.5.2-2) ... 1132s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1132s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 1132s Setting up libmp3lame0:s390x (3.100-6build1) ... 1132s Setting up libvorbisenc2:s390x (1.3.7-2) ... 1132s Setting up libwacom-common (2.14.0-1) ... 1132s Setting up libwayland-client0:s390x (1.23.1-3) ... 1132s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1132s Setting up libice6:s390x (2:1.1.1-1) ... 1132s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1132s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1132s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1132s Setting up libwacom9:s390x (2.14.0-1) ... 1132s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1132s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1132s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1132s Setting up libinput-bin (1.27.1-1) ... 1132s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1132s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1132s Setting up libegl1:s390x (1.7.0-1build1) ... 1132s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1132s Setting up libsndfile1:s390x (1.2.2-2) ... 1132s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1132s Setting up libsm6:s390x (2:1.2.4-1) ... 1132s Setting up libinput10:s390x (1.27.1-1) ... 1132s Setting up fontconfig (2.15.0-2ubuntu1) ... 1134s Regenerating fonts cache... done. 1134s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1134s Setting up libglx0:s390x (1.7.0-1build1) ... 1134s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 1134s Setting up libgl1:s390x (1.7.0-1build1) ... 1134s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1134s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 1134s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1134s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1134s Setting up libqt5multimedia5:s390x (5.15.15-2) ... 1134s Setting up python3-pyside2.qtmultimedia (5.15.16-3.1) ... 1134s Processing triggers for udev (257.2-3ubuntu1) ... 1135s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1135s Processing triggers for man-db (2.13.0-1) ... 1135s autopkgtest: DBG: testbed command exited with code 0 1135s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtmultimedia'], kind short, sout pipe, serr pipe, env [] 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command9-packages.all"], kind short, sout raw, serr pipe, env [] 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command9-packages.all /tmp/autopkgtest-work.nwculqua/out/command9-packages.all 1136s autopkgtest: DBG: got reply from testbed: ok 1136s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1136s autopkgtest: DBG: testbed command exited with code 1 1136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1140s autopkgtest: DBG: got reply from testbed: ok 1140s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1140s autopkgtest: DBG: testbed command exited with code 0 1140s autopkgtest [14:17:22]: test command9: debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia 1140s autopkgtest [14:17:22]: test command9: [----------------------- 1140s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command9-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command9-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command9-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia'"], kind test, sout raw, serr raw, env [] 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command9-artifacts 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command9-stderr 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command9-stdout 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtmultimedia PySide2.QtMultimedia 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.GphF2Fvkj5/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command9-stdout 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.GphF2Fvkj5/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command9-stdout 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2323 to /tmp/autopkgtest_script_pid 1140s Testing python3 package python3-pyside2.qtmultimedia 1140s Testing with python3.13: 1140s 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1140s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1140s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest [14:17:23]: test command9: -----------------------] 1141s autopkgtest: DBG: testbed executing test finished with exit status 0 1141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command9-stdout /tmp/autopkgtest-work.nwculqua/out/command9-stdout 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command9-stderr /tmp/autopkgtest-work.nwculqua/out/command9-stderr 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest [14:17:23]: test command9: - - - - - - - - - - results - - - - - - - - - - 1141s command9 PASS (superficial) 1141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command9-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command9-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1141s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest [14:17:23]: test command10: preparing testbed 1141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtmultimedia', 'python3'], deps_new=['python3-pyside2.qtwebchannel', 'python3'] 1141s autopkgtest: DBG: testbed reset 1141s autopkgtest: DBG: sending command to testbed: revert 1205s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1205s autopkgtest: DBG: sending command to testbed: print-execute-command 1205s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1205s autopkgtest: DBG: sending command to testbed: capabilities 1205s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1205s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1205s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1205s autopkgtest: DBG: testbed command exited with code 0 1205s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1206s autopkgtest: DBG: got reply from testbed: ok 1206s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest [14:18:28]: testbed dpkg architecture: s390x 1206s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest [14:18:28]: testbed apt version: 2.9.30ubuntu1 1206s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest: DBG: testbed has eatmydata 1206s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest [14:18:29]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1207s 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 [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest [14:18:29]: testbed release detected to be: plucky 1207s 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 [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s 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 [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest: DBG: adding APT source: Types: deb deb-src 1207s URIs: http://ftpmaster.internal/ubuntu/ 1207s Suites: plucky-proposed 1207s Components: main restricted universe multiverse 1207s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1207s 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 [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1207s Package: * 1207s Pin: release plucky-proposed 1207s Pin-Priority: 500 1207s 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 [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest [14:18:29]: updating testbed package index (apt update) 1207s 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'] 1208s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1208s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1208s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1208s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1208s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1208s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1208s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1208s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1208s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1208s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1208s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1208s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1208s Fetched 1711 kB in 1s (1908 kB/s) 1209s Reading package lists... 1209s autopkgtest: DBG: testbed command exited with code 0 1209s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1209s Package: * 1209s Pin: release plucky-proposed 1209s Pin-Priority: 100 1209s 1209s Package: src:llvm-toolchain-20:any 1209s Pin: release plucky-proposed 1209s Pin-Priority: 995 1209s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1209s autopkgtest: DBG: testbed command exited with code 0 1209s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1209s autopkgtest: DBG: testbed command exited with code 0 1209s 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'] 1210s + lsb_release --codename --short 1210s + RELEASE=plucky 1210s + cat 1210s + [ plucky != trusty ] 1210s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1210s Reading package lists... 1210s Building dependency tree... 1210s Reading state information... 1210s Calculating upgrade... 1210s Calculating upgrade... 1210s The following packages were automatically installed and are no longer required: 1210s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1210s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1210s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1210s linux-tools-6.11.0-8-generic 1210s Use 'sudo apt autoremove' to remove them. 1210s The following packages will be upgraded: 1210s base-files gcc-14-base motd-news-config 1210s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1210s Need to get 134 kB of archives. 1210s After this operation, 0 B of additional disk space will be used. 1210s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1210s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1210s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1211s Fetched 134 kB in 0s (329 kB/s) 1211s (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.) 1211s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1211s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1211s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1211s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1211s Setting up base-files (13.6ubuntu1) ... 1211s Updating /root/.profile to current default. 1211s motd-news.service is a disabled or a static unit not running, not starting it. 1211s (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.) 1211s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1211s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1211s Setting up motd-news-config (13.6ubuntu1) ... 1211s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1211s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1211s Processing triggers for install-info (7.1.1-1) ... 1211s Processing triggers for man-db (2.13.0-1) ... 1211s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1212s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1212s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1215s Using config file '/etc/zipl.conf' 1215s Building bootmap in '/boot' 1215s Adding IPL section 'ubuntu' (default) 1215s Preparing boot device for LD-IPL: vda (0000). 1215s Done. 1216s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1216s + /usr/lib/apt/apt-helper analyze-pattern ?true 1216s + uname+ -r 1216s sed s/\./\\./g 1216s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1216s + apt list ?obsolete 1216s + tail -n+2 1216s + cut -d/ -f1 1216s + grep -v ^linux-.*6\.12\.0-15-generic.* 1216s + true 1216s + obsolete_pkgs= 1216s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1216s Reading package lists... 1216s Building dependency tree... 1216s Reading state information... 1216s Solving dependencies... 1216s The following packages will be REMOVED: 1216s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1216s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1216s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1216s linux-tools-6.11.0-8-generic* 1216s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1216s After this operation, 167 MB disk space will be freed. 1216s (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.) 1216s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1216s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1216s Removing libpython3.12t64:s390x (3.12.9-1) ... 1216s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1216s Removing libnsl2:s390x (1.3.0-3build3) ... 1216s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1216s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1216s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1217s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1217s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1217s (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 ... 55930 files and directories currently installed.) 1217s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1217s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1217s + grep -q trusty /etc/lsb-release 1217s + [ ! -d /usr/share/doc/unattended-upgrades ] 1217s + [ ! -d /usr/share/doc/lxd ] 1217s + [ ! -d /usr/share/doc/lxd-client ] 1217s + [ ! -d /usr/share/doc/snapd ] 1217s + type iptables 1217s + cat 1217s + chmod 755 /etc/rc.local 1217s + . /etc/rc.local 1217s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1217s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1217s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1217s + uname -m 1217s + [ s390x = ppc64le ] 1217s + [ -d /run/systemd/system ] 1217s + systemd-detect-virt --quiet --vm 1217s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1217s + cat 1217s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1217s + echo COMPRESS=lz4 1217s autopkgtest: DBG: testbed command exited with code 0 1217s autopkgtest [14:18:39]: upgrading testbed (apt dist-upgrade and autopurge) 1217s 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'] 1218s Reading package lists... 1218s Building dependency tree... 1218s Reading state information... 1218s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1218s Starting 2 pkgProblemResolver with broken count: 0 1218s Done 1218s Entering ResolveByKeep 1218s 1218s Calculating upgrade... 1218s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1218s autopkgtest: DBG: testbed command exited with code 0 1218s 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'] 1218s Reading package lists... 1219s Building dependency tree... 1219s Reading state information... 1219s Starting pkgProblemResolver with broken count: 0 1219s Starting 2 pkgProblemResolver with broken count: 0 1219s Done 1219s Solving dependencies... 1219s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1219s autopkgtest: DBG: testbed command exited with code 0 1219s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1219s autopkgtest: DBG: testbed command exited with code 1 1219s autopkgtest [14:18:41]: rebooting testbed after setup commands that affected boot 1219s autopkgtest: DBG: sending command to testbed: reboot 1237s autopkgtest: DBG: got reply from testbed: ok 1237s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1237s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1237s autopkgtest: DBG: testbed command exited with code 0 1237s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1237s autopkgtest: DBG: got reply from testbed: ok 1237s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1237s autopkgtest: DBG: testbed command exited with code 0 1237s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1237s autopkgtest: DBG: testbed command exited with code 0 1237s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1237s autopkgtest: DBG: testbed command exited with code 0 1237s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1238s autopkgtest: DBG: got reply from testbed: ok 1238s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1239s autopkgtest: DBG: got reply from testbed: ok 1239s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1239s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1239s autopkgtest: DBG: testbed command exited with code 0 1239s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1239s autopkgtest: DBG: got reply from testbed: ok 1239s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1239s autopkgtest: DBG: testbed command exited with code 0 1239s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1239s autopkgtest: DBG: testbed command exited with code 0 1239s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1240s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1240s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1240s autopkgtest: DBG: got reply from testbed: ok 1240s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1240s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1240s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1240s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1240s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtwebchannel', 'python3'] 1240s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtwebchannel, python3 1240s autopkgtest: DBG: can use apt-get on testbed: True 1240s 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'] 1241s Reading package lists... 1241s Building dependency tree... 1241s Reading state information... 1241s Starting pkgProblemResolver with broken count: 0 1241s Starting 2 pkgProblemResolver with broken count: 0 1241s Done 1241s The following NEW packages will be installed: 1241s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 1241s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5webchannel5 1241s libshiboken2-py3-5.15t64 python3-pyside2.qtcore python3-pyside2.qtwebchannel 1241s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 1241s Need to get 6602 kB of archives. 1241s After this operation, 23.1 MB of additional disk space will be used. 1241s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1241s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1242s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1242s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1242s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1242s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1242s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1242s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1242s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5webchannel5 s390x 5.15.15-2 [65.9 kB] 1242s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1242s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwebchannel s390x 5.15.16-3.1 [26.2 kB] 1242s Fetched 6602 kB in 1s (7908 kB/s) 1242s Selecting previously unselected package libdouble-conversion3:s390x. 1242s (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 ... 55928 files and directories currently installed.) 1242s Preparing to unpack .../00-libdouble-conversion3_3.3.1-1_s390x.deb ... 1242s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1242s Selecting previously unselected package libpcre2-16-0:s390x. 1242s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1242s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1242s Selecting previously unselected package libqt5core5t64:s390x. 1242s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1242s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1242s Selecting previously unselected package libqt5dbus5t64:s390x. 1242s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1242s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1242s Selecting previously unselected package libqt5network5t64:s390x. 1242s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1242s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1242s Selecting previously unselected package libqt5qml5:s390x. 1242s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1242s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1242s Selecting previously unselected package libshiboken2-py3-5.15t64. 1242s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1242s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1242s Selecting previously unselected package libpyside2-py3-5.15t64. 1242s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1242s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1242s Selecting previously unselected package libqt5webchannel5:s390x. 1242s Preparing to unpack .../08-libqt5webchannel5_5.15.15-2_s390x.deb ... 1242s Unpacking libqt5webchannel5:s390x (5.15.15-2) ... 1242s Selecting previously unselected package python3-pyside2.qtcore. 1242s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1242s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1242s Selecting previously unselected package python3-pyside2.qtwebchannel. 1242s Preparing to unpack .../10-python3-pyside2.qtwebchannel_5.15.16-3.1_s390x.deb ... 1242s Unpacking python3-pyside2.qtwebchannel (5.15.16-3.1) ... 1242s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1242s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1243s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1243s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1243s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1243s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1243s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1243s Setting up libqt5webchannel5:s390x (5.15.15-2) ... 1243s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1243s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1243s Setting up python3-pyside2.qtwebchannel (5.15.16-3.1) ... 1243s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1243s autopkgtest: DBG: testbed command exited with code 0 1243s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtwebchannel'], kind short, sout pipe, serr pipe, env [] 1243s autopkgtest: DBG: testbed command exited with code 0 1243s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command10-packages.all"], kind short, sout raw, serr pipe, env [] 1243s autopkgtest: DBG: testbed command exited with code 0 1243s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command10-packages.all /tmp/autopkgtest-work.nwculqua/out/command10-packages.all 1243s autopkgtest: DBG: got reply from testbed: ok 1243s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1243s autopkgtest: DBG: testbed command exited with code 1 1243s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1244s autopkgtest: DBG: testbed command exited with code 0 1244s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1246s autopkgtest: DBG: got reply from testbed: ok 1246s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1246s autopkgtest: DBG: testbed command exited with code 0 1246s autopkgtest [14:19:08]: test command10: debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel 1246s autopkgtest [14:19:08]: test command10: [----------------------- 1246s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command10-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command10-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command10-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel'"], kind test, sout raw, serr raw, env [] 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command10-artifacts 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command10-stderr 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command10-stdout 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtwebchannel PySide2.QtWebChannel 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.O3pOqMXnZH/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command10-stdout 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.O3pOqMXnZH/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command10-stdout 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 1346 to /tmp/autopkgtest_script_pid 1246s Testing python3 package python3-pyside2.qtwebchannel 1246s Testing with python3.13: 1246s 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1246s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1246s autopkgtest: DBG: testbed command exited with code 0 1247s autopkgtest [14:19:09]: test command10: -----------------------] 1247s autopkgtest: DBG: testbed executing test finished with exit status 0 1247s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command10-stdout /tmp/autopkgtest-work.nwculqua/out/command10-stdout 1247s autopkgtest: DBG: got reply from testbed: ok 1247s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command10-stderr /tmp/autopkgtest-work.nwculqua/out/command10-stderr 1247s autopkgtest: DBG: got reply from testbed: ok 1247s command10 PASS (superficial) 1247s autopkgtest [14:19:09]: test command10: - - - - - - - - - - results - - - - - - - - - - 1247s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command10-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1247s autopkgtest: DBG: got reply from testbed: ok 1247s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command10-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1247s autopkgtest: DBG: testbed command exited with code 0 1247s autopkgtest [14:19:09]: test command11: preparing testbed 1247s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtwebchannel', 'python3'], deps_new=['python3-pyside2.qtprintsupport', 'python3'] 1247s autopkgtest: DBG: testbed reset 1247s autopkgtest: DBG: sending command to testbed: revert 1332s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1332s autopkgtest: DBG: sending command to testbed: print-execute-command 1332s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1332s autopkgtest: DBG: sending command to testbed: capabilities 1332s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1332s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1332s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1332s autopkgtest: DBG: testbed command exited with code 0 1332s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1333s autopkgtest: DBG: got reply from testbed: ok 1333s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1333s autopkgtest: DBG: testbed command exited with code 0 1333s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1333s autopkgtest: DBG: testbed command exited with code 0 1333s autopkgtest [14:20:35]: testbed dpkg architecture: s390x 1333s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1333s autopkgtest: DBG: testbed command exited with code 0 1333s autopkgtest [14:20:35]: testbed apt version: 2.9.30ubuntu1 1333s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1333s autopkgtest: DBG: testbed command exited with code 0 1333s autopkgtest: DBG: testbed has eatmydata 1333s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1333s autopkgtest: DBG: testbed command exited with code 0 1333s autopkgtest [14:20:35]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1333s 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 [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest [14:20:36]: testbed release detected to be: plucky 1334s 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 [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s 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 [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest: DBG: adding APT source: Types: deb deb-src 1334s URIs: http://ftpmaster.internal/ubuntu/ 1334s Suites: plucky-proposed 1334s Components: main restricted universe multiverse 1334s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1334s 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 [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1334s Package: * 1334s Pin: release plucky-proposed 1334s Pin-Priority: 500 1334s 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 [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest [14:20:36]: updating testbed package index (apt update) 1334s 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'] 1335s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1335s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1335s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1335s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1335s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1335s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1335s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1335s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1335s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1335s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1335s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1335s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1335s Fetched 1711 kB in 1s (1894 kB/s) 1336s Reading package lists... 1336s autopkgtest: DBG: testbed command exited with code 0 1336s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1336s Package: * 1336s Pin: release plucky-proposed 1336s Pin-Priority: 100 1336s 1336s Package: src:llvm-toolchain-20:any 1336s Pin: release plucky-proposed 1336s Pin-Priority: 995 1336s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1336s autopkgtest: DBG: testbed command exited with code 0 1336s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1336s autopkgtest: DBG: testbed command exited with code 0 1336s 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'] 1336s + lsb_release --codename --short 1336s + RELEASE=plucky 1336s + cat 1336s + [ plucky != trusty ] 1336s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1336s Reading package lists... 1337s Building dependency tree... 1337s Reading state information... 1337s Calculating upgrade... 1337s Calculating upgrade... 1337s The following packages were automatically installed and are no longer required: 1337s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1337s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1337s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1337s linux-tools-6.11.0-8-generic 1337s Use 'sudo apt autoremove' to remove them. 1337s The following packages will be upgraded: 1337s base-files gcc-14-base motd-news-config 1337s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1337s Need to get 134 kB of archives. 1337s After this operation, 0 B of additional disk space will be used. 1337s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1337s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1337s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1338s Fetched 134 kB in 0s (336 kB/s) 1338s (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.) 1338s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1338s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1338s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1338s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1338s Setting up base-files (13.6ubuntu1) ... 1338s Updating /root/.profile to current default. 1338s motd-news.service is a disabled or a static unit not running, not starting it. 1338s (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.) 1338s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1338s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1338s Setting up motd-news-config (13.6ubuntu1) ... 1338s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1338s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1338s Processing triggers for install-info (7.1.1-1) ... 1338s Processing triggers for man-db (2.13.0-1) ... 1338s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1338s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1338s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1343s Using config file '/etc/zipl.conf' 1343s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1343s + /usr/lib/apt/apt-helper analyze-pattern ?true 1343s + uname -r 1343s + sed s/\./\\./g 1343s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1343s + apt list ?obsolete 1343s + tail -n+2 1343s + grep -v ^linux-.*6\.12\.0-15-generic.* 1343s + cut -d/ -f1 1343s + true 1343s + obsolete_pkgs= 1343s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1343s Building bootmap in '/boot' 1343s Adding IPL section 'ubuntu' (default) 1343s Preparing boot device for LD-IPL: vda (0000). 1343s Done. 1343s Reading package lists... 1343s Building dependency tree... 1343s Reading state information... 1343s Solving dependencies... 1343s The following packages will be REMOVED: 1343s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1343s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1343s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1343s linux-tools-6.11.0-8-generic* 1343s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1343s After this operation, 167 MB disk space will be freed. 1343s (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.) 1343s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1343s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1343s Removing libpython3.12t64:s390x (3.12.9-1) ... 1343s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1343s Removing libnsl2:s390x (1.3.0-3build3) ... 1343s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1343s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1343s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1344s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1344s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1344s (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 ... 55930 files and directories currently installed.) 1344s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1344s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1344s + grep -q trusty /etc/lsb-release 1344s + [ ! -d /usr/share/doc/unattended-upgrades ] 1344s + [ ! -d /usr/share/doc/lxd ] 1344s + [ ! -d /usr/share/doc/lxd-client ] 1344s + [ ! -d /usr/share/doc/snapd ] 1344s + type iptables 1344s + cat 1344s + chmod 755 /etc/rc.local 1344s + . /etc/rc.local 1344s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1344s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1344s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1344s + uname -m 1344s + [ s390x = ppc64le ] 1344s + [ -d /run/systemd/system ] 1344s + systemd-detect-virt --quiet --vm 1344s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1344s + cat 1344s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1344s + echo COMPRESS=lz4 1344s autopkgtest: DBG: testbed command exited with code 0 1344s autopkgtest [14:20:46]: upgrading testbed (apt dist-upgrade and autopurge) 1344s 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'] 1345s Reading package lists... 1345s Building dependency tree... 1345s Reading state information... 1345s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1345s Starting 2 pkgProblemResolver with broken count: 0 1345s Done 1345s Entering ResolveByKeep 1345s 1345s Calculating upgrade... 1345s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1345s autopkgtest: DBG: testbed command exited with code 0 1345s 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'] 1346s Reading package lists... 1346s Building dependency tree... 1346s Reading state information... 1346s Starting pkgProblemResolver with broken count: 0 1346s Starting 2 pkgProblemResolver with broken count: 0 1346s Done 1346s Solving dependencies... 1346s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1346s autopkgtest: DBG: testbed command exited with code 0 1346s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1346s autopkgtest: DBG: testbed command exited with code 1 1346s autopkgtest [14:20:48]: rebooting testbed after setup commands that affected boot 1346s autopkgtest: DBG: sending command to testbed: reboot 1364s autopkgtest: DBG: got reply from testbed: ok 1364s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1364s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1364s autopkgtest: DBG: testbed command exited with code 0 1364s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1364s autopkgtest: DBG: got reply from testbed: ok 1364s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1364s autopkgtest: DBG: testbed command exited with code 0 1364s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1364s autopkgtest: DBG: testbed command exited with code 0 1364s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1365s autopkgtest: DBG: testbed command exited with code 0 1365s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1365s autopkgtest: DBG: testbed command exited with code 0 1365s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1365s autopkgtest: DBG: got reply from testbed: ok 1365s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1365s autopkgtest: DBG: testbed command exited with code 0 1365s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1365s autopkgtest: DBG: testbed command exited with code 0 1365s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1365s autopkgtest: DBG: testbed command exited with code 0 1365s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1366s autopkgtest: DBG: testbed command exited with code 0 1366s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1366s autopkgtest: DBG: got reply from testbed: ok 1366s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1366s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1366s autopkgtest: DBG: testbed command exited with code 0 1366s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1366s autopkgtest: DBG: got reply from testbed: ok 1366s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1366s autopkgtest: DBG: testbed command exited with code 0 1366s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1367s autopkgtest: DBG: got reply from testbed: ok 1367s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1368s autopkgtest: DBG: testbed command exited with code 0 1368s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1368s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtprintsupport', 'python3'] 1368s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtprintsupport, python3 1368s autopkgtest: DBG: can use apt-get on testbed: True 1368s 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'] 1368s Reading package lists... 1368s Building dependency tree... 1368s Reading state information... 1368s Starting pkgProblemResolver with broken count: 0 1368s Starting 2 pkgProblemResolver with broken count: 0 1368s Done 1368s The following NEW packages will be installed: 1368s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 1368s libavahi-client3 libavahi-common-data libavahi-common3 libcups2t64 1368s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 1368s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 1368s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 1368s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 1368s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1368s libqt5network5t64 libqt5printsupport5t64 libqt5qml5 libqt5widgets5t64 1368s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 1368s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 1368s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 1368s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 1368s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 1368s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 1368s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtprintsupport 1368s python3-pyside2.qtwidgets x11-common 1368s 0 upgraded, 74 newly installed, 0 to remove and 0 not upgraded. 1368s Need to get 29.7 MB of archives. 1368s After this operation, 113 MB of additional disk space will be used. 1368s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1369s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1369s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1369s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1369s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1369s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1369s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 1369s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 1369s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 1369s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 1369s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1369s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1369s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 1369s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1369s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1369s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1369s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1369s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1369s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1369s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1369s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1369s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1369s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1369s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 1369s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1369s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1369s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1369s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1369s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1369s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1369s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1370s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1370s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1370s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1370s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1370s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1370s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1370s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1370s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1370s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1370s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1370s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1370s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1370s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1370s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1370s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1370s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1370s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1370s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1370s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1370s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1370s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1370s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1370s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1370s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1370s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1370s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1370s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1370s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1370s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1370s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1370s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1370s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1370s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1370s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1370s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1370s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1370s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1370s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 1370s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5printsupport5t64 s390x 5.15.15+dfsg-4ubuntu1 [218 kB] 1370s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1371s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1371s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 1371s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtprintsupport s390x 5.15.16-3.1 [102 kB] 1371s Fetched 29.7 MB in 2s (12.4 MB/s) 1371s Selecting previously unselected package libfreetype6:s390x. 1371s (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 ... 55928 files and directories currently installed.) 1371s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1371s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1371s Selecting previously unselected package fonts-dejavu-mono. 1371s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1371s Unpacking fonts-dejavu-mono (2.37-8) ... 1371s Selecting previously unselected package fonts-dejavu-core. 1371s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1371s Unpacking fonts-dejavu-core (2.37-8) ... 1371s Selecting previously unselected package fontconfig-config. 1371s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1371s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1371s Selecting previously unselected package libfontconfig1:s390x. 1371s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1371s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1371s Selecting previously unselected package fontconfig. 1371s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1371s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1371s Selecting previously unselected package libavahi-common-data:s390x. 1371s Preparing to unpack .../06-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 1371s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 1371s Selecting previously unselected package libavahi-common3:s390x. 1371s Preparing to unpack .../07-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 1371s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 1371s Selecting previously unselected package libavahi-client3:s390x. 1371s Preparing to unpack .../08-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 1371s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 1371s Selecting previously unselected package libcups2t64:s390x. 1371s Preparing to unpack .../09-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 1371s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 1371s Selecting previously unselected package libdouble-conversion3:s390x. 1371s Preparing to unpack .../10-libdouble-conversion3_3.3.1-1_s390x.deb ... 1371s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1371s Selecting previously unselected package libdrm-radeon1:s390x. 1371s Preparing to unpack .../11-libdrm-radeon1_2.4.123-1_s390x.deb ... 1371s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1371s Selecting previously unselected package libwayland-server0:s390x. 1371s Preparing to unpack .../12-libwayland-server0_1.23.1-3_s390x.deb ... 1371s Unpacking libwayland-server0:s390x (1.23.1-3) ... 1371s Selecting previously unselected package libglapi-mesa:s390x. 1371s Preparing to unpack .../13-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1371s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1371s Selecting previously unselected package libx11-xcb1:s390x. 1371s Preparing to unpack .../14-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1371s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1371s Selecting previously unselected package libxcb-dri3-0:s390x. 1371s Preparing to unpack .../15-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1371s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1371s Selecting previously unselected package libxcb-present0:s390x. 1371s Preparing to unpack .../16-libxcb-present0_1.17.0-2_s390x.deb ... 1371s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1371s Selecting previously unselected package libxcb-randr0:s390x. 1371s Preparing to unpack .../17-libxcb-randr0_1.17.0-2_s390x.deb ... 1371s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1371s Selecting previously unselected package libxcb-sync1:s390x. 1371s Preparing to unpack .../18-libxcb-sync1_1.17.0-2_s390x.deb ... 1371s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1371s Selecting previously unselected package libxcb-xfixes0:s390x. 1371s Preparing to unpack .../19-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1371s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1371s Selecting previously unselected package libxshmfence1:s390x. 1371s Preparing to unpack .../20-libxshmfence1_1.3-1build5_s390x.deb ... 1371s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1371s Selecting previously unselected package mesa-libgallium:s390x. 1371s Preparing to unpack .../21-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1371s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1372s Selecting previously unselected package libgbm1:s390x. 1372s Preparing to unpack .../22-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1372s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1372s Selecting previously unselected package libwayland-client0:s390x. 1372s Preparing to unpack .../23-libwayland-client0_1.23.1-3_s390x.deb ... 1372s Unpacking libwayland-client0:s390x (1.23.1-3) ... 1372s Selecting previously unselected package libxcb-shm0:s390x. 1372s Preparing to unpack .../24-libxcb-shm0_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libegl-mesa0:s390x. 1372s Preparing to unpack .../25-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1372s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1372s Selecting previously unselected package libvulkan1:s390x. 1372s Preparing to unpack .../26-libvulkan1_1.4.304.0-1_s390x.deb ... 1372s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1372s Selecting previously unselected package libgl1-mesa-dri:s390x. 1372s Preparing to unpack .../27-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1372s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1372s Selecting previously unselected package libxcb-glx0:s390x. 1372s Preparing to unpack .../28-libxcb-glx0_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libxxf86vm1:s390x. 1372s Preparing to unpack .../29-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1372s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1372s Selecting previously unselected package libglx-mesa0:s390x. 1372s Preparing to unpack .../30-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1372s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1372s Selecting previously unselected package libgraphite2-3:s390x. 1372s Preparing to unpack .../31-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1372s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1372s Selecting previously unselected package libharfbuzz0b:s390x. 1372s Preparing to unpack .../32-libharfbuzz0b_10.2.0-1_s390x.deb ... 1372s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1372s Selecting previously unselected package x11-common. 1372s Preparing to unpack .../33-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1372s Unpacking x11-common (1:7.7+23ubuntu3) ... 1372s Selecting previously unselected package libice6:s390x. 1372s Preparing to unpack .../34-libice6_2%3a1.1.1-1_s390x.deb ... 1372s Unpacking libice6:s390x (2:1.1.1-1) ... 1372s Selecting previously unselected package libwacom-common. 1372s Preparing to unpack .../35-libwacom-common_2.14.0-1_all.deb ... 1372s Unpacking libwacom-common (2.14.0-1) ... 1372s Selecting previously unselected package libwacom9:s390x. 1372s Preparing to unpack .../36-libwacom9_2.14.0-1_s390x.deb ... 1372s Unpacking libwacom9:s390x (2.14.0-1) ... 1372s Selecting previously unselected package libinput-bin. 1372s Preparing to unpack .../37-libinput-bin_1.27.1-1_s390x.deb ... 1372s Unpacking libinput-bin (1.27.1-1) ... 1372s Selecting previously unselected package libmtdev1t64:s390x. 1372s Preparing to unpack .../38-libmtdev1t64_1.1.7-1_s390x.deb ... 1372s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1372s Selecting previously unselected package libinput10:s390x. 1372s Preparing to unpack .../39-libinput10_1.27.1-1_s390x.deb ... 1372s Unpacking libinput10:s390x (1.27.1-1) ... 1372s Selecting previously unselected package libjpeg-turbo8:s390x. 1372s Preparing to unpack .../40-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1372s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1372s Selecting previously unselected package libjpeg8:s390x. 1372s Preparing to unpack .../41-libjpeg8_8c-2ubuntu11_s390x.deb ... 1372s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1372s Selecting previously unselected package libmd4c0:s390x. 1372s Preparing to unpack .../42-libmd4c0_0.5.2-2_s390x.deb ... 1372s Unpacking libmd4c0:s390x (0.5.2-2) ... 1372s Selecting previously unselected package libpcre2-16-0:s390x. 1372s Preparing to unpack .../43-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1372s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1372s Selecting previously unselected package libqt5core5t64:s390x. 1372s Preparing to unpack .../44-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1372s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1372s Selecting previously unselected package libqt5dbus5t64:s390x. 1372s Preparing to unpack .../45-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1372s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1372s Selecting previously unselected package libqt5network5t64:s390x. 1372s Preparing to unpack .../46-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1372s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1372s Selecting previously unselected package libqt5qml5:s390x. 1372s Preparing to unpack .../47-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1372s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1372s Selecting previously unselected package libshiboken2-py3-5.15t64. 1372s Preparing to unpack .../48-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1372s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1372s Selecting previously unselected package libpyside2-py3-5.15t64. 1372s Preparing to unpack .../49-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1372s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1372s Selecting previously unselected package libglvnd0:s390x. 1372s Preparing to unpack .../50-libglvnd0_1.7.0-1build1_s390x.deb ... 1372s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1372s Selecting previously unselected package libegl1:s390x. 1372s Preparing to unpack .../51-libegl1_1.7.0-1build1_s390x.deb ... 1372s Unpacking libegl1:s390x (1.7.0-1build1) ... 1372s Selecting previously unselected package libglx0:s390x. 1372s Preparing to unpack .../52-libglx0_1.7.0-1build1_s390x.deb ... 1372s Unpacking libglx0:s390x (1.7.0-1build1) ... 1372s Selecting previously unselected package libgl1:s390x. 1372s Preparing to unpack .../53-libgl1_1.7.0-1build1_s390x.deb ... 1372s Unpacking libgl1:s390x (1.7.0-1build1) ... 1372s Selecting previously unselected package libsm6:s390x. 1372s Preparing to unpack .../54-libsm6_2%3a1.2.4-1_s390x.deb ... 1372s Unpacking libsm6:s390x (2:1.2.4-1) ... 1372s Selecting previously unselected package libxcb-icccm4:s390x. 1372s Preparing to unpack .../55-libxcb-icccm4_0.4.2-1_s390x.deb ... 1372s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1372s Selecting previously unselected package libxcb-util1:s390x. 1372s Preparing to unpack .../56-libxcb-util1_0.4.1-1_s390x.deb ... 1372s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1372s Selecting previously unselected package libxcb-image0:s390x. 1372s Preparing to unpack .../57-libxcb-image0_0.4.0-2build1_s390x.deb ... 1372s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1372s Selecting previously unselected package libxcb-keysyms1:s390x. 1372s Preparing to unpack .../58-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1372s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1372s Selecting previously unselected package libxcb-render0:s390x. 1372s Preparing to unpack .../59-libxcb-render0_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libxcb-render-util0:s390x. 1372s Preparing to unpack .../60-libxcb-render-util0_0.3.10-1_s390x.deb ... 1372s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1372s Selecting previously unselected package libxcb-shape0:s390x. 1372s Preparing to unpack .../61-libxcb-shape0_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libxcb-xinerama0:s390x. 1372s Preparing to unpack .../62-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libxcb-xinput0:s390x. 1372s Preparing to unpack .../63-libxcb-xinput0_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libxcb-xkb1:s390x. 1372s Preparing to unpack .../64-libxcb-xkb1_1.17.0-2_s390x.deb ... 1372s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1372s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1372s Preparing to unpack .../65-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1372s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1372s Selecting previously unselected package libxrender1:s390x. 1372s Preparing to unpack .../66-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1372s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1372s Selecting previously unselected package libqt5gui5t64:s390x. 1372s Preparing to unpack .../67-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1372s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1372s Selecting previously unselected package libqt5widgets5t64:s390x. 1372s Preparing to unpack .../68-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1372s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1372s Selecting previously unselected package libqt5printsupport5t64:s390x. 1372s Preparing to unpack .../69-libqt5printsupport5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1372s Unpacking libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1372s Selecting previously unselected package python3-pyside2.qtcore. 1372s Preparing to unpack .../70-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1372s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1372s Selecting previously unselected package python3-pyside2.qtgui. 1372s Preparing to unpack .../71-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1372s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1372s Selecting previously unselected package python3-pyside2.qtwidgets. 1372s Preparing to unpack .../72-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 1372s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 1372s Selecting previously unselected package python3-pyside2.qtprintsupport. 1372s Preparing to unpack .../73-python3-pyside2.qtprintsupport_5.15.16-3.1_s390x.deb ... 1372s Unpacking python3-pyside2.qtprintsupport (5.15.16-3.1) ... 1372s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1372s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1372s Setting up libwayland-server0:s390x (1.23.1-3) ... 1372s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1372s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1372s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1372s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1372s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1372s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1372s Setting up libxcb-render0:s390x (1.17.0-2) ... 1372s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1372s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1372s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1372s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1372s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1372s Setting up x11-common (1:7.7+23ubuntu3) ... 1373s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1373s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1373s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1373s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1373s Setting up libxcb-util1:s390x (0.4.1-1) ... 1373s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1373s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1373s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1373s Setting up libxcb-present0:s390x (1.17.0-2) ... 1373s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1373s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1373s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1373s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1373s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 1373s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1373s Setting up fonts-dejavu-mono (2.37-8) ... 1373s Setting up fonts-dejavu-core (2.37-8) ... 1373s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1373s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1373s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1373s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1373s Setting up libxshmfence1:s390x (1.3-1build5) ... 1373s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1373s Setting up libmd4c0:s390x (0.5.2-2) ... 1373s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1373s Setting up libwacom-common (2.14.0-1) ... 1373s Setting up libwayland-client0:s390x (1.23.1-3) ... 1373s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1373s Setting up libice6:s390x (2:1.1.1-1) ... 1373s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1373s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1373s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1373s Setting up libwacom9:s390x (2.14.0-1) ... 1373s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1373s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1373s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1373s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 1373s Setting up libinput-bin (1.27.1-1) ... 1373s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1373s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1373s Setting up libegl1:s390x (1.7.0-1build1) ... 1373s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1373s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1373s Setting up libsm6:s390x (2:1.2.4-1) ... 1373s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 1373s Setting up libinput10:s390x (1.27.1-1) ... 1373s Setting up fontconfig (2.15.0-2ubuntu1) ... 1375s Regenerating fonts cache... done. 1375s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1375s Setting up libglx0:s390x (1.7.0-1build1) ... 1375s Setting up libgl1:s390x (1.7.0-1build1) ... 1375s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1375s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 1375s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1375s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1375s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1375s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 1375s Setting up libqt5printsupport5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1375s Setting up python3-pyside2.qtprintsupport (5.15.16-3.1) ... 1375s Processing triggers for man-db (2.13.0-1) ... 1375s Processing triggers for udev (257.2-3ubuntu1) ... 1376s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1376s autopkgtest: DBG: testbed command exited with code 0 1376s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtprintsupport'], kind short, sout pipe, serr pipe, env [] 1376s autopkgtest: DBG: testbed command exited with code 0 1376s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command11-packages.all"], kind short, sout raw, serr pipe, env [] 1376s autopkgtest: DBG: testbed command exited with code 0 1376s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command11-packages.all /tmp/autopkgtest-work.nwculqua/out/command11-packages.all 1377s autopkgtest: DBG: got reply from testbed: ok 1377s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1377s autopkgtest: DBG: testbed command exited with code 1 1377s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1377s autopkgtest: DBG: testbed command exited with code 0 1377s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1381s autopkgtest: DBG: got reply from testbed: ok 1381s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1381s autopkgtest: DBG: testbed command exited with code 0 1381s autopkgtest [14:21:23]: test command11: debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport 1381s autopkgtest [14:21:23]: test command11: [----------------------- 1381s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command11-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command11-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command11-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport'"], kind test, sout raw, serr raw, env [] 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command11-artifacts 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command11-stderr 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command11-stdout 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtprintsupport PySide2.QtPrintSupport 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.gAstPa44Jw/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command11-stdout 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.gAstPa44Jw/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command11-stdout 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2279 to /tmp/autopkgtest_script_pid 1382s Testing python3 package python3-pyside2.qtprintsupport 1382s Testing with python3.13: 1382s 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1382s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1382s autopkgtest: DBG: testbed command exited with code 0 1382s autopkgtest [14:21:24]: test command11: -----------------------] 1382s autopkgtest: DBG: testbed executing test finished with exit status 0 1382s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command11-stdout /tmp/autopkgtest-work.nwculqua/out/command11-stdout 1382s autopkgtest: DBG: got reply from testbed: ok 1382s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command11-stderr /tmp/autopkgtest-work.nwculqua/out/command11-stderr 1382s autopkgtest: DBG: got reply from testbed: ok 1382s command11 PASS (superficial) 1382s autopkgtest [14:21:24]: test command11: - - - - - - - - - - results - - - - - - - - - - 1382s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command11-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1383s autopkgtest: DBG: got reply from testbed: ok 1383s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command11-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1383s autopkgtest: DBG: testbed command exited with code 0 1383s autopkgtest [14:21:25]: test command12: preparing testbed 1383s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtprintsupport', 'python3'], deps_new=['python3-pyside2.qtxml', 'python3'] 1383s autopkgtest: DBG: testbed reset 1383s autopkgtest: DBG: sending command to testbed: revert 1470s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1470s autopkgtest: DBG: sending command to testbed: print-execute-command 1470s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1470s autopkgtest: DBG: sending command to testbed: capabilities 1470s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1470s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1470s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1470s autopkgtest: DBG: testbed command exited with code 0 1470s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1471s autopkgtest: DBG: got reply from testbed: ok 1471s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1471s autopkgtest: DBG: testbed command exited with code 0 1471s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1471s autopkgtest: DBG: testbed command exited with code 0 1471s autopkgtest [14:22:53]: testbed dpkg architecture: s390x 1471s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1471s autopkgtest: DBG: testbed command exited with code 0 1471s autopkgtest [14:22:53]: testbed apt version: 2.9.30ubuntu1 1471s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1471s autopkgtest: DBG: testbed command exited with code 0 1471s autopkgtest: DBG: testbed has eatmydata 1471s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1471s autopkgtest: DBG: testbed command exited with code 0 1471s autopkgtest [14:22:53]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1471s 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 [] 1472s autopkgtest: DBG: testbed command exited with code 0 1472s autopkgtest [14:22:54]: testbed release detected to be: plucky 1472s 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 [] 1472s autopkgtest: DBG: testbed command exited with code 0 1472s 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 [] 1472s autopkgtest: DBG: testbed command exited with code 0 1472s autopkgtest: DBG: adding APT source: Types: deb deb-src 1472s URIs: http://ftpmaster.internal/ubuntu/ 1472s Suites: plucky-proposed 1472s Components: main restricted universe multiverse 1472s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1472s 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 [] 1472s autopkgtest: DBG: testbed command exited with code 0 1472s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1472s Package: * 1472s Pin: release plucky-proposed 1472s Pin-Priority: 500 1472s 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 [] 1472s autopkgtest: DBG: testbed command exited with code 0 1472s autopkgtest [14:22:54]: updating testbed package index (apt update) 1472s 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'] 1473s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1473s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1473s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1473s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1473s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1473s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1473s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1473s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1473s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1473s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1473s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1473s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1473s Fetched 1711 kB in 1s (1941 kB/s) 1474s Reading package lists... 1474s autopkgtest: DBG: testbed command exited with code 0 1474s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1474s Package: * 1474s Pin: release plucky-proposed 1474s Pin-Priority: 100 1474s 1474s Package: src:llvm-toolchain-20:any 1474s Pin: release plucky-proposed 1474s Pin-Priority: 995 1474s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1474s autopkgtest: DBG: testbed command exited with code 0 1474s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1474s autopkgtest: DBG: testbed command exited with code 0 1474s 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'] 1475s + lsb_release --codename --short 1475s + RELEASE=plucky 1475s + cat 1475s + [ plucky != trusty ] 1475s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1475s Reading package lists... 1475s Building dependency tree... 1475s Reading state information... 1475s Calculating upgrade... 1475s Calculating upgrade... 1475s The following packages were automatically installed and are no longer required: 1475s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1475s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1475s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1475s linux-tools-6.11.0-8-generic 1475s Use 'sudo apt autoremove' to remove them. 1475s The following packages will be upgraded: 1475s base-files gcc-14-base motd-news-config 1475s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1475s Need to get 134 kB of archives. 1475s After this operation, 0 B of additional disk space will be used. 1475s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1475s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1475s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1476s Fetched 134 kB in 0s (338 kB/s) 1476s (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.) 1476s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1476s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1476s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1476s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1476s Setting up base-files (13.6ubuntu1) ... 1476s Updating /root/.profile to current default. 1476s motd-news.service is a disabled or a static unit not running, not starting it. 1476s (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.) 1476s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1476s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1476s Setting up motd-news-config (13.6ubuntu1) ... 1476s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1476s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1476s Processing triggers for install-info (7.1.1-1) ... 1476s Processing triggers for man-db (2.13.0-1) ... 1476s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1477s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1477s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1480s Using config file '/etc/zipl.conf' 1480s Building bootmap in '/boot' 1480s Adding IPL section 'ubuntu' (default) 1480s Preparing boot device for LD-IPL: vda (0000). 1480s Done. 1481s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1481s + /usr/lib/apt/apt-helper analyze-pattern ?true 1481s + uname -r 1481s + sed s/\./\\./g 1481s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1481s + apt list ?obsolete 1481s + tail -n+2 1481s + + grep -v ^linux-.*6\.12\.0-15-generic.* 1481s cut -d/ -f1 1481s + true 1481s + obsolete_pkgs= 1481s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1481s Reading package lists... 1481s Building dependency tree... 1481s Reading state information... 1481s Solving dependencies... 1481s The following packages will be REMOVED: 1481s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1481s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1481s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1481s linux-tools-6.11.0-8-generic* 1481s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1481s After this operation, 167 MB disk space will be freed. 1481s (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.) 1481s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1481s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1481s Removing libpython3.12t64:s390x (3.12.9-1) ... 1481s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1481s Removing libnsl2:s390x (1.3.0-3build3) ... 1481s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1481s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1481s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1482s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1482s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55930 files and directories currently installed.) 1482s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1482s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1482s + grep -q trusty /etc/lsb-release 1482s + [ ! -d /usr/share/doc/unattended-upgrades ] 1482s + [ ! -d /usr/share/doc/lxd ] 1482s + [ ! -d /usr/share/doc/lxd-client ] 1482s + [ ! -d /usr/share/doc/snapd ] 1482s + type iptables 1482s + cat 1482s + chmod 755 /etc/rc.local 1482s + . /etc/rc.local 1482s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1482s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1482s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1482s + uname -m 1482s + [ s390x = ppc64le ] 1482s + [ -d /run/systemd/system ] 1482s + systemd-detect-virt --quiet --vm 1482s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1482s + cat 1482s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1482s + echo COMPRESS=lz4 1482s autopkgtest: DBG: testbed command exited with code 0 1482s autopkgtest [14:23:04]: upgrading testbed (apt dist-upgrade and autopurge) 1482s 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'] 1483s Reading package lists... 1483s Building dependency tree... 1483s Reading state information... 1483s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1483s Starting 2 pkgProblemResolver with broken count: 0 1483s Done 1483s Entering ResolveByKeep 1483s 1483s Calculating upgrade... 1483s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1483s autopkgtest: DBG: testbed command exited with code 0 1483s 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'] 1483s Reading package lists... 1483s Building dependency tree... 1483s Reading state information... 1484s Starting pkgProblemResolver with broken count: 0 1484s Starting 2 pkgProblemResolver with broken count: 0 1484s Done 1484s Solving dependencies... 1484s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1484s autopkgtest: DBG: testbed command exited with code 0 1484s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1484s autopkgtest: DBG: testbed command exited with code 1 1484s autopkgtest [14:23:06]: rebooting testbed after setup commands that affected boot 1484s autopkgtest: DBG: sending command to testbed: reboot 1501s autopkgtest: DBG: got reply from testbed: ok 1501s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1501s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1501s autopkgtest: DBG: testbed command exited with code 0 1501s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1502s autopkgtest: DBG: got reply from testbed: ok 1502s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1502s autopkgtest: DBG: testbed command exited with code 0 1502s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1502s autopkgtest: DBG: testbed command exited with code 0 1502s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1502s autopkgtest: DBG: testbed command exited with code 0 1502s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1502s autopkgtest: DBG: testbed command exited with code 0 1502s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1503s autopkgtest: DBG: got reply from testbed: ok 1503s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1503s autopkgtest: DBG: testbed command exited with code 0 1503s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1503s autopkgtest: DBG: testbed command exited with code 0 1503s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1503s autopkgtest: DBG: testbed command exited with code 0 1503s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1503s autopkgtest: DBG: testbed command exited with code 0 1503s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1504s autopkgtest: DBG: got reply from testbed: ok 1504s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1504s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1504s autopkgtest: DBG: testbed command exited with code 0 1504s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1504s autopkgtest: DBG: got reply from testbed: ok 1504s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1504s autopkgtest: DBG: testbed command exited with code 0 1504s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1504s autopkgtest: DBG: testbed command exited with code 0 1504s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1505s autopkgtest: DBG: testbed command exited with code 0 1505s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], 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-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1505s autopkgtest: DBG: got reply from testbed: ok 1505s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1505s autopkgtest: DBG: testbed command exited with code 0 1505s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1505s autopkgtest: DBG: testbed command exited with code 0 1505s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1505s autopkgtest: DBG: testbed command exited with code 0 1505s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1505s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtxml', 'python3'] 1505s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtxml, python3 1505s autopkgtest: DBG: can use apt-get on testbed: True 1505s 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'] 1506s Reading package lists... 1506s Building dependency tree... 1506s Reading state information... 1506s Starting pkgProblemResolver with broken count: 0 1506s Starting 2 pkgProblemResolver with broken count: 0 1506s Done 1506s The following NEW packages will be installed: 1506s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 1506s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5xml5t64 1506s libshiboken2-py3-5.15t64 python3-pyside2.qtcore python3-pyside2.qtxml 1506s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 1506s Need to get 6760 kB of archives. 1506s After this operation, 23.8 MB of additional disk space will be used. 1506s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1506s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1507s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1507s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1507s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1507s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1507s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1507s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1507s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-4ubuntu1 [129 kB] 1507s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1507s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtxml s390x 5.15.16-3.1 [121 kB] 1507s Fetched 6760 kB in 1s (8411 kB/s) 1507s Selecting previously unselected package libdouble-conversion3:s390x. 1507s (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 ... 55928 files and directories currently installed.) 1507s Preparing to unpack .../00-libdouble-conversion3_3.3.1-1_s390x.deb ... 1507s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1507s Selecting previously unselected package libpcre2-16-0:s390x. 1507s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1507s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1507s Selecting previously unselected package libqt5core5t64:s390x. 1507s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1507s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1507s Selecting previously unselected package libqt5dbus5t64:s390x. 1507s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1507s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1507s Selecting previously unselected package libqt5network5t64:s390x. 1507s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1507s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1507s Selecting previously unselected package libqt5qml5:s390x. 1507s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1507s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1507s Selecting previously unselected package libshiboken2-py3-5.15t64. 1507s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1507s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1507s Selecting previously unselected package libpyside2-py3-5.15t64. 1507s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1507s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1507s Selecting previously unselected package libqt5xml5t64:s390x. 1507s Preparing to unpack .../08-libqt5xml5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1507s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1507s Selecting previously unselected package python3-pyside2.qtcore. 1507s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1507s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1507s Selecting previously unselected package python3-pyside2.qtxml. 1507s Preparing to unpack .../10-python3-pyside2.qtxml_5.15.16-3.1_s390x.deb ... 1507s Unpacking python3-pyside2.qtxml (5.15.16-3.1) ... 1508s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1508s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1508s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1508s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1508s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1508s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1508s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1508s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1508s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1508s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1508s Setting up python3-pyside2.qtxml (5.15.16-3.1) ... 1508s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtxml'], kind short, sout pipe, serr pipe, env [] 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command12-packages.all"], kind short, sout raw, serr pipe, env [] 1508s autopkgtest: DBG: testbed command exited with code 0 1508s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command12-packages.all /tmp/autopkgtest-work.nwculqua/out/command12-packages.all 1508s autopkgtest: DBG: got reply from testbed: ok 1508s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1509s autopkgtest: DBG: testbed command exited with code 1 1509s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1509s autopkgtest: DBG: testbed command exited with code 0 1509s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1511s autopkgtest: DBG: got reply from testbed: ok 1511s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1511s autopkgtest: DBG: testbed command exited with code 0 1511s autopkgtest [14:23:33]: test command12: debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml 1511s autopkgtest [14:23:33]: test command12: [----------------------- 1511s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command12-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command12-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command12-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml'"], kind test, sout raw, serr raw, env [] 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command12-artifacts 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command12-stderr 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command12-stdout 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtxml PySide2.QtXml 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.UF041IQ06m/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command12-stdout 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.UF041IQ06m/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command12-stdout 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 1343 to /tmp/autopkgtest_script_pid 1511s Testing python3 package python3-pyside2.qtxml 1511s Testing with python3.13: 1511s 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1511s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1511s autopkgtest: DBG: testbed command exited with code 0 1511s autopkgtest [14:23:33]: test command12: -----------------------] 1511s autopkgtest: DBG: testbed executing test finished with exit status 0 1511s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command12-stdout /tmp/autopkgtest-work.nwculqua/out/command12-stdout 1511s autopkgtest: DBG: got reply from testbed: ok 1511s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command12-stderr /tmp/autopkgtest-work.nwculqua/out/command12-stderr 1512s autopkgtest: DBG: got reply from testbed: ok 1512s command12 PASS (superficial) 1512s autopkgtest [14:23:34]: test command12: - - - - - - - - - - results - - - - - - - - - - 1512s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command12-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1512s autopkgtest: DBG: got reply from testbed: ok 1512s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command12-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1512s autopkgtest: DBG: testbed command exited with code 0 1512s autopkgtest [14:23:34]: test command13: preparing testbed 1512s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtxml', 'python3'], deps_new=['python3-pyside2.qttest', 'python3'] 1512s autopkgtest: DBG: testbed reset 1512s autopkgtest: DBG: sending command to testbed: revert 1583s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1583s autopkgtest: DBG: sending command to testbed: print-execute-command 1583s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1583s autopkgtest: DBG: sending command to testbed: capabilities 1583s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1583s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1583s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1583s autopkgtest: DBG: testbed command exited with code 0 1583s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1583s autopkgtest: DBG: got reply from testbed: ok 1583s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1583s autopkgtest: DBG: testbed command exited with code 0 1583s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s autopkgtest [14:24:46]: testbed dpkg architecture: s390x 1584s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s autopkgtest [14:24:46]: testbed apt version: 2.9.30ubuntu1 1584s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s autopkgtest: DBG: testbed has eatmydata 1584s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s autopkgtest [14:24:46]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1584s 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 [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s autopkgtest [14:24:46]: testbed release detected to be: plucky 1584s 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 [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s 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 [] 1584s autopkgtest: DBG: testbed command exited with code 0 1584s autopkgtest: DBG: adding APT source: Types: deb deb-src 1584s URIs: http://ftpmaster.internal/ubuntu/ 1584s Suites: plucky-proposed 1584s Components: main restricted universe multiverse 1584s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1584s 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 [] 1585s autopkgtest: DBG: testbed command exited with code 0 1585s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1585s Package: * 1585s Pin: release plucky-proposed 1585s Pin-Priority: 500 1585s 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 [] 1585s autopkgtest: DBG: testbed command exited with code 0 1585s autopkgtest [14:24:47]: updating testbed package index (apt update) 1585s 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'] 1585s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1585s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1585s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1585s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1586s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1586s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1586s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1586s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1586s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1586s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1586s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1586s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1586s Fetched 1711 kB in 1s (1984 kB/s) 1586s Reading package lists... 1586s autopkgtest: DBG: testbed command exited with code 0 1586s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1586s Package: * 1586s Pin: release plucky-proposed 1586s Pin-Priority: 100 1586s 1586s Package: src:llvm-toolchain-20:any 1586s Pin: release plucky-proposed 1586s Pin-Priority: 995 1586s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1587s autopkgtest: DBG: testbed command exited with code 0 1587s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1587s autopkgtest: DBG: testbed command exited with code 0 1587s 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'] 1587s + lsb_release --codename --short 1587s + RELEASE=plucky 1587s + cat 1587s + [ plucky != trusty ] 1587s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1587s Reading package lists... 1587s Building dependency tree... 1587s Reading state information... 1587s Calculating upgrade... 1587s Calculating upgrade... 1587s The following packages were automatically installed and are no longer required: 1587s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1587s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1587s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1587s linux-tools-6.11.0-8-generic 1587s Use 'sudo apt autoremove' to remove them. 1587s The following packages will be upgraded: 1587s base-files gcc-14-base motd-news-config 1587s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1587s Need to get 134 kB of archives. 1587s After this operation, 0 B of additional disk space will be used. 1587s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1588s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1588s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1588s Fetched 134 kB in 0s (327 kB/s) 1588s (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.) 1588s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1588s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1588s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1588s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1588s Setting up base-files (13.6ubuntu1) ... 1588s Updating /root/.profile to current default. 1589s motd-news.service is a disabled or a static unit not running, not starting it. 1589s (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.) 1589s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1589s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1589s Setting up motd-news-config (13.6ubuntu1) ... 1589s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1589s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1589s Processing triggers for install-info (7.1.1-1) ... 1589s Processing triggers for man-db (2.13.0-1) ... 1589s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1589s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1589s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1593s Using config file '/etc/zipl.conf' 1593s Building bootmap in '/boot' 1593s Adding IPL section 'ubuntu' (default) 1593s Preparing boot device for LD-IPL: vda (0000). 1593s Done. 1593s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1593s + /usr/lib/apt/apt-helper analyze-pattern ?true 1593s + uname -r 1593s + sed s/\./\\./g 1593s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1593s + + tail -n+2 1593s apt list ?obsolete 1593s + grep -v ^linux-.*6\.12\.0-15-generic.* 1593s + cut -d/ -f1 1593s + true 1593s + obsolete_pkgs= 1593s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1593s Reading package lists... 1593s Building dependency tree... 1593s Reading state information... 1593s Solving dependencies... 1593s The following packages will be REMOVED: 1593s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1593s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1593s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1593s linux-tools-6.11.0-8-generic* 1593s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1593s After this operation, 167 MB disk space will be freed. 1593s (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.) 1593s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1593s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1593s Removing libpython3.12t64:s390x (3.12.9-1) ... 1594s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1594s Removing libnsl2:s390x (1.3.0-3build3) ... 1594s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1594s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1594s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1594s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1594s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1594s (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 ... 55930 files and directories currently installed.) 1594s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1594s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1595s + grep -q trusty /etc/lsb-release 1595s + [ ! -d /usr/share/doc/unattended-upgrades ] 1595s + [ ! -d /usr/share/doc/lxd ] 1595s + [ ! -d /usr/share/doc/lxd-client ] 1595s + [ ! -d /usr/share/doc/snapd ] 1595s + type iptables 1595s + cat 1595s + chmod 755 /etc/rc.local 1595s + . /etc/rc.local 1595s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1595s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1595s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1595s + uname -m 1595s + [ s390x = ppc64le ] 1595s + [ -d /run/systemd/system ] 1595s + systemd-detect-virt --quiet --vm 1595s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1595s + cat 1595s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1595s + echo COMPRESS=lz4 1595s autopkgtest: DBG: testbed command exited with code 0 1595s autopkgtest [14:24:57]: upgrading testbed (apt dist-upgrade and autopurge) 1595s 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'] 1595s Reading package lists... 1595s Building dependency tree... 1595s Reading state information... 1595s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1595s Starting 2 pkgProblemResolver with broken count: 0 1595s Done 1595s Entering ResolveByKeep 1595s 1595s Calculating upgrade... 1596s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1596s autopkgtest: DBG: testbed command exited with code 0 1596s 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'] 1596s Reading package lists... 1596s Building dependency tree... 1596s Reading state information... 1596s Starting pkgProblemResolver with broken count: 0 1596s Starting 2 pkgProblemResolver with broken count: 0 1596s Done 1596s Solving dependencies... 1596s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1596s autopkgtest: DBG: testbed command exited with code 0 1596s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1596s autopkgtest: DBG: testbed command exited with code 1 1596s autopkgtest [14:24:58]: rebooting testbed after setup commands that affected boot 1596s autopkgtest: DBG: sending command to testbed: reboot 1620s autopkgtest: DBG: got reply from testbed: ok 1620s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1620s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1621s autopkgtest: DBG: testbed command exited with code 0 1621s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1621s autopkgtest: DBG: got reply from testbed: ok 1621s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1621s autopkgtest: DBG: testbed command exited with code 0 1621s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1621s autopkgtest: DBG: testbed command exited with code 0 1621s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1621s autopkgtest: DBG: testbed command exited with code 0 1621s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1621s autopkgtest: DBG: testbed command exited with code 0 1621s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1622s autopkgtest: DBG: got reply from testbed: ok 1622s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1622s autopkgtest: DBG: testbed command exited with code 0 1622s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1622s autopkgtest: DBG: testbed command exited with code 0 1622s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1622s autopkgtest: DBG: testbed command exited with code 0 1622s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1622s autopkgtest: DBG: testbed command exited with code 0 1622s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1623s autopkgtest: DBG: got reply from testbed: ok 1623s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1623s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1623s autopkgtest: DBG: testbed command exited with code 0 1623s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1623s autopkgtest: DBG: got reply from testbed: ok 1623s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1623s autopkgtest: DBG: testbed command exited with code 0 1623s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1623s autopkgtest: DBG: testbed command exited with code 0 1623s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1623s autopkgtest: DBG: testbed command exited with code 0 1623s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1624s autopkgtest: DBG: testbed command exited with code 0 1624s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1624s autopkgtest: DBG: got reply from testbed: ok 1624s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1624s autopkgtest: DBG: testbed command exited with code 0 1624s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1624s autopkgtest: DBG: testbed command exited with code 0 1624s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1624s autopkgtest: DBG: testbed command exited with code 0 1624s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1624s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qttest', 'python3'] 1624s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qttest, python3 1624s autopkgtest: DBG: can use apt-get on testbed: True 1624s 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'] 1625s Reading package lists... 1625s Building dependency tree... 1625s Reading state information... 1625s Starting pkgProblemResolver with broken count: 0 1625s Starting 2 pkgProblemResolver with broken count: 0 1625s Done 1625s The following NEW packages will be installed: 1625s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 1625s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 1625s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 1625s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 1625s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 1625s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1625s libqt5network5t64 libqt5qml5 libqt5test5t64 libqt5widgets5t64 1625s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 1625s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 1625s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 1625s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 1625s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 1625s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 1625s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qttest 1625s python3-pyside2.qtwidgets x11-common 1625s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 1625s Need to get 29.3 MB of archives. 1625s After this operation, 111 MB of additional disk space will be used. 1625s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1626s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1626s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1626s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1626s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1626s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1626s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1626s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1626s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 1626s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1626s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1626s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1626s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1626s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1626s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1626s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1626s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1626s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1626s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1626s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 1626s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1626s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1626s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1626s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1626s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1626s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1626s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1626s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1626s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1626s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1626s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1626s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1626s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1626s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1626s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1626s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1626s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1626s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1626s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1626s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1626s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1626s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1626s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1626s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1626s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1626s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1626s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1626s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1626s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1626s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1626s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1626s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1626s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1626s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1626s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1626s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1626s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1626s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1626s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1626s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1627s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1627s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1627s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1627s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1627s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5test5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 1627s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 1627s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1627s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1627s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 1627s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qttest s390x 5.15.16-3.1 [63.3 kB] 1627s Fetched 29.3 MB in 2s (16.0 MB/s) 1627s Selecting previously unselected package libfreetype6:s390x. 1627s (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 ... 55928 files and directories currently installed.) 1627s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1627s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1627s Selecting previously unselected package fonts-dejavu-mono. 1627s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1627s Unpacking fonts-dejavu-mono (2.37-8) ... 1627s Selecting previously unselected package fonts-dejavu-core. 1627s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1627s Unpacking fonts-dejavu-core (2.37-8) ... 1627s Selecting previously unselected package fontconfig-config. 1627s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1627s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1627s Selecting previously unselected package libfontconfig1:s390x. 1627s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1627s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1627s Selecting previously unselected package fontconfig. 1627s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1627s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1628s Selecting previously unselected package libdouble-conversion3:s390x. 1628s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 1628s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1628s Selecting previously unselected package libdrm-radeon1:s390x. 1628s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 1628s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1628s Selecting previously unselected package libwayland-server0:s390x. 1628s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 1628s Unpacking libwayland-server0:s390x (1.23.1-3) ... 1628s Selecting previously unselected package libglapi-mesa:s390x. 1628s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1628s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1628s Selecting previously unselected package libx11-xcb1:s390x. 1628s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1628s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1628s Selecting previously unselected package libxcb-dri3-0:s390x. 1628s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-present0:s390x. 1628s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-randr0:s390x. 1628s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-sync1:s390x. 1628s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-xfixes0:s390x. 1628s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxshmfence1:s390x. 1628s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 1628s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1628s Selecting previously unselected package mesa-libgallium:s390x. 1628s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1628s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1628s Selecting previously unselected package libgbm1:s390x. 1628s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1628s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1628s Selecting previously unselected package libwayland-client0:s390x. 1628s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 1628s Unpacking libwayland-client0:s390x (1.23.1-3) ... 1628s Selecting previously unselected package libxcb-shm0:s390x. 1628s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libegl-mesa0:s390x. 1628s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1628s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1628s Selecting previously unselected package libvulkan1:s390x. 1628s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 1628s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1628s Selecting previously unselected package libgl1-mesa-dri:s390x. 1628s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1628s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1628s Selecting previously unselected package libxcb-glx0:s390x. 1628s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxxf86vm1:s390x. 1628s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1628s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1628s Selecting previously unselected package libglx-mesa0:s390x. 1628s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1628s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1628s Selecting previously unselected package libgraphite2-3:s390x. 1628s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1628s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1628s Selecting previously unselected package libharfbuzz0b:s390x. 1628s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 1628s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1628s Selecting previously unselected package x11-common. 1628s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1628s Unpacking x11-common (1:7.7+23ubuntu3) ... 1628s Selecting previously unselected package libice6:s390x. 1628s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 1628s Unpacking libice6:s390x (2:1.1.1-1) ... 1628s Selecting previously unselected package libwacom-common. 1628s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 1628s Unpacking libwacom-common (2.14.0-1) ... 1628s Selecting previously unselected package libwacom9:s390x. 1628s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 1628s Unpacking libwacom9:s390x (2.14.0-1) ... 1628s Selecting previously unselected package libinput-bin. 1628s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 1628s Unpacking libinput-bin (1.27.1-1) ... 1628s Selecting previously unselected package libmtdev1t64:s390x. 1628s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 1628s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1628s Selecting previously unselected package libinput10:s390x. 1628s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 1628s Unpacking libinput10:s390x (1.27.1-1) ... 1628s Selecting previously unselected package libjpeg-turbo8:s390x. 1628s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1628s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1628s Selecting previously unselected package libjpeg8:s390x. 1628s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 1628s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1628s Selecting previously unselected package libmd4c0:s390x. 1628s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 1628s Unpacking libmd4c0:s390x (0.5.2-2) ... 1628s Selecting previously unselected package libpcre2-16-0:s390x. 1628s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1628s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1628s Selecting previously unselected package libqt5core5t64:s390x. 1628s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1628s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1628s Selecting previously unselected package libqt5dbus5t64:s390x. 1628s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1628s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1628s Selecting previously unselected package libqt5network5t64:s390x. 1628s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1628s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1628s Selecting previously unselected package libqt5qml5:s390x. 1628s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1628s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1628s Selecting previously unselected package libshiboken2-py3-5.15t64. 1628s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1628s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1628s Selecting previously unselected package libpyside2-py3-5.15t64. 1628s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1628s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1628s Selecting previously unselected package libglvnd0:s390x. 1628s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 1628s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1628s Selecting previously unselected package libegl1:s390x. 1628s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 1628s Unpacking libegl1:s390x (1.7.0-1build1) ... 1628s Selecting previously unselected package libglx0:s390x. 1628s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 1628s Unpacking libglx0:s390x (1.7.0-1build1) ... 1628s Selecting previously unselected package libgl1:s390x. 1628s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 1628s Unpacking libgl1:s390x (1.7.0-1build1) ... 1628s Selecting previously unselected package libsm6:s390x. 1628s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 1628s Unpacking libsm6:s390x (2:1.2.4-1) ... 1628s Selecting previously unselected package libxcb-icccm4:s390x. 1628s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 1628s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1628s Selecting previously unselected package libxcb-util1:s390x. 1628s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 1628s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1628s Selecting previously unselected package libxcb-image0:s390x. 1628s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 1628s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1628s Selecting previously unselected package libxcb-keysyms1:s390x. 1628s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1628s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1628s Selecting previously unselected package libxcb-render0:s390x. 1628s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-render-util0:s390x. 1628s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 1628s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1628s Selecting previously unselected package libxcb-shape0:s390x. 1628s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-xinerama0:s390x. 1628s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-xinput0:s390x. 1628s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxcb-xkb1:s390x. 1628s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 1628s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1628s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1628s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1628s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1628s Selecting previously unselected package libxrender1:s390x. 1628s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1628s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1628s Selecting previously unselected package libqt5gui5t64:s390x. 1628s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1628s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1628s Selecting previously unselected package libqt5test5t64:s390x. 1628s Preparing to unpack .../64-libqt5test5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1628s Unpacking libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1628s Selecting previously unselected package libqt5widgets5t64:s390x. 1628s Preparing to unpack .../65-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1628s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1628s Selecting previously unselected package python3-pyside2.qtcore. 1628s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1628s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1628s Selecting previously unselected package python3-pyside2.qtgui. 1628s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1628s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1629s Selecting previously unselected package python3-pyside2.qtwidgets. 1629s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 1629s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 1629s Selecting previously unselected package python3-pyside2.qttest. 1629s Preparing to unpack .../69-python3-pyside2.qttest_5.15.16-3.1_s390x.deb ... 1629s Unpacking python3-pyside2.qttest (5.15.16-3.1) ... 1629s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1629s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1629s Setting up libwayland-server0:s390x (1.23.1-3) ... 1629s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1629s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1629s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1629s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1629s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1629s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1629s Setting up libxcb-render0:s390x (1.17.0-2) ... 1629s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1629s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1629s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1629s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1629s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1629s Setting up x11-common (1:7.7+23ubuntu3) ... 1629s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1629s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1629s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1629s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1629s Setting up libxcb-util1:s390x (0.4.1-1) ... 1629s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1629s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1629s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1629s Setting up libxcb-present0:s390x (1.17.0-2) ... 1629s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1629s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1629s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1629s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1629s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1629s Setting up fonts-dejavu-mono (2.37-8) ... 1629s Setting up fonts-dejavu-core (2.37-8) ... 1629s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1629s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1629s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1629s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1629s Setting up libxshmfence1:s390x (1.3-1build5) ... 1629s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1629s Setting up libmd4c0:s390x (0.5.2-2) ... 1629s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1629s Setting up libwacom-common (2.14.0-1) ... 1629s Setting up libwayland-client0:s390x (1.23.1-3) ... 1629s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1629s Setting up libice6:s390x (2:1.1.1-1) ... 1629s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1629s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1629s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1629s Setting up libwacom9:s390x (2.14.0-1) ... 1629s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1629s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1629s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1629s Setting up libqt5test5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1629s Setting up libinput-bin (1.27.1-1) ... 1629s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1629s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1629s Setting up libegl1:s390x (1.7.0-1build1) ... 1629s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1629s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1629s Setting up libsm6:s390x (2:1.2.4-1) ... 1629s Setting up libinput10:s390x (1.27.1-1) ... 1629s Setting up fontconfig (2.15.0-2ubuntu1) ... 1631s Regenerating fonts cache... done. 1631s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1631s Setting up libglx0:s390x (1.7.0-1build1) ... 1631s Setting up libgl1:s390x (1.7.0-1build1) ... 1631s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1631s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1631s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1631s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1631s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 1631s Setting up python3-pyside2.qttest (5.15.16-3.1) ... 1631s Processing triggers for man-db (2.13.0-1) ... 1632s Processing triggers for udev (257.2-3ubuntu1) ... 1632s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1632s autopkgtest: DBG: testbed command exited with code 0 1632s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qttest'], kind short, sout pipe, serr pipe, env [] 1632s autopkgtest: DBG: testbed command exited with code 0 1632s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command13-packages.all"], kind short, sout raw, serr pipe, env [] 1632s autopkgtest: DBG: testbed command exited with code 0 1632s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command13-packages.all /tmp/autopkgtest-work.nwculqua/out/command13-packages.all 1633s autopkgtest: DBG: got reply from testbed: ok 1633s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1633s autopkgtest: DBG: testbed command exited with code 1 1633s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1633s autopkgtest: DBG: testbed command exited with code 0 1633s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1635s autopkgtest: DBG: got reply from testbed: ok 1635s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1635s autopkgtest: DBG: testbed command exited with code 0 1635s autopkgtest [14:25:37]: test command13: debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest 1635s autopkgtest [14:25:37]: test command13: [----------------------- 1635s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command13-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command13-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command13-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest'"], kind test, sout raw, serr raw, env [] 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command13-artifacts 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command13-stderr 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command13-stdout 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qttest PySide2.QtTest 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.jo5joULMdu/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command13-stdout 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.jo5joULMdu/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command13-stdout 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2250 to /tmp/autopkgtest_script_pid 1635s Testing python3 package python3-pyside2.qttest 1635s Testing with python3.13: 1635s 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1635s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1635s autopkgtest: DBG: testbed command exited with code 0 1636s autopkgtest [14:25:38]: test command13: -----------------------] 1636s autopkgtest: DBG: testbed executing test finished with exit status 0 1636s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command13-stdout /tmp/autopkgtest-work.nwculqua/out/command13-stdout 1636s autopkgtest: DBG: got reply from testbed: ok 1636s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command13-stderr /tmp/autopkgtest-work.nwculqua/out/command13-stderr 1636s autopkgtest: DBG: got reply from testbed: ok 1636s autopkgtest [14:25:38]: test command13: - - - - - - - - - - results - - - - - - - - - - 1636s command13 PASS (superficial) 1636s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command13-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1636s autopkgtest: DBG: got reply from testbed: ok 1636s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command13-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1636s autopkgtest: DBG: testbed command exited with code 0 1636s autopkgtest [14:25:38]: test command15: preparing testbed 1636s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qttest', 'python3'], deps_new=['python3-pyside2.qtconcurrent', 'python3'] 1636s autopkgtest: DBG: testbed reset 1636s autopkgtest: DBG: sending command to testbed: revert 1717s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1717s autopkgtest: DBG: sending command to testbed: print-execute-command 1717s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1717s autopkgtest: DBG: sending command to testbed: capabilities 1717s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1717s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1717s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1718s autopkgtest: DBG: testbed command exited with code 0 1718s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1718s autopkgtest: DBG: got reply from testbed: ok 1718s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1718s autopkgtest: DBG: testbed command exited with code 0 1718s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1718s autopkgtest: DBG: testbed command exited with code 0 1718s autopkgtest [14:27:00]: testbed dpkg architecture: s390x 1718s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1718s autopkgtest: DBG: testbed command exited with code 0 1718s autopkgtest [14:27:00]: testbed apt version: 2.9.30ubuntu1 1718s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1719s autopkgtest: DBG: testbed command exited with code 0 1719s autopkgtest: DBG: testbed has eatmydata 1719s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1719s autopkgtest: DBG: testbed command exited with code 0 1719s autopkgtest [14:27:01]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1719s 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 [] 1719s autopkgtest: DBG: testbed command exited with code 0 1719s autopkgtest [14:27:01]: testbed release detected to be: plucky 1719s 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 [] 1719s autopkgtest: DBG: testbed command exited with code 0 1719s 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 [] 1719s autopkgtest: DBG: testbed command exited with code 0 1719s autopkgtest: DBG: adding APT source: Types: deb deb-src 1719s URIs: http://ftpmaster.internal/ubuntu/ 1719s Suites: plucky-proposed 1719s Components: main restricted universe multiverse 1719s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1719s 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 [] 1720s autopkgtest: DBG: testbed command exited with code 0 1720s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1720s Package: * 1720s Pin: release plucky-proposed 1720s Pin-Priority: 500 1720s 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 [] 1720s autopkgtest: DBG: testbed command exited with code 0 1720s autopkgtest [14:27:02]: updating testbed package index (apt update) 1720s 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'] 1720s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1720s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1720s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1720s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1720s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1720s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1720s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1721s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1721s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1721s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1721s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1721s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1721s Fetched 1711 kB in 1s (1855 kB/s) 1721s Reading package lists... 1721s autopkgtest: DBG: testbed command exited with code 0 1721s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1721s Package: * 1721s Pin: release plucky-proposed 1721s Pin-Priority: 100 1721s 1721s Package: src:llvm-toolchain-20:any 1721s Pin: release plucky-proposed 1721s Pin-Priority: 995 1721s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1722s autopkgtest: DBG: testbed command exited with code 0 1722s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1722s autopkgtest: DBG: testbed command exited with code 0 1722s 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'] 1722s + lsb_release --codename --short 1722s + RELEASE=plucky 1722s + cat 1722s + [ plucky != trusty ] 1722s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1722s Reading package lists... 1722s Building dependency tree... 1722s Reading state information... 1722s Calculating upgrade... 1722s Calculating upgrade... 1722s The following packages were automatically installed and are no longer required: 1722s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1722s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1722s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1722s linux-tools-6.11.0-8-generic 1722s Use 'sudo apt autoremove' to remove them. 1722s The following packages will be upgraded: 1722s base-files gcc-14-base motd-news-config 1722s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1722s Need to get 134 kB of archives. 1722s After this operation, 0 B of additional disk space will be used. 1722s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1723s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1723s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1723s Fetched 134 kB in 0s (315 kB/s) 1723s (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.) 1723s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1723s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1723s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1723s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1723s Setting up base-files (13.6ubuntu1) ... 1723s Updating /root/.profile to current default. 1724s motd-news.service is a disabled or a static unit not running, not starting it. 1724s (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.) 1724s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1724s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1724s Setting up motd-news-config (13.6ubuntu1) ... 1724s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1724s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1724s Processing triggers for install-info (7.1.1-1) ... 1724s Processing triggers for man-db (2.13.0-1) ... 1724s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1724s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1724s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1728s Using config file '/etc/zipl.conf' 1728s Building bootmap in '/boot' 1728s Adding IPL section 'ubuntu' (default) 1728s Preparing boot device for LD-IPL: vda (0000). 1728s Done. 1728s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1728s + /usr/lib/apt/apt-helper analyze-pattern ?true 1728s + uname -r 1728s + sed s/\./\\./g 1728s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1728s + apt list ?obsolete 1728s + + grep -v ^linux-.*6\.12\.0-15-generic.* 1728s + cut -d/ -f1 1728s tail -n+2 1728s + true 1728s + obsolete_pkgs= 1728s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1728s Reading package lists... 1728s Building dependency tree... 1728s Reading state information... 1728s Solving dependencies... 1728s The following packages will be REMOVED: 1728s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1728s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1728s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1728s linux-tools-6.11.0-8-generic* 1729s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1729s After this operation, 167 MB disk space will be freed. 1729s (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.) 1729s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1729s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1729s Removing libpython3.12t64:s390x (3.12.9-1) ... 1729s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1729s Removing libnsl2:s390x (1.3.0-3build3) ... 1729s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1729s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1729s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1729s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1729s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1729s (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 ... 55930 files and directories currently installed.) 1729s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1729s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1730s + grep -q trusty /etc/lsb-release 1730s + [ ! -d /usr/share/doc/unattended-upgrades ] 1730s + [ ! -d /usr/share/doc/lxd ] 1730s + [ ! -d /usr/share/doc/lxd-client ] 1730s + [ ! -d /usr/share/doc/snapd ] 1730s + type iptables 1730s + cat 1730s + chmod 755 /etc/rc.local 1730s + . /etc/rc.local 1730s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1730s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1730s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1730s + uname -m 1730s + [ s390x = ppc64le ] 1730s + [ -d /run/systemd/system ] 1730s + systemd-detect-virt --quiet --vm 1730s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1730s + cat 1730s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1730s + echo COMPRESS=lz4 1730s autopkgtest: DBG: testbed command exited with code 0 1730s autopkgtest [14:27:12]: upgrading testbed (apt dist-upgrade and autopurge) 1730s 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'] 1730s Reading package lists... 1730s Building dependency tree... 1730s Reading state information... 1730s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1730s Starting 2 pkgProblemResolver with broken count: 0 1730s Done 1730s Entering ResolveByKeep 1730s 1731s Calculating upgrade... 1731s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1731s autopkgtest: DBG: testbed command exited with code 0 1731s 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'] 1731s Reading package lists... 1731s Building dependency tree... 1731s Reading state information... 1731s Starting pkgProblemResolver with broken count: 0 1731s Starting 2 pkgProblemResolver with broken count: 0 1731s Done 1731s Solving dependencies... 1731s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1731s autopkgtest: DBG: testbed command exited with code 0 1731s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1731s autopkgtest: DBG: testbed command exited with code 1 1731s autopkgtest [14:27:13]: rebooting testbed after setup commands that affected boot 1731s autopkgtest: DBG: sending command to testbed: reboot 1748s autopkgtest: DBG: got reply from testbed: ok 1748s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1748s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1748s autopkgtest: DBG: testbed command exited with code 0 1748s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1748s autopkgtest: DBG: got reply from testbed: ok 1748s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1748s autopkgtest: DBG: testbed command exited with code 0 1748s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1749s autopkgtest: DBG: testbed command exited with code 0 1749s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1749s autopkgtest: DBG: testbed command exited with code 0 1749s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1749s autopkgtest: DBG: testbed command exited with code 0 1749s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1749s autopkgtest: DBG: got reply from testbed: ok 1749s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1749s autopkgtest: DBG: testbed command exited with code 0 1749s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1750s autopkgtest: DBG: testbed command exited with code 0 1750s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1750s autopkgtest: DBG: testbed command exited with code 0 1750s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1750s autopkgtest: DBG: testbed command exited with code 0 1750s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1750s autopkgtest: DBG: got reply from testbed: ok 1750s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1750s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1750s autopkgtest: DBG: testbed command exited with code 0 1750s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1750s autopkgtest: DBG: got reply from testbed: ok 1750s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1752s autopkgtest: DBG: got reply from testbed: ok 1752s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1752s autopkgtest: DBG: testbed command exited with code 0 1752s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1752s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtconcurrent', 'python3'] 1752s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtconcurrent, python3 1752s autopkgtest: DBG: can use apt-get on testbed: True 1752s 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'] 1752s Reading package lists... 1752s Building dependency tree... 1752s Reading state information... 1752s Starting pkgProblemResolver with broken count: 0 1752s Starting 2 pkgProblemResolver with broken count: 0 1752s Done 1753s The following NEW packages will be installed: 1753s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 1753s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 1753s python3-pyside2.qtconcurrent python3-pyside2.qtcore 1753s 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded. 1753s Need to get 6543 kB of archives. 1753s After this operation, 22.9 MB of additional disk space will be used. 1753s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1753s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1753s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1753s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1753s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1753s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1753s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1753s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1753s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1753s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtconcurrent s390x 5.15.16-3.1 [32.6 kB] 1754s Fetched 6543 kB in 1s (8146 kB/s) 1754s Selecting previously unselected package libdouble-conversion3:s390x. 1754s (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 ... 55928 files and directories currently installed.) 1754s Preparing to unpack .../0-libdouble-conversion3_3.3.1-1_s390x.deb ... 1754s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1754s Selecting previously unselected package libpcre2-16-0:s390x. 1754s Preparing to unpack .../1-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1754s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1754s Selecting previously unselected package libqt5core5t64:s390x. 1754s Preparing to unpack .../2-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1754s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1754s Selecting previously unselected package libqt5dbus5t64:s390x. 1754s Preparing to unpack .../3-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1754s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1754s Selecting previously unselected package libqt5network5t64:s390x. 1754s Preparing to unpack .../4-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1754s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1754s Selecting previously unselected package libqt5qml5:s390x. 1754s Preparing to unpack .../5-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1754s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1754s Selecting previously unselected package libshiboken2-py3-5.15t64. 1754s Preparing to unpack .../6-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1754s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1754s Selecting previously unselected package libpyside2-py3-5.15t64. 1754s Preparing to unpack .../7-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1754s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1754s Selecting previously unselected package python3-pyside2.qtcore. 1754s Preparing to unpack .../8-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1754s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1754s Selecting previously unselected package python3-pyside2.qtconcurrent. 1754s Preparing to unpack .../9-python3-pyside2.qtconcurrent_5.15.16-3.1_s390x.deb ... 1754s Unpacking python3-pyside2.qtconcurrent (5.15.16-3.1) ... 1754s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1754s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1754s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1754s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1754s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1754s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1754s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1754s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1754s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1754s Setting up python3-pyside2.qtconcurrent (5.15.16-3.1) ... 1754s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1754s autopkgtest: DBG: testbed command exited with code 0 1754s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtconcurrent'], kind short, sout pipe, serr pipe, env [] 1754s autopkgtest: DBG: testbed command exited with code 0 1754s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command15-packages.all"], kind short, sout raw, serr pipe, env [] 1755s autopkgtest: DBG: testbed command exited with code 0 1755s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command15-packages.all /tmp/autopkgtest-work.nwculqua/out/command15-packages.all 1755s autopkgtest: DBG: got reply from testbed: ok 1755s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1755s autopkgtest: DBG: testbed command exited with code 1 1755s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1755s autopkgtest: DBG: testbed command exited with code 0 1755s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1757s autopkgtest: DBG: got reply from testbed: ok 1757s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1757s autopkgtest: DBG: testbed command exited with code 0 1757s autopkgtest [14:27:39]: test command15: debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent 1757s autopkgtest [14:27:39]: test command15: [----------------------- 1757s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command15-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command15-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command15-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent'"], kind test, sout raw, serr raw, env [] 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command15-artifacts 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command15-stderr 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command15-stdout 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtconcurrent PySide2.QtConcurrent 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.IXvumK03Ks/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command15-stdout 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.IXvumK03Ks/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command15-stdout 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 1338 to /tmp/autopkgtest_script_pid 1757s Testing python3 package python3-pyside2.qtconcurrent 1757s Testing with python3.13: 1757s 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1757s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1757s autopkgtest: DBG: testbed command exited with code 0 1757s autopkgtest [14:27:39]: test command15: -----------------------] 1757s autopkgtest: DBG: testbed executing test finished with exit status 0 1757s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command15-stdout /tmp/autopkgtest-work.nwculqua/out/command15-stdout 1758s autopkgtest: DBG: got reply from testbed: ok 1758s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command15-stderr /tmp/autopkgtest-work.nwculqua/out/command15-stderr 1758s autopkgtest: DBG: got reply from testbed: ok 1758s autopkgtest [14:27:40]: test command15: - - - - - - - - - - results - - - - - - - - - - 1758s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command15-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1758s command15 PASS (superficial) 1758s autopkgtest: DBG: got reply from testbed: ok 1758s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command15-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1758s autopkgtest: DBG: testbed command exited with code 0 1758s autopkgtest [14:27:40]: test command16: preparing testbed 1758s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtconcurrent', 'python3'], deps_new=['python3-pyside2.qtxmlpatterns', 'python3'] 1758s autopkgtest: DBG: testbed reset 1758s autopkgtest: DBG: sending command to testbed: revert 1809s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1809s autopkgtest: DBG: sending command to testbed: print-execute-command 1809s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1809s autopkgtest: DBG: sending command to testbed: capabilities 1809s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1809s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1809s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1809s autopkgtest: DBG: testbed command exited with code 0 1809s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1809s autopkgtest: DBG: got reply from testbed: ok 1809s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1809s autopkgtest: DBG: testbed command exited with code 0 1809s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1810s autopkgtest: DBG: testbed command exited with code 0 1810s autopkgtest [14:28:32]: testbed dpkg architecture: s390x 1810s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1810s autopkgtest: DBG: testbed command exited with code 0 1810s autopkgtest [14:28:32]: testbed apt version: 2.9.30ubuntu1 1810s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1810s autopkgtest: DBG: testbed command exited with code 0 1810s autopkgtest: DBG: testbed has eatmydata 1810s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1810s autopkgtest: DBG: testbed command exited with code 0 1810s autopkgtest [14:28:32]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1810s 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 [] 1810s autopkgtest: DBG: testbed command exited with code 0 1810s autopkgtest [14:28:32]: testbed release detected to be: plucky 1810s 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 [] 1810s autopkgtest: DBG: testbed command exited with code 0 1810s 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 [] 1811s autopkgtest: DBG: testbed command exited with code 0 1811s autopkgtest: DBG: adding APT source: Types: deb deb-src 1811s URIs: http://ftpmaster.internal/ubuntu/ 1811s Suites: plucky-proposed 1811s Components: main restricted universe multiverse 1811s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1811s 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 [] 1811s autopkgtest: DBG: testbed command exited with code 0 1811s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1811s Package: * 1811s Pin: release plucky-proposed 1811s Pin-Priority: 500 1811s 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 [] 1811s autopkgtest: DBG: testbed command exited with code 0 1811s autopkgtest [14:28:33]: updating testbed package index (apt update) 1811s 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'] 1811s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1811s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1812s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1812s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1812s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1812s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1812s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1812s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1812s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1812s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1812s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1812s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1812s Fetched 1711 kB in 1s (1887 kB/s) 1813s Reading package lists... 1813s autopkgtest: DBG: testbed command exited with code 0 1813s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1813s Package: * 1813s Pin: release plucky-proposed 1813s Pin-Priority: 100 1813s 1813s Package: src:llvm-toolchain-20:any 1813s Pin: release plucky-proposed 1813s Pin-Priority: 995 1813s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1813s autopkgtest: DBG: testbed command exited with code 0 1813s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1813s autopkgtest: DBG: testbed command exited with code 0 1813s 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'] 1813s + lsb_release --codename --short 1813s + RELEASE=plucky 1813s + cat 1813s + [ plucky != trusty ] 1813s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1813s Reading package lists... 1813s Building dependency tree... 1813s Reading state information... 1813s Calculating upgrade... 1813s Calculating upgrade... 1813s The following packages were automatically installed and are no longer required: 1813s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1813s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1813s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1813s linux-tools-6.11.0-8-generic 1813s Use 'sudo apt autoremove' to remove them. 1814s The following packages will be upgraded: 1814s base-files gcc-14-base motd-news-config 1814s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1814s Need to get 134 kB of archives. 1814s After this operation, 0 B of additional disk space will be used. 1814s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1814s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1814s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1814s Fetched 134 kB in 0s (338 kB/s) 1814s (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.) 1814s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1814s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1814s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1814s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1814s Setting up base-files (13.6ubuntu1) ... 1814s Updating /root/.profile to current default. 1815s motd-news.service is a disabled or a static unit not running, not starting it. 1815s (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.) 1815s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1815s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1815s Setting up motd-news-config (13.6ubuntu1) ... 1815s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1815s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1815s Processing triggers for install-info (7.1.1-1) ... 1815s Processing triggers for man-db (2.13.0-1) ... 1815s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1815s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1815s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1819s Using config file '/etc/zipl.conf' 1819s Building bootmap in '/boot' 1819s Adding IPL section 'ubuntu' (default) 1819s Preparing boot device for LD-IPL: vda (0000). 1819s Done. 1819s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1819s + /usr/lib/apt/apt-helper analyze-pattern ?true 1819s + uname -r+ sed s/\./\\./g 1819s 1819s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1819s + + tail -n+2 1819s + grep -v ^linux-.*6\.12\.0-15-generic.* 1819s + cutapt -d/ list -f1 ?obsolete 1819s 1819s + true 1819s + obsolete_pkgs= 1819s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1819s Reading package lists... 1819s Building dependency tree... 1819s Reading state information... 1819s Solving dependencies... 1819s The following packages will be REMOVED: 1819s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1819s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1819s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1819s linux-tools-6.11.0-8-generic* 1820s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1820s After this operation, 167 MB disk space will be freed. 1820s (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.) 1820s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1820s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1820s Removing libpython3.12t64:s390x (3.12.9-1) ... 1820s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1820s Removing libnsl2:s390x (1.3.0-3build3) ... 1820s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1820s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1820s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1820s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1821s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1821s (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 ... 55930 files and directories currently installed.) 1821s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1821s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1821s + grep -q trusty /etc/lsb-release 1821s + [ ! -d /usr/share/doc/unattended-upgrades ] 1821s + [ ! -d /usr/share/doc/lxd ] 1821s + [ ! -d /usr/share/doc/lxd-client ] 1821s + [ ! -d /usr/share/doc/snapd ] 1821s + type iptables 1821s + cat 1821s + chmod 755 /etc/rc.local 1821s + . /etc/rc.local 1821s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1821s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1821s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1821s + uname -m 1821s + [ s390x = ppc64le ] 1821s + [ -d /run/systemd/system ] 1821s + systemd-detect-virt --quiet --vm 1821s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1821s + cat 1821s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1821s + echo COMPRESS=lz4 1821s autopkgtest: DBG: testbed command exited with code 0 1821s autopkgtest [14:28:43]: upgrading testbed (apt dist-upgrade and autopurge) 1821s 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'] 1821s Reading package lists... 1821s Building dependency tree... 1821s Reading state information... 1821s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1821s Starting 2 pkgProblemResolver with broken count: 0 1821s Done 1821s Entering ResolveByKeep 1822s 1822s Calculating upgrade... 1822s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1822s autopkgtest: DBG: testbed command exited with code 0 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', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1822s Reading package lists... 1822s Building dependency tree... 1822s Reading state information... 1822s Starting pkgProblemResolver with broken count: 0 1822s Starting 2 pkgProblemResolver with broken count: 0 1822s Done 1822s Solving dependencies... 1822s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1822s autopkgtest: DBG: testbed command exited with code 0 1822s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1822s autopkgtest: DBG: testbed command exited with code 1 1822s autopkgtest [14:28:44]: rebooting testbed after setup commands that affected boot 1822s autopkgtest: DBG: sending command to testbed: reboot 1839s autopkgtest: DBG: got reply from testbed: ok 1839s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1839s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1839s autopkgtest: DBG: testbed command exited with code 0 1839s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1839s autopkgtest: DBG: got reply from testbed: ok 1839s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1839s autopkgtest: DBG: testbed command exited with code 0 1839s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1839s autopkgtest: DBG: testbed command exited with code 0 1839s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1840s autopkgtest: DBG: testbed command exited with code 0 1840s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1840s autopkgtest: DBG: testbed command exited with code 0 1840s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1840s autopkgtest: DBG: got reply from testbed: ok 1840s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1840s autopkgtest: DBG: testbed command exited with code 0 1840s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1840s autopkgtest: DBG: testbed command exited with code 0 1840s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1840s autopkgtest: DBG: testbed command exited with code 0 1840s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1841s autopkgtest: DBG: testbed command exited with code 0 1841s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1841s autopkgtest: DBG: got reply from testbed: ok 1841s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1841s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1841s autopkgtest: DBG: testbed command exited with code 0 1841s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1841s autopkgtest: DBG: got reply from testbed: ok 1841s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1841s autopkgtest: DBG: testbed command exited with code 0 1841s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1841s autopkgtest: DBG: testbed command exited with code 0 1841s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1842s autopkgtest: DBG: testbed command exited with code 0 1842s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1842s autopkgtest: DBG: testbed command exited with code 0 1842s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1842s autopkgtest: DBG: got reply from testbed: ok 1842s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1842s autopkgtest: DBG: testbed command exited with code 0 1842s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1842s autopkgtest: DBG: testbed command exited with code 0 1842s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1843s autopkgtest: DBG: testbed command exited with code 0 1843s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1843s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtxmlpatterns', 'python3'] 1843s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtxmlpatterns, python3 1843s autopkgtest: DBG: can use apt-get on testbed: True 1843s 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'] 1843s Reading package lists... 1843s Building dependency tree... 1843s Reading state information... 1843s Starting pkgProblemResolver with broken count: 0 1843s Starting 2 pkgProblemResolver with broken count: 0 1843s Done 1843s The following NEW packages will be installed: 1843s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 1843s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5xmlpatterns5 1843s libshiboken2-py3-5.15t64 python3-pyside2.qtcore 1843s python3-pyside2.qtxmlpatterns 1843s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 1843s Need to get 7514 kB of archives. 1843s After this operation, 26.5 MB of additional disk space will be used. 1843s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1844s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1844s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1844s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1844s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1844s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1844s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1844s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1844s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xmlpatterns5 s390x 5.15.15-2 [927 kB] 1844s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1844s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtxmlpatterns s390x 5.15.16-3.1 [76.8 kB] 1844s Fetched 7514 kB in 1s (9144 kB/s) 1844s Selecting previously unselected package libdouble-conversion3:s390x. 1844s (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 ... 55928 files and directories currently installed.) 1844s Preparing to unpack .../00-libdouble-conversion3_3.3.1-1_s390x.deb ... 1844s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1844s Selecting previously unselected package libpcre2-16-0:s390x. 1844s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1844s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1844s Selecting previously unselected package libqt5core5t64:s390x. 1844s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1844s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1844s Selecting previously unselected package libqt5dbus5t64:s390x. 1844s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1844s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1844s Selecting previously unselected package libqt5network5t64:s390x. 1844s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1844s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1845s Selecting previously unselected package libqt5qml5:s390x. 1845s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1845s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1845s Selecting previously unselected package libshiboken2-py3-5.15t64. 1845s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1845s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1845s Selecting previously unselected package libpyside2-py3-5.15t64. 1845s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1845s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1845s Selecting previously unselected package libqt5xmlpatterns5:s390x. 1845s Preparing to unpack .../08-libqt5xmlpatterns5_5.15.15-2_s390x.deb ... 1845s Unpacking libqt5xmlpatterns5:s390x (5.15.15-2) ... 1845s Selecting previously unselected package python3-pyside2.qtcore. 1845s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1845s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1845s Selecting previously unselected package python3-pyside2.qtxmlpatterns. 1845s Preparing to unpack .../10-python3-pyside2.qtxmlpatterns_5.15.16-3.1_s390x.deb ... 1845s Unpacking python3-pyside2.qtxmlpatterns (5.15.16-3.1) ... 1845s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1845s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1845s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1845s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1845s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1845s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1845s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1845s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1845s Setting up libqt5xmlpatterns5:s390x (5.15.15-2) ... 1845s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1845s Setting up python3-pyside2.qtxmlpatterns (5.15.16-3.1) ... 1845s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1845s autopkgtest: DBG: testbed command exited with code 0 1845s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtxmlpatterns'], kind short, sout pipe, serr pipe, env [] 1845s autopkgtest: DBG: testbed command exited with code 0 1845s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command16-packages.all"], kind short, sout raw, serr pipe, env [] 1845s autopkgtest: DBG: testbed command exited with code 0 1845s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command16-packages.all /tmp/autopkgtest-work.nwculqua/out/command16-packages.all 1845s autopkgtest: DBG: got reply from testbed: ok 1845s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1846s autopkgtest: DBG: testbed command exited with code 1 1846s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1846s autopkgtest: DBG: testbed command exited with code 0 1846s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1847s autopkgtest: DBG: got reply from testbed: ok 1847s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1848s autopkgtest: DBG: testbed command exited with code 0 1848s autopkgtest [14:29:10]: test command16: debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns 1848s autopkgtest [14:29:10]: test command16: [----------------------- 1848s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command16-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command16-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command16-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns'"], kind test, sout raw, serr raw, env [] 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command16-artifacts 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command16-stderr 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command16-stdout 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtxmlpatterns PySide2.QtXmlPatterns 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.8V776vobvX/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command16-stdout 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.8V776vobvX/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command16-stdout 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 1342 to /tmp/autopkgtest_script_pid 1848s Testing python3 package python3-pyside2.qtxmlpatterns 1848s Testing with python3.13: 1848s 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1848s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1848s autopkgtest: DBG: testbed command exited with code 0 1848s autopkgtest [14:29:10]: test command16: -----------------------] 1848s autopkgtest: DBG: testbed executing test finished with exit status 0 1848s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command16-stdout /tmp/autopkgtest-work.nwculqua/out/command16-stdout 1848s autopkgtest: DBG: got reply from testbed: ok 1848s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command16-stderr /tmp/autopkgtest-work.nwculqua/out/command16-stderr 1848s autopkgtest: DBG: got reply from testbed: ok 1849s autopkgtest [14:29:11]: test command16: - - - - - - - - - - results - - - - - - - - - - 1849s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command16-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1849s command16 PASS (superficial) 1849s autopkgtest: DBG: got reply from testbed: ok 1849s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command16-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1849s autopkgtest: DBG: testbed command exited with code 0 1849s autopkgtest [14:29:11]: test command17: preparing testbed 1849s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtxmlpatterns', 'python3'], deps_new=['python3-pyside2.qtuitools', 'python3'] 1849s autopkgtest: DBG: testbed reset 1849s autopkgtest: DBG: sending command to testbed: revert 1911s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 1911s autopkgtest: DBG: sending command to testbed: print-execute-command 1911s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 1911s autopkgtest: DBG: sending command to testbed: capabilities 1911s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 1911s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 1911s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1911s autopkgtest: DBG: testbed command exited with code 0 1911s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 1911s autopkgtest: DBG: got reply from testbed: ok 1911s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1911s autopkgtest: DBG: testbed command exited with code 0 1911s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1911s autopkgtest: DBG: testbed command exited with code 0 1911s autopkgtest [14:30:13]: testbed dpkg architecture: s390x 1911s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1912s autopkgtest: DBG: testbed command exited with code 0 1912s autopkgtest [14:30:14]: testbed apt version: 2.9.30ubuntu1 1912s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1912s autopkgtest: DBG: testbed command exited with code 0 1912s autopkgtest: DBG: testbed has eatmydata 1912s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1912s autopkgtest: DBG: testbed command exited with code 0 1912s autopkgtest [14:30:14]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1912s 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 [] 1912s autopkgtest: DBG: testbed command exited with code 0 1912s autopkgtest [14:30:14]: testbed release detected to be: plucky 1912s 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 [] 1912s autopkgtest: DBG: testbed command exited with code 0 1912s 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 [] 1912s autopkgtest: DBG: testbed command exited with code 0 1912s autopkgtest: DBG: adding APT source: Types: deb deb-src 1912s URIs: http://ftpmaster.internal/ubuntu/ 1912s Suites: plucky-proposed 1912s Components: main restricted universe multiverse 1912s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1912s 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 [] 1913s autopkgtest: DBG: testbed command exited with code 0 1913s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1913s Package: * 1913s Pin: release plucky-proposed 1913s Pin-Priority: 500 1913s 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 [] 1913s autopkgtest: DBG: testbed command exited with code 0 1913s autopkgtest [14:30:15]: updating testbed package index (apt update) 1913s 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'] 1913s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1913s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1913s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1913s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1914s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1914s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 1914s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 1914s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 1914s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 1914s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1914s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 1914s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 1914s Fetched 1711 kB in 1s (1883 kB/s) 1914s Reading package lists... 1914s autopkgtest: DBG: testbed command exited with code 0 1914s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1914s Package: * 1914s Pin: release plucky-proposed 1914s Pin-Priority: 100 1914s 1914s Package: src:llvm-toolchain-20:any 1914s Pin: release plucky-proposed 1914s Pin-Priority: 995 1914s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1915s autopkgtest: DBG: testbed command exited with code 0 1915s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1915s autopkgtest: DBG: testbed command exited with code 0 1915s 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'] 1915s + lsb_release --codename --short 1915s + RELEASE=plucky 1915s + cat 1915s + [ plucky != trusty ] 1915s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1915s Reading package lists... 1915s Building dependency tree... 1915s Reading state information... 1915s Calculating upgrade... 1915s Calculating upgrade... 1915s The following packages were automatically installed and are no longer required: 1915s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1915s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1915s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1915s linux-tools-6.11.0-8-generic 1915s Use 'sudo apt autoremove' to remove them. 1915s The following packages will be upgraded: 1915s base-files gcc-14-base motd-news-config 1915s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1915s Need to get 134 kB of archives. 1915s After this operation, 0 B of additional disk space will be used. 1915s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 1916s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 1916s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 1916s Fetched 134 kB in 0s (330 kB/s) 1916s (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.) 1916s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 1916s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 1916s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 1916s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 1916s Setting up base-files (13.6ubuntu1) ... 1916s Updating /root/.profile to current default. 1917s motd-news.service is a disabled or a static unit not running, not starting it. 1917s (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.) 1917s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 1917s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 1917s Setting up motd-news-config (13.6ubuntu1) ... 1917s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 1917s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 1917s Processing triggers for install-info (7.1.1-1) ... 1917s Processing triggers for man-db (2.13.0-1) ... 1917s Processing triggers for initramfs-tools (0.145ubuntu2) ... 1917s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 1917s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 1921s Using config file '/etc/zipl.conf' 1921s Building bootmap in '/boot' 1921s Adding IPL section 'ubuntu' (default) 1921s Preparing boot device for LD-IPL: vda (0000). 1921s Done. 1921s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1921s + /usr/lib/apt/apt-helper analyze-pattern ?true 1921s + uname -r 1921s + sed s/\./\\./g 1921s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1921s + apt list ?obsolete 1921s + tail -n+2 1921s + cut -d/ -f1 1921s + grep -v ^linux-.*6\.12\.0-15-generic.* 1921s + true 1921s + obsolete_pkgs= 1921s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1921s Reading package lists... 1921s Building dependency tree... 1921s Reading state information... 1921s Solving dependencies... 1921s The following packages will be REMOVED: 1921s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1921s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1921s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1921s linux-tools-6.11.0-8-generic* 1921s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1921s After this operation, 167 MB disk space will be freed. 1921s (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.) 1921s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1921s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1921s Removing libpython3.12t64:s390x (3.12.9-1) ... 1921s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1921s Removing libnsl2:s390x (1.3.0-3build3) ... 1921s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1921s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1922s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1922s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1922s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1922s (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 ... 55930 files and directories currently installed.) 1922s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1922s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1922s + grep -q trusty /etc/lsb-release 1922s + [ ! -d /usr/share/doc/unattended-upgrades ] 1922s + [ ! -d /usr/share/doc/lxd ] 1922s + [ ! -d /usr/share/doc/lxd-client ] 1922s + [ ! -d /usr/share/doc/snapd ] 1922s + type iptables 1922s + cat 1922s + chmod 755 /etc/rc.local 1922s + . /etc/rc.local 1922s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1922s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1922s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1922s + uname -m 1922s + [ s390x = ppc64le ] 1922s + [ -d /run/systemd/system ] 1922s + systemd-detect-virt --quiet --vm 1922s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1922s + cat 1922s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1922s + echo COMPRESS=lz4 1923s autopkgtest: DBG: testbed command exited with code 0 1923s autopkgtest [14:30:24]: upgrading testbed (apt dist-upgrade and autopurge) 1923s 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'] 1923s Reading package lists... 1923s Building dependency tree... 1923s Reading state information... 1923s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1923s Starting 2 pkgProblemResolver with broken count: 0 1923s Done 1923s Entering ResolveByKeep 1923s 1923s Calculating upgrade... 1923s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1923s autopkgtest: DBG: testbed command exited with code 0 1923s 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'] 1924s Reading package lists... 1924s Building dependency tree... 1924s Reading state information... 1924s Starting pkgProblemResolver with broken count: 0 1924s Starting 2 pkgProblemResolver with broken count: 0 1924s Done 1924s Solving dependencies... 1924s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1924s autopkgtest: DBG: testbed command exited with code 0 1924s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1924s autopkgtest: DBG: testbed command exited with code 1 1924s autopkgtest [14:30:26]: rebooting testbed after setup commands that affected boot 1924s autopkgtest: DBG: sending command to testbed: reboot 1942s autopkgtest: DBG: got reply from testbed: ok 1942s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1942s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1942s autopkgtest: DBG: testbed command exited with code 0 1942s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1942s autopkgtest: DBG: got reply from testbed: ok 1942s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1942s autopkgtest: DBG: testbed command exited with code 0 1942s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1943s autopkgtest: DBG: testbed command exited with code 0 1943s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1943s autopkgtest: DBG: testbed command exited with code 0 1943s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1943s autopkgtest: DBG: testbed command exited with code 0 1943s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1943s autopkgtest: DBG: got reply from testbed: ok 1943s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1943s autopkgtest: DBG: testbed command exited with code 0 1943s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1944s autopkgtest: DBG: testbed command exited with code 0 1944s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1944s autopkgtest: DBG: testbed command exited with code 0 1944s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 1944s autopkgtest: DBG: testbed command exited with code 0 1944s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 1944s autopkgtest: DBG: got reply from testbed: ok 1944s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1944s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1944s autopkgtest: DBG: testbed command exited with code 0 1944s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 1944s autopkgtest: DBG: got reply from testbed: ok 1944s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1945s autopkgtest: DBG: testbed command exited with code 0 1945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1945s autopkgtest: DBG: testbed command exited with code 0 1945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1945s autopkgtest: DBG: testbed command exited with code 0 1945s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 1945s autopkgtest: DBG: testbed command exited with code 0 1945s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 1945s autopkgtest: DBG: got reply from testbed: ok 1945s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1945s autopkgtest: DBG: testbed command exited with code 0 1945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1946s autopkgtest: DBG: testbed command exited with code 0 1946s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1946s autopkgtest: DBG: testbed command exited with code 0 1946s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1946s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtuitools', 'python3'] 1946s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtuitools, python3 1946s autopkgtest: DBG: can use apt-get on testbed: True 1946s 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'] 1946s Reading package lists... 1946s Building dependency tree... 1946s Reading state information... 1946s Starting pkgProblemResolver with broken count: 0 1946s Starting 2 pkgProblemResolver with broken count: 0 1946s Done 1946s The following NEW packages will be installed: 1946s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 1946s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 1946s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 1946s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 1946s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 1946s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 1946s libqt5network5t64 libqt5qml5 libqt5widgets5t64 libqt5xml5t64 1946s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 1946s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 1946s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 1946s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 1946s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 1946s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 1946s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtuitools 1946s python3-pyside2.qtwidgets python3-pyside2.qtxml x11-common 1947s 0 upgraded, 71 newly installed, 0 to remove and 0 not upgraded. 1947s Need to get 29.5 MB of archives. 1947s After this operation, 112 MB of additional disk space will be used. 1947s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 1947s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 1947s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 1947s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 1947s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 1947s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 1947s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 1947s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 1947s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 1947s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 1947s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 1947s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 1947s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 1947s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 1947s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 1947s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 1947s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 1947s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 1947s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 1947s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 1947s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 1947s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 1947s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 1947s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 1947s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 1947s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 1947s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 1947s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 1947s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 1947s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 1947s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 1947s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 1947s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 1947s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 1947s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 1947s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 1948s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 1948s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 1948s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 1948s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 1948s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 1948s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 1948s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 1948s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 1948s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 1948s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 1948s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 1948s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 1948s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 1948s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 1948s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 1948s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 1948s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 1948s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 1948s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 1948s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 1948s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 1948s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 1948s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 1948s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 1948s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 1948s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 1948s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 1948s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 1948s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 1948s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-4ubuntu1 [129 kB] 1948s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 1948s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 1948s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 1948s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtxml s390x 5.15.16-3.1 [121 kB] 1948s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtuitools s390x 5.15.16-3.1 [186 kB] 1948s Fetched 29.5 MB in 2s (17.4 MB/s) 1948s Selecting previously unselected package libfreetype6:s390x. 1949s (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 ... 55928 files and directories currently installed.) 1949s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 1949s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 1949s Selecting previously unselected package fonts-dejavu-mono. 1949s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 1949s Unpacking fonts-dejavu-mono (2.37-8) ... 1949s Selecting previously unselected package fonts-dejavu-core. 1949s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 1949s Unpacking fonts-dejavu-core (2.37-8) ... 1949s Selecting previously unselected package fontconfig-config. 1949s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 1949s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 1949s Selecting previously unselected package libfontconfig1:s390x. 1949s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 1949s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1949s Selecting previously unselected package fontconfig. 1949s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 1949s Unpacking fontconfig (2.15.0-2ubuntu1) ... 1949s Selecting previously unselected package libdouble-conversion3:s390x. 1949s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 1949s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 1949s Selecting previously unselected package libdrm-radeon1:s390x. 1949s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 1949s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 1949s Selecting previously unselected package libwayland-server0:s390x. 1949s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 1949s Unpacking libwayland-server0:s390x (1.23.1-3) ... 1949s Selecting previously unselected package libglapi-mesa:s390x. 1949s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 1949s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1949s Selecting previously unselected package libx11-xcb1:s390x. 1949s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 1949s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 1949s Selecting previously unselected package libxcb-dri3-0:s390x. 1949s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-present0:s390x. 1949s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-present0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-randr0:s390x. 1949s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-sync1:s390x. 1949s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-xfixes0:s390x. 1949s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxshmfence1:s390x. 1949s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 1949s Unpacking libxshmfence1:s390x (1.3-1build5) ... 1949s Selecting previously unselected package mesa-libgallium:s390x. 1949s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 1949s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1949s Selecting previously unselected package libgbm1:s390x. 1949s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 1949s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 1949s Selecting previously unselected package libwayland-client0:s390x. 1949s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 1949s Unpacking libwayland-client0:s390x (1.23.1-3) ... 1949s Selecting previously unselected package libxcb-shm0:s390x. 1949s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libegl-mesa0:s390x. 1949s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1949s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1949s Selecting previously unselected package libvulkan1:s390x. 1949s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 1949s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 1949s Selecting previously unselected package libgl1-mesa-dri:s390x. 1949s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 1949s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1949s Selecting previously unselected package libxcb-glx0:s390x. 1949s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxxf86vm1:s390x. 1949s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 1949s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 1949s Selecting previously unselected package libglx-mesa0:s390x. 1949s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 1949s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1949s Selecting previously unselected package libgraphite2-3:s390x. 1949s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 1949s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1949s Selecting previously unselected package libharfbuzz0b:s390x. 1949s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 1949s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 1949s Selecting previously unselected package x11-common. 1949s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 1949s Unpacking x11-common (1:7.7+23ubuntu3) ... 1949s Selecting previously unselected package libice6:s390x. 1949s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 1949s Unpacking libice6:s390x (2:1.1.1-1) ... 1949s Selecting previously unselected package libwacom-common. 1949s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 1949s Unpacking libwacom-common (2.14.0-1) ... 1949s Selecting previously unselected package libwacom9:s390x. 1949s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 1949s Unpacking libwacom9:s390x (2.14.0-1) ... 1949s Selecting previously unselected package libinput-bin. 1949s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 1949s Unpacking libinput-bin (1.27.1-1) ... 1949s Selecting previously unselected package libmtdev1t64:s390x. 1949s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 1949s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 1949s Selecting previously unselected package libinput10:s390x. 1949s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 1949s Unpacking libinput10:s390x (1.27.1-1) ... 1949s Selecting previously unselected package libjpeg-turbo8:s390x. 1949s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 1949s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1949s Selecting previously unselected package libjpeg8:s390x. 1949s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 1949s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 1949s Selecting previously unselected package libmd4c0:s390x. 1949s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 1949s Unpacking libmd4c0:s390x (0.5.2-2) ... 1949s Selecting previously unselected package libpcre2-16-0:s390x. 1949s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 1949s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1949s Selecting previously unselected package libqt5core5t64:s390x. 1949s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1949s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1949s Selecting previously unselected package libqt5dbus5t64:s390x. 1949s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1949s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1949s Selecting previously unselected package libqt5network5t64:s390x. 1949s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1949s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1949s Selecting previously unselected package libqt5qml5:s390x. 1949s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 1949s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 1949s Selecting previously unselected package libshiboken2-py3-5.15t64. 1949s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1949s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1949s Selecting previously unselected package libpyside2-py3-5.15t64. 1949s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 1949s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1949s Selecting previously unselected package libglvnd0:s390x. 1949s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 1949s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 1949s Selecting previously unselected package libegl1:s390x. 1949s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 1949s Unpacking libegl1:s390x (1.7.0-1build1) ... 1949s Selecting previously unselected package libglx0:s390x. 1949s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 1949s Unpacking libglx0:s390x (1.7.0-1build1) ... 1949s Selecting previously unselected package libgl1:s390x. 1949s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 1949s Unpacking libgl1:s390x (1.7.0-1build1) ... 1949s Selecting previously unselected package libsm6:s390x. 1949s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 1949s Unpacking libsm6:s390x (2:1.2.4-1) ... 1949s Selecting previously unselected package libxcb-icccm4:s390x. 1949s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 1949s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 1949s Selecting previously unselected package libxcb-util1:s390x. 1949s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 1949s Unpacking libxcb-util1:s390x (0.4.1-1) ... 1949s Selecting previously unselected package libxcb-image0:s390x. 1949s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 1949s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 1949s Selecting previously unselected package libxcb-keysyms1:s390x. 1949s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 1949s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 1949s Selecting previously unselected package libxcb-render0:s390x. 1949s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-render0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-render-util0:s390x. 1949s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 1949s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 1949s Selecting previously unselected package libxcb-shape0:s390x. 1949s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-xinerama0:s390x. 1949s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-xinput0:s390x. 1949s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxcb-xkb1:s390x. 1949s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 1949s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 1949s Selecting previously unselected package libxkbcommon-x11-0:s390x. 1949s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 1949s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 1949s Selecting previously unselected package libxrender1:s390x. 1949s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 1949s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 1949s Selecting previously unselected package libqt5gui5t64:s390x. 1949s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1949s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Selecting previously unselected package libqt5widgets5t64:s390x. 1950s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1950s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Selecting previously unselected package libqt5xml5t64:s390x. 1950s Preparing to unpack .../65-libqt5xml5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 1950s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Selecting previously unselected package python3-pyside2.qtcore. 1950s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 1950s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 1950s Selecting previously unselected package python3-pyside2.qtgui. 1950s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 1950s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 1950s Selecting previously unselected package python3-pyside2.qtwidgets. 1950s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 1950s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 1950s Selecting previously unselected package python3-pyside2.qtxml. 1950s Preparing to unpack .../69-python3-pyside2.qtxml_5.15.16-3.1_s390x.deb ... 1950s Unpacking python3-pyside2.qtxml (5.15.16-3.1) ... 1950s Selecting previously unselected package python3-pyside2.qtuitools. 1950s Preparing to unpack .../70-python3-pyside2.qtuitools_5.15.16-3.1_s390x.deb ... 1950s Unpacking python3-pyside2.qtuitools (5.15.16-3.1) ... 1950s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 1950s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 1950s Setting up libwayland-server0:s390x (1.23.1-3) ... 1950s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 1950s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 1950s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 1950s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 1950s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 1950s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 1950s Setting up libxcb-render0:s390x (1.17.0-2) ... 1950s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 1950s Setting up libglvnd0:s390x (1.7.0-1build1) ... 1950s Setting up libxcb-glx0:s390x (1.17.0-2) ... 1950s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 1950s Setting up libxcb-shape0:s390x (1.17.0-2) ... 1950s Setting up x11-common (1:7.7+23ubuntu3) ... 1950s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 1950s Setting up libxcb-shm0:s390x (1.17.0-2) ... 1950s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 1950s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 1950s Setting up libxcb-util1:s390x (0.4.1-1) ... 1950s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 1950s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 1950s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 1950s Setting up libxcb-present0:s390x (1.17.0-2) ... 1950s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 1950s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 1950s Setting up libxcb-sync1:s390x (1.17.0-2) ... 1950s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 1950s Setting up fonts-dejavu-mono (2.37-8) ... 1950s Setting up fonts-dejavu-core (2.37-8) ... 1950s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 1950s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 1950s Setting up libvulkan1:s390x (1.4.304.0-1) ... 1950s Setting up libmtdev1t64:s390x (1.1.7-1) ... 1950s Setting up libxshmfence1:s390x (1.3-1build5) ... 1950s Setting up libxcb-randr0:s390x (1.17.0-2) ... 1950s Setting up libmd4c0:s390x (0.5.2-2) ... 1950s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 1950s Setting up libwacom-common (2.14.0-1) ... 1950s Setting up libwayland-client0:s390x (1.23.1-3) ... 1950s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 1950s Setting up libice6:s390x (2:1.1.1-1) ... 1950s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 1950s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 1950s Setting up libwacom9:s390x (2.14.0-1) ... 1950s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 1950s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 1950s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1950s Setting up libinput-bin (1.27.1-1) ... 1950s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 1950s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 1950s Setting up libegl1:s390x (1.7.0-1build1) ... 1950s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 1950s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 1950s Setting up libsm6:s390x (2:1.2.4-1) ... 1950s Setting up libinput10:s390x (1.27.1-1) ... 1950s Setting up fontconfig (2.15.0-2ubuntu1) ... 1952s Regenerating fonts cache... done. 1952s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 1952s Setting up libglx0:s390x (1.7.0-1build1) ... 1952s Setting up libgl1:s390x (1.7.0-1build1) ... 1952s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 1952s Setting up python3-pyside2.qtxml (5.15.16-3.1) ... 1952s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1952s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 1952s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 1952s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 1952s Setting up python3-pyside2.qtuitools (5.15.16-3.1) ... 1952s Processing triggers for man-db (2.13.0-1) ... 1953s Processing triggers for udev (257.2-3ubuntu1) ... 1953s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1953s autopkgtest: DBG: testbed command exited with code 0 1953s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtuitools'], kind short, sout pipe, serr pipe, env [] 1953s autopkgtest: DBG: testbed command exited with code 0 1953s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command17-packages.all"], kind short, sout raw, serr pipe, env [] 1954s autopkgtest: DBG: testbed command exited with code 0 1954s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command17-packages.all /tmp/autopkgtest-work.nwculqua/out/command17-packages.all 1954s autopkgtest: DBG: got reply from testbed: ok 1954s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 1954s autopkgtest: DBG: testbed command exited with code 1 1954s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 1954s autopkgtest: DBG: testbed command exited with code 0 1954s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 1956s autopkgtest: DBG: got reply from testbed: ok 1956s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 1956s autopkgtest: DBG: testbed command exited with code 0 1956s autopkgtest [14:30:58]: test command17: debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools 1956s autopkgtest [14:30:58]: test command17: [----------------------- 1956s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command17-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command17-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command17-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools'"], kind test, sout raw, serr raw, env [] 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command17-artifacts 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command17-stderr 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command17-stdout 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtuitools PySide2.QtUiTools 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.cBFipF8Gyp/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command17-stdout 1956s Testing python3 package python3-pyside2.qtuitools 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.cBFipF8Gyp/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command17-stdout 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2249 to /tmp/autopkgtest_script_pid 1956s Testing with python3.13: 1956s 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 1956s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 1956s autopkgtest: DBG: testbed command exited with code 0 1957s autopkgtest [14:30:59]: test command17: -----------------------] 1957s autopkgtest: DBG: testbed executing test finished with exit status 0 1957s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command17-stdout /tmp/autopkgtest-work.nwculqua/out/command17-stdout 1957s autopkgtest: DBG: got reply from testbed: ok 1957s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command17-stderr /tmp/autopkgtest-work.nwculqua/out/command17-stderr 1957s autopkgtest: DBG: got reply from testbed: ok 1957s command17 PASS (superficial) 1957s autopkgtest [14:30:59]: test command17: - - - - - - - - - - results - - - - - - - - - - 1957s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command17-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 1957s autopkgtest: DBG: got reply from testbed: ok 1957s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command17-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1957s autopkgtest: DBG: testbed command exited with code 0 1957s autopkgtest [14:30:59]: test command18: preparing testbed 1957s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtuitools', 'python3'], deps_new=['python3-pyside2.qtopengl', 'python3'] 1957s autopkgtest: DBG: testbed reset 1957s autopkgtest: DBG: sending command to testbed: revert 2029s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 2029s autopkgtest: DBG: sending command to testbed: print-execute-command 2029s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 2029s autopkgtest: DBG: sending command to testbed: capabilities 2029s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 2029s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 2029s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2029s autopkgtest: DBG: testbed command exited with code 0 2029s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 2029s autopkgtest: DBG: got reply from testbed: ok 2029s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2029s autopkgtest: DBG: testbed command exited with code 0 2029s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2029s autopkgtest: DBG: testbed command exited with code 0 2029s autopkgtest [14:32:11]: testbed dpkg architecture: s390x 2029s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2030s autopkgtest: DBG: testbed command exited with code 0 2030s autopkgtest [14:32:12]: testbed apt version: 2.9.30ubuntu1 2030s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2030s autopkgtest: DBG: testbed command exited with code 0 2030s autopkgtest: DBG: testbed has eatmydata 2030s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2030s autopkgtest: DBG: testbed command exited with code 0 2030s autopkgtest [14:32:12]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2030s 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 [] 2030s autopkgtest: DBG: testbed command exited with code 0 2030s autopkgtest [14:32:12]: testbed release detected to be: plucky 2030s 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 [] 2030s autopkgtest: DBG: testbed command exited with code 0 2030s 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 [] 2030s autopkgtest: DBG: testbed command exited with code 0 2030s autopkgtest: DBG: adding APT source: Types: deb deb-src 2030s URIs: http://ftpmaster.internal/ubuntu/ 2030s Suites: plucky-proposed 2030s Components: main restricted universe multiverse 2030s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2030s 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 [] 2031s autopkgtest: DBG: testbed command exited with code 0 2031s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2031s Package: * 2031s Pin: release plucky-proposed 2031s Pin-Priority: 500 2031s 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 [] 2031s autopkgtest: DBG: testbed command exited with code 0 2031s autopkgtest [14:32:13]: updating testbed package index (apt update) 2031s 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'] 2031s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2031s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2031s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2032s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2032s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 2032s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2032s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 2032s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 2032s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 2032s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2032s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 2032s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 2032s Fetched 1711 kB in 1s (1938 kB/s) 2032s Reading package lists... 2033s autopkgtest: DBG: testbed command exited with code 0 2033s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2033s Package: * 2033s Pin: release plucky-proposed 2033s Pin-Priority: 100 2033s 2033s Package: src:llvm-toolchain-20:any 2033s Pin: release plucky-proposed 2033s Pin-Priority: 995 2033s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2033s autopkgtest: DBG: testbed command exited with code 0 2033s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2033s autopkgtest: DBG: testbed command exited with code 0 2033s 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'] 2033s + lsb_release --codename --short 2033s + RELEASE=plucky 2033s + cat 2033s + [ plucky != trusty ] 2033s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2033s Reading package lists... 2033s Building dependency tree... 2033s Reading state information... 2033s Calculating upgrade... 2033s Calculating upgrade... 2033s The following packages were automatically installed and are no longer required: 2033s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2033s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2033s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2033s linux-tools-6.11.0-8-generic 2033s Use 'sudo apt autoremove' to remove them. 2033s The following packages will be upgraded: 2033s base-files gcc-14-base motd-news-config 2034s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2034s Need to get 134 kB of archives. 2034s After this operation, 0 B of additional disk space will be used. 2034s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 2034s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 2034s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 2034s Fetched 134 kB in 0s (334 kB/s) 2034s (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.) 2034s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 2034s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 2034s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 2034s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 2034s Setting up base-files (13.6ubuntu1) ... 2034s Updating /root/.profile to current default. 2035s motd-news.service is a disabled or a static unit not running, not starting it. 2035s (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.) 2035s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 2035s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 2035s Setting up motd-news-config (13.6ubuntu1) ... 2035s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 2035s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 2035s Processing triggers for install-info (7.1.1-1) ... 2035s Processing triggers for man-db (2.13.0-1) ... 2035s Processing triggers for initramfs-tools (0.145ubuntu2) ... 2035s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 2035s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 2039s Using config file '/etc/zipl.conf' 2039s Building bootmap in '/boot' 2039s Adding IPL section 'ubuntu' (default) 2039s Preparing boot device for LD-IPL: vda (0000). 2039s Done. 2039s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2039s + /usr/lib/apt/apt-helper analyze-pattern ?true 2039s + uname -r 2039s + sed s/\./\\./g 2039s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2039s + apt list ?obsolete 2039s + tail -n+2 2039s + cut+ -d/ -f1 2039s grep -v ^linux-.*6\.12\.0-15-generic.* 2039s + true 2039s + obsolete_pkgs= 2039s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2039s Reading package lists... 2039s Building dependency tree... 2039s Reading state information... 2039s Solving dependencies... 2039s The following packages will be REMOVED: 2039s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2039s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2039s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2039s linux-tools-6.11.0-8-generic* 2040s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2040s After this operation, 167 MB disk space will be freed. 2040s (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.) 2040s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2040s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2040s Removing libpython3.12t64:s390x (3.12.9-1) ... 2040s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2040s Removing libnsl2:s390x (1.3.0-3build3) ... 2040s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2040s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2040s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2040s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2040s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2041s (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 ... 55930 files and directories currently installed.) 2041s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2041s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2041s + grep -q trusty /etc/lsb-release 2041s + [ ! -d /usr/share/doc/unattended-upgrades ] 2041s + [ ! -d /usr/share/doc/lxd ] 2041s + [ ! -d /usr/share/doc/lxd-client ] 2041s + [ ! -d /usr/share/doc/snapd ] 2041s + type iptables 2041s + cat 2041s + chmod 755 /etc/rc.local 2041s + . /etc/rc.local 2041s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2041s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2041s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2041s + uname -m 2041s + [ s390x = ppc64le ] 2041s + [ -d /run/systemd/system ] 2041s + systemd-detect-virt --quiet --vm 2041s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2041s + cat 2041s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2041s + echo COMPRESS=lz4 2041s autopkgtest: DBG: testbed command exited with code 0 2041s autopkgtest [14:32:23]: upgrading testbed (apt dist-upgrade and autopurge) 2041s 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'] 2041s Reading package lists... 2041s Building dependency tree... 2041s Reading state information... 2041s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2041s Starting 2 pkgProblemResolver with broken count: 0 2041s Done 2041s Entering ResolveByKeep 2041s 2041s Calculating upgrade... 2042s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2042s autopkgtest: DBG: testbed command exited with code 0 2042s 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'] 2042s Reading package lists... 2042s Building dependency tree... 2042s Reading state information... 2042s Starting pkgProblemResolver with broken count: 0 2042s Starting 2 pkgProblemResolver with broken count: 0 2042s Done 2042s Solving dependencies... 2042s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2042s autopkgtest: DBG: testbed command exited with code 0 2042s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2042s autopkgtest: DBG: testbed command exited with code 1 2042s autopkgtest [14:32:24]: rebooting testbed after setup commands that affected boot 2042s autopkgtest: DBG: sending command to testbed: reboot 2059s autopkgtest: DBG: got reply from testbed: ok 2059s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2059s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2059s autopkgtest: DBG: testbed command exited with code 0 2059s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2060s autopkgtest: DBG: got reply from testbed: ok 2060s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2060s autopkgtest: DBG: testbed command exited with code 0 2060s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2060s autopkgtest: DBG: testbed command exited with code 0 2060s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2060s autopkgtest: DBG: testbed command exited with code 0 2060s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2060s autopkgtest: DBG: testbed command exited with code 0 2060s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2060s autopkgtest: DBG: got reply from testbed: ok 2060s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2061s autopkgtest: DBG: testbed command exited with code 0 2061s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2061s autopkgtest: DBG: testbed command exited with code 0 2061s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2061s autopkgtest: DBG: testbed command exited with code 0 2061s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 2061s autopkgtest: DBG: testbed command exited with code 0 2061s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 2061s autopkgtest: DBG: got reply from testbed: ok 2061s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2061s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2061s autopkgtest: DBG: testbed command exited with code 0 2061s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2062s autopkgtest: DBG: got reply from testbed: ok 2062s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2062s autopkgtest: DBG: testbed command exited with code 0 2062s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2062s autopkgtest: DBG: testbed command exited with code 0 2062s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2062s autopkgtest: DBG: testbed command exited with code 0 2062s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2062s autopkgtest: DBG: testbed command exited with code 0 2062s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2063s autopkgtest: DBG: got reply from testbed: ok 2063s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2063s autopkgtest: DBG: testbed command exited with code 0 2063s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2063s autopkgtest: DBG: testbed command exited with code 0 2063s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2063s autopkgtest: DBG: testbed command exited with code 0 2063s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2063s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtopengl', 'python3'] 2063s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtopengl, python3 2063s autopkgtest: DBG: can use apt-get on testbed: True 2063s 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'] 2063s Reading package lists... 2063s Building dependency tree... 2063s Reading state information... 2064s Starting pkgProblemResolver with broken count: 0 2064s Starting 2 pkgProblemResolver with broken count: 0 2064s Done 2064s The following NEW packages will be installed: 2064s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2064s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2064s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2064s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2064s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2064s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2064s libqt5network5t64 libqt5opengl5t64 libqt5qml5 libqt5widgets5t64 2064s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 2064s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 2064s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 2064s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 2064s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 2064s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 2064s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtopengl 2064s python3-pyside2.qtwidgets x11-common 2064s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 2064s Need to get 29.3 MB of archives. 2064s After this operation, 112 MB of additional disk space will be used. 2064s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2064s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2064s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2064s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2064s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2064s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2064s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 2064s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2064s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 2064s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2064s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2064s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2065s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2065s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2065s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2065s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2065s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2065s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2065s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2065s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 2065s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2065s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2065s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2065s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2065s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2065s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2065s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2065s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2065s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2065s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2065s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2065s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2065s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2065s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2065s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2065s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2065s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2065s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2065s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2065s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2065s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2065s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2065s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2065s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2065s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2065s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2065s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2065s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2065s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2065s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2065s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2065s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2065s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2065s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2065s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2065s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2065s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2065s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2065s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2065s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2065s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2065s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2065s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2065s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2066s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 2066s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5opengl5t64 s390x 5.15.15+dfsg-4ubuntu1 [156 kB] 2066s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2066s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2066s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 2066s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtopengl s390x 5.15.16-3.1 [120 kB] 2066s Fetched 29.3 MB in 2s (13.7 MB/s) 2066s Selecting previously unselected package libfreetype6:s390x. 2066s (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 ... 55928 files and directories currently installed.) 2066s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2066s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2066s Selecting previously unselected package fonts-dejavu-mono. 2066s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2066s Unpacking fonts-dejavu-mono (2.37-8) ... 2066s Selecting previously unselected package fonts-dejavu-core. 2066s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2066s Unpacking fonts-dejavu-core (2.37-8) ... 2066s Selecting previously unselected package fontconfig-config. 2066s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2067s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2067s Selecting previously unselected package libfontconfig1:s390x. 2067s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2067s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2067s Selecting previously unselected package fontconfig. 2067s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2067s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2067s Selecting previously unselected package libdouble-conversion3:s390x. 2067s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 2067s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 2067s Selecting previously unselected package libdrm-radeon1:s390x. 2067s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2067s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2067s Selecting previously unselected package libwayland-server0:s390x. 2067s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 2067s Unpacking libwayland-server0:s390x (1.23.1-3) ... 2067s Selecting previously unselected package libglapi-mesa:s390x. 2067s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2067s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2067s Selecting previously unselected package libx11-xcb1:s390x. 2067s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2067s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2067s Selecting previously unselected package libxcb-dri3-0:s390x. 2067s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-present0:s390x. 2067s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-randr0:s390x. 2067s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-sync1:s390x. 2067s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-xfixes0:s390x. 2067s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxshmfence1:s390x. 2067s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2067s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2067s Selecting previously unselected package mesa-libgallium:s390x. 2067s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2067s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2067s Selecting previously unselected package libgbm1:s390x. 2067s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2067s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2067s Selecting previously unselected package libwayland-client0:s390x. 2067s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 2067s Unpacking libwayland-client0:s390x (1.23.1-3) ... 2067s Selecting previously unselected package libxcb-shm0:s390x. 2067s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libegl-mesa0:s390x. 2067s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2067s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2067s Selecting previously unselected package libvulkan1:s390x. 2067s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2067s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2067s Selecting previously unselected package libgl1-mesa-dri:s390x. 2067s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2067s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2067s Selecting previously unselected package libxcb-glx0:s390x. 2067s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxxf86vm1:s390x. 2067s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2067s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2067s Selecting previously unselected package libglx-mesa0:s390x. 2067s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2067s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2067s Selecting previously unselected package libgraphite2-3:s390x. 2067s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2067s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2067s Selecting previously unselected package libharfbuzz0b:s390x. 2067s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2067s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2067s Selecting previously unselected package x11-common. 2067s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2067s Unpacking x11-common (1:7.7+23ubuntu3) ... 2067s Selecting previously unselected package libice6:s390x. 2067s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2067s Unpacking libice6:s390x (2:1.1.1-1) ... 2067s Selecting previously unselected package libwacom-common. 2067s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2067s Unpacking libwacom-common (2.14.0-1) ... 2067s Selecting previously unselected package libwacom9:s390x. 2067s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2067s Unpacking libwacom9:s390x (2.14.0-1) ... 2067s Selecting previously unselected package libinput-bin. 2067s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2067s Unpacking libinput-bin (1.27.1-1) ... 2067s Selecting previously unselected package libmtdev1t64:s390x. 2067s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2067s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2067s Selecting previously unselected package libinput10:s390x. 2067s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2067s Unpacking libinput10:s390x (1.27.1-1) ... 2067s Selecting previously unselected package libjpeg-turbo8:s390x. 2067s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2067s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2067s Selecting previously unselected package libjpeg8:s390x. 2067s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2067s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2067s Selecting previously unselected package libmd4c0:s390x. 2067s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2067s Unpacking libmd4c0:s390x (0.5.2-2) ... 2067s Selecting previously unselected package libpcre2-16-0:s390x. 2067s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2067s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2067s Selecting previously unselected package libqt5core5t64:s390x. 2067s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2067s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2067s Selecting previously unselected package libqt5dbus5t64:s390x. 2067s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2067s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2067s Selecting previously unselected package libqt5network5t64:s390x. 2067s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2067s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2067s Selecting previously unselected package libqt5qml5:s390x. 2067s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2067s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2067s Selecting previously unselected package libshiboken2-py3-5.15t64. 2067s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2067s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2067s Selecting previously unselected package libpyside2-py3-5.15t64. 2067s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2067s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2067s Selecting previously unselected package libglvnd0:s390x. 2067s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2067s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2067s Selecting previously unselected package libegl1:s390x. 2067s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2067s Unpacking libegl1:s390x (1.7.0-1build1) ... 2067s Selecting previously unselected package libglx0:s390x. 2067s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2067s Unpacking libglx0:s390x (1.7.0-1build1) ... 2067s Selecting previously unselected package libgl1:s390x. 2067s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2067s Unpacking libgl1:s390x (1.7.0-1build1) ... 2067s Selecting previously unselected package libsm6:s390x. 2067s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2067s Unpacking libsm6:s390x (2:1.2.4-1) ... 2067s Selecting previously unselected package libxcb-icccm4:s390x. 2067s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2067s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2067s Selecting previously unselected package libxcb-util1:s390x. 2067s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2067s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2067s Selecting previously unselected package libxcb-image0:s390x. 2067s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2067s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2067s Selecting previously unselected package libxcb-keysyms1:s390x. 2067s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2067s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2067s Selecting previously unselected package libxcb-render0:s390x. 2067s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-render-util0:s390x. 2067s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2067s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2067s Selecting previously unselected package libxcb-shape0:s390x. 2067s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-xinerama0:s390x. 2067s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-xinput0:s390x. 2067s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxcb-xkb1:s390x. 2067s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2067s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2067s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2067s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2067s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2067s Selecting previously unselected package libxrender1:s390x. 2067s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2067s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2067s Selecting previously unselected package libqt5gui5t64:s390x. 2067s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2067s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2067s Selecting previously unselected package libqt5widgets5t64:s390x. 2067s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2067s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2067s Selecting previously unselected package libqt5opengl5t64:s390x. 2067s Preparing to unpack .../65-libqt5opengl5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2067s Unpacking libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2067s Selecting previously unselected package python3-pyside2.qtcore. 2067s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2067s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2068s Selecting previously unselected package python3-pyside2.qtgui. 2068s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2068s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2068s Selecting previously unselected package python3-pyside2.qtwidgets. 2068s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 2068s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 2068s Selecting previously unselected package python3-pyside2.qtopengl. 2068s Preparing to unpack .../69-python3-pyside2.qtopengl_5.15.16-3.1_s390x.deb ... 2068s Unpacking python3-pyside2.qtopengl (5.15.16-3.1) ... 2068s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2068s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2068s Setting up libwayland-server0:s390x (1.23.1-3) ... 2068s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2068s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 2068s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2068s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2068s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2068s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2068s Setting up libxcb-render0:s390x (1.17.0-2) ... 2068s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2068s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2068s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2068s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2068s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2068s Setting up x11-common (1:7.7+23ubuntu3) ... 2068s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2068s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2068s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2068s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2068s Setting up libxcb-util1:s390x (0.4.1-1) ... 2068s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2068s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2068s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2068s Setting up libxcb-present0:s390x (1.17.0-2) ... 2068s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2068s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2068s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2068s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2068s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2068s Setting up fonts-dejavu-mono (2.37-8) ... 2068s Setting up fonts-dejavu-core (2.37-8) ... 2068s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2068s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2068s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2068s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2068s Setting up libxshmfence1:s390x (1.3-1build5) ... 2068s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2068s Setting up libmd4c0:s390x (0.5.2-2) ... 2068s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2068s Setting up libwacom-common (2.14.0-1) ... 2068s Setting up libwayland-client0:s390x (1.23.1-3) ... 2068s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2068s Setting up libice6:s390x (2:1.1.1-1) ... 2068s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2068s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2068s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2068s Setting up libwacom9:s390x (2.14.0-1) ... 2068s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2068s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2068s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2068s Setting up libinput-bin (1.27.1-1) ... 2068s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2068s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2068s Setting up libegl1:s390x (1.7.0-1build1) ... 2068s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2068s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2068s Setting up libsm6:s390x (2:1.2.4-1) ... 2068s Setting up libinput10:s390x (1.27.1-1) ... 2068s Setting up fontconfig (2.15.0-2ubuntu1) ... 2070s Regenerating fonts cache... done. 2070s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2070s Setting up libglx0:s390x (1.7.0-1build1) ... 2070s Setting up libgl1:s390x (1.7.0-1build1) ... 2070s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2070s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2070s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2070s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2070s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 2070s Setting up libqt5opengl5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2070s Setting up python3-pyside2.qtopengl (5.15.16-3.1) ... 2070s Processing triggers for man-db (2.13.0-1) ... 2071s Processing triggers for udev (257.2-3ubuntu1) ... 2071s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2071s autopkgtest: DBG: testbed command exited with code 0 2071s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtopengl'], kind short, sout pipe, serr pipe, env [] 2071s autopkgtest: DBG: testbed command exited with code 0 2071s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command18-packages.all"], kind short, sout raw, serr pipe, env [] 2072s autopkgtest: DBG: testbed command exited with code 0 2072s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command18-packages.all /tmp/autopkgtest-work.nwculqua/out/command18-packages.all 2072s autopkgtest: DBG: got reply from testbed: ok 2072s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 2072s autopkgtest: DBG: testbed command exited with code 1 2072s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 2072s autopkgtest: DBG: testbed command exited with code 0 2072s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 2074s autopkgtest: DBG: got reply from testbed: ok 2074s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 2074s autopkgtest: DBG: testbed command exited with code 0 2074s autopkgtest [14:32:56]: test command18: debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL 2074s autopkgtest [14:32:56]: test command18: [----------------------- 2074s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command18-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command18-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command18-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL'"], kind test, sout raw, serr raw, env [] 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command18-artifacts 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command18-stderr 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command18-stdout 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtopengl PySide2.QtOpenGL 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.zDjH5tVq1C/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command18-stdout 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.zDjH5tVq1C/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command18-stdout 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2241 to /tmp/autopkgtest_script_pid 2074s Testing python3 package python3-pyside2.qtopengl 2074s Testing with python3.13: 2074s 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 2074s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 2074s autopkgtest: DBG: testbed command exited with code 0 2075s autopkgtest [14:32:57]: test command18: -----------------------] 2075s autopkgtest: DBG: testbed executing test finished with exit status 0 2075s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command18-stdout /tmp/autopkgtest-work.nwculqua/out/command18-stdout 2075s autopkgtest: DBG: got reply from testbed: ok 2075s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command18-stderr /tmp/autopkgtest-work.nwculqua/out/command18-stderr 2075s autopkgtest: DBG: got reply from testbed: ok 2075s autopkgtest [14:32:57]: test command18: - - - - - - - - - - results - - - - - - - - - - 2075s command18 PASS (superficial) 2075s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command18-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 2075s autopkgtest: DBG: got reply from testbed: ok 2075s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command18-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2075s autopkgtest: DBG: testbed command exited with code 0 2075s autopkgtest [14:32:57]: test command19: preparing testbed 2075s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtopengl', 'python3'], deps_new=['python3-pyside2.qtsql', 'python3'] 2075s autopkgtest: DBG: testbed reset 2075s autopkgtest: DBG: sending command to testbed: revert 2151s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 2151s autopkgtest: DBG: sending command to testbed: print-execute-command 2151s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 2151s autopkgtest: DBG: sending command to testbed: capabilities 2151s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 2151s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 2151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2151s autopkgtest: DBG: testbed command exited with code 0 2151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 2151s autopkgtest: DBG: got reply from testbed: ok 2151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2152s autopkgtest: DBG: testbed command exited with code 0 2152s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2152s autopkgtest: DBG: testbed command exited with code 0 2152s autopkgtest [14:34:14]: testbed dpkg architecture: s390x 2152s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2152s autopkgtest: DBG: testbed command exited with code 0 2152s autopkgtest [14:34:14]: testbed apt version: 2.9.30ubuntu1 2152s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2152s autopkgtest: DBG: testbed command exited with code 0 2152s autopkgtest: DBG: testbed has eatmydata 2152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2152s autopkgtest: DBG: testbed command exited with code 0 2152s autopkgtest [14:34:14]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2152s 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 [] 2153s autopkgtest: DBG: testbed command exited with code 0 2153s autopkgtest [14:34:15]: testbed release detected to be: plucky 2153s 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 [] 2153s autopkgtest: DBG: testbed command exited with code 0 2153s 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 [] 2153s autopkgtest: DBG: testbed command exited with code 0 2153s autopkgtest: DBG: adding APT source: Types: deb deb-src 2153s URIs: http://ftpmaster.internal/ubuntu/ 2153s Suites: plucky-proposed 2153s Components: main restricted universe multiverse 2153s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2153s 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 [] 2153s autopkgtest: DBG: testbed command exited with code 0 2153s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2153s Package: * 2153s Pin: release plucky-proposed 2153s Pin-Priority: 500 2153s 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 [] 2153s autopkgtest: DBG: testbed command exited with code 0 2153s autopkgtest [14:34:15]: updating testbed package index (apt update) 2153s 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'] 2154s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2154s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2154s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2154s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2154s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 2154s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2154s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 2154s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 2154s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 2154s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2154s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 2154s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 2154s Fetched 1711 kB in 1s (1961 kB/s) 2155s Reading package lists... 2155s autopkgtest: DBG: testbed command exited with code 0 2155s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2155s Package: * 2155s Pin: release plucky-proposed 2155s Pin-Priority: 100 2155s 2155s Package: src:llvm-toolchain-20:any 2155s Pin: release plucky-proposed 2155s Pin-Priority: 995 2155s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2155s autopkgtest: DBG: testbed command exited with code 0 2155s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2155s autopkgtest: DBG: testbed command exited with code 0 2155s 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'] 2155s + lsb_release --codename --short 2155s + RELEASE=plucky 2155s + cat 2155s + [ plucky != trusty ] 2155s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2155s Reading package lists... 2156s Building dependency tree... 2156s Reading state information... 2156s Calculating upgrade... 2156s Calculating upgrade... 2156s The following packages were automatically installed and are no longer required: 2156s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2156s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2156s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2156s linux-tools-6.11.0-8-generic 2156s Use 'sudo apt autoremove' to remove them. 2156s The following packages will be upgraded: 2156s base-files gcc-14-base motd-news-config 2156s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2156s Need to get 134 kB of archives. 2156s After this operation, 0 B of additional disk space will be used. 2156s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 2156s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 2156s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 2156s Fetched 134 kB in 0s (338 kB/s) 2157s (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.) 2157s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 2157s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 2157s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 2157s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 2157s Setting up base-files (13.6ubuntu1) ... 2157s Updating /root/.profile to current default. 2157s motd-news.service is a disabled or a static unit not running, not starting it. 2157s (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.) 2157s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 2157s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 2157s Setting up motd-news-config (13.6ubuntu1) ... 2157s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 2157s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 2157s Processing triggers for install-info (7.1.1-1) ... 2157s Processing triggers for man-db (2.13.0-1) ... 2157s Processing triggers for initramfs-tools (0.145ubuntu2) ... 2157s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 2157s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 2161s Using config file '/etc/zipl.conf' 2161s Building bootmap in '/boot' 2161s Adding IPL section 'ubuntu' (default) 2161s Preparing boot device for LD-IPL: vda (0000). 2161s Done. 2161s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2161s + /usr/lib/apt/apt-helper analyze-pattern ?true 2161s + uname -r 2161s + sed s/\./\\./g 2161s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2161s + apt list ?obsolete 2161s + tail -n+2 2161s + grep -v ^linux-.*6\.12\.0-15-generic.* 2161s + cut -d/ -f1 2161s + true 2161s + obsolete_pkgs= 2161s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2161s Reading package lists... 2161s Building dependency tree... 2161s Reading state information... 2161s Solving dependencies... 2162s The following packages will be REMOVED: 2162s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2162s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2162s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2162s linux-tools-6.11.0-8-generic* 2162s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2162s After this operation, 167 MB disk space will be freed. 2162s (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.) 2162s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2162s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2162s Removing libpython3.12t64:s390x (3.12.9-1) ... 2162s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2162s Removing libnsl2:s390x (1.3.0-3build3) ... 2162s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2162s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2162s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2163s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2163s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2163s (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 ... 55930 files and directories currently installed.) 2163s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2163s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2163s + grep -q trusty /etc/lsb-release 2163s + [ ! -d /usr/share/doc/unattended-upgrades ] 2163s + [ ! -d /usr/share/doc/lxd ] 2163s + [ ! -d /usr/share/doc/lxd-client ] 2163s + [ ! -d /usr/share/doc/snapd ] 2163s + type iptables 2163s + cat 2163s + chmod 755 /etc/rc.local 2163s + . /etc/rc.local 2163s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2163s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2163s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2163s + uname -m 2163s + [ s390x = ppc64le ] 2163s + [ -d /run/systemd/system ] 2163s + systemd-detect-virt --quiet --vm 2163s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2163s + cat 2163s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2163s + echo COMPRESS=lz4 2163s autopkgtest: DBG: testbed command exited with code 0 2163s autopkgtest [14:34:25]: upgrading testbed (apt dist-upgrade and autopurge) 2163s 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'] 2163s Reading package lists... 2163s Building dependency tree... 2163s Reading state information... 2163s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2163s Starting 2 pkgProblemResolver with broken count: 0 2163s Done 2164s Entering ResolveByKeep 2164s 2164s Calculating upgrade... 2164s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2164s autopkgtest: DBG: testbed command exited with code 0 2164s 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'] 2164s Reading package lists... 2164s Building dependency tree... 2164s Reading state information... 2164s Starting pkgProblemResolver with broken count: 0 2164s Starting 2 pkgProblemResolver with broken count: 0 2164s Done 2164s Solving dependencies... 2164s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2164s autopkgtest: DBG: testbed command exited with code 0 2164s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2165s autopkgtest: DBG: testbed command exited with code 1 2165s autopkgtest [14:34:27]: rebooting testbed after setup commands that affected boot 2165s autopkgtest: DBG: sending command to testbed: reboot 2180s autopkgtest: DBG: got reply from testbed: ok 2180s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2180s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2180s autopkgtest: DBG: testbed command exited with code 0 2180s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2180s autopkgtest: DBG: got reply from testbed: ok 2180s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2181s autopkgtest: DBG: testbed command exited with code 0 2181s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2181s autopkgtest: DBG: testbed command exited with code 0 2181s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2181s autopkgtest: DBG: testbed command exited with code 0 2181s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2181s autopkgtest: DBG: testbed command exited with code 0 2181s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2181s autopkgtest: DBG: got reply from testbed: ok 2181s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2182s autopkgtest: DBG: testbed command exited with code 0 2182s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2182s autopkgtest: DBG: testbed command exited with code 0 2182s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2182s autopkgtest: DBG: testbed command exited with code 0 2182s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 2182s autopkgtest: DBG: testbed command exited with code 0 2182s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 2182s autopkgtest: DBG: got reply from testbed: ok 2182s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2182s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2182s autopkgtest: DBG: testbed command exited with code 0 2182s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2183s autopkgtest: DBG: got reply from testbed: ok 2183s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2183s autopkgtest: DBG: testbed command exited with code 0 2183s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2183s autopkgtest: DBG: testbed command exited with code 0 2183s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2183s autopkgtest: DBG: testbed command exited with code 0 2183s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2183s autopkgtest: DBG: testbed command exited with code 0 2183s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2183s autopkgtest: DBG: got reply from testbed: ok 2183s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2184s autopkgtest: DBG: testbed command exited with code 0 2184s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2184s autopkgtest: DBG: testbed command exited with code 0 2184s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2184s autopkgtest: DBG: testbed command exited with code 0 2184s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2184s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtsql', 'python3'] 2184s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtsql, python3 2184s autopkgtest: DBG: can use apt-get on testbed: True 2184s 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'] 2184s Reading package lists... 2184s Building dependency tree... 2184s Reading state information... 2184s Starting pkgProblemResolver with broken count: 0 2184s Starting 2 pkgProblemResolver with broken count: 0 2184s Done 2185s The following NEW packages will be installed: 2185s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2185s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2185s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2185s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2185s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2185s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2185s libqt5network5t64 libqt5qml5 libqt5sql5t64 libqt5widgets5t64 2185s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 2185s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 2185s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 2185s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 2185s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 2185s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 2185s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtsql 2185s python3-pyside2.qtwidgets x11-common 2185s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 2185s Need to get 29.4 MB of archives. 2185s After this operation, 112 MB of additional disk space will be used. 2185s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2185s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2185s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2186s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2186s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2186s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2186s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 2186s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2186s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 2186s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2186s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2186s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2186s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2186s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2186s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2186s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2186s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2186s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2187s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2187s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 2187s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2187s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2187s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2187s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2187s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2187s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2187s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2187s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2187s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2187s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2187s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2187s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2187s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2187s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2187s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2187s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2187s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2187s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2187s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2188s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2188s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2188s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2188s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2188s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2188s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2188s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2188s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2188s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2188s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2188s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2188s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2188s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2188s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2188s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2188s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2188s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2188s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2188s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2188s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2188s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2188s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2188s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2188s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2188s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2188s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-4ubuntu1 [130 kB] 2188s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 2189s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2189s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2189s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 2189s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtsql s390x 5.15.16-3.1 [160 kB] 2189s Fetched 29.4 MB in 4s (7081 kB/s) 2189s Selecting previously unselected package libfreetype6:s390x. 2189s (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 ... 55928 files and directories currently installed.) 2189s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2189s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2189s Selecting previously unselected package fonts-dejavu-mono. 2189s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2189s Unpacking fonts-dejavu-mono (2.37-8) ... 2189s Selecting previously unselected package fonts-dejavu-core. 2189s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2189s Unpacking fonts-dejavu-core (2.37-8) ... 2189s Selecting previously unselected package fontconfig-config. 2189s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2189s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2189s Selecting previously unselected package libfontconfig1:s390x. 2189s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2189s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2189s Selecting previously unselected package fontconfig. 2189s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2189s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2189s Selecting previously unselected package libdouble-conversion3:s390x. 2189s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 2189s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 2189s Selecting previously unselected package libdrm-radeon1:s390x. 2189s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2189s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2189s Selecting previously unselected package libwayland-server0:s390x. 2189s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 2189s Unpacking libwayland-server0:s390x (1.23.1-3) ... 2190s Selecting previously unselected package libglapi-mesa:s390x. 2190s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2190s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2190s Selecting previously unselected package libx11-xcb1:s390x. 2190s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2190s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2190s Selecting previously unselected package libxcb-dri3-0:s390x. 2190s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-present0:s390x. 2190s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-randr0:s390x. 2190s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-sync1:s390x. 2190s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-xfixes0:s390x. 2190s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxshmfence1:s390x. 2190s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2190s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2190s Selecting previously unselected package mesa-libgallium:s390x. 2190s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2190s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2190s Selecting previously unselected package libgbm1:s390x. 2190s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2190s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2190s Selecting previously unselected package libwayland-client0:s390x. 2190s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 2190s Unpacking libwayland-client0:s390x (1.23.1-3) ... 2190s Selecting previously unselected package libxcb-shm0:s390x. 2190s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libegl-mesa0:s390x. 2190s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2190s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2190s Selecting previously unselected package libvulkan1:s390x. 2190s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2190s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2190s Selecting previously unselected package libgl1-mesa-dri:s390x. 2190s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2190s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2190s Selecting previously unselected package libxcb-glx0:s390x. 2190s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxxf86vm1:s390x. 2190s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2190s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2190s Selecting previously unselected package libglx-mesa0:s390x. 2190s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2190s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2190s Selecting previously unselected package libgraphite2-3:s390x. 2190s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2190s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2190s Selecting previously unselected package libharfbuzz0b:s390x. 2190s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2190s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2190s Selecting previously unselected package x11-common. 2190s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2190s Unpacking x11-common (1:7.7+23ubuntu3) ... 2190s Selecting previously unselected package libice6:s390x. 2190s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2190s Unpacking libice6:s390x (2:1.1.1-1) ... 2190s Selecting previously unselected package libwacom-common. 2190s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2190s Unpacking libwacom-common (2.14.0-1) ... 2190s Selecting previously unselected package libwacom9:s390x. 2190s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2190s Unpacking libwacom9:s390x (2.14.0-1) ... 2190s Selecting previously unselected package libinput-bin. 2190s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2190s Unpacking libinput-bin (1.27.1-1) ... 2190s Selecting previously unselected package libmtdev1t64:s390x. 2190s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2190s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2190s Selecting previously unselected package libinput10:s390x. 2190s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2190s Unpacking libinput10:s390x (1.27.1-1) ... 2190s Selecting previously unselected package libjpeg-turbo8:s390x. 2190s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2190s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2190s Selecting previously unselected package libjpeg8:s390x. 2190s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2190s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2190s Selecting previously unselected package libmd4c0:s390x. 2190s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2190s Unpacking libmd4c0:s390x (0.5.2-2) ... 2190s Selecting previously unselected package libpcre2-16-0:s390x. 2190s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2190s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2190s Selecting previously unselected package libqt5core5t64:s390x. 2190s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2190s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2190s Selecting previously unselected package libqt5dbus5t64:s390x. 2190s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2190s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2190s Selecting previously unselected package libqt5network5t64:s390x. 2190s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2190s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2190s Selecting previously unselected package libqt5qml5:s390x. 2190s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2190s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2190s Selecting previously unselected package libshiboken2-py3-5.15t64. 2190s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2190s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2190s Selecting previously unselected package libpyside2-py3-5.15t64. 2190s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2190s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2190s Selecting previously unselected package libglvnd0:s390x. 2190s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2190s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2190s Selecting previously unselected package libegl1:s390x. 2190s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2190s Unpacking libegl1:s390x (1.7.0-1build1) ... 2190s Selecting previously unselected package libglx0:s390x. 2190s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2190s Unpacking libglx0:s390x (1.7.0-1build1) ... 2190s Selecting previously unselected package libgl1:s390x. 2190s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2190s Unpacking libgl1:s390x (1.7.0-1build1) ... 2190s Selecting previously unselected package libsm6:s390x. 2190s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2190s Unpacking libsm6:s390x (2:1.2.4-1) ... 2190s Selecting previously unselected package libxcb-icccm4:s390x. 2190s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2190s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2190s Selecting previously unselected package libxcb-util1:s390x. 2190s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2190s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2190s Selecting previously unselected package libxcb-image0:s390x. 2190s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2190s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2190s Selecting previously unselected package libxcb-keysyms1:s390x. 2190s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2190s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2190s Selecting previously unselected package libxcb-render0:s390x. 2190s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-render-util0:s390x. 2190s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2190s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2190s Selecting previously unselected package libxcb-shape0:s390x. 2190s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-xinerama0:s390x. 2190s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-xinput0:s390x. 2190s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxcb-xkb1:s390x. 2190s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2190s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2190s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2190s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2190s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2190s Selecting previously unselected package libxrender1:s390x. 2190s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2190s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2190s Selecting previously unselected package libqt5gui5t64:s390x. 2190s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2190s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2190s Selecting previously unselected package libqt5sql5t64:s390x. 2190s Preparing to unpack .../64-libqt5sql5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2190s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2190s Selecting previously unselected package libqt5widgets5t64:s390x. 2190s Preparing to unpack .../65-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2190s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2190s Selecting previously unselected package python3-pyside2.qtcore. 2190s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2190s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2190s Selecting previously unselected package python3-pyside2.qtgui. 2190s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2190s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2190s Selecting previously unselected package python3-pyside2.qtwidgets. 2190s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 2190s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 2190s Selecting previously unselected package python3-pyside2.qtsql. 2190s Preparing to unpack .../69-python3-pyside2.qtsql_5.15.16-3.1_s390x.deb ... 2190s Unpacking python3-pyside2.qtsql (5.15.16-3.1) ... 2191s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2191s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2191s Setting up libwayland-server0:s390x (1.23.1-3) ... 2191s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2191s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 2191s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2191s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2191s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2191s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2191s Setting up libxcb-render0:s390x (1.17.0-2) ... 2191s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2191s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2191s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2191s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2191s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2191s Setting up x11-common (1:7.7+23ubuntu3) ... 2191s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2191s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2191s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2191s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2191s Setting up libxcb-util1:s390x (0.4.1-1) ... 2191s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2191s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2191s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2191s Setting up libxcb-present0:s390x (1.17.0-2) ... 2191s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2191s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2191s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2191s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2191s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2191s Setting up fonts-dejavu-mono (2.37-8) ... 2191s Setting up fonts-dejavu-core (2.37-8) ... 2191s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2191s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2191s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2191s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2191s Setting up libxshmfence1:s390x (1.3-1build5) ... 2191s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2191s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2191s Setting up libmd4c0:s390x (0.5.2-2) ... 2191s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2191s Setting up libwacom-common (2.14.0-1) ... 2191s Setting up libwayland-client0:s390x (1.23.1-3) ... 2191s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2191s Setting up libice6:s390x (2:1.1.1-1) ... 2191s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2191s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2191s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2191s Setting up libwacom9:s390x (2.14.0-1) ... 2191s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2191s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2191s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2191s Setting up libinput-bin (1.27.1-1) ... 2191s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2191s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2191s Setting up libegl1:s390x (1.7.0-1build1) ... 2191s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2191s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2191s Setting up libsm6:s390x (2:1.2.4-1) ... 2191s Setting up libinput10:s390x (1.27.1-1) ... 2191s Setting up fontconfig (2.15.0-2ubuntu1) ... 2193s Regenerating fonts cache... done. 2193s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2193s Setting up libglx0:s390x (1.7.0-1build1) ... 2193s Setting up libgl1:s390x (1.7.0-1build1) ... 2193s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2193s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2193s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2193s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2193s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 2193s Setting up python3-pyside2.qtsql (5.15.16-3.1) ... 2193s Processing triggers for man-db (2.13.0-1) ... 2194s Processing triggers for udev (257.2-3ubuntu1) ... 2194s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2194s autopkgtest: DBG: testbed command exited with code 0 2194s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtsql'], kind short, sout pipe, serr pipe, env [] 2194s autopkgtest: DBG: testbed command exited with code 0 2194s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command19-packages.all"], kind short, sout raw, serr pipe, env [] 2194s autopkgtest: DBG: testbed command exited with code 0 2194s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command19-packages.all /tmp/autopkgtest-work.nwculqua/out/command19-packages.all 2195s autopkgtest: DBG: got reply from testbed: ok 2195s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 2195s autopkgtest: DBG: testbed command exited with code 1 2195s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 2195s autopkgtest: DBG: testbed command exited with code 0 2195s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 2197s autopkgtest: DBG: got reply from testbed: ok 2197s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 2197s autopkgtest: DBG: testbed command exited with code 0 2197s autopkgtest [14:34:59]: test command19: debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql 2197s autopkgtest [14:34:59]: test command19: [----------------------- 2197s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command19-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command19-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command19-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql'"], kind test, sout raw, serr raw, env [] 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command19-artifacts 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command19-stderr 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command19-stdout 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtsql PySide2.QtSql 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.obxebyUYsp/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command19-stdout 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.obxebyUYsp/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command19-stdout 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2248 to /tmp/autopkgtest_script_pid 2197s Testing python3 package python3-pyside2.qtsql 2197s Testing with python3.13: 2197s 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 2197s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 2197s autopkgtest: DBG: testbed command exited with code 0 2197s autopkgtest [14:34:59]: test command19: -----------------------] 2197s autopkgtest: DBG: testbed executing test finished with exit status 0 2197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command19-stdout /tmp/autopkgtest-work.nwculqua/out/command19-stdout 2197s autopkgtest: DBG: got reply from testbed: ok 2197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command19-stderr /tmp/autopkgtest-work.nwculqua/out/command19-stderr 2198s autopkgtest: DBG: got reply from testbed: ok 2198s command19 PASS (superficial) 2198s autopkgtest [14:35:00]: test command19: - - - - - - - - - - results - - - - - - - - - - 2198s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command19-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 2198s autopkgtest: DBG: got reply from testbed: ok 2198s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command19-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2198s autopkgtest: DBG: testbed command exited with code 0 2198s autopkgtest [14:35:00]: test command20: preparing testbed 2198s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtsql', 'python3'], deps_new=['python3-pyside2.qtgui', 'python3'] 2198s autopkgtest: DBG: testbed reset 2198s autopkgtest: DBG: sending command to testbed: revert 2267s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 2267s autopkgtest: DBG: sending command to testbed: print-execute-command 2267s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 2267s autopkgtest: DBG: sending command to testbed: capabilities 2267s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 2267s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 2267s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2267s autopkgtest: DBG: testbed command exited with code 0 2267s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 2268s autopkgtest: DBG: got reply from testbed: ok 2268s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2268s autopkgtest: DBG: testbed command exited with code 0 2268s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2268s autopkgtest: DBG: testbed command exited with code 0 2268s autopkgtest [14:36:10]: testbed dpkg architecture: s390x 2268s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2268s autopkgtest: DBG: testbed command exited with code 0 2268s autopkgtest [14:36:10]: testbed apt version: 2.9.30ubuntu1 2268s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2268s autopkgtest: DBG: testbed command exited with code 0 2268s autopkgtest: DBG: testbed has eatmydata 2268s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2269s autopkgtest: DBG: testbed command exited with code 0 2269s autopkgtest [14:36:11]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2269s 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 [] 2269s autopkgtest: DBG: testbed command exited with code 0 2269s autopkgtest [14:36:11]: testbed release detected to be: plucky 2269s 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 [] 2269s autopkgtest: DBG: testbed command exited with code 0 2269s 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 [] 2269s autopkgtest: DBG: testbed command exited with code 0 2269s autopkgtest: DBG: adding APT source: Types: deb deb-src 2269s URIs: http://ftpmaster.internal/ubuntu/ 2269s Suites: plucky-proposed 2269s Components: main restricted universe multiverse 2269s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2269s 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 [] 2269s autopkgtest: DBG: testbed command exited with code 0 2269s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2269s Package: * 2269s Pin: release plucky-proposed 2269s Pin-Priority: 500 2269s 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 [] 2269s autopkgtest: DBG: testbed command exited with code 0 2269s autopkgtest [14:36:11]: updating testbed package index (apt update) 2269s 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'] 2270s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2270s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2270s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2270s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2270s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2270s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 2270s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 2270s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 2270s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 2270s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2270s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 2270s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 2271s Fetched 1711 kB in 1s (1895 kB/s) 2271s Reading package lists... 2271s autopkgtest: DBG: testbed command exited with code 0 2271s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2271s Package: * 2271s Pin: release plucky-proposed 2271s Pin-Priority: 100 2271s 2271s Package: src:llvm-toolchain-20:any 2271s Pin: release plucky-proposed 2271s Pin-Priority: 995 2271s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2271s autopkgtest: DBG: testbed command exited with code 0 2271s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2271s autopkgtest: DBG: testbed command exited with code 0 2271s 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'] 2272s + lsb_release --codename --short 2272s + RELEASE=plucky 2272s + cat 2272s + [ plucky != trusty ] 2272s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2272s Reading package lists... 2272s Building dependency tree... 2272s Reading state information... 2272s Calculating upgrade... 2272s Calculating upgrade... 2272s The following packages were automatically installed and are no longer required: 2272s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2272s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2272s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2272s linux-tools-6.11.0-8-generic 2272s Use 'sudo apt autoremove' to remove them. 2272s The following packages will be upgraded: 2272s base-files gcc-14-base motd-news-config 2272s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2272s Need to get 134 kB of archives. 2272s After this operation, 0 B of additional disk space will be used. 2272s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 2272s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 2272s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 2273s Fetched 134 kB in 0s (329 kB/s) 2273s (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.) 2273s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 2273s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 2273s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 2273s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 2273s Setting up base-files (13.6ubuntu1) ... 2273s Updating /root/.profile to current default. 2273s motd-news.service is a disabled or a static unit not running, not starting it. 2273s (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.) 2273s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 2273s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 2274s Setting up motd-news-config (13.6ubuntu1) ... 2274s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 2274s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 2274s Processing triggers for install-info (7.1.1-1) ... 2274s Processing triggers for man-db (2.13.0-1) ... 2274s Processing triggers for initramfs-tools (0.145ubuntu2) ... 2274s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 2274s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 2278s Using config file '/etc/zipl.conf' 2278s Building bootmap in '/boot' 2278s Adding IPL section 'ubuntu' (default) 2278s Preparing boot device for LD-IPL: vda (0000). 2278s Done. 2278s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2278s + /usr/lib/apt/apt-helper analyze-pattern ?true 2278s + uname -r 2278s + sed s/\./\\./g 2278s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2278s + apt list ?obsolete 2278s + tail -n+2 2278s + cut -d/ -f1 2278s + grep -v ^linux-.*6\.12\.0-15-generic.* 2278s + true 2278s + Reading package lists...obsolete_pkgs= 2278s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2278s 2278s Building dependency tree... 2278s Reading state information... 2278s Solving dependencies... 2278s The following packages will be REMOVED: 2278s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2278s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2278s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2278s linux-tools-6.11.0-8-generic* 2278s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2278s After this operation, 167 MB disk space will be freed. 2278s (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.) 2278s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2278s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2278s Removing libpython3.12t64:s390x (3.12.9-1) ... 2278s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2278s Removing libnsl2:s390x (1.3.0-3build3) ... 2278s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2279s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2279s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2279s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2279s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2279s (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 ... 55930 files and directories currently installed.) 2279s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2279s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2280s + grep -q trusty /etc/lsb-release 2280s + [ ! -d /usr/share/doc/unattended-upgrades ] 2280s + [ ! -d /usr/share/doc/lxd ] 2280s + [ ! -d /usr/share/doc/lxd-client ] 2280s + [ ! -d /usr/share/doc/snapd ] 2280s + type iptables 2280s + cat 2280s + chmod 755 /etc/rc.local 2280s + . /etc/rc.local 2280s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2280s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2280s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2280s + uname -m 2280s + [ s390x = ppc64le ] 2280s + [ -d /run/systemd/system ] 2280s + systemd-detect-virt --quiet --vm 2280s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2280s + cat 2280s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2280s + echo COMPRESS=lz4 2280s autopkgtest: DBG: testbed command exited with code 0 2280s autopkgtest [14:36:22]: upgrading testbed (apt dist-upgrade and autopurge) 2280s 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'] 2280s Reading package lists... 2280s Building dependency tree... 2280s Reading state information... 2280s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2280s Starting 2 pkgProblemResolver with broken count: 0 2280s Done 2280s Entering ResolveByKeep 2280s 2280s Calculating upgrade... 2281s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2281s autopkgtest: DBG: testbed command exited with code 0 2281s 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'] 2281s Reading package lists... 2281s Building dependency tree... 2281s Reading state information... 2281s Starting pkgProblemResolver with broken count: 0 2281s Starting 2 pkgProblemResolver with broken count: 0 2281s Done 2281s Solving dependencies... 2281s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2281s autopkgtest: DBG: testbed command exited with code 0 2281s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2281s autopkgtest: DBG: testbed command exited with code 1 2281s autopkgtest [14:36:23]: rebooting testbed after setup commands that affected boot 2281s autopkgtest: DBG: sending command to testbed: reboot 2298s autopkgtest: DBG: got reply from testbed: ok 2298s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2298s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2298s autopkgtest: DBG: testbed command exited with code 0 2298s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2299s autopkgtest: DBG: got reply from testbed: ok 2299s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2299s autopkgtest: DBG: testbed command exited with code 0 2299s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2299s autopkgtest: DBG: testbed command exited with code 0 2299s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2299s autopkgtest: DBG: testbed command exited with code 0 2299s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2299s autopkgtest: DBG: testbed command exited with code 0 2299s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2299s autopkgtest: DBG: got reply from testbed: ok 2299s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2300s autopkgtest: DBG: testbed command exited with code 0 2300s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2300s autopkgtest: DBG: testbed command exited with code 0 2300s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2300s autopkgtest: DBG: testbed command exited with code 0 2300s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 2300s autopkgtest: DBG: testbed command exited with code 0 2300s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 2300s autopkgtest: DBG: got reply from testbed: ok 2300s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2300s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2301s autopkgtest: DBG: testbed command exited with code 0 2301s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2301s autopkgtest: DBG: got reply from testbed: ok 2301s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2301s autopkgtest: DBG: testbed command exited with code 0 2301s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2301s autopkgtest: DBG: testbed command exited with code 0 2301s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2301s autopkgtest: DBG: testbed command exited with code 0 2301s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2301s autopkgtest: DBG: testbed command exited with code 0 2301s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2302s autopkgtest: DBG: got reply from testbed: ok 2302s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2302s autopkgtest: DBG: testbed command exited with code 0 2302s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2302s autopkgtest: DBG: testbed command exited with code 0 2302s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2302s autopkgtest: DBG: testbed command exited with code 0 2302s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2302s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtgui', 'python3'] 2302s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtgui, python3 2302s autopkgtest: DBG: can use apt-get on testbed: True 2302s 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'] 2302s Reading package lists... 2302s Building dependency tree... 2303s Reading state information... 2303s Starting pkgProblemResolver with broken count: 0 2303s Starting 2 pkgProblemResolver with broken count: 0 2303s Done 2303s The following NEW packages will be installed: 2303s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2303s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2303s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2303s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2303s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2303s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2303s libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 libsm6 libvulkan1 2303s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 2303s libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 2303s libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 2303s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xfixes0 2303s libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxkbcommon-x11-0 libxrender1 2303s libxshmfence1 libxxf86vm1 mesa-libgallium python3-pyside2.qtcore 2303s python3-pyside2.qtgui x11-common 2303s 0 upgraded, 66 newly installed, 0 to remove and 0 not upgraded. 2303s Need to get 24.5 MB of archives. 2303s After this operation, 91.7 MB of additional disk space will be used. 2303s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2303s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2304s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2304s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2304s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2304s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2304s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 2304s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2304s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 2304s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2304s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2304s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2304s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2304s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2304s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2304s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2304s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2304s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2304s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2304s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 2304s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2304s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2304s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2304s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2304s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2304s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2304s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2304s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2304s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2304s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2304s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2304s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2304s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2304s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2304s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2304s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2304s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2304s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2304s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2304s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2304s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2304s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2304s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2304s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2304s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2304s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2304s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2304s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2304s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2304s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2304s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2304s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2304s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2304s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2304s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2304s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2305s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2305s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2305s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2305s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2305s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2305s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2305s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2305s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2305s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2305s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2305s Fetched 24.5 MB in 2s (12.3 MB/s) 2305s Selecting previously unselected package libfreetype6:s390x. 2305s (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 ... 55928 files and directories currently installed.) 2305s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2305s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2305s Selecting previously unselected package fonts-dejavu-mono. 2305s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2305s Unpacking fonts-dejavu-mono (2.37-8) ... 2305s Selecting previously unselected package fonts-dejavu-core. 2305s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2305s Unpacking fonts-dejavu-core (2.37-8) ... 2305s Selecting previously unselected package fontconfig-config. 2305s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2305s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2305s Selecting previously unselected package libfontconfig1:s390x. 2305s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2305s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2305s Selecting previously unselected package fontconfig. 2305s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2305s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2305s Selecting previously unselected package libdouble-conversion3:s390x. 2305s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 2305s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 2305s Selecting previously unselected package libdrm-radeon1:s390x. 2305s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2305s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2305s Selecting previously unselected package libwayland-server0:s390x. 2305s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 2305s Unpacking libwayland-server0:s390x (1.23.1-3) ... 2306s Selecting previously unselected package libglapi-mesa:s390x. 2306s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2306s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2306s Selecting previously unselected package libx11-xcb1:s390x. 2306s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2306s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2306s Selecting previously unselected package libxcb-dri3-0:s390x. 2306s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-present0:s390x. 2306s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-randr0:s390x. 2306s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-sync1:s390x. 2306s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-xfixes0:s390x. 2306s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxshmfence1:s390x. 2306s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2306s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2306s Selecting previously unselected package mesa-libgallium:s390x. 2306s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2306s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2306s Selecting previously unselected package libgbm1:s390x. 2306s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2306s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2306s Selecting previously unselected package libwayland-client0:s390x. 2306s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 2306s Unpacking libwayland-client0:s390x (1.23.1-3) ... 2306s Selecting previously unselected package libxcb-shm0:s390x. 2306s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libegl-mesa0:s390x. 2306s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2306s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2306s Selecting previously unselected package libvulkan1:s390x. 2306s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2306s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2306s Selecting previously unselected package libgl1-mesa-dri:s390x. 2306s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2306s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2306s Selecting previously unselected package libxcb-glx0:s390x. 2306s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxxf86vm1:s390x. 2306s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2306s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2306s Selecting previously unselected package libglx-mesa0:s390x. 2306s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2306s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2306s Selecting previously unselected package libgraphite2-3:s390x. 2306s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2306s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2306s Selecting previously unselected package libharfbuzz0b:s390x. 2306s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2306s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2306s Selecting previously unselected package x11-common. 2306s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2306s Unpacking x11-common (1:7.7+23ubuntu3) ... 2306s Selecting previously unselected package libice6:s390x. 2306s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2306s Unpacking libice6:s390x (2:1.1.1-1) ... 2306s Selecting previously unselected package libwacom-common. 2306s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2306s Unpacking libwacom-common (2.14.0-1) ... 2306s Selecting previously unselected package libwacom9:s390x. 2306s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2306s Unpacking libwacom9:s390x (2.14.0-1) ... 2306s Selecting previously unselected package libinput-bin. 2306s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2306s Unpacking libinput-bin (1.27.1-1) ... 2306s Selecting previously unselected package libmtdev1t64:s390x. 2306s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2306s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2306s Selecting previously unselected package libinput10:s390x. 2306s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2306s Unpacking libinput10:s390x (1.27.1-1) ... 2306s Selecting previously unselected package libjpeg-turbo8:s390x. 2306s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2306s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2306s Selecting previously unselected package libjpeg8:s390x. 2306s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2306s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2306s Selecting previously unselected package libmd4c0:s390x. 2306s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2306s Unpacking libmd4c0:s390x (0.5.2-2) ... 2306s Selecting previously unselected package libpcre2-16-0:s390x. 2306s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2306s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2306s Selecting previously unselected package libqt5core5t64:s390x. 2306s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2306s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2306s Selecting previously unselected package libqt5dbus5t64:s390x. 2306s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2306s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2306s Selecting previously unselected package libqt5network5t64:s390x. 2306s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2306s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2306s Selecting previously unselected package libqt5qml5:s390x. 2306s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2306s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2306s Selecting previously unselected package libshiboken2-py3-5.15t64. 2306s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2306s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2306s Selecting previously unselected package libpyside2-py3-5.15t64. 2306s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2306s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2306s Selecting previously unselected package libglvnd0:s390x. 2306s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2306s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2306s Selecting previously unselected package libegl1:s390x. 2306s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2306s Unpacking libegl1:s390x (1.7.0-1build1) ... 2306s Selecting previously unselected package libglx0:s390x. 2306s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2306s Unpacking libglx0:s390x (1.7.0-1build1) ... 2306s Selecting previously unselected package libgl1:s390x. 2306s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2306s Unpacking libgl1:s390x (1.7.0-1build1) ... 2306s Selecting previously unselected package libsm6:s390x. 2306s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2306s Unpacking libsm6:s390x (2:1.2.4-1) ... 2306s Selecting previously unselected package libxcb-icccm4:s390x. 2306s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2306s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2306s Selecting previously unselected package libxcb-util1:s390x. 2306s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2306s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2306s Selecting previously unselected package libxcb-image0:s390x. 2306s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2306s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2306s Selecting previously unselected package libxcb-keysyms1:s390x. 2306s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2306s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2306s Selecting previously unselected package libxcb-render0:s390x. 2306s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-render-util0:s390x. 2306s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2306s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2306s Selecting previously unselected package libxcb-shape0:s390x. 2306s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-xinerama0:s390x. 2306s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-xinput0:s390x. 2306s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxcb-xkb1:s390x. 2306s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2306s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2306s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2306s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2306s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2306s Selecting previously unselected package libxrender1:s390x. 2306s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2306s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2306s Selecting previously unselected package libqt5gui5t64:s390x. 2306s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2306s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2306s Selecting previously unselected package python3-pyside2.qtcore. 2306s Preparing to unpack .../64-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2306s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2306s Selecting previously unselected package python3-pyside2.qtgui. 2306s Preparing to unpack .../65-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2306s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2306s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2306s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2306s Setting up libwayland-server0:s390x (1.23.1-3) ... 2306s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2306s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 2306s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2306s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2306s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2306s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2307s Setting up libxcb-render0:s390x (1.17.0-2) ... 2307s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2307s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2307s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2307s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2307s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2307s Setting up x11-common (1:7.7+23ubuntu3) ... 2307s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2307s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2307s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2307s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2307s Setting up libxcb-util1:s390x (0.4.1-1) ... 2307s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2307s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2307s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2307s Setting up libxcb-present0:s390x (1.17.0-2) ... 2307s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2307s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2307s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2307s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2307s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2307s Setting up fonts-dejavu-mono (2.37-8) ... 2307s Setting up fonts-dejavu-core (2.37-8) ... 2307s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2307s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2307s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2307s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2307s Setting up libxshmfence1:s390x (1.3-1build5) ... 2307s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2307s Setting up libmd4c0:s390x (0.5.2-2) ... 2307s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2307s Setting up libwacom-common (2.14.0-1) ... 2307s Setting up libwayland-client0:s390x (1.23.1-3) ... 2307s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2307s Setting up libice6:s390x (2:1.1.1-1) ... 2307s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2307s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2307s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2307s Setting up libwacom9:s390x (2.14.0-1) ... 2307s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2307s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2307s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2307s Setting up libinput-bin (1.27.1-1) ... 2307s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2307s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2307s Setting up libegl1:s390x (1.7.0-1build1) ... 2307s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2307s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2307s Setting up libsm6:s390x (2:1.2.4-1) ... 2307s Setting up libinput10:s390x (1.27.1-1) ... 2307s Setting up fontconfig (2.15.0-2ubuntu1) ... 2309s Regenerating fonts cache... done. 2309s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2309s Setting up libglx0:s390x (1.7.0-1build1) ... 2309s Setting up libgl1:s390x (1.7.0-1build1) ... 2309s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2309s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2309s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2309s Processing triggers for man-db (2.13.0-1) ... 2309s Processing triggers for udev (257.2-3ubuntu1) ... 2310s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2310s autopkgtest: DBG: testbed command exited with code 0 2310s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtgui'], kind short, sout pipe, serr pipe, env [] 2310s autopkgtest: DBG: testbed command exited with code 0 2310s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command20-packages.all"], kind short, sout raw, serr pipe, env [] 2310s autopkgtest: DBG: testbed command exited with code 0 2310s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command20-packages.all /tmp/autopkgtest-work.nwculqua/out/command20-packages.all 2311s autopkgtest: DBG: got reply from testbed: ok 2311s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 2311s autopkgtest: DBG: testbed command exited with code 1 2311s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 2311s autopkgtest: DBG: testbed command exited with code 0 2311s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 2313s autopkgtest: DBG: got reply from testbed: ok 2313s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 2313s autopkgtest: DBG: testbed command exited with code 0 2313s autopkgtest [14:36:55]: test command20: debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui 2313s autopkgtest [14:36:55]: test command20: [----------------------- 2313s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command20-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command20-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command20-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui'"], kind test, sout raw, serr raw, env [] 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command20-artifacts 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command20-stderr 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command20-stdout 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtgui PySide2.QtGui 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.65LXpt4ibj/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command20-stdout 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.65LXpt4ibj/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command20-stdout 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2208 to /tmp/autopkgtest_script_pid 2313s Testing python3 package python3-pyside2.qtgui 2313s Testing with python3.13: 2313s 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 2313s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 2313s autopkgtest: DBG: testbed command exited with code 0 2313s autopkgtest [14:36:55]: test command20: -----------------------] 2313s autopkgtest: DBG: testbed executing test finished with exit status 0 2313s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command20-stdout /tmp/autopkgtest-work.nwculqua/out/command20-stdout 2313s autopkgtest: DBG: got reply from testbed: ok 2313s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command20-stderr /tmp/autopkgtest-work.nwculqua/out/command20-stderr 2314s autopkgtest: DBG: got reply from testbed: ok 2314s command20 PASS (superficial) 2314s autopkgtest [14:36:56]: test command20: - - - - - - - - - - results - - - - - - - - - - 2314s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command20-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 2314s autopkgtest: DBG: got reply from testbed: ok 2314s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command20-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2314s autopkgtest: DBG: testbed command exited with code 0 2314s autopkgtest [14:36:56]: test command21: preparing testbed 2314s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtgui', 'python3'], deps_new=['python3-pyside2.qtsvg', 'python3'] 2314s autopkgtest: DBG: testbed reset 2314s autopkgtest: DBG: sending command to testbed: revert 2374s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 2374s autopkgtest: DBG: sending command to testbed: print-execute-command 2374s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 2374s autopkgtest: DBG: sending command to testbed: capabilities 2374s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 2374s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 2374s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2374s autopkgtest: DBG: testbed command exited with code 0 2374s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 2375s autopkgtest: DBG: got reply from testbed: ok 2375s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2375s autopkgtest: DBG: testbed command exited with code 0 2375s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2375s autopkgtest: DBG: testbed command exited with code 0 2375s autopkgtest [14:37:57]: testbed dpkg architecture: s390x 2375s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2375s autopkgtest: DBG: testbed command exited with code 0 2375s autopkgtest [14:37:57]: testbed apt version: 2.9.30ubuntu1 2375s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2375s autopkgtest: DBG: testbed command exited with code 0 2375s autopkgtest: DBG: testbed has eatmydata 2375s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2375s autopkgtest: DBG: testbed command exited with code 0 2375s autopkgtest [14:37:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2375s 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 [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest [14:37:58]: testbed release detected to be: plucky 2376s 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 [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s 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 [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest: DBG: adding APT source: Types: deb deb-src 2376s URIs: http://ftpmaster.internal/ubuntu/ 2376s Suites: plucky-proposed 2376s Components: main restricted universe multiverse 2376s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2376s 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 [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2376s Package: * 2376s Pin: release plucky-proposed 2376s Pin-Priority: 500 2376s 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 [] 2376s autopkgtest: DBG: testbed command exited with code 0 2376s autopkgtest [14:37:58]: updating testbed package index (apt update) 2376s 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'] 2377s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2377s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2377s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2377s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2377s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2377s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 2377s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 2377s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 2377s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 2377s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2377s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 2377s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 2378s Fetched 1711 kB in 1s (1775 kB/s) 2378s Reading package lists... 2378s autopkgtest: DBG: testbed command exited with code 0 2378s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2378s Package: * 2378s Pin: release plucky-proposed 2378s Pin-Priority: 100 2378s 2378s Package: src:llvm-toolchain-20:any 2378s Pin: release plucky-proposed 2378s Pin-Priority: 995 2378s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2378s autopkgtest: DBG: testbed command exited with code 0 2378s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2378s autopkgtest: DBG: testbed command exited with code 0 2378s 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'] 2379s + lsb_release --codename --short 2379s + RELEASE=plucky 2379s + cat 2379s + [ plucky != trusty ] 2379s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2379s Reading package lists... 2379s Building dependency tree... 2379s Reading state information... 2379s Calculating upgrade... 2379s Calculating upgrade... 2379s The following packages were automatically installed and are no longer required: 2379s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2379s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2379s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2379s linux-tools-6.11.0-8-generic 2379s Use 'sudo apt autoremove' to remove them. 2379s The following packages will be upgraded: 2379s base-files gcc-14-base motd-news-config 2379s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2379s Need to get 134 kB of archives. 2379s After this operation, 0 B of additional disk space will be used. 2379s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 2379s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 2379s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 2380s Fetched 134 kB in 0s (332 kB/s) 2380s (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.) 2380s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 2380s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 2380s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 2380s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 2380s Setting up base-files (13.6ubuntu1) ... 2380s Updating /root/.profile to current default. 2380s motd-news.service is a disabled or a static unit not running, not starting it. 2381s (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.) 2381s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 2381s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 2381s Setting up motd-news-config (13.6ubuntu1) ... 2381s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 2381s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 2381s Processing triggers for install-info (7.1.1-1) ... 2381s Processing triggers for man-db (2.13.0-1) ... 2381s Processing triggers for initramfs-tools (0.145ubuntu2) ... 2381s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 2381s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 2385s Using config file '/etc/zipl.conf' 2385s Building bootmap in '/boot' 2385s Adding IPL section 'ubuntu' (default) 2385s Preparing boot device for LD-IPL: vda (0000). 2385s Done. 2385s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2385s + /usr/lib/apt/apt-helper analyze-pattern ?true 2385s + uname -r 2385s + sed s/\./\\./g 2385s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2385s + apt list ?obsolete 2385s + tail -n+2 2385s + cut -d/ -f1 2385s + grep -v ^linux-.*6\.12\.0-15-generic.* 2385s + true 2385s + obsolete_pkgs= 2385s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2385s Reading package lists... 2385s Building dependency tree... 2385s Reading state information... 2385s Solving dependencies... 2385s The following packages will be REMOVED: 2385s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2385s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2385s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2385s linux-tools-6.11.0-8-generic* 2385s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2385s After this operation, 167 MB disk space will be freed. 2385s (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.) 2385s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2385s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2385s Removing libpython3.12t64:s390x (3.12.9-1) ... 2385s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2385s Removing libnsl2:s390x (1.3.0-3build3) ... 2385s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2386s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2386s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2386s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2386s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2386s (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 ... 55930 files and directories currently installed.) 2386s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2386s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2387s + grep -q trusty /etc/lsb-release 2387s + [ ! -d /usr/share/doc/unattended-upgrades ] 2387s + [ ! -d /usr/share/doc/lxd ] 2387s + [ ! -d /usr/share/doc/lxd-client ] 2387s + [ ! -d /usr/share/doc/snapd ] 2387s + type iptables 2387s + cat 2387s + chmod 755 /etc/rc.local 2387s + . /etc/rc.local 2387s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2387s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2387s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2387s + uname -m 2387s + [ s390x = ppc64le ] 2387s + [ -d /run/systemd/system ] 2387s + systemd-detect-virt --quiet --vm 2387s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2387s + cat 2387s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2387s + echo COMPRESS=lz4 2387s autopkgtest: DBG: testbed command exited with code 0 2387s autopkgtest [14:38:09]: upgrading testbed (apt dist-upgrade and autopurge) 2387s 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'] 2387s Reading package lists... 2387s Building dependency tree... 2387s Reading state information... 2387s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2387s Starting 2 pkgProblemResolver with broken count: 0 2387s Done 2387s Entering ResolveByKeep 2387s 2387s Calculating upgrade... 2387s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2387s autopkgtest: DBG: testbed command exited with code 0 2387s 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'] 2388s Reading package lists... 2388s Building dependency tree... 2388s Reading state information... 2388s Starting pkgProblemResolver with broken count: 0 2388s Starting 2 pkgProblemResolver with broken count: 0 2388s Done 2388s Solving dependencies... 2388s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2388s autopkgtest: DBG: testbed command exited with code 0 2388s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2388s autopkgtest: DBG: testbed command exited with code 1 2388s autopkgtest [14:38:10]: rebooting testbed after setup commands that affected boot 2388s autopkgtest: DBG: sending command to testbed: reboot 2407s autopkgtest: DBG: got reply from testbed: ok 2407s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2407s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2407s autopkgtest: DBG: testbed command exited with code 0 2407s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2407s autopkgtest: DBG: got reply from testbed: ok 2407s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2407s autopkgtest: DBG: testbed command exited with code 0 2407s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2407s autopkgtest: DBG: testbed command exited with code 0 2407s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2408s autopkgtest: DBG: testbed command exited with code 0 2408s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2408s autopkgtest: DBG: testbed command exited with code 0 2408s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2408s autopkgtest: DBG: got reply from testbed: ok 2408s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2408s autopkgtest: DBG: testbed command exited with code 0 2408s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2408s autopkgtest: DBG: testbed command exited with code 0 2408s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2408s autopkgtest: DBG: testbed command exited with code 0 2408s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 2409s autopkgtest: DBG: testbed command exited with code 0 2409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 2409s autopkgtest: DBG: got reply from testbed: ok 2409s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2409s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2409s autopkgtest: DBG: testbed command exited with code 0 2409s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2409s autopkgtest: DBG: got reply from testbed: ok 2409s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2409s autopkgtest: DBG: testbed command exited with code 0 2409s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2410s autopkgtest: DBG: testbed command exited with code 0 2410s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2410s autopkgtest: DBG: testbed command exited with code 0 2410s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2410s autopkgtest: DBG: testbed command exited with code 0 2410s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2410s autopkgtest: DBG: got reply from testbed: ok 2410s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2410s autopkgtest: DBG: testbed command exited with code 0 2410s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2410s autopkgtest: DBG: testbed command exited with code 0 2410s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2411s autopkgtest: DBG: testbed command exited with code 0 2411s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2411s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtsvg', 'python3'] 2411s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtsvg, python3 2411s autopkgtest: DBG: can use apt-get on testbed: True 2411s 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'] 2411s Reading package lists... 2411s Building dependency tree... 2411s Reading state information... 2411s Starting pkgProblemResolver with broken count: 0 2411s Starting 2 pkgProblemResolver with broken count: 0 2411s Done 2411s The following NEW packages will be installed: 2411s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2411s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2411s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2411s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2411s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2411s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2411s libqt5network5t64 libqt5qml5 libqt5svg5 libqt5widgets5t64 2411s libshiboken2-py3-5.15t64 libsm6 libvulkan1 libwacom-common libwacom9 2411s libwayland-client0 libwayland-server0 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 2411s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 2411s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 2411s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 2411s libxkbcommon-x11-0 libxrender1 libxshmfence1 libxxf86vm1 mesa-libgallium 2411s python3-pyside2.qtcore python3-pyside2.qtgui python3-pyside2.qtsvg 2411s python3-pyside2.qtwidgets x11-common 2411s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 2411s Need to get 29.3 MB of archives. 2411s After this operation, 111 MB of additional disk space will be used. 2411s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2412s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2412s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2412s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2412s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2412s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2412s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 2412s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2412s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 2412s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2412s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2412s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2412s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2412s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2412s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2412s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2412s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2412s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2413s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2413s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 2413s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2413s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2413s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2413s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2413s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2413s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2413s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2413s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2413s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2413s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2413s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2413s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2413s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2413s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2413s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2413s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2413s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2413s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2413s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2413s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2413s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2413s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2413s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2413s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2413s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2413s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2413s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2413s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2413s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2413s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2413s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2413s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2413s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2413s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2413s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2413s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2413s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2413s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2413s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2413s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2413s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2413s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2413s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2413s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2413s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-4ubuntu1 [2718 kB] 2413s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5svg5 s390x 5.15.15-2 [158 kB] 2413s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2413s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2413s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwidgets s390x 5.15.16-3.1 [1861 kB] 2414s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtsvg s390x 5.15.16-3.1 [53.9 kB] 2414s Fetched 29.3 MB in 2s (13.0 MB/s) 2414s Selecting previously unselected package libfreetype6:s390x. 2414s (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 ... 55928 files and directories currently installed.) 2414s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2414s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2414s Selecting previously unselected package fonts-dejavu-mono. 2414s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2414s Unpacking fonts-dejavu-mono (2.37-8) ... 2414s Selecting previously unselected package fonts-dejavu-core. 2414s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2414s Unpacking fonts-dejavu-core (2.37-8) ... 2414s Selecting previously unselected package fontconfig-config. 2414s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2414s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2414s Selecting previously unselected package libfontconfig1:s390x. 2414s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2414s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2414s Selecting previously unselected package fontconfig. 2414s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2414s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2414s Selecting previously unselected package libdouble-conversion3:s390x. 2414s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 2414s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 2414s Selecting previously unselected package libdrm-radeon1:s390x. 2414s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2414s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2414s Selecting previously unselected package libwayland-server0:s390x. 2414s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 2414s Unpacking libwayland-server0:s390x (1.23.1-3) ... 2414s Selecting previously unselected package libglapi-mesa:s390x. 2414s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2414s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2414s Selecting previously unselected package libx11-xcb1:s390x. 2414s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2414s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2414s Selecting previously unselected package libxcb-dri3-0:s390x. 2414s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libxcb-present0:s390x. 2414s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libxcb-randr0:s390x. 2414s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libxcb-sync1:s390x. 2414s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libxcb-xfixes0:s390x. 2414s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libxshmfence1:s390x. 2414s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2414s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2414s Selecting previously unselected package mesa-libgallium:s390x. 2414s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2414s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2414s Selecting previously unselected package libgbm1:s390x. 2414s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2414s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2414s Selecting previously unselected package libwayland-client0:s390x. 2414s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 2414s Unpacking libwayland-client0:s390x (1.23.1-3) ... 2414s Selecting previously unselected package libxcb-shm0:s390x. 2414s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libegl-mesa0:s390x. 2414s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2414s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2414s Selecting previously unselected package libvulkan1:s390x. 2414s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2414s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2414s Selecting previously unselected package libgl1-mesa-dri:s390x. 2414s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2414s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2414s Selecting previously unselected package libxcb-glx0:s390x. 2414s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2414s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2414s Selecting previously unselected package libxxf86vm1:s390x. 2414s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2414s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2414s Selecting previously unselected package libglx-mesa0:s390x. 2414s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2414s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2414s Selecting previously unselected package libgraphite2-3:s390x. 2414s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2414s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2414s Selecting previously unselected package libharfbuzz0b:s390x. 2414s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2414s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2414s Selecting previously unselected package x11-common. 2414s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2414s Unpacking x11-common (1:7.7+23ubuntu3) ... 2414s Selecting previously unselected package libice6:s390x. 2414s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2414s Unpacking libice6:s390x (2:1.1.1-1) ... 2414s Selecting previously unselected package libwacom-common. 2414s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2414s Unpacking libwacom-common (2.14.0-1) ... 2415s Selecting previously unselected package libwacom9:s390x. 2415s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2415s Unpacking libwacom9:s390x (2.14.0-1) ... 2415s Selecting previously unselected package libinput-bin. 2415s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2415s Unpacking libinput-bin (1.27.1-1) ... 2415s Selecting previously unselected package libmtdev1t64:s390x. 2415s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2415s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2415s Selecting previously unselected package libinput10:s390x. 2415s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2415s Unpacking libinput10:s390x (1.27.1-1) ... 2415s Selecting previously unselected package libjpeg-turbo8:s390x. 2415s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2415s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2415s Selecting previously unselected package libjpeg8:s390x. 2415s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2415s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2415s Selecting previously unselected package libmd4c0:s390x. 2415s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2415s Unpacking libmd4c0:s390x (0.5.2-2) ... 2415s Selecting previously unselected package libpcre2-16-0:s390x. 2415s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2415s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2415s Selecting previously unselected package libqt5core5t64:s390x. 2415s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2415s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Selecting previously unselected package libqt5dbus5t64:s390x. 2415s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2415s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Selecting previously unselected package libqt5network5t64:s390x. 2415s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2415s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Selecting previously unselected package libqt5qml5:s390x. 2415s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2415s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2415s Selecting previously unselected package libshiboken2-py3-5.15t64. 2415s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2415s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2415s Selecting previously unselected package libpyside2-py3-5.15t64. 2415s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2415s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2415s Selecting previously unselected package libglvnd0:s390x. 2415s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2415s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2415s Selecting previously unselected package libegl1:s390x. 2415s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2415s Unpacking libegl1:s390x (1.7.0-1build1) ... 2415s Selecting previously unselected package libglx0:s390x. 2415s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2415s Unpacking libglx0:s390x (1.7.0-1build1) ... 2415s Selecting previously unselected package libgl1:s390x. 2415s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2415s Unpacking libgl1:s390x (1.7.0-1build1) ... 2415s Selecting previously unselected package libsm6:s390x. 2415s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2415s Unpacking libsm6:s390x (2:1.2.4-1) ... 2415s Selecting previously unselected package libxcb-icccm4:s390x. 2415s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2415s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2415s Selecting previously unselected package libxcb-util1:s390x. 2415s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2415s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2415s Selecting previously unselected package libxcb-image0:s390x. 2415s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2415s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2415s Selecting previously unselected package libxcb-keysyms1:s390x. 2415s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2415s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2415s Selecting previously unselected package libxcb-render0:s390x. 2415s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2415s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2415s Selecting previously unselected package libxcb-render-util0:s390x. 2415s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2415s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2415s Selecting previously unselected package libxcb-shape0:s390x. 2415s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2415s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2415s Selecting previously unselected package libxcb-xinerama0:s390x. 2415s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2415s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2415s Selecting previously unselected package libxcb-xinput0:s390x. 2415s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2415s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2415s Selecting previously unselected package libxcb-xkb1:s390x. 2415s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2415s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2415s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2415s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2415s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2415s Selecting previously unselected package libxrender1:s390x. 2415s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2415s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2415s Selecting previously unselected package libqt5gui5t64:s390x. 2415s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2415s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Selecting previously unselected package libqt5widgets5t64:s390x. 2415s Preparing to unpack .../64-libqt5widgets5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2415s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Selecting previously unselected package libqt5svg5:s390x. 2415s Preparing to unpack .../65-libqt5svg5_5.15.15-2_s390x.deb ... 2415s Unpacking libqt5svg5:s390x (5.15.15-2) ... 2415s Selecting previously unselected package python3-pyside2.qtcore. 2415s Preparing to unpack .../66-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2415s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2415s Selecting previously unselected package python3-pyside2.qtgui. 2415s Preparing to unpack .../67-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2415s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2415s Selecting previously unselected package python3-pyside2.qtwidgets. 2415s Preparing to unpack .../68-python3-pyside2.qtwidgets_5.15.16-3.1_s390x.deb ... 2415s Unpacking python3-pyside2.qtwidgets (5.15.16-3.1) ... 2415s Selecting previously unselected package python3-pyside2.qtsvg. 2415s Preparing to unpack .../69-python3-pyside2.qtsvg_5.15.16-3.1_s390x.deb ... 2415s Unpacking python3-pyside2.qtsvg (5.15.16-3.1) ... 2415s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2415s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2415s Setting up libwayland-server0:s390x (1.23.1-3) ... 2415s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2415s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 2415s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2415s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2415s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2415s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2415s Setting up libxcb-render0:s390x (1.17.0-2) ... 2415s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2415s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2415s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2415s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2415s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2415s Setting up x11-common (1:7.7+23ubuntu3) ... 2415s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2415s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2415s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2415s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2415s Setting up libxcb-util1:s390x (0.4.1-1) ... 2415s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2415s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2415s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2415s Setting up libxcb-present0:s390x (1.17.0-2) ... 2415s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2415s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2415s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2415s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2415s Setting up fonts-dejavu-mono (2.37-8) ... 2415s Setting up fonts-dejavu-core (2.37-8) ... 2415s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2415s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2415s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2415s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2415s Setting up libxshmfence1:s390x (1.3-1build5) ... 2415s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2415s Setting up libmd4c0:s390x (0.5.2-2) ... 2415s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2415s Setting up libwacom-common (2.14.0-1) ... 2415s Setting up libwayland-client0:s390x (1.23.1-3) ... 2415s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2415s Setting up libice6:s390x (2:1.1.1-1) ... 2415s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2415s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2415s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2415s Setting up libwacom9:s390x (2.14.0-1) ... 2415s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2416s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2416s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2416s Setting up libinput-bin (1.27.1-1) ... 2416s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2416s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2416s Setting up libegl1:s390x (1.7.0-1build1) ... 2416s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2416s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2416s Setting up libsm6:s390x (2:1.2.4-1) ... 2416s Setting up libinput10:s390x (1.27.1-1) ... 2416s Setting up fontconfig (2.15.0-2ubuntu1) ... 2418s Regenerating fonts cache... done. 2418s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2418s Setting up libglx0:s390x (1.7.0-1build1) ... 2418s Setting up libgl1:s390x (1.7.0-1build1) ... 2418s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2418s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2418s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2418s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2418s Setting up python3-pyside2.qtwidgets (5.15.16-3.1) ... 2418s Setting up libqt5svg5:s390x (5.15.15-2) ... 2418s Setting up python3-pyside2.qtsvg (5.15.16-3.1) ... 2418s Processing triggers for man-db (2.13.0-1) ... 2418s Processing triggers for udev (257.2-3ubuntu1) ... 2418s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2419s autopkgtest: DBG: testbed command exited with code 0 2419s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtsvg'], kind short, sout pipe, serr pipe, env [] 2419s autopkgtest: DBG: testbed command exited with code 0 2419s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command21-packages.all"], kind short, sout raw, serr pipe, env [] 2419s autopkgtest: DBG: testbed command exited with code 0 2419s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command21-packages.all /tmp/autopkgtest-work.nwculqua/out/command21-packages.all 2419s autopkgtest: DBG: got reply from testbed: ok 2419s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 2419s autopkgtest: DBG: testbed command exited with code 1 2419s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 2420s autopkgtest: DBG: testbed command exited with code 0 2420s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 2421s autopkgtest: DBG: got reply from testbed: ok 2421s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 2421s autopkgtest: DBG: testbed command exited with code 0 2421s autopkgtest [14:38:43]: test command21: debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg 2421s autopkgtest [14:38:43]: test command21: [----------------------- 2421s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command21-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command21-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command21-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg'"], kind test, sout raw, serr raw, env [] 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command21-artifacts 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command21-stderr 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command21-stdout 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtsvg PySide2.QtSvg 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.UepcknyAUw/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command21-stdout 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.UepcknyAUw/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command21-stdout 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2249 to /tmp/autopkgtest_script_pid 2422s Testing python3 package python3-pyside2.qtsvg 2422s Testing with python3.13: 2422s 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 2422s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 2422s autopkgtest: DBG: testbed command exited with code 0 2422s autopkgtest [14:38:44]: test command21: -----------------------] 2422s autopkgtest: DBG: testbed executing test finished with exit status 0 2422s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command21-stdout /tmp/autopkgtest-work.nwculqua/out/command21-stdout 2422s autopkgtest: DBG: got reply from testbed: ok 2422s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command21-stderr /tmp/autopkgtest-work.nwculqua/out/command21-stderr 2422s autopkgtest: DBG: got reply from testbed: ok 2422s command21 PASS (superficial) 2422s autopkgtest [14:38:44]: test command21: - - - - - - - - - - results - - - - - - - - - - 2422s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command21-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 2423s autopkgtest: DBG: got reply from testbed: ok 2423s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command21-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2423s autopkgtest: DBG: testbed command exited with code 0 2423s autopkgtest [14:38:45]: test command22: preparing testbed 2423s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtsvg', 'python3'], deps_new=['python3-pyside2.qtwebsockets', 'python3'] 2423s autopkgtest: DBG: testbed reset 2423s autopkgtest: DBG: sending command to testbed: revert 2486s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 2486s autopkgtest: DBG: sending command to testbed: print-execute-command 2486s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 2486s autopkgtest: DBG: sending command to testbed: capabilities 2486s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 2486s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 2486s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2486s autopkgtest: DBG: testbed command exited with code 0 2486s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 2486s autopkgtest: DBG: got reply from testbed: ok 2486s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2486s autopkgtest: DBG: testbed command exited with code 0 2486s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2487s autopkgtest: DBG: testbed command exited with code 0 2487s autopkgtest [14:39:49]: testbed dpkg architecture: s390x 2487s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2487s autopkgtest: DBG: testbed command exited with code 0 2487s autopkgtest [14:39:49]: testbed apt version: 2.9.30ubuntu1 2487s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2487s autopkgtest: DBG: testbed command exited with code 0 2487s autopkgtest: DBG: testbed has eatmydata 2487s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2487s autopkgtest: DBG: testbed command exited with code 0 2487s autopkgtest [14:39:49]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2487s 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 [] 2487s autopkgtest: DBG: testbed command exited with code 0 2487s autopkgtest [14:39:49]: testbed release detected to be: plucky 2487s 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 [] 2487s autopkgtest: DBG: testbed command exited with code 0 2487s 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 [] 2488s autopkgtest: DBG: testbed command exited with code 0 2488s autopkgtest: DBG: adding APT source: Types: deb deb-src 2488s URIs: http://ftpmaster.internal/ubuntu/ 2488s Suites: plucky-proposed 2488s Components: main restricted universe multiverse 2488s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2488s 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 [] 2488s autopkgtest: DBG: testbed command exited with code 0 2488s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2488s Package: * 2488s Pin: release plucky-proposed 2488s Pin-Priority: 500 2488s 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 [] 2488s autopkgtest: DBG: testbed command exited with code 0 2488s autopkgtest [14:39:50]: updating testbed package index (apt update) 2488s 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'] 2488s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2489s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2489s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2489s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2489s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [710 kB] 2489s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 2489s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [88.5 kB] 2489s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2489s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [133 kB] 2489s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2489s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [632 kB] 2489s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 2489s Fetched 1698 kB in 1s (1681 kB/s) 2490s Reading package lists... 2490s autopkgtest: DBG: testbed command exited with code 0 2490s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2490s Package: * 2490s Pin: release plucky-proposed 2490s Pin-Priority: 100 2490s 2490s Package: src:llvm-toolchain-20:any 2490s Pin: release plucky-proposed 2490s Pin-Priority: 995 2490s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2490s autopkgtest: DBG: testbed command exited with code 0 2490s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2490s autopkgtest: DBG: testbed command exited with code 0 2490s 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'] 2490s + lsb_release --codename --short 2490s + RELEASE=plucky 2490s + cat 2490s + [ plucky != trusty ] 2490s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2490s Reading package lists... 2490s Building dependency tree... 2490s Reading state information... 2490s Calculating upgrade... 2491s Calculating upgrade... 2491s The following packages were automatically installed and are no longer required: 2491s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2491s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2491s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2491s linux-tools-6.11.0-8-generic 2491s Use 'sudo apt autoremove' to remove them. 2491s The following packages will be upgraded: 2491s apparmor base-files gcc-14-base libapparmor1 motd-news-config 2491s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2491s Need to get 946 kB of archives. 2491s After this operation, 0 B of additional disk space will be used. 2491s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 2491s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 2491s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 2491s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu5 [54.3 kB] 2491s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu5 [758 kB] 2491s Preconfiguring packages ... 2492s Fetched 946 kB in 1s (1521 kB/s) 2492s (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.) 2492s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 2492s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 2492s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 2492s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 2492s Setting up base-files (13.6ubuntu1) ... 2492s Updating /root/.profile to current default. 2492s motd-news.service is a disabled or a static unit not running, not starting it. 2492s (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.) 2492s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 2492s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 2492s Preparing to unpack .../libapparmor1_4.1.0~beta5-0ubuntu5_s390x.deb ... 2492s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu5) over (4.1.0~beta5-0ubuntu4) ... 2492s Preparing to unpack .../apparmor_4.1.0~beta5-0ubuntu5_s390x.deb ... 2493s Unpacking apparmor (4.1.0~beta5-0ubuntu5) over (4.1.0~beta5-0ubuntu4) ... 2493s Setting up motd-news-config (13.6ubuntu1) ... 2493s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu5) ... 2493s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 2493s Setting up apparmor (4.1.0~beta5-0ubuntu5) ... 2493s Installing new version of config file /etc/apparmor.d/fusermount3 ... 2494s Reloading AppArmor profiles 2495s Processing triggers for install-info (7.1.1-1) ... 2495s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2495s Processing triggers for systemd (257.2-3ubuntu1) ... 2495s Processing triggers for man-db (2.13.0-1) ... 2496s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 2496s Processing triggers for initramfs-tools (0.145ubuntu2) ... 2496s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 2496s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 2500s Using config file '/etc/zipl.conf' 2500s Building bootmap in '/boot' 2500s Adding IPL section 'ubuntu' (default) 2500s Preparing boot device for LD-IPL: vda (0000). 2500s Done. 2500s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2500s + /usr/lib/apt/apt-helper analyze-pattern ?true 2500s + uname -r 2500s + sed s/\./\\./g 2500s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2500s + apt list ?obsolete 2500s + tail -n+2 2500s + cut -d/ -f1 2500s + grep -v ^linux-.*6\.12\.0-15-generic.* 2500s + true 2500s + obsolete_pkgs= 2500s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2500s Reading package lists... 2500s Building dependency tree... 2500s Reading state information... 2500s Solving dependencies... 2501s The following packages will be REMOVED: 2501s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2501s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2501s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2501s linux-tools-6.11.0-8-generic* 2501s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2501s After this operation, 167 MB disk space will be freed. 2501s (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.) 2501s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2501s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2501s Removing libpython3.12t64:s390x (3.12.9-1) ... 2501s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2501s Removing libnsl2:s390x (1.3.0-3build3) ... 2501s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2501s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2501s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2502s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2502s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2502s (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 ... 55930 files and directories currently installed.) 2502s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2502s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2502s + grep -q trusty /etc/lsb-release 2502s + [ ! -d /usr/share/doc/unattended-upgrades ] 2502s + [ ! -d /usr/share/doc/lxd ] 2502s + [ ! -d /usr/share/doc/lxd-client ] 2502s + [ ! -d /usr/share/doc/snapd ] 2502s + type iptables 2502s + cat 2502s + chmod 755 /etc/rc.local 2502s + . /etc/rc.local 2502s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2502s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2502s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2502s + uname -m 2502s + [ s390x = ppc64le ] 2502s + [ -d /run/systemd/system ] 2502s + systemd-detect-virt --quiet --vm 2502s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2502s + cat 2502s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2502s + echo COMPRESS=lz4 2502s autopkgtest: DBG: testbed command exited with code 0 2502s autopkgtest [14:40:04]: upgrading testbed (apt dist-upgrade and autopurge) 2502s 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'] 2502s Reading package lists... 2502s Building dependency tree... 2502s Reading state information... 2502s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2502s Starting 2 pkgProblemResolver with broken count: 0 2502s Done 2503s Entering ResolveByKeep 2503s 2503s Calculating upgrade... 2503s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2503s autopkgtest: DBG: testbed command exited with code 0 2503s 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'] 2503s Reading package lists... 2503s Building dependency tree... 2503s Reading state information... 2503s Starting pkgProblemResolver with broken count: 0 2503s Starting 2 pkgProblemResolver with broken count: 0 2503s Done 2503s Solving dependencies... 2503s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2503s autopkgtest: DBG: testbed command exited with code 0 2503s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2504s autopkgtest: DBG: testbed command exited with code 1 2504s autopkgtest [14:40:06]: rebooting testbed after setup commands that affected boot 2504s autopkgtest: DBG: sending command to testbed: reboot 2522s autopkgtest: DBG: got reply from testbed: ok 2522s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2522s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2522s autopkgtest: DBG: testbed command exited with code 0 2522s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2522s autopkgtest: DBG: got reply from testbed: ok 2522s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2522s autopkgtest: DBG: testbed command exited with code 0 2522s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2523s autopkgtest: DBG: testbed command exited with code 0 2523s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2523s autopkgtest: DBG: testbed command exited with code 0 2523s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2523s autopkgtest: DBG: testbed command exited with code 0 2523s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2523s autopkgtest: DBG: got reply from testbed: ok 2523s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2523s autopkgtest: DBG: testbed command exited with code 0 2523s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2523s autopkgtest: DBG: testbed command exited with code 0 2523s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2524s autopkgtest: DBG: testbed command exited with code 0 2524s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 2524s autopkgtest: DBG: testbed command exited with code 0 2524s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 2524s autopkgtest: DBG: got reply from testbed: ok 2524s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2524s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2524s autopkgtest: DBG: testbed command exited with code 0 2524s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2524s autopkgtest: DBG: got reply from testbed: ok 2524s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2524s autopkgtest: DBG: testbed command exited with code 0 2524s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2525s autopkgtest: DBG: testbed command exited with code 0 2525s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2525s autopkgtest: DBG: testbed command exited with code 0 2525s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2525s autopkgtest: DBG: testbed command exited with code 0 2525s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2525s autopkgtest: DBG: got reply from testbed: ok 2525s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2525s autopkgtest: DBG: testbed command exited with code 0 2525s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2525s autopkgtest: DBG: testbed command exited with code 0 2525s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2526s autopkgtest: DBG: testbed command exited with code 0 2526s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2526s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtwebsockets', 'python3'] 2526s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtwebsockets, python3 2526s autopkgtest: DBG: can use apt-get on testbed: True 2526s 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'] 2526s Reading package lists... 2526s Building dependency tree... 2526s Reading state information... 2526s Starting pkgProblemResolver with broken count: 0 2526s Starting 2 pkgProblemResolver with broken count: 0 2526s Done 2526s The following NEW packages will be installed: 2526s libdouble-conversion3 libpcre2-16-0 libpyside2-py3-5.15t64 libqt5core5t64 2526s libqt5dbus5t64 libqt5network5t64 libqt5qml5 libqt5websockets5 2526s libshiboken2-py3-5.15t64 python3-pyside2.qtcore python3-pyside2.qtnetwork 2526s python3-pyside2.qtwebsockets 2526s 0 upgraded, 12 newly installed, 0 to remove and 0 not upgraded. 2526s Need to get 6930 kB of archives. 2526s After this operation, 24.7 MB of additional disk space will be used. 2526s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 2527s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2527s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2527s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2527s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2527s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2527s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2527s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2527s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5websockets5 s390x 5.15.15-2 [64.3 kB] 2527s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2527s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtnetwork s390x 5.15.16-3.1 [313 kB] 2527s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtwebsockets s390x 5.15.16-3.1 [43.1 kB] 2527s Fetched 6930 kB in 1s (8176 kB/s) 2527s Selecting previously unselected package libdouble-conversion3:s390x. 2528s (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 ... 55928 files and directories currently installed.) 2528s Preparing to unpack .../00-libdouble-conversion3_3.3.1-1_s390x.deb ... 2528s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 2528s Selecting previously unselected package libpcre2-16-0:s390x. 2528s Preparing to unpack .../01-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2528s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2528s Selecting previously unselected package libqt5core5t64:s390x. 2528s Preparing to unpack .../02-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2528s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2528s Selecting previously unselected package libqt5dbus5t64:s390x. 2528s Preparing to unpack .../03-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2528s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2528s Selecting previously unselected package libqt5network5t64:s390x. 2528s Preparing to unpack .../04-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2528s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2528s Selecting previously unselected package libqt5qml5:s390x. 2528s Preparing to unpack .../05-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2528s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2528s Selecting previously unselected package libshiboken2-py3-5.15t64. 2528s Preparing to unpack .../06-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2528s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2528s Selecting previously unselected package libpyside2-py3-5.15t64. 2528s Preparing to unpack .../07-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2528s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2528s Selecting previously unselected package libqt5websockets5:s390x. 2528s Preparing to unpack .../08-libqt5websockets5_5.15.15-2_s390x.deb ... 2528s Unpacking libqt5websockets5:s390x (5.15.15-2) ... 2528s Selecting previously unselected package python3-pyside2.qtcore. 2528s Preparing to unpack .../09-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2528s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2528s Selecting previously unselected package python3-pyside2.qtnetwork. 2528s Preparing to unpack .../10-python3-pyside2.qtnetwork_5.15.16-3.1_s390x.deb ... 2528s Unpacking python3-pyside2.qtnetwork (5.15.16-3.1) ... 2528s Selecting previously unselected package python3-pyside2.qtwebsockets. 2528s Preparing to unpack .../11-python3-pyside2.qtwebsockets_5.15.16-3.1_s390x.deb ... 2528s Unpacking python3-pyside2.qtwebsockets (5.15.16-3.1) ... 2528s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 2528s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2528s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2528s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2528s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2528s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2528s Setting up libqt5websockets5:s390x (5.15.15-2) ... 2528s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2528s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2528s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2528s Setting up python3-pyside2.qtnetwork (5.15.16-3.1) ... 2528s Setting up python3-pyside2.qtwebsockets (5.15.16-3.1) ... 2528s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2528s autopkgtest: DBG: testbed command exited with code 0 2528s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtwebsockets'], kind short, sout pipe, serr pipe, env [] 2528s autopkgtest: DBG: testbed command exited with code 0 2528s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command22-packages.all"], kind short, sout raw, serr pipe, env [] 2528s autopkgtest: DBG: testbed command exited with code 0 2528s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command22-packages.all /tmp/autopkgtest-work.nwculqua/out/command22-packages.all 2529s autopkgtest: DBG: got reply from testbed: ok 2529s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 2529s autopkgtest: DBG: testbed command exited with code 1 2529s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 2529s autopkgtest: DBG: testbed command exited with code 0 2529s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 2531s autopkgtest: DBG: got reply from testbed: ok 2531s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 2531s autopkgtest: DBG: testbed command exited with code 0 2531s autopkgtest [14:40:33]: test command22: debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets 2531s autopkgtest [14:40:33]: test command22: [----------------------- 2531s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command22-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command22-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command22-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets'"], kind test, sout raw, serr raw, env [] 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command22-artifacts 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command22-stderr 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command22-stdout 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtwebsockets PySide2.QtWebSockets 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.ZJbJnh2Yu7/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command22-stdout 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.ZJbJnh2Yu7/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command22-stdout 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 1352 to /tmp/autopkgtest_script_pid 2531s Testing python3 package python3-pyside2.qtwebsockets 2531s Testing with python3.13: 2531s 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 2531s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 2531s autopkgtest: DBG: testbed command exited with code 0 2532s autopkgtest [14:40:34]: test command22: -----------------------] 2532s autopkgtest: DBG: testbed executing test finished with exit status 0 2532s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command22-stdout /tmp/autopkgtest-work.nwculqua/out/command22-stdout 2532s autopkgtest: DBG: got reply from testbed: ok 2532s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command22-stderr /tmp/autopkgtest-work.nwculqua/out/command22-stderr 2532s autopkgtest: DBG: got reply from testbed: ok 2532s autopkgtest [14:40:34]: test command22: - - - - - - - - - - results - - - - - - - - - - 2532s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command22-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 2532s command22 PASS (superficial) 2532s autopkgtest: DBG: got reply from testbed: ok 2532s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command22-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2532s autopkgtest: DBG: testbed command exited with code 0 2532s autopkgtest [14:40:34]: test command23: preparing testbed 2532s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-pyside2.qtwebsockets', 'python3'], deps_new=['python3-pyside2.qtopenglfunctions', 'python3'] 2532s autopkgtest: DBG: testbed reset 2532s autopkgtest: DBG: sending command to testbed: revert 2620s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.TH8HvJ 2620s autopkgtest: DBG: sending command to testbed: print-execute-command 2620s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zbfsget9/runcmd 2620s autopkgtest: DBG: sending command to testbed: capabilities 2620s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed ok isolation-machine revert-full-system reboot revert 2620s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'has_internet'] 2620s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2620s autopkgtest: DBG: testbed command exited with code 0 2620s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.TH8HvJ/wrapper.sh 2620s autopkgtest: DBG: got reply from testbed: ok 2620s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/wrapper.sh'], kind short, sout raw, serr pipe, env [] 2620s autopkgtest: DBG: testbed command exited with code 0 2620s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 2620s autopkgtest: DBG: testbed command exited with code 0 2620s autopkgtest [14:42:02]: testbed dpkg architecture: s390x 2620s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 2621s autopkgtest: DBG: testbed command exited with code 0 2621s autopkgtest [14:42:03]: testbed apt version: 2.9.30ubuntu1 2621s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 2621s autopkgtest: DBG: testbed command exited with code 0 2621s autopkgtest: DBG: testbed has eatmydata 2621s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 2621s autopkgtest: DBG: testbed command exited with code 0 2621s autopkgtest [14:42:03]: @@@@@@@@@@@@@@@@@@@@ test bed setup 2621s 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 [] 2621s autopkgtest: DBG: testbed command exited with code 0 2621s autopkgtest [14:42:03]: testbed release detected to be: plucky 2621s 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 [] 2621s autopkgtest: DBG: testbed command exited with code 0 2621s 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 [] 2621s autopkgtest: DBG: testbed command exited with code 0 2621s autopkgtest: DBG: adding APT source: Types: deb deb-src 2621s URIs: http://ftpmaster.internal/ubuntu/ 2621s Suites: plucky-proposed 2621s Components: main restricted universe multiverse 2621s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 2621s 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 [] 2622s autopkgtest: DBG: testbed command exited with code 0 2622s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 2622s Package: * 2622s Pin: release plucky-proposed 2622s Pin-Priority: 500 2622s 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 [] 2622s autopkgtest: DBG: testbed command exited with code 0 2622s autopkgtest [14:42:04]: updating testbed package index (apt update) 2622s 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'] 2622s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 2622s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 2622s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 2622s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 2623s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 2623s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 2623s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [710 kB] 2623s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [88.5 kB] 2623s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [133 kB] 2623s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 2623s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [632 kB] 2623s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 2623s Fetched 1698 kB in 1s (1869 kB/s) 2623s Reading package lists... 2623s autopkgtest: DBG: testbed command exited with code 0 2623s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 2624s Package: * 2624s Pin: release plucky-proposed 2624s Pin-Priority: 100 2624s 2624s Package: src:llvm-toolchain-20:any 2624s Pin: release plucky-proposed 2624s Pin-Priority: 995 2624s 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:llvm-toolchain-20:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 2624s autopkgtest: DBG: testbed command exited with code 0 2624s 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.TH8HvJ/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 2624s autopkgtest: DBG: testbed command exited with code 0 2624s 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'] 2624s + lsb_release --codename --short 2624s + RELEASE=plucky 2624s + cat 2624s + [ plucky != trusty ] 2624s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 2624s Reading package lists... 2624s Building dependency tree... 2624s Reading state information... 2624s Calculating upgrade... 2624s Calculating upgrade... 2624s The following packages were automatically installed and are no longer required: 2624s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 2624s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 2624s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 2624s linux-tools-6.11.0-8-generic 2624s Use 'sudo apt autoremove' to remove them. 2624s The following packages will be upgraded: 2624s apparmor base-files gcc-14-base libapparmor1 motd-news-config 2624s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2624s Need to get 946 kB of archives. 2624s After this operation, 0 B of additional disk space will be used. 2624s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 2625s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 2625s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 2625s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu5 [54.3 kB] 2625s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu5 [758 kB] 2625s Preconfiguring packages ... 2625s Fetched 946 kB in 1s (1568 kB/s) 2625s (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.) 2625s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 2625s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 2625s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 2625s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 2625s Setting up base-files (13.6ubuntu1) ... 2625s Updating /root/.profile to current default. 2626s motd-news.service is a disabled or a static unit not running, not starting it. 2626s (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.) 2626s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 2626s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 2626s Preparing to unpack .../libapparmor1_4.1.0~beta5-0ubuntu5_s390x.deb ... 2626s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu5) over (4.1.0~beta5-0ubuntu4) ... 2626s Preparing to unpack .../apparmor_4.1.0~beta5-0ubuntu5_s390x.deb ... 2626s Unpacking apparmor (4.1.0~beta5-0ubuntu5) over (4.1.0~beta5-0ubuntu4) ... 2626s Setting up motd-news-config (13.6ubuntu1) ... 2626s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu5) ... 2626s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 2626s Setting up apparmor (4.1.0~beta5-0ubuntu5) ... 2626s Installing new version of config file /etc/apparmor.d/fusermount3 ... 2627s Reloading AppArmor profiles 2629s Processing triggers for install-info (7.1.1-1) ... 2629s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2629s Processing triggers for systemd (257.2-3ubuntu1) ... 2629s Processing triggers for man-db (2.13.0-1) ... 2629s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 2629s Processing triggers for initramfs-tools (0.145ubuntu2) ... 2630s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 2630s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 2633s Using config file '/etc/zipl.conf' 2633s Building bootmap in '/boot' 2633s Adding IPL section 'ubuntu' (default) 2633s Preparing boot device for LD-IPL: vda (0000). 2633s Done. 2634s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 2634s + /usr/lib/apt/apt-helper analyze-pattern ?true 2634s + uname+ -r 2634s sed s/\./\\./g 2634s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 2634s + apt list ?obsolete 2634s + tail -n+2 2634s + cut+ -d/ -f1 2634s grep -v ^linux-.*6\.12\.0-15-generic.* 2634s + true 2634s + obsolete_pkgs= 2634s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 2634s Reading package lists... 2634s Building dependency tree... 2634s Reading state information... 2634s Solving dependencies... 2634s The following packages will be REMOVED: 2634s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 2634s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 2634s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 2634s linux-tools-6.11.0-8-generic* 2634s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 2634s After this operation, 167 MB disk space will be freed. 2634s (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.) 2634s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 2634s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 2634s Removing libpython3.12t64:s390x (3.12.9-1) ... 2634s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 2634s Removing libnsl2:s390x (1.3.0-3build3) ... 2634s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 2634s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 2634s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 2635s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2635s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2635s (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 ... 55930 files and directories currently installed.) 2635s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 2635s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 2635s + grep -q trusty /etc/lsb-release 2635s + [ ! -d /usr/share/doc/unattended-upgrades ] 2635s + [ ! -d /usr/share/doc/lxd ] 2635s + [ ! -d /usr/share/doc/lxd-client ] 2635s + [ ! -d /usr/share/doc/snapd ] 2635s + type iptables 2635s + cat 2635s + chmod 755 /etc/rc.local 2635s + . /etc/rc.local 2635s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 2635s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 2635s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 2635s + uname -m 2635s + [ s390x = ppc64le ] 2635s + [ -d /run/systemd/system ] 2635s + systemd-detect-virt --quiet --vm 2635s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 2635s + cat 2635s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 2635s + echo COMPRESS=lz4 2635s autopkgtest: DBG: testbed command exited with code 0 2635s autopkgtest [14:42:17]: upgrading testbed (apt dist-upgrade and autopurge) 2635s 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'] 2636s Reading package lists... 2636s Building dependency tree... 2636s Reading state information... 2636s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 2636s Starting 2 pkgProblemResolver with broken count: 0 2636s Done 2636s Entering ResolveByKeep 2636s 2636s Calculating upgrade... 2636s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2636s autopkgtest: DBG: testbed command exited with code 0 2636s 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'] 2636s Reading package lists... 2636s Building dependency tree... 2636s Reading state information... 2637s Starting pkgProblemResolver with broken count: 0 2637s Starting 2 pkgProblemResolver with broken count: 0 2637s Done 2637s Solving dependencies... 2637s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 2637s autopkgtest: DBG: testbed command exited with code 0 2637s 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.TH8HvJ/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 2637s autopkgtest: DBG: testbed command exited with code 1 2637s autopkgtest [14:42:19]: rebooting testbed after setup commands that affected boot 2637s autopkgtest: DBG: sending command to testbed: reboot 2652s autopkgtest: DBG: got reply from testbed: ok 2652s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2652s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2652s autopkgtest: DBG: testbed command exited with code 0 2652s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2653s autopkgtest: DBG: got reply from testbed: ok 2653s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2653s autopkgtest: DBG: testbed command exited with code 0 2653s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2653s autopkgtest: DBG: testbed command exited with code 0 2653s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2653s autopkgtest: DBG: testbed command exited with code 0 2653s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2653s autopkgtest: DBG: testbed command exited with code 0 2653s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2653s autopkgtest: DBG: got reply from testbed: ok 2653s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2654s autopkgtest: DBG: testbed command exited with code 0 2654s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2654s autopkgtest: DBG: testbed command exited with code 0 2654s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2654s autopkgtest: DBG: testbed command exited with code 0 2654s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/testbed-packages"], kind short, sout raw, serr pipe, env [] 2654s autopkgtest: DBG: testbed command exited with code 0 2654s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/testbed-packages /tmp/autopkgtest-work.nwculqua/out/testbed-packages 2654s autopkgtest: DBG: got reply from testbed: ok 2654s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 2654s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2654s autopkgtest: DBG: testbed command exited with code 0 2654s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot 2655s autopkgtest: DBG: got reply from testbed: ok 2655s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2655s autopkgtest: DBG: testbed command exited with code 0 2655s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2655s autopkgtest: DBG: testbed command exited with code 0 2655s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 2655s autopkgtest: DBG: testbed command exited with code 0 2655s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ'], kind short, sout raw, serr pipe, env [] 2655s autopkgtest: DBG: testbed command exited with code 0 2655s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare 2656s autopkgtest: DBG: got reply from testbed: ok 2656s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2656s autopkgtest: DBG: testbed command exited with code 0 2656s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.TH8HvJ/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 2656s autopkgtest: DBG: testbed command exited with code 0 2656s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 2656s autopkgtest: DBG: testbed command exited with code 0 2656s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 2656s autopkgtest: DBG: install_deps: deps_new=['python3-pyside2.qtopenglfunctions', 'python3'] 2656s autopkgtest: DBG: install-deps: satisfying python3-pyside2.qtopenglfunctions, python3 2656s autopkgtest: DBG: can use apt-get on testbed: True 2656s 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'] 2656s Reading package lists... 2656s Building dependency tree... 2656s Reading state information... 2656s Starting pkgProblemResolver with broken count: 0 2657s Starting 2 pkgProblemResolver with broken count: 0 2657s Done 2657s The following NEW packages will be installed: 2657s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 2657s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 2657s libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 2657s libglx-mesa0 libglx0 libgraphite2-3 libharfbuzz0b libice6 libinput-bin 2657s libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 libpcre2-16-0 2657s libpyside2-py3-5.15t64 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 2657s libqt5network5t64 libqt5qml5 libshiboken2-py3-5.15t64 libsm6 libvulkan1 2657s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 2657s libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 2657s libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 2657s libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xfixes0 2657s libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxkbcommon-x11-0 libxrender1 2657s libxshmfence1 libxxf86vm1 mesa-libgallium python3-pyside2.qtcore 2657s python3-pyside2.qtgui python3-pyside2.qtopenglfunctions x11-common 2657s 0 upgraded, 67 newly installed, 0 to remove and 0 not upgraded. 2657s Need to get 25.6 MB of archives. 2657s After this operation, 102 MB of additional disk space will be used. 2657s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 2657s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 2657s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 2657s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 2657s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 2657s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 2657s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.1-1 [43.3 kB] 2657s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 2657s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-3 [37.3 kB] 2657s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 2657s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 2657s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 2657s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 2657s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 2658s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 2658s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 2658s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 2658s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 2658s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 2658s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-3 [28.2 kB] 2658s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 2658s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 2658s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 2658s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 2658s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 2658s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 2658s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 2658s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 2658s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 2658s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 2658s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 2658s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 2658s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 2658s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 2658s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 2658s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 2658s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 2658s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 2658s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 2658s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 2658s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-4ubuntu1 [2242 kB] 2658s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-4ubuntu1 [240 kB] 2658s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-4ubuntu1 [788 kB] 2658s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5qml5 s390x 5.15.15+dfsg-3 [1552 kB] 2658s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libshiboken2-py3-5.15t64 s390x 5.15.16-3.1 [202 kB] 2658s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyside2-py3-5.15t64 s390x 5.15.16-3.1 [82.2 kB] 2658s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 2658s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 2658s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 2658s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 2658s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 2658s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 2658s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 2658s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 2658s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 2658s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 2658s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 2658s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 2658s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 2658s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 2658s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 2658s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 2658s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 2658s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-4ubuntu1 [4187 kB] 2659s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtcore s390x 5.15.16-3.1 [1125 kB] 2659s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtgui s390x 5.15.16-3.1 [1191 kB] 2659s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyside2.qtopenglfunctions s390x 5.15.16-3.1 [1157 kB] 2659s Fetched 25.6 MB in 2s (12.8 MB/s) 2659s Selecting previously unselected package libfreetype6:s390x. 2659s (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 ... 55928 files and directories currently installed.) 2659s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 2659s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 2659s Selecting previously unselected package fonts-dejavu-mono. 2659s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 2659s Unpacking fonts-dejavu-mono (2.37-8) ... 2659s Selecting previously unselected package fonts-dejavu-core. 2659s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 2659s Unpacking fonts-dejavu-core (2.37-8) ... 2659s Selecting previously unselected package fontconfig-config. 2659s Preparing to unpack .../03-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 2659s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 2659s Selecting previously unselected package libfontconfig1:s390x. 2659s Preparing to unpack .../04-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 2659s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2659s Selecting previously unselected package fontconfig. 2659s Preparing to unpack .../05-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 2659s Unpacking fontconfig (2.15.0-2ubuntu1) ... 2659s Selecting previously unselected package libdouble-conversion3:s390x. 2659s Preparing to unpack .../06-libdouble-conversion3_3.3.1-1_s390x.deb ... 2659s Unpacking libdouble-conversion3:s390x (3.3.1-1) ... 2659s Selecting previously unselected package libdrm-radeon1:s390x. 2659s Preparing to unpack .../07-libdrm-radeon1_2.4.123-1_s390x.deb ... 2659s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 2659s Selecting previously unselected package libwayland-server0:s390x. 2659s Preparing to unpack .../08-libwayland-server0_1.23.1-3_s390x.deb ... 2659s Unpacking libwayland-server0:s390x (1.23.1-3) ... 2659s Selecting previously unselected package libglapi-mesa:s390x. 2659s Preparing to unpack .../09-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 2659s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2659s Selecting previously unselected package libx11-xcb1:s390x. 2659s Preparing to unpack .../10-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 2659s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 2659s Selecting previously unselected package libxcb-dri3-0:s390x. 2659s Preparing to unpack .../11-libxcb-dri3-0_1.17.0-2_s390x.deb ... 2659s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 2659s Selecting previously unselected package libxcb-present0:s390x. 2659s Preparing to unpack .../12-libxcb-present0_1.17.0-2_s390x.deb ... 2659s Unpacking libxcb-present0:s390x (1.17.0-2) ... 2659s Selecting previously unselected package libxcb-randr0:s390x. 2659s Preparing to unpack .../13-libxcb-randr0_1.17.0-2_s390x.deb ... 2659s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 2659s Selecting previously unselected package libxcb-sync1:s390x. 2659s Preparing to unpack .../14-libxcb-sync1_1.17.0-2_s390x.deb ... 2659s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 2659s Selecting previously unselected package libxcb-xfixes0:s390x. 2659s Preparing to unpack .../15-libxcb-xfixes0_1.17.0-2_s390x.deb ... 2659s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 2659s Selecting previously unselected package libxshmfence1:s390x. 2659s Preparing to unpack .../16-libxshmfence1_1.3-1build5_s390x.deb ... 2659s Unpacking libxshmfence1:s390x (1.3-1build5) ... 2659s Selecting previously unselected package mesa-libgallium:s390x. 2659s Preparing to unpack .../17-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 2659s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2660s Selecting previously unselected package libgbm1:s390x. 2660s Preparing to unpack .../18-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 2660s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 2660s Selecting previously unselected package libwayland-client0:s390x. 2660s Preparing to unpack .../19-libwayland-client0_1.23.1-3_s390x.deb ... 2660s Unpacking libwayland-client0:s390x (1.23.1-3) ... 2660s Selecting previously unselected package libxcb-shm0:s390x. 2660s Preparing to unpack .../20-libxcb-shm0_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libegl-mesa0:s390x. 2660s Preparing to unpack .../21-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2660s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2660s Selecting previously unselected package libvulkan1:s390x. 2660s Preparing to unpack .../22-libvulkan1_1.4.304.0-1_s390x.deb ... 2660s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 2660s Selecting previously unselected package libgl1-mesa-dri:s390x. 2660s Preparing to unpack .../23-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 2660s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2660s Selecting previously unselected package libxcb-glx0:s390x. 2660s Preparing to unpack .../24-libxcb-glx0_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libxxf86vm1:s390x. 2660s Preparing to unpack .../25-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 2660s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 2660s Selecting previously unselected package libglx-mesa0:s390x. 2660s Preparing to unpack .../26-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 2660s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2660s Selecting previously unselected package libgraphite2-3:s390x. 2660s Preparing to unpack .../27-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 2660s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2660s Selecting previously unselected package libharfbuzz0b:s390x. 2660s Preparing to unpack .../28-libharfbuzz0b_10.2.0-1_s390x.deb ... 2660s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 2660s Selecting previously unselected package x11-common. 2660s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 2660s Unpacking x11-common (1:7.7+23ubuntu3) ... 2660s Selecting previously unselected package libice6:s390x. 2660s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 2660s Unpacking libice6:s390x (2:1.1.1-1) ... 2660s Selecting previously unselected package libwacom-common. 2660s Preparing to unpack .../31-libwacom-common_2.14.0-1_all.deb ... 2660s Unpacking libwacom-common (2.14.0-1) ... 2660s Selecting previously unselected package libwacom9:s390x. 2660s Preparing to unpack .../32-libwacom9_2.14.0-1_s390x.deb ... 2660s Unpacking libwacom9:s390x (2.14.0-1) ... 2660s Selecting previously unselected package libinput-bin. 2660s Preparing to unpack .../33-libinput-bin_1.27.1-1_s390x.deb ... 2660s Unpacking libinput-bin (1.27.1-1) ... 2660s Selecting previously unselected package libmtdev1t64:s390x. 2660s Preparing to unpack .../34-libmtdev1t64_1.1.7-1_s390x.deb ... 2660s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 2660s Selecting previously unselected package libinput10:s390x. 2660s Preparing to unpack .../35-libinput10_1.27.1-1_s390x.deb ... 2660s Unpacking libinput10:s390x (1.27.1-1) ... 2660s Selecting previously unselected package libjpeg-turbo8:s390x. 2660s Preparing to unpack .../36-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 2660s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2660s Selecting previously unselected package libjpeg8:s390x. 2660s Preparing to unpack .../37-libjpeg8_8c-2ubuntu11_s390x.deb ... 2660s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 2660s Selecting previously unselected package libmd4c0:s390x. 2660s Preparing to unpack .../38-libmd4c0_0.5.2-2_s390x.deb ... 2660s Unpacking libmd4c0:s390x (0.5.2-2) ... 2660s Selecting previously unselected package libpcre2-16-0:s390x. 2660s Preparing to unpack .../39-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 2660s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2660s Selecting previously unselected package libqt5core5t64:s390x. 2660s Preparing to unpack .../40-libqt5core5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2660s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2660s Selecting previously unselected package libqt5dbus5t64:s390x. 2660s Preparing to unpack .../41-libqt5dbus5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2660s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2660s Selecting previously unselected package libqt5network5t64:s390x. 2660s Preparing to unpack .../42-libqt5network5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2660s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2660s Selecting previously unselected package libqt5qml5:s390x. 2660s Preparing to unpack .../43-libqt5qml5_5.15.15+dfsg-3_s390x.deb ... 2660s Unpacking libqt5qml5:s390x (5.15.15+dfsg-3) ... 2660s Selecting previously unselected package libshiboken2-py3-5.15t64. 2660s Preparing to unpack .../44-libshiboken2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2660s Unpacking libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2660s Selecting previously unselected package libpyside2-py3-5.15t64. 2660s Preparing to unpack .../45-libpyside2-py3-5.15t64_5.15.16-3.1_s390x.deb ... 2660s Unpacking libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2660s Selecting previously unselected package libglvnd0:s390x. 2660s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 2660s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 2660s Selecting previously unselected package libegl1:s390x. 2660s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 2660s Unpacking libegl1:s390x (1.7.0-1build1) ... 2660s Selecting previously unselected package libglx0:s390x. 2660s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 2660s Unpacking libglx0:s390x (1.7.0-1build1) ... 2660s Selecting previously unselected package libgl1:s390x. 2660s Preparing to unpack .../49-libgl1_1.7.0-1build1_s390x.deb ... 2660s Unpacking libgl1:s390x (1.7.0-1build1) ... 2660s Selecting previously unselected package libsm6:s390x. 2660s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 2660s Unpacking libsm6:s390x (2:1.2.4-1) ... 2660s Selecting previously unselected package libxcb-icccm4:s390x. 2660s Preparing to unpack .../51-libxcb-icccm4_0.4.2-1_s390x.deb ... 2660s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 2660s Selecting previously unselected package libxcb-util1:s390x. 2660s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 2660s Unpacking libxcb-util1:s390x (0.4.1-1) ... 2660s Selecting previously unselected package libxcb-image0:s390x. 2660s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 2660s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 2660s Selecting previously unselected package libxcb-keysyms1:s390x. 2660s Preparing to unpack .../54-libxcb-keysyms1_0.4.1-1_s390x.deb ... 2660s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 2660s Selecting previously unselected package libxcb-render0:s390x. 2660s Preparing to unpack .../55-libxcb-render0_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-render0:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libxcb-render-util0:s390x. 2660s Preparing to unpack .../56-libxcb-render-util0_0.3.10-1_s390x.deb ... 2660s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 2660s Selecting previously unselected package libxcb-shape0:s390x. 2660s Preparing to unpack .../57-libxcb-shape0_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libxcb-xinerama0:s390x. 2660s Preparing to unpack .../58-libxcb-xinerama0_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libxcb-xinput0:s390x. 2660s Preparing to unpack .../59-libxcb-xinput0_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libxcb-xkb1:s390x. 2660s Preparing to unpack .../60-libxcb-xkb1_1.17.0-2_s390x.deb ... 2660s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 2660s Selecting previously unselected package libxkbcommon-x11-0:s390x. 2660s Preparing to unpack .../61-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 2660s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 2660s Selecting previously unselected package libxrender1:s390x. 2660s Preparing to unpack .../62-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 2660s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 2660s Selecting previously unselected package libqt5gui5t64:s390x. 2660s Preparing to unpack .../63-libqt5gui5t64_5.15.15+dfsg-4ubuntu1_s390x.deb ... 2660s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2660s Selecting previously unselected package python3-pyside2.qtcore. 2660s Preparing to unpack .../64-python3-pyside2.qtcore_5.15.16-3.1_s390x.deb ... 2660s Unpacking python3-pyside2.qtcore (5.15.16-3.1) ... 2660s Selecting previously unselected package python3-pyside2.qtgui. 2660s Preparing to unpack .../65-python3-pyside2.qtgui_5.15.16-3.1_s390x.deb ... 2660s Unpacking python3-pyside2.qtgui (5.15.16-3.1) ... 2660s Selecting previously unselected package python3-pyside2.qtopenglfunctions. 2660s Preparing to unpack .../66-python3-pyside2.qtopenglfunctions_5.15.16-3.1_s390x.deb ... 2660s Unpacking python3-pyside2.qtopenglfunctions (5.15.16-3.1) ... 2660s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 2660s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 2660s Setting up libwayland-server0:s390x (1.23.1-3) ... 2660s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 2660s Setting up libdouble-conversion3:s390x (3.3.1-1) ... 2660s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 2660s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 2660s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 2660s Setting up libshiboken2-py3-5.15t64 (5.15.16-3.1) ... 2660s Setting up libxcb-render0:s390x (1.17.0-2) ... 2660s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 2660s Setting up libglvnd0:s390x (1.7.0-1build1) ... 2660s Setting up libxcb-glx0:s390x (1.17.0-2) ... 2660s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 2660s Setting up libxcb-shape0:s390x (1.17.0-2) ... 2660s Setting up x11-common (1:7.7+23ubuntu3) ... 2661s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 2661s Setting up libxcb-shm0:s390x (1.17.0-2) ... 2661s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 2661s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 2661s Setting up libxcb-util1:s390x (0.4.1-1) ... 2661s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 2661s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 2661s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 2661s Setting up libxcb-present0:s390x (1.17.0-2) ... 2661s Setting up libqt5core5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2661s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 2661s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 2661s Setting up libxcb-sync1:s390x (1.17.0-2) ... 2661s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 2661s Setting up fonts-dejavu-mono (2.37-8) ... 2661s Setting up fonts-dejavu-core (2.37-8) ... 2661s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 2661s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 2661s Setting up libvulkan1:s390x (1.4.304.0-1) ... 2661s Setting up libmtdev1t64:s390x (1.1.7-1) ... 2661s Setting up libxshmfence1:s390x (1.3-1build5) ... 2661s Setting up libxcb-randr0:s390x (1.17.0-2) ... 2661s Setting up libmd4c0:s390x (0.5.2-2) ... 2661s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 2661s Setting up libwacom-common (2.14.0-1) ... 2661s Setting up libwayland-client0:s390x (1.23.1-3) ... 2661s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 2661s Setting up libice6:s390x (2:1.1.1-1) ... 2661s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 2661s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2661s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 2661s Setting up libwacom9:s390x (2.14.0-1) ... 2661s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 2661s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 2661s Setting up libqt5network5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2661s Setting up libinput-bin (1.27.1-1) ... 2661s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 2661s Setting up libqt5qml5:s390x (5.15.15+dfsg-3) ... 2661s Setting up libegl1:s390x (1.7.0-1build1) ... 2661s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 2661s Setting up libpyside2-py3-5.15t64 (5.15.16-3.1) ... 2661s Setting up libsm6:s390x (2:1.2.4-1) ... 2661s Setting up libinput10:s390x (1.27.1-1) ... 2661s Setting up fontconfig (2.15.0-2ubuntu1) ... 2663s Regenerating fonts cache... done. 2663s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 2663s Setting up libglx0:s390x (1.7.0-1build1) ... 2663s Setting up libgl1:s390x (1.7.0-1build1) ... 2663s Setting up python3-pyside2.qtcore (5.15.16-3.1) ... 2663s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-4ubuntu1) ... 2663s Setting up python3-pyside2.qtgui (5.15.16-3.1) ... 2663s Setting up python3-pyside2.qtopenglfunctions (5.15.16-3.1) ... 2663s Processing triggers for man-db (2.13.0-1) ... 2663s Processing triggers for udev (257.2-3ubuntu1) ... 2664s Processing triggers for libc-bin (2.40-4ubuntu1) ... 2664s autopkgtest: DBG: testbed command exited with code 0 2664s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pyside2.qtopenglfunctions'], kind short, sout pipe, serr pipe, env [] 2664s autopkgtest: DBG: testbed command exited with code 0 2664s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.TH8HvJ/command23-packages.all"], kind short, sout raw, serr pipe, env [] 2664s autopkgtest: DBG: testbed command exited with code 0 2664s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command23-packages.all /tmp/autopkgtest-work.nwculqua/out/command23-packages.all 2664s autopkgtest: DBG: got reply from testbed: ok 2664s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr raw, env [] 2664s autopkgtest: DBG: testbed command exited with code 1 2664s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.TH8HvJ/build.4T4'], kind short, sout raw, serr pipe, env [] 2665s autopkgtest: DBG: testbed command exited with code 0 2665s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.nwculqua/out/tests-tree/ /tmp/autopkgtest.TH8HvJ/build.4T4/src/ 2679s autopkgtest: DBG: got reply from testbed: ok 2679s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.TH8HvJ/build.4T4/src'], kind short, sout raw, serr pipe, env [] 2679s autopkgtest: DBG: testbed command exited with code 0 2679s autopkgtest [14:43:01]: test command23: debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions 2679s autopkgtest [14:43:01]: test command23: [----------------------- 2679s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.TH8HvJ/wrapper.sh --debug --artifacts=/tmp/autopkgtest.TH8HvJ/command23-artifacts --chdir=/tmp/autopkgtest.TH8HvJ/build.4T4/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.TH8HvJ/command23-stderr --stdout=/tmp/autopkgtest.TH8HvJ/command23-stdout --tmp=/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5' -- bash -ec 'debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions'"], kind test, sout raw, serr raw, env [] 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.TH8HvJ/command23-artifacts 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: changing to directory: /tmp/autopkgtest.TH8HvJ/build.4T4/src 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: LANG=C.UTF-8 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LANGUAGE 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ADDRESS 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_ALL 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_COLLATE 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_CTYPE 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_IDENTIFICATION 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MEASUREMENT 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MESSAGES 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_MONETARY 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NAME 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_NUMERIC 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_PAPER 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TELEPHONE 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: unsetting environment: LC_TIME 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: pretending to be a login shell 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write standard error to /tmp/autopkgtest.TH8HvJ/command23-stderr 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: will write stdout to /tmp/autopkgtest.TH8HvJ/command23-stdout 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.TH8HvJ/autopkgtest_tmp 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=llvm-toolchain-20/1:20.1.0~+rc2-1~exp2ubuntu0.5 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: command to run: bash -ec debian/tests/test_install_python3.sh python3-pyside2.qtopenglfunctions PySide2.QtOpenGLFunctions 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.lQw9FKUD5k/out to stdout and file: /tmp/autopkgtest.TH8HvJ/command23-stdout 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: copying /tmp/tmp.lQw9FKUD5k/err to standard error and file: /tmp/autopkgtest.TH8HvJ/command23-stdout 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: writing script pid 2217 to /tmp/autopkgtest_script_pid 2679s Testing python3 package python3-pyside2.qtopenglfunctions 2679s Testing with python3.13: 2679s 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: checking for leaked background processes... 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: waiting for tee/cat subprocesses... 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: cleaning up... 2679s /tmp/autopkgtest.TH8HvJ/wrapper.sh: Exit status: 0 2679s autopkgtest: DBG: testbed command exited with code 0 2679s autopkgtest [14:43:01]: test command23: -----------------------] 2679s autopkgtest: DBG: testbed executing test finished with exit status 0 2679s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command23-stdout /tmp/autopkgtest-work.nwculqua/out/command23-stdout 2680s autopkgtest: DBG: got reply from testbed: ok 2680s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command23-stderr /tmp/autopkgtest-work.nwculqua/out/command23-stderr 2680s autopkgtest: DBG: got reply from testbed: ok 2680s autopkgtest [14:43:02]: test command23: - - - - - - - - - - results - - - - - - - - - - 2680s command23 PASS (superficial) 2680s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.TH8HvJ/command23-artifacts/ /tmp/autopkgtest-work.nwculqua/out/artifacts/ 2680s autopkgtest: DBG: got reply from testbed: ok 2680s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.TH8HvJ/command23-artifacts', '/tmp/autopkgtest.TH8HvJ/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 2680s autopkgtest: DBG: testbed command exited with code 0 2680s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 2680s autopkgtest [14:43:02]: @@@@@@@@@@@@@@@@@@@@ summary 2680s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2680s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2680s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2680s command5 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2680s command14 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2680s command24 SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 2680s command1 PASS (superficial) 2680s command2 PASS (superficial) 2680s command3 PASS (superficial) 2680s command4 PASS (superficial) 2680s command6 PASS (superficial) 2680s command7 PASS (superficial) 2680s command8 PASS (superficial) 2680s command9 PASS (superficial) 2680s command10 PASS (superficial) 2680s command11 PASS (superficial) 2680s command12 PASS (superficial) 2680s command13 PASS (superficial) 2680s command15 PASS (superficial) 2680s command16 PASS (superficial) 2680s command17 PASS (superficial) 2680s command18 PASS (superficial) 2680s command19 PASS (superficial) 2680s command20 PASS (superficial) 2680s command21 PASS (superficial) 2680s command22 PASS (superficial) 2680s command23 PASS (superficial) 2680s autopkgtest: DBG: testbed stop 2680s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.TH8HvJ 2680s autopkgtest: DBG: sending command to testbed: close 2685s autopkgtest: DBG: got reply from testbed: ok 2685s autopkgtest: DBG: sending command to testbed: quit 2685s nova [W] Using flock in prodstack6-s390x 2685s flock: timeout while waiting to get lock 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 9109f4d0-2f7d-4466-b4c4-234c7eef2741 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 1413a3ae-0cbb-4bd7-a226-9b4b85fba30b to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 42c5b6ce-dc62-4d44-91fc-7eec1a351667 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 27a838aa-da9a-4909-83f9-2a03cc4cd88c to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for e52d4b25-a8f6-494d-b5d3-38b4d8369ca4 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for d53d84a1-2939-403a-9f98-d49ca5e0f1f0 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 3e5046f0-bdc3-4258-a504-7e0348d5be6c to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for fe94b740-8a13-4253-8ed9-d97d281815b2 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 5ada6bcb-6f7e-436d-83a8-d90279668aa3 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for fc02da41-6190-4e4d-b718-65e2faadb5a5 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 57fa572c-aef8-4e3f-b1ad-dac3950e7e4e to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 7ee07991-cc33-43ae-8f23-72393beb688a to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 2cc0627c-22a7-468d-bafe-0497272c9edb to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 871903c5-803b-4e95-9db3-83fdacc023c4 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for a08d4bea-081d-4e4c-b797-0dc3ca9842b2 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 3fdb5072-e7f6-411b-bb8c-6e8bff3d1574 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 7e9e75e0-0ecc-428c-b123-5fcbd8864bef to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 1248c03f-9a7b-42ff-a039-a64fe393b7e4 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 24f26c9a-9064-4bc4-ba9a-bc8aef170994 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 5f9d65ba-7a30-4d00-a26d-da80688bef89 to get deleted. 2685s nova [W] Using flock in prodstack6-s390x 2685s Creating nova instance adt-plucky-s390x-pyside2-20250221-135821-juju-7f2275-prod-proposed-migration-environment-15-c641588e-015c-46b5-b4b2-be59ebd03b72 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 2685s nova [W] Timed out waiting for 8656ef81-36c8-4bba-915c-b9ed05a388d9 to get deleted.