0s autopkgtest: DBG: testbed init 0s autopkgtest [15:11:06]: starting date and time: 2025-02-12 15:11:06+0000 0s autopkgtest [15:11:06]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [15:11:06]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.wsxosrws/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:tilix --apt-upgrade apport --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-21.secgroup --name adt-plucky-s390x-apport-20250212-151106-juju-7f2275-prod-proposed-migration-environment-15-b0f35ad2-bd44-44b4-aa04-e5218e64be80 --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 115s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.wz6Wal 115s autopkgtest: DBG: sending command to testbed: print-execute-command 115s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.4u620i11/runcmd 115s autopkgtest: DBG: sending command to testbed: capabilities 115s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu reboot isolation-machine revert-full-system root-on-testbed 115s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert-full-system', 'root-on-testbed', 'has_internet'] 115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.wz6Wal/wrapper.sh 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/wrapper.sh'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [15:13:02]: testbed dpkg architecture: s390x 116s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [15:13:02]: testbed apt version: 2.9.28 116s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed has eatmydata 118s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 118s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [15:13:02]: @@@@@@@@@@@@@@@@@@@@ test bed setup 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [15:13:03]: testbed release detected to be: None 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT source: Types: deb deb-src 118s URIs: http://ftpmaster.internal/ubuntu/ 118s Suites: plucky-proposed 118s Components: main restricted universe multiverse 118s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 118s Package: * 118s Pin: release plucky-proposed 118s Pin-Priority: 500 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [15:13:03]: updating testbed package index (apt update) 118s 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'] 118s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 118s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 118s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 118s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.0 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [65.7 kB] 118s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [812 kB] 118s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [121 kB] 118s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [808 kB] 119s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3984 B] 119s Fetched 1935 kB in 1s (1747 kB/s) 119s Reading package lists... 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 119s Package: * 119s Pin: release plucky-proposed 119s Pin-Priority: 100 119s 119s Package: src:tilix:any 119s Pin: release plucky-proposed 119s Pin-Priority: 995 119s 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:tilix:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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.wz6Wal/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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'] 120s + lsb_release --codename --short 120s + RELEASE=plucky 120s + cat 120s + [ plucky != trusty ] 120s Reading package lists... 120s Building dependency tree...+ DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 120s 120s Reading state information... 120s Calculating upgrade... 120s The following packages were automatically installed and are no longer required: 120s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 120s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 120s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 120s linux-tools-6.11.0-8-generic 120s Use 'sudo apt autoremove' to remove them. 120s The following packages will be upgraded: 120s curl libcurl3t64-gnutls libcurl4t64 libnftables1 libnftnl11 nftables 120s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s Need to get 1573 kB of archives. 120s After this operation, 46.1 kB of additional disk space will be used. 120s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x nftables s390x 1.1.1-1build1 [71.5 kB] 121s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libnftnl11 s390x 1.2.8-1 [66.6 kB] 121s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnftables1 s390x 1.1.1-1build1 [388 kB] 121s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x curl s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [257 kB] 121s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl4t64 s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [397 kB] 121s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 121s Fetched 1573 kB in 1s (2464 kB/s) 121s (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 ... 80969 files and directories currently installed.) 121s Preparing to unpack .../0-nftables_1.1.1-1build1_s390x.deb ... 121s Unpacking nftables (1.1.1-1build1) over (1.1.0-2) ... 121s Preparing to unpack .../1-libnftnl11_1.2.8-1_s390x.deb ... 121s Unpacking libnftnl11:s390x (1.2.8-1) over (1.2.7-1) ... 121s Preparing to unpack .../2-libnftables1_1.1.1-1build1_s390x.deb ... 121s Unpacking libnftables1:s390x (1.1.1-1build1) over (1.1.0-2) ... 121s Preparing to unpack .../3-curl_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 121s Unpacking curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 121s Preparing to unpack .../4-libcurl4t64_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 121s Unpacking libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 121s Preparing to unpack .../5-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 121s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 122s Setting up libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 122s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 122s Setting up libnftnl11:s390x (1.2.8-1) ... 122s Setting up curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 122s Setting up libnftables1:s390x (1.1.1-1build1) ... 122s Setting up nftables (1.1.1-1build1) ... 122s Processing triggers for man-db (2.13.0-1) ... 123s Processing triggers for libc-bin (2.40-4ubuntu1) ... 123s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 123s + /usr/lib/apt/apt-helper analyze-pattern ?true 123s + + sed s/\./\\./g 123s uname -r 123s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 123s + apt list ?obsolete 123s + tail -n+2 123s + cut -d/ -f1 123s + grep -v ^linux-.*6\.12\.0-15-generic.* 123s + true 123s + obsolete_pkgs= 123s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s The following packages will be REMOVED: 123s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 123s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 123s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 123s linux-tools-6.11.0-8-generic* 124s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 124s After this operation, 167 MB disk space will be freed. 124s (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 ... 80969 files and directories currently installed.) 124s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 124s Removing libpython3.12t64:s390x (3.12.9-1) ... 124s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 124s Removing libnsl2:s390x (1.3.0-3build3) ... 124s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 124s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 125s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s Processing triggers for libc-bin (2.40-4ubuntu1) ... 125s (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 ... 55869 files and directories currently installed.) 125s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 125s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s + grep -q trusty /etc/lsb-release 125s + [ ! -d /usr/share/doc/unattended-upgrades ] 125s + [ ! -d /usr/share/doc/lxd ] 125s + [ ! -d /usr/share/doc/lxd-client ] 125s + [ ! -d /usr/share/doc/snapd ] 125s + type iptables 125s + cat 125s + chmod 755 /etc/rc.local 125s + . /etc/rc.local 125s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 125s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 125s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 125s + uname -m 125s + [ s390x = ppc64le ] 125s + [ -d /run/systemd/system ] 125s + systemd-detect-virt --quiet --vm 125s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 125s + cat 125s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 125s + echo COMPRESS=lz4 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [15:13:11]: upgrading testbed (apt dist-upgrade and autopurge) 125s 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'] 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 126s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 126s Entering ResolveByKeep 126s 126s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s autopkgtest: DBG: testbed command exited with code 0 126s 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'] 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 127s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 127s autopkgtest: DBG: testbed command exited with code 0 127s 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.wz6Wal/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 1 127s autopkgtest [15:13:13]: rebooting testbed after setup commands that affected boot 127s autopkgtest: DBG: sending command to testbed: reboot 131s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 157s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 166s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [15:13:54]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 168s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wz6Wal/testbed-packages"], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/testbed-packages /tmp/autopkgtest-work.wsxosrws/out/testbed-packages 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 169s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: Binaries: initialising 170s autopkgtest [15:13:56]: @@@@@@@@@@@@@@@@@@@@ apt-source apport 170s autopkgtest: DBG: blame += apport 170s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 170s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'apport'], kind short, sout pipe, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^dh-apport$'], kind short, sout pipe, serr raw, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'dh-apport=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport$'], kind short, sout pipe, serr raw, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport-core-dump-handler$'], kind short, sout pipe, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport-core-dump-handler=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport-gtk$'], kind short, sout pipe, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport-gtk=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-apport$'], kind short, sout pipe, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-apport=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport-noui$'], kind short, sout pipe, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport-noui=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport-retrace$'], kind short, sout pipe, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport-retrace=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport-valgrind$'], kind short, sout pipe, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport-valgrind=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apport-kde$'], kind short, sout pipe, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apport-kde=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-problem-report$'], kind short, sout pipe, serr raw, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-problem-report=2.31.0-0ubuntu5'], kind short, sout pipe, serr raw, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: install_deps: deps_new=[] 175s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s 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.wz6Wal/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source apport=2.31.0-0ubuntu5 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 apport_*.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=tilix/1.9.6-2build2'] 176s + cd / 176s + mktemp -d /tmp/autopkgtest.wz6Wal/build.XXX 176s + builddir=/tmp/autopkgtest.wz6Wal/build.Wf5 176s + cd /tmp/autopkgtest.wz6Wal/build.Wf5 176s + apt-get source -d -q --only-source apport=2.31.0-0ubuntu5 176s + OUT=Reading package lists... 176s NOTICE: 'apport' packaging is maintained in the 'Git' version control system at: 176s https://git.launchpad.net/~ubuntu-core-dev/ubuntu/+source/apport 176s Please use: 176s git clone https://git.launchpad.net/~ubuntu-core-dev/ubuntu/+source/apport 176s to retrieve the latest (possibly unreleased) updates to the package. 176s Need to get 836 kB of source archives. 176s Get:1 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (dsc) [3401 B] 176s Get:2 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (tar) [677 kB] 176s Get:3 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (asc) [833 B] 176s Get:4 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (diff) [154 kB] 176s Fetched 836 kB in 1s (1336 kB/s) 176s Download complete and in download only mode 176s + [ -n ] 176s + grep ^Get: 176s + echo Reading package lists... 176s NOTICE: 'apport' packaging is maintained in the 'Git' version control system at: 176s https://git.launchpad.net/~ubuntu-core-dev/ubuntu/+source/apport 176s Please use: 176s git clone https://git.launchpad.net/~ubuntu-core-dev/ubuntu/+source/apport 176s to retrieve the latest (possibly unreleased) updates to the package. 176s Need to get 836 kB of source archives. 176s Get:1 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (dsc) [3401 B] 176s Get:2 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (tar) [677 kB] 176s Get:3 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (asc) [833 B] 176s Get:4 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (diff) [154 kB] 176s Fetched 836 kB in 1s (1336 kB/s) 176s Download complete and in download only mode 176s Get:1 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (dsc) [3401 B] 176s Get:2 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (tar) [677 kB] 176s Get:3 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (asc) [833 B] 176s Get:4 http://ftpmaster.internal/ubuntu plucky/main apport 2.31.0-0ubuntu5 (diff) [154 kB] 176s + dpkg-source -x apport_2.31.0-0ubuntu5.dsc src 176s gpgv: Signature made Fri Feb 7 17:36:06 2025 UTC 176s gpgv: using RSA key 43FF47346CD228AA66034E3691057687541DC77E 176s gpgv: Can't check signature: No public key 176s dpkg-source: warning: cannot verify inline signature for ./apport_2.31.0-0ubuntu5.dsc: no acceptable signature found 176s + chmod -R a+rX . 176s + cd src/. 176s + pwd 176s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest [15:14:02]: testing package apport version 2.31.0-0ubuntu5 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/build.Wf5/src/debian/ /tmp/autopkgtest-work.wsxosrws/out/pkg/debian/ 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: processing dependency apport 177s autopkgtest: DBG: marked alternatives ['apport'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-retrace 177s autopkgtest: DBG: marked alternatives ['apport-retrace'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-valgrind 177s autopkgtest: DBG: marked alternatives ['apport-valgrind'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency default-jdk-headless | java-sdk-headless 177s autopkgtest: DBG: processing dependency dictionaries-common 177s autopkgtest: DBG: processing dependency gcc 177s autopkgtest: DBG: processing dependency kmod 177s autopkgtest: DBG: processing dependency libc6-dev 177s autopkgtest: DBG: processing dependency libxml2-utils 177s autopkgtest: DBG: processing dependency polkitd 177s autopkgtest: DBG: processing dependency python3-psutil 177s autopkgtest: DBG: processing dependency python3-pytest 177s autopkgtest: DBG: processing dependency python3-systemd 177s autopkgtest: DBG: processing dependency python3-zstandard 177s autopkgtest: DBG: Test defined: name unit-and-integration-tests path None command "cp -r tests "$AUTOPKGTEST_TMP" && cd "$AUTOPKGTEST_TMP" && python3 -m pytest -ra -v tests/unit/ tests/integration/" restrictions ['allow-stderr', 'needs-root'] features ['test-name=unit-and-integration-tests'] depends ['apport', 'apport-retrace', 'apport-valgrind', 'default-jdk-headless | java-sdk-headless', 'dictionaries-common', 'gcc', 'kmod', 'libc6-dev', 'libxml2-utils', 'polkitd', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'python3-zstandard'] 177s autopkgtest: DBG: processing dependency apport 177s autopkgtest: DBG: marked alternatives ['apport'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-gtk 177s autopkgtest: DBG: marked alternatives ['apport-gtk'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-kde 177s autopkgtest: DBG: marked alternatives ['apport-kde'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-retrace 177s autopkgtest: DBG: marked alternatives ['apport-retrace'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-valgrind 177s autopkgtest: DBG: marked alternatives ['apport-valgrind'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency chaos-marmosets 177s autopkgtest: DBG: processing dependency dbus 177s autopkgtest: DBG: processing dependency dbus-x11 177s autopkgtest: DBG: processing dependency dirmngr 177s autopkgtest: DBG: processing dependency gcc 177s autopkgtest: DBG: processing dependency gdb-multiarch 177s autopkgtest: DBG: processing dependency gnome-icon-theme 177s autopkgtest: DBG: processing dependency gvfs-daemons 177s autopkgtest: DBG: processing dependency psmisc 177s autopkgtest: DBG: processing dependency python3-dbus 177s autopkgtest: DBG: processing dependency python3-psutil 177s autopkgtest: DBG: processing dependency python3-pytest 177s autopkgtest: DBG: processing dependency python3-systemd 177s autopkgtest: DBG: processing dependency ubuntu-dbgsym-keyring 177s autopkgtest: DBG: processing dependency ubuntu-keyring 177s autopkgtest: DBG: processing dependency xvfb 177s autopkgtest: DBG: Test defined: name system-tests path debian/tests/system-tests command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['apport', 'apport-gtk', 'apport-kde', 'apport-retrace', 'apport-valgrind', 'chaos-marmosets', 'dbus', 'dbus-x11', 'dirmngr', 'gcc', 'gdb-multiarch', 'gnome-icon-theme', 'gvfs-daemons', 'psmisc', 'python3-dbus', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'ubuntu-dbgsym-keyring', 'ubuntu-keyring', 'xvfb'] 177s autopkgtest [15:14:03]: build not needed 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/build.Wf5/src/ /tmp/autopkgtest-work.wsxosrws/out/tests-tree/ 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: processing dependency apport 177s autopkgtest: DBG: marked alternatives ['apport'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-retrace 177s autopkgtest: DBG: marked alternatives ['apport-retrace'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-valgrind 177s autopkgtest: DBG: marked alternatives ['apport-valgrind'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency default-jdk-headless | java-sdk-headless 177s autopkgtest: DBG: processing dependency dictionaries-common 177s autopkgtest: DBG: processing dependency gcc 177s autopkgtest: DBG: processing dependency kmod 177s autopkgtest: DBG: processing dependency libc6-dev 177s autopkgtest: DBG: processing dependency libxml2-utils 177s autopkgtest: DBG: processing dependency polkitd 177s autopkgtest: DBG: processing dependency python3-psutil 177s autopkgtest: DBG: processing dependency python3-pytest 177s autopkgtest: DBG: processing dependency python3-systemd 177s autopkgtest: DBG: processing dependency python3-zstandard 177s autopkgtest: DBG: Test defined: name unit-and-integration-tests path None command "cp -r tests "$AUTOPKGTEST_TMP" && cd "$AUTOPKGTEST_TMP" && python3 -m pytest -ra -v tests/unit/ tests/integration/" restrictions ['allow-stderr', 'needs-root'] features ['test-name=unit-and-integration-tests'] depends ['apport', 'apport-retrace', 'apport-valgrind', 'default-jdk-headless | java-sdk-headless', 'dictionaries-common', 'gcc', 'kmod', 'libc6-dev', 'libxml2-utils', 'polkitd', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'python3-zstandard'] 177s autopkgtest: DBG: processing dependency apport 177s autopkgtest: DBG: marked alternatives ['apport'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-gtk 177s autopkgtest: DBG: marked alternatives ['apport-gtk'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-kde 177s autopkgtest: DBG: marked alternatives ['apport-kde'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-retrace 177s autopkgtest: DBG: marked alternatives ['apport-retrace'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency apport-valgrind 177s autopkgtest: DBG: marked alternatives ['apport-valgrind'] as a synthesised dependency 177s autopkgtest: DBG: processing dependency chaos-marmosets 177s autopkgtest: DBG: processing dependency dbus 177s autopkgtest: DBG: processing dependency dbus-x11 177s autopkgtest: DBG: processing dependency dirmngr 177s autopkgtest: DBG: processing dependency gcc 177s autopkgtest: DBG: processing dependency gdb-multiarch 177s autopkgtest: DBG: processing dependency gnome-icon-theme 177s autopkgtest: DBG: processing dependency gvfs-daemons 177s autopkgtest: DBG: processing dependency psmisc 177s autopkgtest: DBG: processing dependency python3-dbus 177s autopkgtest: DBG: processing dependency python3-psutil 177s autopkgtest: DBG: processing dependency python3-pytest 177s autopkgtest: DBG: processing dependency python3-systemd 177s autopkgtest: DBG: processing dependency ubuntu-dbgsym-keyring 177s autopkgtest: DBG: processing dependency ubuntu-keyring 177s autopkgtest: DBG: processing dependency xvfb 177s autopkgtest: DBG: Test defined: name system-tests path debian/tests/system-tests command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['apport', 'apport-gtk', 'apport-kde', 'apport-retrace', 'apport-valgrind', 'chaos-marmosets', 'dbus', 'dbus-x11', 'dirmngr', 'gcc', 'gdb-multiarch', 'gnome-icon-theme', 'gvfs-daemons', 'psmisc', 'python3-dbus', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'ubuntu-dbgsym-keyring', 'ubuntu-keyring', 'xvfb'] 177s autopkgtest [15:14:03]: test unit-and-integration-tests: preparing testbed 177s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['apport', 'apport-retrace', 'apport-valgrind', 'default-jdk-headless | java-sdk-headless', 'dictionaries-common', 'gcc', 'kmod', 'libc6-dev', 'libxml2-utils', 'polkitd', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'python3-zstandard'] 177s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 177s autopkgtest: DBG: install_deps: deps_new=['apport', 'apport-retrace', 'apport-valgrind', 'default-jdk-headless | java-sdk-headless', 'dictionaries-common', 'gcc', 'kmod', 'libc6-dev', 'libxml2-utils', 'polkitd', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'python3-zstandard'] 177s autopkgtest: DBG: install-deps: satisfying apport, apport-retrace, apport-valgrind, default-jdk-headless | java-sdk-headless, dictionaries-common, gcc, kmod, libc6-dev, libxml2-utils, polkitd, python3-psutil, python3-pytest, python3-systemd, python3-zstandard 177s autopkgtest: DBG: can use apt-get on testbed: True 177s 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', 'apport, apport-retrace, apport-valgrind, default-jdk-headless | java-sdk-headless, dictionaries-common, gcc, kmod, libc6-dev, libxml2-utils, polkitd, python3-psutil, python3-pytest, python3-systemd, python3-zstandard'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 178s Reading package lists... 178s Building dependency tree... 178s Reading state information... 178s Starting pkgProblemResolver with broken count: 0 178s Starting 2 pkgProblemResolver with broken count: 0 178s Done 178s The following NEW packages will be installed: 178s apport-retrace apport-valgrind ca-certificates-java cpp cpp-14 178s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu default-jdk-headless 178s default-jre-headless dictionaries-common emacsen-common gcc gcc-14 178s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gdb java-common libasan8 178s libbabeltrace1 libc6-dbg libcc1-0 libdebuginfod-common libdebuginfod1t64 178s libduktape207 libgcc-14-dev libgomp1 libisl23 libitm1 libjpeg-turbo8 178s libjpeg8 liblcms2-2 libmpc3 libpcsclite1 libsource-highlight-common 178s libsource-highlight4t64 libubsan1 libxml2-utils openjdk-21-jdk-headless 178s openjdk-21-jre-headless polkitd python3-iniconfig python3-packaging 178s python3-pluggy python3-psutil python3-pytest python3-zstandard sgml-base 178s valgrind xml-core 178s 0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded. 178s Need to get 185 MB of archives. 178s After this operation, 504 MB of additional disk space will be used. 178s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod-common all 0.192-4 [15.4 kB] 178s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 179s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libbabeltrace1 s390x 1.5.11-4build1 [170 kB] 179s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod1t64 s390x 0.192-4 [22.6 kB] 179s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight-common all 3.1.9-4.3build1 [64.2 kB] 179s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight4t64 s390x 3.1.9-4.3build1 [268 kB] 179s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x gdb s390x 16.2-1ubuntu1 [8240 kB] 179s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libc6-dbg s390x 2.40-4ubuntu1 [7794 kB] 180s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x apport-retrace all 2.31.0-0ubuntu5 [14.6 kB] 180s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x valgrind s390x 1:3.24.0-0ubuntu1 [9636 kB] 180s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x apport-valgrind all 2.31.0-0ubuntu5 [5222 B] 180s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x ca-certificates-java all 20240118 [11.6 kB] 180s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 181s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 181s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 181s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 181s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 181s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 181s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x java-common all 0.76 [6852 B] 181s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 181s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 181s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 181s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libpcsclite1 s390x 2.3.1-1 [24.5 kB] 181s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x openjdk-21-jre-headless s390x 21.0.6+7-1 [43.8 MB] 182s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x default-jre-headless s390x 2:1.21-76 [3182 B] 182s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x openjdk-21-jdk-headless s390x 21.0.6+7-1 [78.6 MB] 184s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x default-jdk-headless s390x 2:1.21-76 [966 B] 184s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x emacsen-common all 3.0.5 [12.1 kB] 184s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dictionaries-common all 1.30.4 [176 kB] 184s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 184s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 184s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 184s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 184s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 184s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 184s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 185s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 185s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 185s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 185s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libduktape207 s390x 2.7.0+tests-0ubuntu3 [150 kB] 185s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libxml2-utils s390x 2.12.7+dfsg+really2.9.14-0.2ubuntu3 [41.1 kB] 185s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 185s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x polkitd s390x 126-2 [97.1 kB] 185s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 185s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 185s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 185s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 185s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 185s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zstandard s390x 0.23.0-2build1 [402 kB] 186s Preconfiguring packages ... 186s Fetched 185 MB in 7s (26.2 MB/s) 186s Selecting previously unselected package libdebuginfod-common. 186s (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 ... 55867 files and directories currently installed.) 186s Preparing to unpack .../00-libdebuginfod-common_0.192-4_all.deb ... 186s Unpacking libdebuginfod-common (0.192-4) ... 186s Selecting previously unselected package sgml-base. 186s Preparing to unpack .../01-sgml-base_1.31_all.deb ... 186s Unpacking sgml-base (1.31) ... 186s Selecting previously unselected package libbabeltrace1:s390x. 186s Preparing to unpack .../02-libbabeltrace1_1.5.11-4build1_s390x.deb ... 186s Unpacking libbabeltrace1:s390x (1.5.11-4build1) ... 186s Selecting previously unselected package libdebuginfod1t64:s390x. 186s Preparing to unpack .../03-libdebuginfod1t64_0.192-4_s390x.deb ... 186s Unpacking libdebuginfod1t64:s390x (0.192-4) ... 186s Selecting previously unselected package libsource-highlight-common. 186s Preparing to unpack .../04-libsource-highlight-common_3.1.9-4.3build1_all.deb ... 186s Unpacking libsource-highlight-common (3.1.9-4.3build1) ... 186s Selecting previously unselected package libsource-highlight4t64:s390x. 186s Preparing to unpack .../05-libsource-highlight4t64_3.1.9-4.3build1_s390x.deb ... 186s Unpacking libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 186s Selecting previously unselected package gdb. 186s Preparing to unpack .../06-gdb_16.2-1ubuntu1_s390x.deb ... 186s Unpacking gdb (16.2-1ubuntu1) ... 186s Selecting previously unselected package libc6-dbg:s390x. 186s Preparing to unpack .../07-libc6-dbg_2.40-4ubuntu1_s390x.deb ... 186s Unpacking libc6-dbg:s390x (2.40-4ubuntu1) ... 186s Selecting previously unselected package apport-retrace. 186s Preparing to unpack .../08-apport-retrace_2.31.0-0ubuntu5_all.deb ... 186s Unpacking apport-retrace (2.31.0-0ubuntu5) ... 186s Selecting previously unselected package valgrind. 186s Preparing to unpack .../09-valgrind_1%3a3.24.0-0ubuntu1_s390x.deb ... 186s Unpacking valgrind (1:3.24.0-0ubuntu1) ... 186s Selecting previously unselected package apport-valgrind. 186s Preparing to unpack .../10-apport-valgrind_2.31.0-0ubuntu5_all.deb ... 186s Unpacking apport-valgrind (2.31.0-0ubuntu5) ... 186s Selecting previously unselected package ca-certificates-java. 186s Preparing to unpack .../11-ca-certificates-java_20240118_all.deb ... 186s Unpacking ca-certificates-java (20240118) ... 186s Selecting previously unselected package libisl23:s390x. 186s Preparing to unpack .../12-libisl23_0.27-1_s390x.deb ... 186s Unpacking libisl23:s390x (0.27-1) ... 186s Selecting previously unselected package libmpc3:s390x. 186s Preparing to unpack .../13-libmpc3_1.3.1-1build2_s390x.deb ... 186s Unpacking libmpc3:s390x (1.3.1-1build2) ... 186s Selecting previously unselected package cpp-14-s390x-linux-gnu. 186s Preparing to unpack .../14-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 186s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 186s Selecting previously unselected package cpp-14. 186s Preparing to unpack .../15-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 186s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 186s Selecting previously unselected package cpp-s390x-linux-gnu. 186s Preparing to unpack .../16-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 186s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 186s Selecting previously unselected package cpp. 186s Preparing to unpack .../17-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 186s Unpacking cpp (4:14.2.0-1ubuntu1) ... 186s Selecting previously unselected package java-common. 186s Preparing to unpack .../18-java-common_0.76_all.deb ... 186s Unpacking java-common (0.76) ... 186s Selecting previously unselected package liblcms2-2:s390x. 186s Preparing to unpack .../19-liblcms2-2_2.16-2_s390x.deb ... 186s Unpacking liblcms2-2:s390x (2.16-2) ... 186s Selecting previously unselected package libjpeg-turbo8:s390x. 186s Preparing to unpack .../20-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 186s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 186s Selecting previously unselected package libjpeg8:s390x. 187s Preparing to unpack .../21-libjpeg8_8c-2ubuntu11_s390x.deb ... 187s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 187s Selecting previously unselected package libpcsclite1:s390x. 187s Preparing to unpack .../22-libpcsclite1_2.3.1-1_s390x.deb ... 187s Unpacking libpcsclite1:s390x (2.3.1-1) ... 187s Selecting previously unselected package openjdk-21-jre-headless:s390x. 187s Preparing to unpack .../23-openjdk-21-jre-headless_21.0.6+7-1_s390x.deb ... 187s Unpacking openjdk-21-jre-headless:s390x (21.0.6+7-1) ... 187s Selecting previously unselected package default-jre-headless. 187s Preparing to unpack .../24-default-jre-headless_2%3a1.21-76_s390x.deb ... 187s Unpacking default-jre-headless (2:1.21-76) ... 187s Selecting previously unselected package openjdk-21-jdk-headless:s390x. 187s Preparing to unpack .../25-openjdk-21-jdk-headless_21.0.6+7-1_s390x.deb ... 187s Unpacking openjdk-21-jdk-headless:s390x (21.0.6+7-1) ... 188s Selecting previously unselected package default-jdk-headless. 188s Preparing to unpack .../26-default-jdk-headless_2%3a1.21-76_s390x.deb ... 188s Unpacking default-jdk-headless (2:1.21-76) ... 188s Selecting previously unselected package emacsen-common. 188s Preparing to unpack .../27-emacsen-common_3.0.5_all.deb ... 188s Unpacking emacsen-common (3.0.5) ... 188s Selecting previously unselected package dictionaries-common. 188s Preparing to unpack .../28-dictionaries-common_1.30.4_all.deb ... 188s Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common' 188s Unpacking dictionaries-common (1.30.4) ... 188s Selecting previously unselected package libcc1-0:s390x. 188s Preparing to unpack .../29-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package libgomp1:s390x. 188s Preparing to unpack .../30-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package libitm1:s390x. 188s Preparing to unpack .../31-libitm1_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package libasan8:s390x. 188s Preparing to unpack .../32-libasan8_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package libubsan1:s390x. 188s Preparing to unpack .../33-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package libgcc-14-dev:s390x. 188s Preparing to unpack .../34-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package gcc-14-s390x-linux-gnu. 188s Preparing to unpack .../35-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package gcc-14. 188s Preparing to unpack .../36-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 188s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 188s Selecting previously unselected package gcc-s390x-linux-gnu. 188s Preparing to unpack .../37-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 188s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 188s Selecting previously unselected package gcc. 188s Preparing to unpack .../38-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 188s Unpacking gcc (4:14.2.0-1ubuntu1) ... 188s Selecting previously unselected package libduktape207:s390x. 188s Preparing to unpack .../39-libduktape207_2.7.0+tests-0ubuntu3_s390x.deb ... 188s Unpacking libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 188s Selecting previously unselected package libxml2-utils. 188s Preparing to unpack .../40-libxml2-utils_2.12.7+dfsg+really2.9.14-0.2ubuntu3_s390x.deb ... 188s Unpacking libxml2-utils (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 188s Selecting previously unselected package xml-core. 188s Preparing to unpack .../41-xml-core_0.19_all.deb ... 188s Unpacking xml-core (0.19) ... 188s Selecting previously unselected package polkitd. 188s Preparing to unpack .../42-polkitd_126-2_s390x.deb ... 188s Unpacking polkitd (126-2) ... 188s Selecting previously unselected package python3-iniconfig. 188s Preparing to unpack .../43-python3-iniconfig_1.1.1-2_all.deb ... 188s Unpacking python3-iniconfig (1.1.1-2) ... 188s Selecting previously unselected package python3-packaging. 188s Preparing to unpack .../44-python3-packaging_24.2-1_all.deb ... 188s Unpacking python3-packaging (24.2-1) ... 188s Selecting previously unselected package python3-pluggy. 188s Preparing to unpack .../45-python3-pluggy_1.5.0-1_all.deb ... 188s Unpacking python3-pluggy (1.5.0-1) ... 188s Selecting previously unselected package python3-psutil. 188s Preparing to unpack .../46-python3-psutil_5.9.8-2build3_s390x.deb ... 188s Unpacking python3-psutil (5.9.8-2build3) ... 188s Selecting previously unselected package python3-pytest. 188s Preparing to unpack .../47-python3-pytest_8.3.4-1_all.deb ... 188s Unpacking python3-pytest (8.3.4-1) ... 188s Selecting previously unselected package python3-zstandard. 188s Preparing to unpack .../48-python3-zstandard_0.23.0-2build1_s390x.deb ... 188s Unpacking python3-zstandard (0.23.0-2build1) ... 188s Setting up liblcms2-2:s390x (2.16-2) ... 188s Setting up python3-iniconfig (1.1.1-2) ... 188s Setting up java-common (0.76) ... 188s Setting up libdebuginfod-common (0.192-4) ... 188s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 188s Setting up python3-psutil (5.9.8-2build3) ... 189s Setting up libsource-highlight-common (3.1.9-4.3build1) ... 189s Setting up libc6-dbg:s390x (2.40-4ubuntu1) ... 189s Setting up python3-zstandard (0.23.0-2build1) ... 189s Setting up python3-packaging (24.2-1) ... 189s Setting up emacsen-common (3.0.5) ... 189s Setting up libmpc3:s390x (1.3.1-1build2) ... 189s Setting up libpcsclite1:s390x (2.3.1-1) ... 189s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 189s Setting up libbabeltrace1:s390x (1.5.11-4build1) ... 189s Setting up python3-pluggy (1.5.0-1) ... 189s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 189s Setting up libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 189s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 189s Setting up sgml-base (1.31) ... 189s Setting up ca-certificates-java (20240118) ... 189s No JRE found. Skipping Java certificates setup. 189s Setting up libisl23:s390x (0.27-1) ... 189s Setting up libxml2-utils (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 189s Setting up valgrind (1:3.24.0-0ubuntu1) ... 189s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 189s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 189s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 189s Setting up libdebuginfod1t64:s390x (0.192-4) ... 189s Setting up openjdk-21-jre-headless:s390x (21.0.6+7-1) ... 189s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/java to provide /usr/bin/java (java) in auto mode 189s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jpackage to provide /usr/bin/jpackage (jpackage) in auto mode 189s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode 189s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode 189s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode 189s Setting up dictionaries-common (1.30.4) ... 189s Setting up python3-pytest (8.3.4-1) ... 189s Setting up apport-valgrind (2.31.0-0ubuntu5) ... 189s Setting up libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 189s Setting up gdb (16.2-1ubuntu1) ... 189s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 189s Setting up cpp-14 (14.2.0-16ubuntu1) ... 189s Setting up xml-core (0.19) ... 189s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 189s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 189s Setting up apport-retrace (2.31.0-0ubuntu5) ... 189s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 189s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 189s Setting up cpp (4:14.2.0-1ubuntu1) ... 189s Setting up gcc-14 (14.2.0-16ubuntu1) ... 189s Setting up gcc (4:14.2.0-1ubuntu1) ... 189s Processing triggers for libc-bin (2.40-4ubuntu1) ... 189s Processing triggers for man-db (2.13.0-1) ... 190s Processing triggers for dbus (1.14.10-4ubuntu5) ... 190s Processing triggers for ca-certificates-java (20240118) ... 191s Adding debian:ACCVRAIZ1.pem 191s Adding debian:AC_RAIZ_FNMT-RCM.pem 191s Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem 191s Adding debian:ANF_Secure_Server_Root_CA.pem 191s Adding debian:Actalis_Authentication_Root_CA.pem 191s Adding debian:AffirmTrust_Commercial.pem 191s Adding debian:AffirmTrust_Networking.pem 191s Adding debian:AffirmTrust_Premium.pem 191s Adding debian:AffirmTrust_Premium_ECC.pem 191s Adding debian:Amazon_Root_CA_1.pem 191s Adding debian:Amazon_Root_CA_2.pem 191s Adding debian:Amazon_Root_CA_3.pem 191s Adding debian:Amazon_Root_CA_4.pem 191s Adding debian:Atos_TrustedRoot_2011.pem 191s Adding debian:Atos_TrustedRoot_Root_CA_ECC_TLS_2021.pem 191s Adding debian:Atos_TrustedRoot_Root_CA_RSA_TLS_2021.pem 191s Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem 191s Adding debian:BJCA_Global_Root_CA1.pem 191s Adding debian:BJCA_Global_Root_CA2.pem 191s Adding debian:Baltimore_CyberTrust_Root.pem 191s Adding debian:Buypass_Class_2_Root_CA.pem 191s Adding debian:Buypass_Class_3_Root_CA.pem 191s Adding debian:CA_Disig_Root_R2.pem 191s Adding debian:CFCA_EV_ROOT.pem 191s Adding debian:COMODO_Certification_Authority.pem 191s Adding debian:COMODO_ECC_Certification_Authority.pem 191s Adding debian:COMODO_RSA_Certification_Authority.pem 191s Adding debian:Certainly_Root_E1.pem 191s Adding debian:Certainly_Root_R1.pem 191s Adding debian:Certigna.pem 191s Adding debian:Certigna_Root_CA.pem 191s Adding debian:Certum_EC-384_CA.pem 191s Adding debian:Certum_Trusted_Network_CA.pem 191s Adding debian:Certum_Trusted_Network_CA_2.pem 191s Adding debian:Certum_Trusted_Root_CA.pem 191s Adding debian:CommScope_Public_Trust_ECC_Root-01.pem 191s Adding debian:CommScope_Public_Trust_ECC_Root-02.pem 191s Adding debian:CommScope_Public_Trust_RSA_Root-01.pem 191s Adding debian:CommScope_Public_Trust_RSA_Root-02.pem 191s Adding debian:Comodo_AAA_Services_root.pem 191s Adding debian:D-TRUST_BR_Root_CA_1_2020.pem 191s Adding debian:D-TRUST_EV_Root_CA_1_2020.pem 191s Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem 191s Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem 191s Adding debian:DigiCert_Assured_ID_Root_CA.pem 191s Adding debian:DigiCert_Assured_ID_Root_G2.pem 191s Adding debian:DigiCert_Assured_ID_Root_G3.pem 191s Adding debian:DigiCert_Global_Root_CA.pem 191s Adding debian:DigiCert_Global_Root_G2.pem 191s Adding debian:DigiCert_Global_Root_G3.pem 191s Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem 191s Adding debian:DigiCert_TLS_ECC_P384_Root_G5.pem 191s Adding debian:DigiCert_TLS_RSA4096_Root_G5.pem 191s Adding debian:DigiCert_Trusted_Root_G4.pem 191s Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem 191s Adding debian:Entrust_Root_Certification_Authority.pem 191s Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem 191s Adding debian:Entrust_Root_Certification_Authority_-_G2.pem 191s Adding debian:Entrust_Root_Certification_Authority_-_G4.pem 191s Adding debian:FIRMAPROFESIONAL_CA_ROOT-A_WEB.pem 191s Adding debian:GDCA_TrustAUTH_R5_ROOT.pem 191s Adding debian:GLOBALTRUST_2020.pem 191s Adding debian:GTS_Root_R1.pem 191s Adding debian:GTS_Root_R2.pem 191s Adding debian:GTS_Root_R3.pem 191s Adding debian:GTS_Root_R4.pem 191s Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem 191s Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem 191s Adding debian:GlobalSign_Root_CA.pem 191s Adding debian:GlobalSign_Root_CA_-_R3.pem 191s Adding debian:GlobalSign_Root_CA_-_R6.pem 191s Adding debian:GlobalSign_Root_E46.pem 191s Adding debian:GlobalSign_Root_R46.pem 191s Adding debian:Go_Daddy_Class_2_CA.pem 191s Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem 191s Adding debian:HARICA_TLS_ECC_Root_CA_2021.pem 191s Adding debian:HARICA_TLS_RSA_Root_CA_2021.pem 191s Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem 191s Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem 191s Adding debian:HiPKI_Root_CA_-_G1.pem 191s Adding debian:Hongkong_Post_Root_CA_3.pem 191s Adding debian:ISRG_Root_X1.pem 191s Adding debian:ISRG_Root_X2.pem 191s Adding debian:IdenTrust_Commercial_Root_CA_1.pem 191s Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem 191s Adding debian:Izenpe.com.pem 191s Adding debian:Microsec_e-Szigno_Root_CA_2009.pem 191s Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem 191s Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem 191s Adding debian:NAVER_Global_Root_Certification_Authority.pem 191s Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem 191s Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem 191s Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem 191s Adding debian:QuoVadis_Root_CA_1_G3.pem 191s Adding debian:QuoVadis_Root_CA_2.pem 191s Adding debian:QuoVadis_Root_CA_2_G3.pem 191s Adding debian:QuoVadis_Root_CA_3.pem 191s Adding debian:QuoVadis_Root_CA_3_G3.pem 191s Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem 191s Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem 191s Adding debian:SSL.com_Root_Certification_Authority_ECC.pem 191s Adding debian:SSL.com_Root_Certification_Authority_RSA.pem 191s Adding debian:SSL.com_TLS_ECC_Root_CA_2022.pem 191s Adding debian:SSL.com_TLS_RSA_Root_CA_2022.pem 191s Adding debian:SZAFIR_ROOT_CA2.pem 191s Adding debian:Sectigo_Public_Server_Authentication_Root_E46.pem 191s Adding debian:Sectigo_Public_Server_Authentication_Root_R46.pem 191s Adding debian:SecureSign_RootCA11.pem 191s Adding debian:SecureSign_Root_CA12.pem 191s Adding debian:SecureSign_Root_CA14.pem 191s Adding debian:SecureSign_Root_CA15.pem 191s Adding debian:SecureTrust_CA.pem 191s Adding debian:Secure_Global_CA.pem 191s Adding debian:Security_Communication_ECC_RootCA1.pem 191s Adding debian:Security_Communication_RootCA2.pem 191s Adding debian:Security_Communication_RootCA3.pem 191s Adding debian:Starfield_Class_2_CA.pem 191s Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem 191s Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem 191s Adding debian:SwissSign_Gold_CA_-_G2.pem 191s Adding debian:SwissSign_Silver_CA_-_G2.pem 191s Adding debian:T-TeleSec_GlobalRoot_Class_2.pem 191s Adding debian:T-TeleSec_GlobalRoot_Class_3.pem 191s Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem 191s Adding debian:TWCA_CYBER_Root_CA.pem 191s Adding debian:TWCA_Global_Root_CA.pem 191s Adding debian:TWCA_Root_Certification_Authority.pem 191s Adding debian:Telekom_Security_TLS_ECC_Root_2020.pem 191s Adding debian:Telekom_Security_TLS_RSA_Root_2023.pem 191s Adding debian:TeliaSonera_Root_CA_v1.pem 191s Adding debian:Telia_Root_CA_v2.pem 191s Adding debian:TrustAsia_Global_Root_CA_G3.pem 191s Adding debian:TrustAsia_Global_Root_CA_G4.pem 191s Adding debian:Trustwave_Global_Certification_Authority.pem 191s Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem 191s Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem 191s Adding debian:TunTrust_Root_CA.pem 191s Adding debian:UCA_Extended_Validation_Root.pem 191s Adding debian:UCA_Global_G2_Root.pem 191s Adding debian:USERTrust_ECC_Certification_Authority.pem 191s Adding debian:USERTrust_RSA_Certification_Authority.pem 191s Adding debian:XRamp_Global_CA_Root.pem 191s Adding debian:certSIGN_ROOT_CA.pem 191s Adding debian:certSIGN_Root_CA_G2.pem 191s Adding debian:e-Szigno_Root_CA_2017.pem 191s Adding debian:ePKI_Root_Certification_Authority.pem 191s Adding debian:emSign_ECC_Root_CA_-_C3.pem 191s Adding debian:emSign_ECC_Root_CA_-_G3.pem 191s Adding debian:emSign_Root_CA_-_C1.pem 191s Adding debian:emSign_Root_CA_-_G1.pem 191s Adding debian:vTrus_ECC_Root_CA.pem 191s Adding debian:vTrus_Root_CA.pem 191s done. 191s Setting up openjdk-21-jdk-headless:s390x (21.0.6+7-1) ... 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jar to provide /usr/bin/jar (jar) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jarsigner to provide /usr/bin/jarsigner (jarsigner) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/javac to provide /usr/bin/javac (javac) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/javadoc to provide /usr/bin/javadoc (javadoc) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/javap to provide /usr/bin/javap (javap) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jcmd to provide /usr/bin/jcmd (jcmd) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jdb to provide /usr/bin/jdb (jdb) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jdeprscan to provide /usr/bin/jdeprscan (jdeprscan) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jdeps to provide /usr/bin/jdeps (jdeps) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jfr to provide /usr/bin/jfr (jfr) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jimage to provide /usr/bin/jimage (jimage) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jinfo to provide /usr/bin/jinfo (jinfo) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jlink to provide /usr/bin/jlink (jlink) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jmap to provide /usr/bin/jmap (jmap) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jmod to provide /usr/bin/jmod (jmod) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jps to provide /usr/bin/jps (jps) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jrunscript to provide /usr/bin/jrunscript (jrunscript) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jshell to provide /usr/bin/jshell (jshell) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jstack to provide /usr/bin/jstack (jstack) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jstat to provide /usr/bin/jstat (jstat) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jstatd to provide /usr/bin/jstatd (jstatd) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/jwebserver to provide /usr/bin/jwebserver (jwebserver) in auto mode 191s update-alternatives: using /usr/lib/jvm/java-21-openjdk-s390x/bin/serialver to provide /usr/bin/serialver (serialver) in auto mode 191s Setting up default-jre-headless (2:1.21-76) ... 191s Setting up default-jdk-headless (2:1.21-76) ... 191s Processing triggers for sgml-base (1.31) ... 191s Setting up polkitd (126-2) ... 191s Processing triggers for dictionaries-common (1.30.4) ... 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport'], kind short, sout pipe, serr pipe, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport-retrace'], kind short, sout pipe, serr pipe, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport-valgrind'], kind short, sout pipe, serr pipe, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-packages.all"], kind short, sout raw, serr pipe, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-packages.all /tmp/autopkgtest-work.wsxosrws/out/unit-and-integration-tests-packages.all 192s autopkgtest: DBG: got reply from testbed: ok 192s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wz6Wal/build.Wf5/src'], kind short, sout raw, serr raw, env [] 193s autopkgtest: DBG: testbed command exited with code 0 193s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wz6Wal/build.Wf5/src already exists 193s autopkgtest [15:14:19]: test unit-and-integration-tests: cp -r tests "$AUTOPKGTEST_TMP" && cd "$AUTOPKGTEST_TMP" && python3 -m pytest -ra -v tests/unit/ tests/integration/ 193s autopkgtest [15:14:19]: test unit-and-integration-tests: [----------------------- 193s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.wz6Wal/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wz6Wal/unit-and-integration-tests-artifacts --chdir=/tmp/autopkgtest.wz6Wal/build.Wf5/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.wz6Wal/unit-and-integration-tests-stderr --stdout=/tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stdout --tmp=/tmp/autopkgtest.wz6Wal/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 -- bash -ec \'cp -r tests "$AUTOPKGTEST_TMP" && cd "$AUTOPKGTEST_TMP" && python3 -m pytest -ra -v tests/unit/ tests/integration/\''], kind test, sout raw, serr raw, env [] 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-artifacts 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: changing to directory: /tmp/autopkgtest.wz6Wal/build.Wf5/src 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: LANG=C.UTF-8 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LANGUAGE 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_ADDRESS 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_ALL 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_COLLATE 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_CTYPE 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_IDENTIFICATION 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_MEASUREMENT 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_MESSAGES 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_MONETARY 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_NAME 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_NUMERIC 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_PAPER 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_TELEPHONE 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_TIME 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: pretending to be a login shell 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: will write standard error to /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stderr 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: will write stdout to /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stdout 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wz6Wal/autopkgtest_tmp 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: command to run: bash -ec cp -r tests "$AUTOPKGTEST_TMP" && cd "$AUTOPKGTEST_TMP" && python3 -m pytest -ra -v tests/unit/ tests/integration/ 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: copying /tmp/tmp.mWnTiAifaz/out to stdout and file: /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stdout 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: copying /tmp/tmp.mWnTiAifaz/err to standard error and file: /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stdout 193s /tmp/autopkgtest.wz6Wal/wrapper.sh: writing script pid 2534 to /tmp/autopkgtest_script_pid 193s ============================= test session starts ============================== 193s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3 193s cachedir: .pytest_cache 193s rootdir: /tmp/autopkgtest.wz6Wal/autopkgtest_tmp 193s plugins: typeguard-4.4.1 194s collecting ... collected 543 items 194s 194s tests/unit/test_apport_retrace.py::test_malformed_crash_report PASSED [ 0%] 194s tests/unit/test_apport_retrace.py::test_malformed_kernel_crash_report PASSED [ 0%] 194s tests/unit/test_crashdb.py::T::test_accepts_default PASSED [ 0%] 194s tests/unit/test_crashdb.py::T::test_accepts_problem_types PASSED [ 0%] 194s tests/unit/test_crashdb.py::T::test_change_master_id PASSED [ 0%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate PASSED [ 1%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate_custom_signature PASSED [ 1%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate_multiple_masters PASSED [ 1%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate_multiple_regressions PASSED [ 1%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate_reopen PASSED [ 1%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate_report_arg PASSED [ 2%] 194s tests/unit/test_crashdb.py::T::test_check_duplicate_utf8 PASSED [ 2%] 194s tests/unit/test_crashdb.py::T::test_db_corruption PASSED [ 2%] 194s tests/unit/test_crashdb.py::T::test_duplicate_db_fixed PASSED [ 2%] 194s tests/unit/test_crashdb.py::T::test_duplicate_db_publish_long_sigs PASSED [ 2%] 194s tests/unit/test_crashdb.py::T::test_duplicate_db_remove PASSED [ 2%] 194s tests/unit/test_crashdb.py::T::test_dynamic_crashdb_conf PASSED [ 3%] 194s tests/unit/test_crashdb.py::T::test_get_affected_packages PASSED [ 3%] 194s tests/unit/test_crashdb.py::T::test_get_distro_release PASSED [ 3%] 194s tests/unit/test_crashdb.py::T::test_known_address_sig PASSED [ 3%] 194s tests/unit/test_crashdb.py::T::test_mark_regression PASSED [ 3%] 194s tests/unit/test_crashdb.py::T::test_no_sample_data PASSED [ 4%] 194s tests/unit/test_crashdb.py::T::test_retrace_markers PASSED [ 4%] 194s tests/unit/test_crashdb.py::T::test_status PASSED [ 4%] 194s tests/unit/test_crashdb.py::T::test_submit PASSED [ 4%] 194s tests/unit/test_crashdb.py::T::test_update PASSED [ 4%] 194s tests/unit/test_crashdb.py::T::test_update_filter PASSED [ 4%] 194s tests/unit/test_crashdb.py::T::test_update_traces PASSED [ 5%] 194s tests/unit/test_crashdb_launchpad.py::test_python_crash_headers PASSED [ 5%] 194s tests/unit/test_crashdb_launchpad.py::test_native_crash_headers PASSED [ 5%] 194s tests/unit/test_crashdb_launchpad.py::test_private_bug_headers PASSED [ 5%] 194s tests/unit/test_deprecation.py::TestDeprecation::test_unicode_gettext PASSED [ 5%] 194s tests/unit/test_fileutils.py::T::test_find_package_desktopfile_deleted PASSED [ 6%] 194s tests/unit/test_fileutils.py::T::test_get_dbus_socket PASSED [ 6%] 194s tests/unit/test_fileutils.py::T::test_get_login_defs PASSED [ 6%] 194s tests/unit/test_fileutils.py::T::test_get_login_defs_missing PASSED [ 6%] 194s tests/unit/test_fileutils.py::T::test_get_process_environ PASSED [ 6%] 194s tests/unit/test_fileutils.py::T::test_get_process_environ_empty PASSED [ 6%] 194s tests/unit/test_fileutils.py::T::test_get_process_environ_malformed PASSED [ 7%] 194s tests/unit/test_fileutils.py::T::test_get_recent_crashes PASSED [ 7%] 194s tests/unit/test_fileutils.py::T::test_get_starttime PASSED [ 7%] 194s tests/unit/test_fileutils.py::T::test_get_sys_gid_max PASSED [ 7%] 194s tests/unit/test_fileutils.py::T::test_get_sys_gid_max_default PASSED [ 7%] 194s tests/unit/test_fileutils.py::T::test_get_sys_uid_max PASSED [ 8%] 194s tests/unit/test_fileutils.py::T::test_get_sys_uid_max_default PASSED [ 8%] 194s tests/unit/test_fileutils.py::T::test_get_uid_and_gid PASSED [ 8%] 194s tests/unit/test_fileutils.py::T::test_likely_packaged PASSED [ 8%] 194s tests/unit/test_helper.py::TestTestHelper::test_get_init_systemd PASSED [ 8%] 194s tests/unit/test_helper.py::TestTestHelper::test_wait_for_process_to_appear PASSED [ 9%] 194s tests/unit/test_helper.py::TestTestHelper::test_wait_for_process_to_appear_multiple PASSED [ 9%] 194s tests/unit/test_helper.py::TestTestHelper::test_wait_for_process_to_appear_timeout PASSED [ 9%] 194s tests/unit/test_helper.py::TestTestHelper::test_wait_for_sleeping_state PASSED [ 9%] 194s tests/unit/test_helper.py::TestTestHelper::test_wait_for_sleeping_state_timeout PASSED [ 9%] 194s tests/unit/test_helper.py::TestTestHelper::test_wrap_object_with_statement PASSED [ 9%] 194s tests/unit/test_hooks_image.py::TestGeneralHookImage::test_add_info PASSED [ 10%] 194s tests/unit/test_hooks_image.py::TestGeneralHookImage::test_add_info_empty_build_info PASSED [ 10%] 194s tests/unit/test_hooks_image.py::TestGeneralHookImage::test_add_info_unknown_field PASSED [ 10%] 194s tests/unit/test_hooks_image.py::TestGeneralHookImage::test_no_cloud_build_info PASSED [ 10%] 194s tests/unit/test_hooks_wayland_session.py::TestGeneralHookWaylandSession::test_is_no_wayland_session PASSED [ 10%] 194s tests/unit/test_hooks_wayland_session.py::TestGeneralHookWaylandSession::test_is_wayland_session PASSED [ 11%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_dmesg PASSED [ 11%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_dmi PASSED [ 11%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_journal_errors_with_date PASSED [ 11%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_journal_errors_without_date PASSED [ 11%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_mac_events_apparmor PASSED [ 11%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_mac_events_bad_profile PASSED [ 12%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_mac_events_good_profile PASSED [ 12%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_mac_events_no_profile PASSED [ 12%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_wifi PASSED [ 12%] 194s tests/unit/test_hookutils.py::TestHookutils::test_attach_wifi_without_iw PASSED [ 12%] 194s tests/unit/test_hookutils.py::TestHookutils::test_deprecated_upstart_functions PASSED [ 13%] 194s tests/unit/test_hookutils.py::TestHookutils::test_dmesg_overwrite PASSED [ 13%] 194s tests/unit/test_hookutils.py::TestHookutils::test_execute_multiple_root_commands_no_commands PASSED [ 13%] 194s tests/unit/test_hookutils.py::TestHookutils::test_path_to_key PASSED [ 13%] 194s tests/unit/test_hookutils.py::TestHookutils::test_recent_syslog_journald_cmd PASSED [ 13%] 194s tests/unit/test_hookutils.py::TestHookutils::test_recent_syslog_long_process PASSED [ 13%] 194s tests/unit/test_hookutils.py::TestHookutils::test_recent_syslog_race_condition PASSED [ 14%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_contents_parse_path_with_spaces PASSED [ 14%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_contents_path_filering PASSED [ 14%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_contents_skip_xenial_header PASSED [ 14%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_get_file_package_uninstalled_usrmerge PASSED [ 14%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_is_distro_package_no_candidate PASSED [ 15%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_is_distro_package_no_installed_version PASSED [ 15%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_is_distro_package_ppa PASSED [ 15%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_is_distro_package_system_image PASSED [ 15%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_map_mirror_to_arch_ports_to_primary PASSED [ 15%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_map_mirror_to_arch_ports_unchanged PASSED [ 16%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_map_mirror_to_arch_primary_to_ports PASSED [ 16%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_map_mirror_to_arch_primary_unchanged PASSED [ 16%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_parse_deb822_sources_extra_lines PASSED [ 16%] 194s tests/unit/test_packaging_apt_dpkg.py::TestPackagingAptDpkg::test_read_mirror_file PASSED [ 16%] 194s tests/unit/test_packaging_impl.py::TestPackagingImpl::test_determine_debian_unstable PASSED [ 16%] 194s tests/unit/test_packaging_impl.py::TestPackagingImpl::test_determine_ubuntu PASSED [ 17%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_add_info_without_segv_reason PASSED [ 17%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_debug PASSED [ 17%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_invalid_00_registers PASSED [ 17%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_invalid_01_disassembly PASSED [ 17%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_invalid_02_maps PASSED [ 18%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_ioport_operation PASSED [ 18%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_register_values PASSED [ 18%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_crackful_disasm PASSED [ 18%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_dest_missing PASSED [ 18%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_dest_not_writable PASSED [ 18%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_dest_null PASSED [ 19%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_pc_missing PASSED [ 19%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_pc_null PASSED [ 19%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_pc_nx_unwritable PASSED [ 19%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_pc_nx_writable PASSED [ 19%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_src_missing PASSED [ 20%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_src_not_readable PASSED [ 20%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_src_null PASSED [ 20%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_stack_failure PASSED [ 20%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_stack_kernel_segfault PASSED [ 20%] 194s tests/unit/test_parse_segv.py::TestHookParseSegv::test_segv_unknown PASSED [ 20%] 194s tests/unit/test_problem_report.py::T::test_add_tag_drop_duplicates PASSED [ 21%] 194s tests/unit/test_problem_report.py::T::test_add_tags PASSED [ 21%] 194s tests/unit/test_problem_report.py::T::test_basic_operations PASSED [ 21%] 194s tests/unit/test_problem_report.py::T::test_consistency_checks PASSED [ 21%] 194s tests/unit/test_problem_report.py::T::test_ctor_arguments PASSED [ 21%] 194s tests/unit/test_problem_report.py::T::test_get_on_disk_size PASSED [ 22%] 194s tests/unit/test_problem_report.py::T::test_get_timestamp PASSED [ 22%] 194s tests/unit/test_problem_report.py::T::test_get_timestamp_locale_german SKIPPED [ 22%] 194s tests/unit/test_problem_report.py::T::test_get_timestamp_returns_none PASSED [ 22%] 194s tests/unit/test_problem_report.py::T::test_import_dict PASSED [ 22%] 194s tests/unit/test_problem_report.py::T::test_iter PASSED [ 23%] 194s tests/unit/test_problem_report.py::T::test_load PASSED [ 23%] 194s tests/unit/test_problem_report.py::T::test_load_binary_blob PASSED [ 23%] 194s tests/unit/test_problem_report.py::T::test_load_incorrect_padding PASSED [ 23%] 194s tests/unit/test_problem_report.py::T::test_load_invalid_utf8 PASSED [ 23%] 194s tests/unit/test_problem_report.py::T::test_load_key_filter PASSED [ 23%] 194s tests/unit/test_problem_report.py::T::test_load_missing_colon PASSED [ 24%] 194s tests/unit/test_problem_report.py::T::test_load_zstd_compressed_data PASSED [ 24%] 194s tests/unit/test_problem_report.py::T::test_modify PASSED [ 24%] 194s tests/unit/test_problem_report.py::T::test_read_file PASSED [ 24%] 194s tests/unit/test_problem_report.py::T::test_read_file_legacy PASSED [ 24%] 194s tests/unit/test_problem_report.py::T::test_reading_zstd_compressed_value PASSED [ 25%] 194s tests/unit/test_problem_report.py::T::test_sorted_items PASSED [ 25%] 194s tests/unit/test_problem_report.py::T::test_updating PASSED [ 25%] 194s tests/unit/test_problem_report.py::T::test_write PASSED [ 25%] 194s tests/unit/test_problem_report.py::T::test_write_empty_fileobj PASSED [ 25%] 194s tests/unit/test_problem_report.py::T::test_write_fileobj PASSED [ 25%] 194s tests/unit/test_problem_report.py::T::test_write_mime_extra_headers PASSED [ 26%] 194s tests/unit/test_problem_report.py::T::test_write_mime_order PASSED [ 26%] 194s tests/unit/test_problem_report.py::T::test_write_mime_text PASSED [ 26%] 194s tests/unit/test_problem_report.py::T::test_writing_zstd_compressed_value PASSED [ 26%] 194s tests/unit/test_problem_report.py::T::test_zstandard_missing PASSED [ 26%] 194s tests/unit/test_problem_report.py::T::test_zstd_compressed_value_length PASSED [ 27%] 194s tests/unit/test_problem_report.py::TestEntryParser::test_parse PASSED [ 27%] 194s tests/unit/test_problem_report.py::TestEntryParser::test_skip_entries PASSED [ 27%] 194s tests/unit/test_problem_report.py::TestEntryParser::test_skip_last_entry PASSED [ 27%] 194s tests/unit/test_problem_report.py::TestEntryParser::test_skip_partial_entries PASSED [ 27%] 194s tests/unit/test_report.py::T::test_add_hooks_info_invalid_source PASSED [ 27%] 194s tests/unit/test_report.py::T::test_add_kernel_crash_info PASSED [ 28%] 194s tests/unit/test_report.py::T::test_add_kernel_crash_info_fail PASSED [ 28%] 194s tests/unit/test_report.py::T::test_add_kernel_crash_info_no_vmcore PASSED [ 28%] 194s tests/unit/test_report.py::T::test_add_snap_contact_info_github PASSED [ 28%] 194s tests/unit/test_report.py::T::test_add_snap_contact_info_launchpad PASSED [ 28%] 194s tests/unit/test_report.py::T::test_add_snap_contact_launchpad_distro PASSED [ 29%] 194s tests/unit/test_report.py::T::test_address_to_offset PASSED [ 29%] 194s tests/unit/test_report.py::T::test_address_to_offset_arm PASSED [ 29%] 194s tests/unit/test_report.py::T::test_crash_signature PASSED [ 29%] 194s tests/unit/test_report.py::T::test_crash_signature_addresses PASSED [ 29%] 194s tests/unit/test_report.py::T::test_gdb_add_info_no_gdb PASSED [ 30%] 194s tests/unit/test_report.py::T::test_gen_stacktrace_top PASSED [ 30%] 194s tests/unit/test_report.py::T::test_has_useful_stacktrace PASSED [ 30%] 194s tests/unit/test_report.py::T::test_missing_uid PASSED [ 30%] 194s tests/unit/test_report.py::T::test_nonascii_data PASSED [ 30%] 194s tests/unit/test_report.py::T::test_read_list_files_in_directory PASSED [ 30%] 194s tests/unit/test_report.py::T::test_read_list_files_in_directory_ignore_readme PASSED [ 31%] 194s tests/unit/test_report.py::T::test_read_list_files_in_directory_skip_subdirs PASSED [ 31%] 194s tests/unit/test_report.py::T::test_report_from_systemd_coredump_default PASSED [ 31%] 194s tests/unit/test_report.py::T::test_report_from_systemd_coredump_missing_crash PASSED [ 31%] 194s tests/unit/test_report.py::T::test_report_from_systemd_coredump_storage_journal PASSED [ 31%] 194s tests/unit/test_report.py::T::test_report_from_systemd_coredump_storage_none PASSED [ 32%] 194s tests/unit/test_report.py::T::test_standard_title PASSED [ 32%] 194s tests/unit/test_report.py::T::test_suspend_resume PASSED [ 32%] 194s tests/unit/test_rethread.py::T::test_exc_raise PASSED [ 32%] 194s tests/unit/test_rethread.py::T::test_exc_raise_complex PASSED [ 32%] 194s tests/unit/test_rethread.py::T::test_exception PASSED [ 32%] 194s tests/unit/test_rethread.py::T::test_no_return_value PASSED [ 33%] 194s tests/unit/test_rethread.py::T::test_return_value PASSED [ 33%] 194s tests/unit/test_sandboxutils.py::TestSandboxutils::test_make_sandbox PASSED [ 33%] 194s tests/unit/test_sandboxutils.py::TestSandboxutils::test_make_sandbox_install_packages_failure PASSED [ 33%] 194s tests/unit/test_sandboxutils.py::TestSandboxutils::test_make_sandbox_with_sandbox_dir PASSED [ 33%] 194s tests/unit/test_sandboxutils.py::TestSandboxutils::test_move_base_files_first_existing PASSED [ 34%] 194s tests/unit/test_sandboxutils.py::TestSandboxutils::test_move_base_files_first_missing PASSED [ 34%] 194s tests/unit/test_signal_crashes.py::TestApport::test_check_kernel_crash PASSED [ 34%] 194s tests/unit/test_signal_crashes.py::TestApport::test_check_lock_not_writable PASSED [ 34%] 194s tests/unit/test_signal_crashes.py::TestApport::test_check_lock_taken PASSED [ 34%] 194s tests/unit/test_signal_crashes.py::TestApport::test_consistency_checks_mismatching_uid PASSED [ 34%] 194s tests/unit/test_signal_crashes.py::TestApport::test_consistency_checks_replaced_process PASSED [ 35%] 194s tests/unit/test_signal_crashes.py::TestApport::test_init_error_log_is_tty PASSED [ 35%] 194s tests/unit/test_signal_crashes.py::TestApport::test_is_closing_session PASSED [ 35%] 194s tests/unit/test_signal_crashes.py::TestApport::test_is_closing_session_gdbus_failure PASSED [ 35%] 194s tests/unit/test_signal_crashes.py::TestApport::test_is_closing_session_no_determine_socket PASSED [ 35%] 194s tests/unit/test_signal_crashes.py::TestApport::test_is_closing_session_no_environ PASSED [ 36%] 194s tests/unit/test_signal_crashes.py::TestApport::test_is_closing_session_socket_not_exists PASSED [ 36%] 194s tests/unit/test_signal_crashes.py::TestApport::test_main_forward_crash_to_container PASSED [ 36%] 194s tests/unit/test_signal_crashes.py::TestApport::test_main_ignore_watchdog_restart PASSED [ 36%] 194s tests/unit/test_signal_crashes.py::TestApport::test_main_start PASSED [ 36%] 194s tests/unit/test_signal_crashes.py::TestApport::test_main_stop PASSED [ 37%] 194s tests/unit/test_signal_crashes.py::TestApport::test_missing_proc_pid PASSED [ 37%] 194s tests/unit/test_signal_crashes.py::TestApport::test_non_existing_systemd_coredump PASSED [ 37%] 194s tests/unit/test_signal_crashes.py::TestApport::test_process_crash_from_systemd_coredump_container PASSED [ 37%] 194s tests/unit/test_signal_crashes.py::TestApport::test_reading_core_from_journal_log PASSED [ 37%] 194s tests/unit/test_signal_crashes.py::TestApport::test_receive_arguments_via_socket_import_error PASSED [ 37%] 194s tests/unit/test_signal_crashes.py::TestApport::test_receive_arguments_via_socket_invalid_socket PASSED [ 38%] 194s tests/unit/test_signal_crashes.py::TestApport::test_refine_core_ulimit_huge PASSED [ 38%] 194s tests/unit/test_signal_crashes.py::TestApport::test_start PASSED [ 38%] 194s tests/unit/test_signal_crashes.py::TestApport::test_stop PASSED [ 38%] 194s tests/unit/test_signal_crashes.py::TestApport::test_systemd_journal_import_error PASSED [ 38%] 194s tests/unit/test_ui.py::TestUI::test_open_url PASSED [ 39%] 194s tests/unit/test_ui.py::TestUI::test_open_url_webbrowser_fails PASSED [ 39%] 194s tests/unit/test_ui.py::TestUI::test_open_url_webbrowser_fallback PASSED [ 39%] 194s tests/unit/test_user_group.py::TestUserGroup::test_get_process_user_and_group_is_not_root PASSED [ 39%] 194s tests/unit/test_user_group.py::TestUserGroup::test_get_process_user_and_group_is_root PASSED [ 39%] 194s tests/integration/test_apport_checkreports.py::TestApportCheckreports::test_has_no_system_report PASSED [ 39%] 194s tests/integration/test_apport_checkreports.py::TestApportCheckreports::test_has_system_report PASSED [ 40%] 195s tests/integration/test_apport_checkreports.py::TestApportCheckreports::test_has_user_report PASSED [ 40%] 195s tests/integration/test_apport_checkreports.py::TestApportCheckreports::test_no_report PASSED [ 40%] 195s tests/integration/test_apport_unpack.py::TestApportUnpack::test_broken_core_dump PASSED [ 40%] 195s tests/integration/test_apport_unpack.py::TestApportUnpack::test_broken_report PASSED [ 40%] 195s tests/integration/test_apport_unpack.py::TestApportUnpack::test_error PASSED [ 41%] 195s tests/integration/test_apport_unpack.py::TestApportUnpack::test_help PASSED [ 41%] 195s tests/integration/test_apport_unpack.py::TestApportUnpack::test_unpack PASSED [ 41%] 195s tests/integration/test_apport_unpack.py::TestApportUnpack::test_unpack_stdin PASSED [ 41%] 195s tests/integration/test_apport_valgrind.py::TestApportValgrind::test_help_display PASSED [ 41%] 196s tests/integration/test_apport_valgrind.py::TestApportValgrind::test_intentional_mem_leak_detection PASSED [ 41%] 196s tests/integration/test_apport_valgrind.py::TestApportValgrind::test_invalid_args PASSED [ 42%] 197s tests/integration/test_apport_valgrind.py::TestApportValgrind::test_unpackaged_exe PASSED [ 42%] 198s tests/integration/test_apport_valgrind.py::TestApportValgrind::test_valgrind_min_installed PASSED [ 42%] 198s tests/integration/test_apport_valgrind.py::TestApportValgrind::test_vlog_created PASSED [ 42%] 198s tests/integration/test_crash_digger.py::T::test_alternate_crashdb PASSED [ 42%] 199s tests/integration/test_crash_digger.py::T::test_crash_gdb_sandbox PASSED [ 43%] 199s tests/integration/test_crash_digger.py::T::test_crashes PASSED [ 43%] 199s tests/integration/test_crash_digger.py::T::test_crashes_error PASSED [ 43%] 199s tests/integration/test_crash_digger.py::T::test_crashes_transient_error PASSED [ 43%] 199s tests/integration/test_crash_digger.py::T::test_dupcheck PASSED [ 43%] 199s tests/integration/test_crash_digger.py::T::test_publish_db PASSED [ 44%] 199s tests/integration/test_crash_digger.py::T::test_stderr_redirection PASSED [ 44%] 199s tests/integration/test_crashdb_launchpad.py::T::test_1_download SKIPPED [ 44%] 199s tests/integration/test_crashdb_launchpad.py::T::test_2_update_traces SKIPPED [ 44%] 199s tests/integration/test_crashdb_launchpad.py::T::test_can_update SKIPPED [ 44%] 199s tests/integration/test_crashdb_launchpad.py::T::test_download_robustness SKIPPED [ 44%] 199s tests/integration/test_crashdb_launchpad.py::T::test_duplicates SKIPPED [ 45%] 199s tests/integration/test_crashdb_launchpad.py::T::test_escalation SKIPPED [ 45%] 199s tests/integration/test_crashdb_launchpad.py::T::test_get_affected_packages SKIPPED [ 45%] 199s tests/integration/test_crashdb_launchpad.py::T::test_get_comment_url SKIPPED [ 45%] 199s tests/integration/test_crashdb_launchpad.py::T::test_get_distro_release SKIPPED [ 45%] 199s tests/integration/test_crashdb_launchpad.py::T::test_get_fixed_version SKIPPED [ 46%] 199s tests/integration/test_crashdb_launchpad.py::T::test_is_reporter SKIPPED [ 46%] 199s tests/integration/test_crashdb_launchpad.py::T::test_marking_foreign_arch SKIPPED [ 46%] 199s tests/integration/test_crashdb_launchpad.py::T::test_marking_project SKIPPED [ 46%] 199s tests/integration/test_crashdb_launchpad.py::T::test_marking_python SKIPPED [ 46%] 199s tests/integration/test_crashdb_launchpad.py::T::test_marking_python_task_mangle SKIPPED [ 46%] 199s tests/integration/test_crashdb_launchpad.py::T::test_marking_segv SKIPPED [ 47%] 199s tests/integration/test_crashdb_launchpad.py::T::test_project SKIPPED [ 47%] 199s tests/integration/test_crashdb_launchpad.py::T::test_update_comment SKIPPED [ 47%] 199s tests/integration/test_crashdb_launchpad.py::T::test_update_description SKIPPED [ 47%] 199s tests/integration/test_crashdb_launchpad.py::T::test_update_filter SKIPPED [ 47%] 199s tests/integration/test_crashdb_launchpad.py::T::test_update_traces_invalid SKIPPED [ 48%] 199s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_changeid PASSED [ 48%] 199s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_changeid_missing_argument PASSED [ 48%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_dump_database PASSED [ 48%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_dump_empty_database PASSED [ 48%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_missing_db_file PASSED [ 48%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_no_command PASSED [ 49%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_publish PASSED [ 49%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_publish_missing_argument PASSED [ 49%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_removeid PASSED [ 49%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_removeid_missing_argument PASSED [ 49%] 200s tests/integration/test_dupdb_admin.py::TestDupdbAdmin::test_unknown_command PASSED [ 50%] 200s tests/integration/test_fileutils.py::T::test_check_files_md5 PASSED [ 50%] 209s tests/integration/test_fileutils.py::T::test_clean_core_directory PASSED [ 50%] 209s tests/integration/test_fileutils.py::T::test_delete_report PASSED [ 50%] 209s tests/integration/test_fileutils.py::T::test_find_file_package PASSED [ 50%] 210s tests/integration/test_fileutils.py::T::test_find_package_desktopfile PASSED [ 51%] 210s tests/integration/test_fileutils.py::T::test_get_all_reports PASSED [ 51%] 210s tests/integration/test_fileutils.py::T::test_get_config PASSED [ 51%] 210s tests/integration/test_fileutils.py::T::test_get_core_path PASSED [ 51%] 210s tests/integration/test_fileutils.py::T::test_get_system_reports PASSED [ 51%] 210s tests/integration/test_fileutils.py::T::test_get_system_reports_guest PASSED [ 51%] 210s tests/integration/test_fileutils.py::T::test_links_with_shared_library PASSED [ 52%] 210s tests/integration/test_fileutils.py::T::test_make_report_file PASSED [ 52%] 212s tests/integration/test_fileutils.py::T::test_mark_2nd_report_upload PASSED [ 52%] 212s tests/integration/test_fileutils.py::T::test_mark_hanging_process PASSED [ 52%] 212s tests/integration/test_fileutils.py::T::test_mark_report_upload PASSED [ 52%] 212s tests/integration/test_fileutils.py::T::test_seen PASSED [ 53%] 212s tests/integration/test_fileutils.py::T::test_shared_libraries PASSED [ 53%] 212s tests/integration/test_fileutils.py::T::test_unwritable_report PASSED [ 53%] 212s tests/integration/test_github.py::TestGitHub::test__format_report PASSED [ 53%] 212s tests/integration/test_github.py::TestGitHub::test_authentication_complete PASSED [ 53%] 212s tests/integration/test_github.py::TestGitHub::test_not_implemented_methods PASSED [ 53%] 212s tests/integration/test_github.py::TestGitHub::test_upload PASSED [ 54%] 212s tests/integration/test_helper.py::TestHelper::test_pids_of_non_existing_program PASSED [ 54%] 212s tests/integration/test_helper.py::TestHelper::test_pids_of_running_python PASSED [ 54%] 212s tests/integration/test_helper.py::TestHelper::test_read_shebang_binary PASSED [ 54%] 212s tests/integration/test_helper.py::TestHelper::test_read_shebang_shell_script PASSED [ 54%] 212s tests/integration/test_hooks.py::T::test_gcc_ide_hook_file PASSED [ 55%] 212s tests/integration/test_hooks.py::T::test_gcc_ide_hook_file_binary PASSED [ 55%] 212s tests/integration/test_hooks.py::T::test_gcc_ide_hook_pipe PASSED [ 55%] 212s tests/integration/test_hooks.py::T::test_general_hook_generic PASSED [ 55%] 213s tests/integration/test_hooks.py::T::test_kernel_crashdump_kdump PASSED [ 55%] 213s tests/integration/test_hooks.py::T::test_kernel_crashdump_kdump_log_dir_symlink PASSED [ 55%] 213s tests/integration/test_hooks.py::T::test_kernel_crashdump_kdump_log_symlink PASSED [ 56%] 214s tests/integration/test_hooks.py::T::test_kernel_crashdump_kexec PASSED [ 56%] 214s tests/integration/test_hooks.py::T::test_kernel_crashdump_log_symlink PASSED [ 56%] 214s tests/integration/test_hooks.py::T::test_kernel_oops_hook PASSED [ 56%] 215s tests/integration/test_hooks.py::T::test_package_hook_logs PASSED [ 56%] 215s tests/integration/test_hooks.py::T::test_package_hook_nologs PASSED [ 57%] 215s tests/integration/test_hooks.py::T::test_package_hook_non_existing_package PASSED [ 57%] 215s tests/integration/test_hooks.py::T::test_package_hook_tags PASSED [ 57%] 216s tests/integration/test_hooks.py::T::test_package_hook_uninstalled PASSED [ 57%] 216s tests/integration/test_hookutils.py::T::test_attach_file PASSED [ 57%] 216s tests/integration/test_hookutils.py::T::test_attach_file_binary PASSED [ 58%] 216s tests/integration/test_hookutils.py::T::test_attach_file_if_exists PASSED [ 58%] 216s tests/integration/test_hookutils.py::T::test_attach_root_command_outputs PASSED [ 58%] 216s tests/integration/test_hookutils.py::T::test_command_output PASSED [ 58%] 216s tests/integration/test_hookutils.py::T::test_in_session_of_problem SKIPPED [ 58%] 216s tests/integration/test_hookutils.py::T::test_module_license_evaluation PASSED [ 58%] 216s tests/integration/test_hookutils.py::T::test_no_crashes PASSED [ 59%] 216s tests/integration/test_hookutils.py::T::test_real_module_license_evaluation PASSED [ 59%] 216s tests/integration/test_hookutils.py::T::test_recent_syslog PASSED [ 59%] 216s tests/integration/test_hookutils.py::T::test_recent_syslog_overflow PASSED [ 59%] 216s tests/integration/test_hookutils.py::T::test_xsession_errors PASSED [ 59%] 217s tests/integration/test_java_crashes.py::TestJavaCrashes::test_crash_class PASSED [ 60%] 217s tests/integration/test_java_crashes.py::TestJavaCrashes::test_crash_jar PASSED [ 60%] 217s tests/integration/test_packaging.py::T::test_get_os_version PASSED [ 60%] 217s tests/integration/test_packaging.py::T::test_get_uninstalled_package PASSED [ 60%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_check_files_md5 PASSED [ 60%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_compare_versions PASSED [ 60%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_enabled PASSED [ 61%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_get_architecture PASSED [ 61%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_get_available_version PASSED [ 61%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_get_dependencies_depends_and_pre_depends PASSED [ 61%] 217s tests/integration/test_packaging_apt_dpkg.py::T::test_get_dependencies_depends_only PASSED [ 61%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_dependencies_pre_depends_only PASSED [ 62%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_file_package PASSED [ 62%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_file_package_diversion PASSED [ 62%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_file_package_libc_so PASSED [ 62%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_file_package_uninstalled PASSED [ 62%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_file_package_uninstalled_multiarch PASSED [ 62%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_files PASSED [ 63%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_kernel_package PASSED [ 63%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_library_paths PASSED [ 63%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_modified_conffiles PASSED [ 63%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_package_origin PASSED [ 63%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_source PASSED [ 64%] 218s tests/integration/test_packaging_apt_dpkg.py::T::test_get_system_architecture PASSED [ 64%] 219s tests/integration/test_packaging_apt_dpkg.py::T::test_get_version PASSED [ 64%] 219s tests/integration/test_packaging_apt_dpkg.py::T::test_is_distro_package PASSED [ 64%] 219s tests/integration/test_packaging_apt_dpkg.py::T::test_mirror_from_apt_sources PASSED [ 64%] 219s tests/integration/test_packaging_apt_dpkg.py::T::test_mirror_from_apt_sources_with_options PASSED [ 65%] 219s tests/integration/test_packaging_apt_dpkg.py::T::test_mirror_from_deb822_apt_sources PASSED [ 65%] 219s tests/integration/test_packaging_apt_dpkg.py::T::test_package_name_glob PASSED [ 65%] 219s tests/integration/test_packaging_rpm.py::TestPackagingRpm::test_get_dependencies SKIPPED [ 65%] 219s tests/integration/test_packaging_rpm.py::TestPackagingRpm::test_get_header SKIPPED [ 65%] 219s tests/integration/test_packaging_rpm.py::TestPackagingRpm::test_get_headers_by_tag SKIPPED [ 65%] 219s tests/integration/test_packaging_rpm.py::TestPackagingRpm::test_get_system_architecture SKIPPED [ 66%] 219s tests/integration/test_packaging_rpm.py::TestPackagingRpm::test_get_version SKIPPED [ 66%] 221s tests/integration/test_problem_report.py::T::test_add_to_existing PASSED [ 66%] 221s tests/integration/test_problem_report.py::T::test_big_file PASSED [ 66%] 221s tests/integration/test_problem_report.py::T::test_compressed_values PASSED [ 66%] 221s tests/integration/test_problem_report.py::T::test_extract_keys PASSED [ 67%] 221s tests/integration/test_problem_report.py::T::test_size_limit PASSED [ 67%] 221s tests/integration/test_problem_report.py::T::test_write_append PASSED [ 67%] 222s tests/integration/test_problem_report.py::T::test_write_delayed_fileobj PASSED [ 67%] 222s tests/integration/test_problem_report.py::T::test_write_file PASSED [ 67%] 222s tests/integration/test_problem_report.py::T::test_write_mime_binary PASSED [ 67%] 222s tests/integration/test_problem_report.py::T::test_write_mime_filter PASSED [ 68%] 222s tests/integration/test_python_crashes.py::T::test_deleted_working_directory PASSED [ 68%] 223s tests/integration/test_python_crashes.py::T::test_existing PASSED [ 68%] 223s tests/integration/test_python_crashes.py::T::test_general PASSED [ 68%] 223s tests/integration/test_python_crashes.py::T::test_generic_os_error PASSED [ 68%] 223s tests/integration/test_python_crashes.py::T::test_generic_os_error_no_errno PASSED [ 69%] 223s tests/integration/test_python_crashes.py::T::test_getcwd_error PASSED [ 69%] 223s tests/integration/test_python_crashes.py::T::test_ignoring PASSED [ 69%] 224s tests/integration/test_python_crashes.py::T::test_interactive PASSED [ 69%] 224s tests/integration/test_python_crashes.py::T::test_no_argv PASSED [ 69%] 224s tests/integration/test_python_crashes.py::T::test_no_flooding PASSED [ 69%] 224s tests/integration/test_python_crashes.py::T::test_python_env PASSED [ 70%] 224s tests/integration/test_python_crashes.py::T::test_subclassed_os_error PASSED [ 70%] 225s tests/integration/test_python_crashes.py::T::test_symlink PASSED [ 70%] 225s tests/integration/test_recoverable_problem.py::TestRecoverableProblem::test_invalid_data PASSED [ 70%] 225s tests/integration/test_recoverable_problem.py::TestRecoverableProblem::test_recoverable_problem PASSED [ 70%] 225s tests/integration/test_recoverable_problem.py::TestRecoverableProblem::test_recoverable_problem_dupe_sig PASSED [ 71%] 225s tests/integration/test_recoverable_problem.py::TestRecoverableProblem::test_wait_for_report_timeout PASSED [ 71%] 226s tests/integration/test_report.py::T::test_add_gdb_info PASSED [ 71%] 227s tests/integration/test_report.py::T::test_add_gdb_info_abort PASSED [ 71%] 228s tests/integration/test_report.py::T::test_add_gdb_info_damaged PASSED [ 71%] 229s tests/integration/test_report.py::T::test_add_gdb_info_damaged_gz_core PASSED [ 72%] 229s tests/integration/test_report.py::T::test_add_gdb_info_exe_missing PASSED [ 72%] 230s tests/integration/test_report.py::T::test_add_gdb_info_load PASSED [ 72%] 231s tests/integration/test_report.py::T::test_add_gdb_info_script PASSED [ 72%] 231s tests/integration/test_report.py::T::test_add_gdb_info_short_core_file PASSED [ 72%] 231s tests/integration/test_report.py::T::test_add_hooks_info PASSED [ 72%] 231s tests/integration/test_report.py::T::test_add_hooks_info_errors PASSED [ 73%] 231s tests/integration/test_report.py::T::test_add_hooks_info_opt PASSED [ 73%] 231s tests/integration/test_report.py::T::test_add_os_info PASSED [ 73%] 231s tests/integration/test_report.py::T::test_add_package_info PASSED [ 73%] 232s tests/integration/test_report.py::T::test_add_path_classification PASSED [ 73%] 232s tests/integration/test_report.py::T::test_add_proc_info PASSED [ 74%] 232s tests/integration/test_report.py::T::test_add_proc_info_current_desktop PASSED [ 74%] 232s tests/integration/test_report.py::T::test_add_proc_info_nonascii PASSED [ 74%] 232s tests/integration/test_report.py::T::test_add_user_info PASSED [ 74%] 232s tests/integration/test_report.py::T::test_add_user_info_missing_user PASSED [ 74%] 233s tests/integration/test_report.py::T::test_add_zz_parse_segv_details PASSED [ 74%] 233s tests/integration/test_report.py::T::test_address_to_offset_live PASSED [ 75%] 233s tests/integration/test_report.py::T::test_allowlisting PASSED [ 75%] 233s tests/integration/test_report.py::T::test_check_interpreted PASSED [ 75%] 233s tests/integration/test_report.py::T::test_check_interpreted_no_exec PASSED [ 75%] 233s tests/integration/test_report.py::T::test_check_interpreted_twistd SKIPPED [ 75%] 233s tests/integration/test_report.py::T::test_command_output PASSED [ 76%] 233s tests/integration/test_report.py::T::test_command_output_passes_env PASSED [ 76%] 233s tests/integration/test_report.py::T::test_command_output_raises_error PASSED [ 76%] 233s tests/integration/test_report.py::T::test_command_output_timeout PASSED [ 76%] 234s tests/integration/test_report.py::T::test_command_output_timeout_no_output PASSED [ 76%] 234s tests/integration/test_report.py::T::test_denylisting PASSED [ 76%] 234s tests/integration/test_report.py::T::test_extrapath_preferred PASSED [ 77%] 235s tests/integration/test_report.py::T::test_ignoring PASSED [ 77%] 235s tests/integration/test_report.py::T::test_obsolete_packages PASSED [ 77%] 236s tests/integration/test_report.py::T::test_search_bug_patterns PASSED [ 77%] 236s tests/integration/test_report.py::T::test_wait_for_proc_cmdline_failure PASSED [ 77%] 246s tests/integration/test_signal_crashes.py::T::test_core_dump_packaged PASSED [ 78%] 246s tests/integration/test_signal_crashes.py::T::test_core_dump_packaged_sigquit PASSED [ 78%] 247s tests/integration/test_signal_crashes.py::T::test_core_dump_packaged_sigquit_via_socket PASSED [ 78%] 252s tests/integration/test_signal_crashes.py::T::test_core_dump_unpackaged PASSED [ 78%] 253s tests/integration/test_signal_crashes.py::T::test_core_file_injection PASSED [ 78%] 254s tests/integration/test_signal_crashes.py::T::test_coredump_from_socket PASSED [ 79%] 256s tests/integration/test_signal_crashes.py::T::test_crash_apport PASSED [ 79%] 256s tests/integration/test_signal_crashes.py::T::test_crash_apport_from_systemd_coredump PASSED [ 79%] 256s tests/integration/test_signal_crashes.py::T::test_crash_setuid_drop PASSED [ 79%] 257s tests/integration/test_signal_crashes.py::T::test_crash_setuid_drop_via_socket PASSED [ 79%] 258s tests/integration/test_signal_crashes.py::T::test_crash_setuid_keep PASSED [ 79%] 259s tests/integration/test_signal_crashes.py::T::test_crash_setuid_unpackaged PASSED [ 80%] 260s tests/integration/test_signal_crashes.py::T::test_crash_suid_dumpable_debug PASSED [ 80%] 260s tests/integration/test_signal_crashes.py::T::test_create_test_non_sleep_process PASSED [ 80%] 260s tests/integration/test_signal_crashes.py::T::test_create_test_sleep_process PASSED [ 80%] 260s tests/integration/test_signal_crashes.py::T::test_empty_core_dump PASSED [ 80%] 262s tests/integration/test_signal_crashes.py::T::test_flood_limit PASSED [ 81%] 264s tests/integration/test_signal_crashes.py::T::test_ignore PASSED [ 81%] 264s tests/integration/test_signal_crashes.py::T::test_ignore_sigquit PASSED [ 81%] 264s tests/integration/test_signal_crashes.py::T::test_ignore_sigxcpu PASSED [ 81%] 264s tests/integration/test_signal_crashes.py::T::test_is_not_same_ns PASSED [ 81%] 266s tests/integration/test_signal_crashes.py::T::test_leak_inaccessible_files PASSED [ 81%] 266s tests/integration/test_signal_crashes.py::T::test_logging_file PASSED [ 82%] 267s tests/integration/test_signal_crashes.py::T::test_logging_stderr PASSED [ 82%] 269s tests/integration/test_signal_crashes.py::T::test_modify_after_start PASSED [ 82%] 270s tests/integration/test_signal_crashes.py::T::test_nonreadable_exe PASSED [ 82%] 270s tests/integration/test_signal_crashes.py::T::test_parallel_crash SKIPPED [ 82%] 270s tests/integration/test_signal_crashes.py::T::test_unpackaged_binary PASSED [ 83%] 271s tests/integration/test_signal_crashes.py::T::test_unpackaged_script SKIPPED [ 83%] 271s tests/integration/test_signal_crashes.py::T::test_unsupported_arguments_no_stderr PASSED [ 83%] 271s tests/integration/test_signal_crashes.py::T::test_wait_for_core_file_core_not_created PASSED [ 83%] 271s tests/integration/test_signal_crashes.py::T::test_wait_for_core_file_timeout PASSED [ 83%] 271s tests/integration/test_signal_crashes.py::T::test_wait_for_gdb_sleeping_child_process PASSED [ 83%] 271s tests/integration/test_signal_crashes.py::T::test_wait_for_gdb_sleeping_child_process_timeout PASSED [ 84%] 271s tests/integration/test_ui.py::T::test_can_examine_locally_crash PASSED [ 84%] 271s tests/integration/test_ui.py::T::test_can_examine_locally_nocrash PASSED [ 84%] 271s tests/integration/test_ui.py::T::test_collect_info_crashdb_errors PASSED [ 84%] 272s tests/integration/test_ui.py::T::test_collect_info_crashdb_name PASSED [ 84%] 272s tests/integration/test_ui.py::T::test_collect_info_crashdb_spec PASSED [ 85%] 272s tests/integration/test_ui.py::T::test_collect_info_distro PASSED [ 85%] 272s tests/integration/test_ui.py::T::test_collect_info_exepath PASSED [ 85%] 272s tests/integration/test_ui.py::T::test_collect_info_package PASSED [ 85%] 273s tests/integration/test_ui.py::T::test_collect_info_permissions PASSED [ 85%] 273s tests/integration/test_ui.py::T::test_db_no_accept PASSED [ 86%] 273s tests/integration/test_ui.py::T::test_file_report_http_error PASSED [ 86%] 273s tests/integration/test_ui.py::T::test_file_report_nodelay PASSED [ 86%] 273s tests/integration/test_ui.py::T::test_file_report_upload_delay PASSED [ 86%] 273s tests/integration/test_ui.py::T::test_file_report_upload_message PASSED [ 86%] 273s tests/integration/test_ui.py::T::test_format_filesize PASSED [ 86%] 273s tests/integration/test_ui.py::T::test_get_desktop_entry PASSED [ 87%] 273s tests/integration/test_ui.py::T::test_get_desktop_entry_broken PASSED [ 87%] 273s tests/integration/test_ui.py::T::test_get_size_constructed PASSED [ 87%] 273s tests/integration/test_ui.py::T::test_get_size_loaded PASSED [ 87%] 273s tests/integration/test_ui.py::T::test_handle_duplicate PASSED [ 87%] 273s tests/integration/test_ui.py::T::test_hooks_choices_db_no_accept PASSED [ 88%] 274s tests/integration/test_ui.py::T::test_interactive_hooks_cancel PASSED [ 88%] 274s tests/integration/test_ui.py::T::test_interactive_hooks_choices PASSED [ 88%] 275s tests/integration/test_ui.py::T::test_interactive_hooks_file PASSED [ 88%] 275s tests/integration/test_ui.py::T::test_interactive_hooks_information PASSED [ 88%] 276s tests/integration/test_ui.py::T::test_interactive_hooks_yesno PASSED [ 88%] 276s tests/integration/test_ui.py::T::test_load_report PASSED [ 89%] 276s tests/integration/test_ui.py::T::test_parse_argv_apport_bug PASSED [ 89%] 276s tests/integration/test_ui.py::T::test_parse_argv_single_arg PASSED [ 89%] 278s tests/integration/test_ui.py::T::test_restart PASSED [ 89%] 278s tests/integration/test_ui.py::T::test_run_as_real_user PASSED [ 89%] 278s tests/integration/test_ui.py::T::test_run_as_real_user_no_gvfsd PASSED [ 90%] 278s tests/integration/test_ui.py::T::test_run_as_real_user_no_sudo PASSED [ 90%] 278s tests/integration/test_ui.py::T::test_run_as_real_user_non_root PASSED [ 90%] 279s tests/integration/test_ui.py::T::test_run_crash PASSED [ 90%] 280s tests/integration/test_ui.py::T::test_run_crash_abort PASSED [ 90%] 281s tests/integration/test_ui.py::T::test_run_crash_anonymity PASSED [ 90%] 282s tests/integration/test_ui.py::T::test_run_crash_anonymity_escaping PASSED [ 91%] 282s tests/integration/test_ui.py::T::test_run_crash_anonymity_order PASSED [ 91%] 283s tests/integration/test_ui.py::T::test_run_crash_anonymity_substring PASSED [ 91%] 283s tests/integration/test_ui.py::T::test_run_crash_argv_file PASSED [ 91%] 284s tests/integration/test_ui.py::T::test_run_crash_broken PASSED [ 91%] 284s tests/integration/test_ui.py::T::test_run_crash_errors PASSED [ 92%] 284s tests/integration/test_ui.py::T::test_run_crash_ignore PASSED [ 92%] 284s tests/integration/test_ui.py::T::test_run_crash_kernel PASSED [ 92%] 286s tests/integration/test_ui.py::T::test_run_crash_known PASSED [ 92%] 286s tests/integration/test_ui.py::T::test_run_crash_malicious_crashdb PASSED [ 92%] 286s tests/integration/test_ui.py::T::test_run_crash_malicious_exec_path PASSED [ 93%] 286s tests/integration/test_ui.py::T::test_run_crash_malicious_package PASSED [ 93%] 286s tests/integration/test_ui.py::T::test_run_crash_nocore PASSED [ 93%] 287s tests/integration/test_ui.py::T::test_run_crash_package PASSED [ 93%] 288s tests/integration/test_ui.py::T::test_run_crash_precollected PASSED [ 93%] 288s tests/integration/test_ui.py::T::test_run_crash_preretraced PASSED [ 93%] 289s tests/integration/test_ui.py::T::test_run_crash_private_keys PASSED [ 94%] 289s tests/integration/test_ui.py::T::test_run_crash_uninstalled PASSED [ 94%] 289s tests/integration/test_ui.py::T::test_run_crash_unreportable PASSED [ 94%] 290s tests/integration/test_ui.py::T::test_run_crash_updated_binary PASSED [ 94%] 290s tests/integration/test_ui.py::T::test_run_nopending PASSED [ 94%] 290s tests/integration/test_ui.py::T::test_run_report_bug_file PASSED [ 95%] 290s tests/integration/test_ui.py::T::test_run_report_bug_kernel_thread PASSED [ 95%] 290s tests/integration/test_ui.py::T::test_run_report_bug_list_symptoms PASSED [ 95%] 290s tests/integration/test_ui.py::T::test_run_report_bug_noargs PASSED [ 95%] 290s tests/integration/test_ui.py::T::test_run_report_bug_noperm_pid PASSED [ 95%] 291s tests/integration/test_ui.py::T::test_run_report_bug_package PASSED [ 95%] 291s tests/integration/test_ui.py::T::test_run_report_bug_pid_tags PASSED [ 96%] 291s tests/integration/test_ui.py::T::test_run_report_bug_unpackaged_pid PASSED [ 96%] 291s tests/integration/test_ui.py::T::test_run_report_bug_wrong_pid PASSED [ 96%] 291s tests/integration/test_ui.py::T::test_run_report_hanging PASSED [ 96%] 291s tests/integration/test_ui.py::T::test_run_restart PASSED [ 96%] 292s tests/integration/test_ui.py::T::test_run_symptom PASSED [ 97%] 292s tests/integration/test_ui.py::T::test_run_update_report_different_binary_source PASSED [ 97%] 293s tests/integration/test_ui.py::T::test_run_update_report_existing_package_cli_cmdname PASSED [ 97%] 293s tests/integration/test_ui.py::T::test_run_update_report_existing_package_cli_tags PASSED [ 97%] 293s tests/integration/test_ui.py::T::test_run_update_report_existing_package_from_bug PASSED [ 97%] 293s tests/integration/test_ui.py::T::test_run_update_report_nonexisting_package_cli PASSED [ 97%] 293s tests/integration/test_ui.py::T::test_run_update_report_nonexisting_package_from_bug PASSED [ 98%] 293s tests/integration/test_ui.py::T::test_run_update_report_noninstalled_but_hook PASSED [ 98%] 293s tests/integration/test_ui.py::T::test_run_version PASSED [ 98%] 293s tests/integration/test_ui.py::T::test_wait_for_pid PASSED [ 98%] 293s tests/integration/test_ui_cli.py::TestApportCli::test_save_report_in_temp_directory PASSED [ 98%] 293s tests/integration/test_ui_cli.py::TestApportCli::test_ui_update_view PASSED [ 99%] 293s tests/integration/test_unkillable_shutdown.py::TestUnkillableShutdown::test_omit_all_processes PASSED [ 99%] 294s tests/integration/test_unkillable_shutdown.py::TestUnkillableShutdown::test_omit_all_processes_except_one PASSED [ 99%] 294s tests/integration/test_unkillable_shutdown.py::TestUnkillableShutdown::test_write_reports PASSED [ 99%] 294s tests/integration/test_whoopsie_upload_all.py::TestWhoopsieUploadAll::test_process_report_malformed_report PASSED [ 99%] 294s tests/integration/test_xml.py::test_validate_xml PASSED [100%] 294s 294s =========================== short test summary info ============================ 294s SKIPPED [1] tests/unit/test_problem_report.py:90: Missing German locale support 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:198: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:248: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:496: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:889: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:501: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:897: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:484: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:342: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:477: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:695: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:491: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:626: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:590: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:659: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:936: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:552: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:832: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:403: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:370: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:439: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_crashdb_launchpad.py:672: Need Launchpad access with bug control permission. Set TEST_LAUNCHPAD to run. 294s SKIPPED [1] tests/integration/test_hookutils.py:270: no logind session 294s SKIPPED [1] tests/integration/test_packaging_rpm.py:20: rpm module not available 294s SKIPPED [1] tests/integration/test_packaging_rpm.py:25: rpm module not available 294s SKIPPED [1] tests/integration/test_packaging_rpm.py:31: rpm module not available 294s SKIPPED [1] tests/integration/test_packaging_rpm.py:38: rpm module not available 294s SKIPPED [1] tests/integration/test_packaging_rpm.py:45: rpm module not available 294s SKIPPED [1] tests/integration/test_report.py:566: twistd not installed 294s SKIPPED [1] tests/integration/test_signal_crashes.py:302: fix test as multiple instances can be started within 30s 294s SKIPPED [1] tests/integration/test_signal_crashes.py:382: ./myscript is not executable 294s ================= 512 passed, 31 skipped in 100.78s (0:01:40) ================== 294s /tmp/autopkgtest.wz6Wal/wrapper.sh: checking for leaked background processes... 294s /tmp/autopkgtest.wz6Wal/wrapper.sh: waiting for tee/cat subprocesses... 294s /tmp/autopkgtest.wz6Wal/wrapper.sh: cleaning up... 294s /tmp/autopkgtest.wz6Wal/wrapper.sh: Exit status: 0 294s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest [15:16:00]: test unit-and-integration-tests: -----------------------] 294s autopkgtest: DBG: testbed executing test finished with exit status 0 294s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stdout /tmp/autopkgtest-work.wsxosrws/out/unit-and-integration-tests-stdout 295s autopkgtest: DBG: got reply from testbed: ok 295s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-stderr /tmp/autopkgtest-work.wsxosrws/out/unit-and-integration-tests-stderr 296s autopkgtest: DBG: got reply from testbed: ok 296s unit-and-integration-tests PASS 296s autopkgtest [15:16:02]: test unit-and-integration-tests: - - - - - - - - - - results - - - - - - - - - - 296s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/unit-and-integration-tests-artifacts/ /tmp/autopkgtest-work.wsxosrws/out/artifacts/ 296s autopkgtest: DBG: got reply from testbed: ok 296s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wz6Wal/unit-and-integration-tests-artifacts', '/tmp/autopkgtest.wz6Wal/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 297s autopkgtest: DBG: testbed command exited with code 0 297s autopkgtest [15:16:03]: test system-tests: preparing testbed 297s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['apport', 'apport-retrace', 'apport-valgrind', 'default-jdk-headless | java-sdk-headless', 'dictionaries-common', 'gcc', 'kmod', 'libc6-dev', 'libxml2-utils', 'polkitd', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'python3-zstandard'], deps_new=['apport', 'apport-gtk', 'apport-kde', 'apport-retrace', 'apport-valgrind', 'chaos-marmosets', 'dbus', 'dbus-x11', 'dirmngr', 'gcc', 'gdb-multiarch', 'gnome-icon-theme', 'gvfs-daemons', 'psmisc', 'python3-dbus', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'ubuntu-dbgsym-keyring', 'ubuntu-keyring', 'xvfb'] 297s autopkgtest: DBG: testbed reset 297s autopkgtest: DBG: sending command to testbed: revert 449s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.wz6Wal 449s autopkgtest: DBG: sending command to testbed: print-execute-command 449s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.4u620i11/runcmd 449s autopkgtest: DBG: sending command to testbed: capabilities 449s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu reboot root-on-testbed isolation-machine ok revert-full-system 449s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'isolation-machine', 'ok', 'revert-full-system', 'has_internet'] 449s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 449s autopkgtest: DBG: testbed command exited with code 0 449s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.wz6Wal/wrapper.sh 449s autopkgtest: DBG: got reply from testbed: ok 449s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/wrapper.sh'], kind short, sout raw, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest [15:18:36]: testbed dpkg architecture: s390x 450s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest [15:18:36]: testbed apt version: 2.9.28 450s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest: DBG: testbed has eatmydata 450s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest [15:18:36]: @@@@@@@@@@@@@@@@@@@@ test bed setup 450s 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 [] 450s autopkgtest: DBG: testbed command exited with code 0 450s autopkgtest [15:18:36]: testbed release detected to be: plucky 450s 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 [] 451s autopkgtest: DBG: testbed command exited with code 0 451s 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 [] 451s autopkgtest: DBG: testbed command exited with code 0 451s autopkgtest: DBG: adding APT source: Types: deb deb-src 451s URIs: http://ftpmaster.internal/ubuntu/ 451s Suites: plucky-proposed 451s Components: main restricted universe multiverse 451s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 451s 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 [] 451s autopkgtest: DBG: testbed command exited with code 0 451s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 451s Package: * 451s Pin: release plucky-proposed 451s Pin-Priority: 500 451s 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 [] 451s autopkgtest: DBG: testbed command exited with code 0 451s autopkgtest [15:18:37]: updating testbed package index (apt update) 451s 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'] 451s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 452s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 452s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 452s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 452s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [812 kB] 452s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [65.7 kB] 452s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.0 kB] 452s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [121 kB] 452s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [808 kB] 452s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3984 B] 452s Fetched 1935 kB in 1s (1938 kB/s) 453s Reading package lists... 453s autopkgtest: DBG: testbed command exited with code 0 453s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 453s Package: * 453s Pin: release plucky-proposed 453s Pin-Priority: 100 453s 453s Package: src:tilix:any 453s Pin: release plucky-proposed 453s Pin-Priority: 995 453s 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:tilix:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 453s autopkgtest: DBG: testbed command exited with code 0 453s 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.wz6Wal/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 453s autopkgtest: DBG: testbed command exited with code 0 453s 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'] 454s + lsb_release --codename --short 454s + RELEASE=plucky 454s + cat 454s + [ plucky != trusty ] 454s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 454s Reading package lists... 454s Building dependency tree... 454s Reading state information... 454s Calculating upgrade... 454s The following packages were automatically installed and are no longer required: 454s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 454s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 454s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 454s linux-tools-6.11.0-8-generic 454s Use 'sudo apt autoremove' to remove them. 454s The following packages will be upgraded: 454s curl libcurl3t64-gnutls libcurl4t64 libnftables1 libnftnl11 nftables 454s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 454s Need to get 1573 kB of archives. 454s After this operation, 46.1 kB of additional disk space will be used. 454s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x nftables s390x 1.1.1-1build1 [71.5 kB] 454s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libnftnl11 s390x 1.2.8-1 [66.6 kB] 454s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnftables1 s390x 1.1.1-1build1 [388 kB] 455s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x curl s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [257 kB] 455s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl4t64 s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [397 kB] 455s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 455s Fetched 1573 kB in 1s (1287 kB/s) 456s (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 ... 80969 files and directories currently installed.) 456s Preparing to unpack .../0-nftables_1.1.1-1build1_s390x.deb ... 456s Unpacking nftables (1.1.1-1build1) over (1.1.0-2) ... 456s Preparing to unpack .../1-libnftnl11_1.2.8-1_s390x.deb ... 456s Unpacking libnftnl11:s390x (1.2.8-1) over (1.2.7-1) ... 456s Preparing to unpack .../2-libnftables1_1.1.1-1build1_s390x.deb ... 456s Unpacking libnftables1:s390x (1.1.1-1build1) over (1.1.0-2) ... 456s Preparing to unpack .../3-curl_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 456s Unpacking curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 456s Preparing to unpack .../4-libcurl4t64_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 456s Unpacking libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 456s Preparing to unpack .../5-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 456s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 456s Setting up libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 456s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 456s Setting up libnftnl11:s390x (1.2.8-1) ... 456s Setting up curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 456s Setting up libnftables1:s390x (1.1.1-1build1) ... 456s Setting up nftables (1.1.1-1build1) ... 456s Processing triggers for man-db (2.13.0-1) ... 457s Processing triggers for libc-bin (2.40-4ubuntu1) ... 457s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 457s + /usr/lib/apt/apt-helper analyze-pattern ?true 457s + uname -r 457s + sed s/\./\\./g 457s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 457s + apt list ?obsolete 457s + + tail -n+2 457s cut -d/ -f1 457s + grep -v ^linux-.*6\.12\.0-15-generic.* 457s + true 457s + obsolete_pkgs= 457s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 457s Reading package lists... 457s Building dependency tree... 457s Reading state information... 457s The following packages will be REMOVED: 457s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 457s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 457s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 457s linux-tools-6.11.0-8-generic* 458s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 458s After this operation, 167 MB disk space will be freed. 458s (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 ... 80969 files and directories currently installed.) 458s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 458s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 458s Removing libpython3.12t64:s390x (3.12.9-1) ... 458s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 458s Removing libnsl2:s390x (1.3.0-3build3) ... 458s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 458s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 458s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 459s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 459s Processing triggers for libc-bin (2.40-4ubuntu1) ... 459s (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 ... 55869 files and directories currently installed.) 459s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 459s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 459s + grep -q trusty /etc/lsb-release 459s + [ ! -d /usr/share/doc/unattended-upgrades ] 459s + [ ! -d /usr/share/doc/lxd ] 459s + [ ! -d /usr/share/doc/lxd-client ] 459s + [ ! -d /usr/share/doc/snapd ] 459s + type iptables 459s + cat 459s + chmod 755 /etc/rc.local 459s + . /etc/rc.local 459s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 459s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 459s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 459s + uname -m 459s + [ s390x = ppc64le ] 459s + [ -d /run/systemd/system ] 459s + systemd-detect-virt --quiet --vm 459s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 459s + cat 459s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 459s + echo COMPRESS=lz4 459s autopkgtest: DBG: testbed command exited with code 0 459s autopkgtest [15:18:45]: upgrading testbed (apt dist-upgrade and autopurge) 459s 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'] 459s Reading package lists... 459s Building dependency tree... 459s Reading state information... 459s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 459s Starting 2 pkgProblemResolver with broken count: 0 459s Done 460s Entering ResolveByKeep 460s 460s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 460s autopkgtest: DBG: testbed command exited with code 0 460s 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'] 460s Reading package lists... 460s Building dependency tree... 460s Reading state information... 460s Starting pkgProblemResolver with broken count: 0 460s Starting 2 pkgProblemResolver with broken count: 0 460s Done 460s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 460s autopkgtest: DBG: testbed command exited with code 0 460s 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.wz6Wal/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 461s autopkgtest: DBG: testbed command exited with code 1 461s autopkgtest [15:18:47]: rebooting testbed after setup commands that affected boot 461s autopkgtest: DBG: sending command to testbed: reboot 488s autopkgtest: DBG: got reply from testbed: ok 488s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 488s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 488s autopkgtest: DBG: testbed command exited with code 0 488s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot 489s autopkgtest: DBG: got reply from testbed: ok 489s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 489s autopkgtest: DBG: testbed command exited with code 0 489s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare 490s autopkgtest: DBG: got reply from testbed: ok 490s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 490s autopkgtest: DBG: testbed command exited with code 0 490s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 490s autopkgtest: DBG: testbed command exited with code 0 490s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 490s autopkgtest: DBG: testbed command exited with code 0 490s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wz6Wal/testbed-packages"], kind short, sout raw, serr pipe, env [] 490s autopkgtest: DBG: testbed command exited with code 0 490s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/testbed-packages /tmp/autopkgtest-work.wsxosrws/out/testbed-packages 491s autopkgtest: DBG: got reply from testbed: ok 491s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 491s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot 494s autopkgtest: DBG: got reply from testbed: ok 494s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal'], kind short, sout raw, serr pipe, env [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare 495s autopkgtest: DBG: got reply from testbed: ok 495s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 495s autopkgtest: DBG: testbed command exited with code 0 495s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wz6Wal/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 495s autopkgtest: DBG: testbed command exited with code 0 495s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 495s autopkgtest: DBG: testbed command exited with code 0 495s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 495s autopkgtest: DBG: install_deps: deps_new=['apport', 'apport-gtk', 'apport-kde', 'apport-retrace', 'apport-valgrind', 'chaos-marmosets', 'dbus', 'dbus-x11', 'dirmngr', 'gcc', 'gdb-multiarch', 'gnome-icon-theme', 'gvfs-daemons', 'psmisc', 'python3-dbus', 'python3-psutil', 'python3-pytest', 'python3-systemd', 'ubuntu-dbgsym-keyring', 'ubuntu-keyring', 'xvfb'] 495s autopkgtest: DBG: install-deps: satisfying apport, apport-gtk, apport-kde, apport-retrace, apport-valgrind, chaos-marmosets, dbus, dbus-x11, dirmngr, gcc, gdb-multiarch, gnome-icon-theme, gvfs-daemons, psmisc, python3-dbus, python3-psutil, python3-pytest, python3-systemd, ubuntu-dbgsym-keyring, ubuntu-keyring, xvfb 495s autopkgtest: DBG: can use apt-get on testbed: True 495s 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', 'apport, apport-gtk, apport-kde, apport-retrace, apport-valgrind, chaos-marmosets, dbus, dbus-x11, dirmngr, gcc, gdb-multiarch, gnome-icon-theme, gvfs-daemons, psmisc, python3-dbus, python3-psutil, python3-pytest, python3-systemd, ubuntu-dbgsym-keyring, ubuntu-keyring, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 496s Reading package lists... 496s Building dependency tree... 496s Reading state information... 496s Starting pkgProblemResolver with broken count: 0 496s Starting 2 pkgProblemResolver with broken count: 0 496s Done 496s The following NEW packages will be installed: 496s adwaita-icon-theme apport-gtk apport-kde apport-retrace apport-valgrind 496s at-spi2-common chaos-marmosets cpp cpp-14 cpp-14-s390x-linux-gnu 496s cpp-s390x-linux-gnu dbus-x11 dconf-gsettings-backend dconf-service 496s desktop-file-utils fontconfig fontconfig-config fonts-dejavu-core 496s fonts-dejavu-mono gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gdb 496s gir1.2-atk-1.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-gtk-3.0 496s gir1.2-harfbuzz-0.0 gir1.2-pango-1.0 gir1.2-wnck-3.0 gnome-icon-theme 496s gnome-terminal gnome-terminal-data gsettings-desktop-schemas 496s gtk-update-icon-cache gvfs-common gvfs-daemons gvfs-libs hicolor-icon-theme 496s humanity-icon-theme libasan8 libatk-bridge2.0-0t64 libatk1.0-0t64 496s libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3 496s libbabeltrace1 libc6-dbg libcairo-gobject2 libcairo2 libcc1-0 libcolord2 496s libcups2t64 libdatrie1 libdconf1 libdebuginfod-common libdebuginfod1t64 496s libdeflate0 libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 496s libepoxy0 libfontconfig1 libfontenc1 libfreetype6 libgbm1 libgcc-14-dev 496s libgck-2-2 libgcr-4-4 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgl1 496s libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 496s libgraphite2-3 libgtk-3-0t64 libgtk-3-common libhandy-1-0 496s libharfbuzz-gobject0 libharfbuzz0b libice6 libinput-bin libinput10 libisl23 496s libitm1 libjbig0 libjpeg-turbo8 libjpeg8 liblcms2-2 libmd4c0 libmpc3 496s libmtdev1t64 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 496s libpangoxft-1.0-0 libpcre2-16-0 libpixman-1-0 libqt5core5t64 libqt5dbus5t64 496s libqt5designer5 libqt5gui5t64 libqt5help5 libqt5network5t64 496s libqt5printsupport5t64 libqt5sql5t64 libqt5test5t64 libqt5widgets5t64 496s libqt5xml5t64 librsvg2-2 librsvg2-common libsecret-1-0 libsecret-common 496s libsharpyuv0 libsm6 libsource-highlight-common libsource-highlight4t64 496s libstartup-notification0 libthai-data libthai0 libtiff6 libubsan1 496s libvte-2.91-0 libvte-2.91-common libvulkan1 libwacom-common libwacom9 496s libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 496s libwebp7 libwhoopsie-preferences0 libwhoopsie0 libwnck-3-0 libwnck-3-common 496s libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 496s libxcb-keysyms1 libxcb-present0 libxcb-randr0 libxcb-render-util0 496s libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 496s libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcomposite1 496s libxcursor1 libxdamage1 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 496s libxkbcommon-x11-0 libxkbfile1 libxmu6 libxpm4 libxrandr2 libxrender1 496s libxres1 libxshmfence1 libxt6t64 libxxf86vm1 mesa-libgallium 496s python3-iniconfig python3-packaging python3-pluggy python3-psutil 496s python3-pyqt5 python3-pyqt5.sip python3-pytest ubuntu-dbgsym-keyring 496s ubuntu-mono valgrind whoopsie-preferences x11-common x11-xkb-utils 496s xserver-common xvfb 496s 0 upgraded, 196 newly installed, 0 to remove and 0 not upgraded. 496s Need to get 117 MB of archives. 496s After this operation, 434 MB of additional disk space will be used. 496s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod-common all 0.192-4 [15.4 kB] 496s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 496s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 497s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 497s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 497s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 497s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 497s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 497s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 497s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 497s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.1+ds-2ubuntu1 [52.5 kB] 497s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 497s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x humanity-icon-theme all 0.6.16 [1282 kB] 497s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-mono all 24.04-0ubuntu1 [151 kB] 497s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-2 [578 kB] 498s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 498s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 498s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-atk-1.0 s390x 2.55.2-1 [22.9 kB] 498s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 498s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 498s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 498s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 498s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 498s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 498s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 498s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 498s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 498s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 498s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 498s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-freedesktop s390x 1.82.0-4 [64.0 kB] 498s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdkpixbuf-2.0 s390x 2.42.12+dfsg-2 [9330 B] 498s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 498s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 499s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-gobject0 s390x 10.2.0-1 [35.1 kB] 499s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-harfbuzz-0.0 s390x 10.2.0-1 [44.4 kB] 499s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 499s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 499s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 499s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 499s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 499s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 499s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 499s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 499s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoxft-1.0-0 s390x 1.56.1-1 [20.2 kB] 499s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-pango-1.0 s390x 1.56.1-1 [34.4 kB] 499s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 499s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 499s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 499s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 499s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 499s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 499s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 499s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 499s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 499s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 499s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 499s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 499s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 499s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 499s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 499s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 499s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 499s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 499s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 499s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x dbus-x11 s390x 1.14.10-4ubuntu5 [24.0 kB] 499s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 499s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 499s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 499s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 499s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 499s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gtk-3.0 s390x 3.24.48-3ubuntu1 [241 kB] 499s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 499s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 499s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libstartup-notification0 s390x 0.12-8 [19.9 kB] 499s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libxres1 s390x 2:1.2.1-1build1 [7096 B] 499s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libwnck-3-common all 43.2-1 [19.9 kB] 499s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libwnck-3-0 s390x 43.2-1 [115 kB] 499s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-wnck-3.0 s390x 43.2-1 [10.2 kB] 499s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-terminal-data all 3.54.0-1ubuntu1 [38.7 kB] 500s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x gsettings-desktop-schemas all 48~beta-1ubuntu1 [37.4 kB] 500s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libhandy-1-0 s390x 1.8.3-2 [228 kB] 500s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libvte-2.91-common s390x 0.78.3-3 [14.5 kB] 500s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libvte-2.91-0 s390x 0.78.3-3 [289 kB] 500s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-terminal s390x 3.54.0-1ubuntu1 [213 kB] 500s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libwhoopsie-preferences0 s390x 23build3 [14.5 kB] 500s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libwhoopsie0 s390x 0.2.78 [10.8 kB] 500s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x whoopsie-preferences s390x 23build3 [8696 B] 500s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x apport-gtk all 2.31.0-0ubuntu5 [9846 B] 500s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5.sip s390x 12.17.0-1 [69.3 kB] 500s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 500s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 500s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-1ubuntu2 [2243 kB] 500s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-1ubuntu2 [240 kB] 500s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 500s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 500s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 500s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 500s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 500s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 500s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 500s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 500s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 500s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 500s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 501s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 501s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 501s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 501s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 501s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 501s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 501s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 501s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 501s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 501s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 501s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 501s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 501s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 501s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 501s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 501s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.26.2-1 [22.8 kB] 501s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.26.2-1 [135 kB] 501s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 501s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-1ubuntu2 [788 kB] 501s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 501s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 501s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 501s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 501s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 501s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 501s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 501s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 502s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 502s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 502s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-1ubuntu2 [4187 kB] 502s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-1ubuntu2 [2718 kB] 503s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5xml5t64 s390x 5.15.15+dfsg-1ubuntu2 [129 kB] 503s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5designer5 s390x 5.15.15-6 [2899 kB] 503s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5sql5t64 s390x 5.15.15+dfsg-1ubuntu2 [130 kB] 503s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5help5 s390x 5.15.15-6 [172 kB] 503s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5printsupport5t64 s390x 5.15.15+dfsg-1ubuntu2 [218 kB] 503s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5test5t64 s390x 5.15.15+dfsg-1ubuntu2 [155 kB] 503s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyqt5 s390x 5.15.11+dfsg-1build2 [2878 kB] 504s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x apport-kde all 2.31.0-0ubuntu5 [18.8 kB] 504s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libbabeltrace1 s390x 1.5.11-4build1 [170 kB] 504s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libdebuginfod1t64 s390x 0.192-4 [22.6 kB] 504s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight-common all 3.1.9-4.3build1 [64.2 kB] 504s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libsource-highlight4t64 s390x 3.1.9-4.3build1 [268 kB] 504s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x gdb s390x 16.2-1ubuntu1 [8240 kB] 504s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libc6-dbg s390x 2.40-4ubuntu1 [7794 kB] 505s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x apport-retrace all 2.31.0-0ubuntu5 [14.6 kB] 505s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x valgrind s390x 1:3.24.0-0ubuntu1 [9636 kB] 506s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x apport-valgrind all 2.31.0-0ubuntu5 [5222 B] 506s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x chaos-marmosets s390x 0.2.0-1 [9724 B] 506s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 506s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 506s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 506s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 506s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 506s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 506s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x desktop-file-utils s390x 0.28-1 [53.9 kB] 506s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 506s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 506s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 506s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 507s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 507s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 507s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 507s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 507s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 507s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 507s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.2+dfsg-1 [1986 kB] 507s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-common s390x 2.59.2+dfsg-1 [175 kB] 507s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x gnome-icon-theme all 3.12.0-5 [9619 kB] 509s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs-common all 1.56.1-1ubuntu1 [13.8 kB] 509s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libgck-2-2 s390x 4.3.91-1 [76.8 kB] 509s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x libgcr-4-4 s390x 4.3.91-1 [204 kB] 509s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-common all 0.21.6-3 [5130 B] 509s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-1-0 s390x 0.21.6-3 [115 kB] 509s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs-libs s390x 1.56.1-1ubuntu1 [108 kB] 509s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs-daemons s390x 1.56.1-1ubuntu1 [110 kB] 509s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 509s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 509s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 509s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 509s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 509s Get:186 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 509s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 509s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 509s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 509s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 509s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 509s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 509s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-dbgsym-keyring all 2023.11.28.1 [4528 B] 509s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 509s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 509s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 509s Preconfiguring packages ... 509s Fetched 117 MB in 13s (9154 kB/s) 509s Selecting previously unselected package libdebuginfod-common. 510s (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 ... 55867 files and directories currently installed.) 510s Preparing to unpack .../000-libdebuginfod-common_0.192-4_all.deb ... 510s Unpacking libdebuginfod-common (0.192-4) ... 510s Selecting previously unselected package libgdk-pixbuf2.0-common. 510s Preparing to unpack .../001-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 510s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 510s Selecting previously unselected package libjpeg-turbo8:s390x. 510s Preparing to unpack .../002-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 510s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 510s Selecting previously unselected package libjpeg8:s390x. 510s Preparing to unpack .../003-libjpeg8_8c-2ubuntu11_s390x.deb ... 510s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 510s Selecting previously unselected package libdeflate0:s390x. 510s Preparing to unpack .../004-libdeflate0_1.23-1_s390x.deb ... 510s Unpacking libdeflate0:s390x (1.23-1) ... 510s Selecting previously unselected package libjbig0:s390x. 510s Preparing to unpack .../005-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 510s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 510s Selecting previously unselected package libsharpyuv0:s390x. 510s Preparing to unpack .../006-libsharpyuv0_1.5.0-0.1_s390x.deb ... 510s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 510s Selecting previously unselected package libwebp7:s390x. 510s Preparing to unpack .../007-libwebp7_1.5.0-0.1_s390x.deb ... 510s Unpacking libwebp7:s390x (1.5.0-0.1) ... 510s Selecting previously unselected package libtiff6:s390x. 510s Preparing to unpack .../008-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 510s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 510s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 510s Preparing to unpack .../009-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 510s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 510s Selecting previously unselected package gtk-update-icon-cache. 510s Preparing to unpack .../010-gtk-update-icon-cache_4.17.1+ds-2ubuntu1_s390x.deb ... 510s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 510s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 510s Unpacking gtk-update-icon-cache (4.17.1+ds-2ubuntu1) ... 510s Selecting previously unselected package hicolor-icon-theme. 510s Preparing to unpack .../011-hicolor-icon-theme_0.18-2_all.deb ... 510s Unpacking hicolor-icon-theme (0.18-2) ... 510s Selecting previously unselected package humanity-icon-theme. 510s Preparing to unpack .../012-humanity-icon-theme_0.6.16_all.deb ... 510s Unpacking humanity-icon-theme (0.6.16) ... 510s Selecting previously unselected package ubuntu-mono. 510s Preparing to unpack .../013-ubuntu-mono_24.04-0ubuntu1_all.deb ... 510s Unpacking ubuntu-mono (24.04-0ubuntu1) ... 510s Selecting previously unselected package adwaita-icon-theme. 510s Preparing to unpack .../014-adwaita-icon-theme_48~beta-2_all.deb ... 510s Unpacking adwaita-icon-theme (48~beta-2) ... 510s Selecting previously unselected package at-spi2-common. 510s Preparing to unpack .../015-at-spi2-common_2.55.2-1_all.deb ... 510s Unpacking at-spi2-common (2.55.2-1) ... 510s Selecting previously unselected package libatk1.0-0t64:s390x. 510s Preparing to unpack .../016-libatk1.0-0t64_2.55.2-1_s390x.deb ... 510s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 510s Selecting previously unselected package gir1.2-atk-1.0:s390x. 510s Preparing to unpack .../017-gir1.2-atk-1.0_2.55.2-1_s390x.deb ... 510s Unpacking gir1.2-atk-1.0:s390x (2.55.2-1) ... 510s Selecting previously unselected package libfreetype6:s390x. 510s Preparing to unpack .../018-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 510s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 510s Selecting previously unselected package fonts-dejavu-mono. 510s Preparing to unpack .../019-fonts-dejavu-mono_2.37-8_all.deb ... 510s Unpacking fonts-dejavu-mono (2.37-8) ... 510s Selecting previously unselected package fonts-dejavu-core. 510s Preparing to unpack .../020-fonts-dejavu-core_2.37-8_all.deb ... 510s Unpacking fonts-dejavu-core (2.37-8) ... 510s Selecting previously unselected package fontconfig-config. 510s Preparing to unpack .../021-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 510s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 510s Selecting previously unselected package libfontconfig1:s390x. 510s Preparing to unpack .../022-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 510s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 510s Selecting previously unselected package libpixman-1-0:s390x. 510s Preparing to unpack .../023-libpixman-1-0_0.44.0-3_s390x.deb ... 510s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 510s Selecting previously unselected package libxcb-render0:s390x. 510s Preparing to unpack .../024-libxcb-render0_1.17.0-2_s390x.deb ... 510s Unpacking libxcb-render0:s390x (1.17.0-2) ... 510s Selecting previously unselected package libxcb-shm0:s390x. 510s Preparing to unpack .../025-libxcb-shm0_1.17.0-2_s390x.deb ... 510s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 510s Selecting previously unselected package libxrender1:s390x. 510s Preparing to unpack .../026-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 510s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 510s Selecting previously unselected package libcairo2:s390x. 510s Preparing to unpack .../027-libcairo2_1.18.2-2_s390x.deb ... 510s Unpacking libcairo2:s390x (1.18.2-2) ... 510s Selecting previously unselected package libcairo-gobject2:s390x. 510s Preparing to unpack .../028-libcairo-gobject2_1.18.2-2_s390x.deb ... 510s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 510s Selecting previously unselected package gir1.2-freedesktop:s390x. 510s Preparing to unpack .../029-gir1.2-freedesktop_1.82.0-4_s390x.deb ... 510s Unpacking gir1.2-freedesktop:s390x (1.82.0-4) ... 511s Selecting previously unselected package gir1.2-gdkpixbuf-2.0:s390x. 511s Preparing to unpack .../030-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-2_s390x.deb ... 511s Unpacking gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 511s Selecting previously unselected package libgraphite2-3:s390x. 511s Preparing to unpack .../031-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 511s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 511s Selecting previously unselected package libharfbuzz0b:s390x. 511s Preparing to unpack .../032-libharfbuzz0b_10.2.0-1_s390x.deb ... 511s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 511s Selecting previously unselected package libharfbuzz-gobject0:s390x. 511s Preparing to unpack .../033-libharfbuzz-gobject0_10.2.0-1_s390x.deb ... 511s Unpacking libharfbuzz-gobject0:s390x (10.2.0-1) ... 511s Selecting previously unselected package gir1.2-harfbuzz-0.0:s390x. 511s Preparing to unpack .../034-gir1.2-harfbuzz-0.0_10.2.0-1_s390x.deb ... 511s Unpacking gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 511s Selecting previously unselected package fontconfig. 511s Preparing to unpack .../035-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 511s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 511s Selecting previously unselected package libthai-data. 511s Preparing to unpack .../036-libthai-data_0.1.29-2build1_all.deb ... 511s Unpacking libthai-data (0.1.29-2build1) ... 511s Selecting previously unselected package libdatrie1:s390x. 511s Preparing to unpack .../037-libdatrie1_0.2.13-3build1_s390x.deb ... 511s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 511s Selecting previously unselected package libthai0:s390x. 511s Preparing to unpack .../038-libthai0_0.1.29-2build1_s390x.deb ... 511s Unpacking libthai0:s390x (0.1.29-2build1) ... 511s Selecting previously unselected package libpango-1.0-0:s390x. 511s Preparing to unpack .../039-libpango-1.0-0_1.56.1-1_s390x.deb ... 511s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 511s Selecting previously unselected package libpangoft2-1.0-0:s390x. 511s Preparing to unpack .../040-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 511s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 511s Selecting previously unselected package libpangocairo-1.0-0:s390x. 511s Preparing to unpack .../041-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 511s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 511s Selecting previously unselected package libxft2:s390x. 511s Preparing to unpack .../042-libxft2_2.3.6-1build1_s390x.deb ... 511s Unpacking libxft2:s390x (2.3.6-1build1) ... 511s Selecting previously unselected package libpangoxft-1.0-0:s390x. 511s Preparing to unpack .../043-libpangoxft-1.0-0_1.56.1-1_s390x.deb ... 511s Unpacking libpangoxft-1.0-0:s390x (1.56.1-1) ... 511s Selecting previously unselected package gir1.2-pango-1.0:s390x. 511s Preparing to unpack .../044-gir1.2-pango-1.0_1.56.1-1_s390x.deb ... 511s Unpacking gir1.2-pango-1.0:s390x (1.56.1-1) ... 511s Selecting previously unselected package libxi6:s390x. 511s Preparing to unpack .../045-libxi6_2%3a1.8.2-1_s390x.deb ... 511s Unpacking libxi6:s390x (2:1.8.2-1) ... 511s Selecting previously unselected package libatspi2.0-0t64:s390x. 511s Preparing to unpack .../046-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 511s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 511s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 511s Preparing to unpack .../047-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 511s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 511s Selecting previously unselected package liblcms2-2:s390x. 511s Preparing to unpack .../048-liblcms2-2_2.16-2_s390x.deb ... 511s Unpacking liblcms2-2:s390x (2.16-2) ... 511s Selecting previously unselected package libcolord2:s390x. 511s Preparing to unpack .../049-libcolord2_1.4.7-1build2_s390x.deb ... 511s Unpacking libcolord2:s390x (1.4.7-1build2) ... 511s Selecting previously unselected package libavahi-common-data:s390x. 511s Preparing to unpack .../050-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 511s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 511s Selecting previously unselected package libavahi-common3:s390x. 511s Preparing to unpack .../051-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 511s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 511s Selecting previously unselected package libavahi-client3:s390x. 511s Preparing to unpack .../052-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 511s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 511s Selecting previously unselected package libcups2t64:s390x. 511s Preparing to unpack .../053-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 511s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 511s Selecting previously unselected package libepoxy0:s390x. 511s Preparing to unpack .../054-libepoxy0_1.5.10-2_s390x.deb ... 511s Unpacking libepoxy0:s390x (1.5.10-2) ... 511s Selecting previously unselected package libwayland-client0:s390x. 511s Preparing to unpack .../055-libwayland-client0_1.23.1-1_s390x.deb ... 511s Unpacking libwayland-client0:s390x (1.23.1-1) ... 511s Selecting previously unselected package libwayland-cursor0:s390x. 511s Preparing to unpack .../056-libwayland-cursor0_1.23.1-1_s390x.deb ... 511s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 511s Selecting previously unselected package libwayland-egl1:s390x. 511s Preparing to unpack .../057-libwayland-egl1_1.23.1-1_s390x.deb ... 511s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 511s Selecting previously unselected package libxcomposite1:s390x. 511s Preparing to unpack .../058-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 511s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 511s Selecting previously unselected package libxfixes3:s390x. 511s Preparing to unpack .../059-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 511s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 511s Selecting previously unselected package libxcursor1:s390x. 511s Preparing to unpack .../060-libxcursor1_1%3a1.2.3-1_s390x.deb ... 511s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 511s Selecting previously unselected package libxdamage1:s390x. 511s Preparing to unpack .../061-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 511s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 511s Selecting previously unselected package libxinerama1:s390x. 511s Preparing to unpack .../062-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 511s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 511s Selecting previously unselected package libxrandr2:s390x. 511s Preparing to unpack .../063-libxrandr2_2%3a1.5.4-1_s390x.deb ... 511s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 511s Selecting previously unselected package dbus-x11. 511s Preparing to unpack .../064-dbus-x11_1.14.10-4ubuntu5_s390x.deb ... 511s Unpacking dbus-x11 (1.14.10-4ubuntu5) ... 511s Selecting previously unselected package libdconf1:s390x. 511s Preparing to unpack .../065-libdconf1_0.40.0-5_s390x.deb ... 511s Unpacking libdconf1:s390x (0.40.0-5) ... 511s Selecting previously unselected package dconf-service. 511s Preparing to unpack .../066-dconf-service_0.40.0-5_s390x.deb ... 511s Unpacking dconf-service (0.40.0-5) ... 511s Selecting previously unselected package dconf-gsettings-backend:s390x. 511s Preparing to unpack .../067-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 511s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 511s Selecting previously unselected package libgtk-3-common. 511s Preparing to unpack .../068-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 511s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 511s Selecting previously unselected package libgtk-3-0t64:s390x. 511s Preparing to unpack .../069-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 511s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 511s Selecting previously unselected package gir1.2-gtk-3.0:s390x. 511s Preparing to unpack .../070-gir1.2-gtk-3.0_3.24.48-3ubuntu1_s390x.deb ... 511s Unpacking gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 511s Selecting previously unselected package libx11-xcb1:s390x. 511s Preparing to unpack .../071-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 511s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 511s Selecting previously unselected package libxcb-util1:s390x. 511s Preparing to unpack .../072-libxcb-util1_0.4.1-1_s390x.deb ... 511s Unpacking libxcb-util1:s390x (0.4.1-1) ... 511s Selecting previously unselected package libstartup-notification0:s390x. 511s Preparing to unpack .../073-libstartup-notification0_0.12-8_s390x.deb ... 511s Unpacking libstartup-notification0:s390x (0.12-8) ... 511s Selecting previously unselected package libxres1:s390x. 511s Preparing to unpack .../074-libxres1_2%3a1.2.1-1build1_s390x.deb ... 511s Unpacking libxres1:s390x (2:1.2.1-1build1) ... 511s Selecting previously unselected package libwnck-3-common. 511s Preparing to unpack .../075-libwnck-3-common_43.2-1_all.deb ... 511s Unpacking libwnck-3-common (43.2-1) ... 511s Selecting previously unselected package libwnck-3-0:s390x. 511s Preparing to unpack .../076-libwnck-3-0_43.2-1_s390x.deb ... 511s Unpacking libwnck-3-0:s390x (43.2-1) ... 511s Selecting previously unselected package gir1.2-wnck-3.0:s390x. 511s Preparing to unpack .../077-gir1.2-wnck-3.0_43.2-1_s390x.deb ... 511s Unpacking gir1.2-wnck-3.0:s390x (43.2-1) ... 511s Selecting previously unselected package gnome-terminal-data. 511s Preparing to unpack .../078-gnome-terminal-data_3.54.0-1ubuntu1_all.deb ... 511s Unpacking gnome-terminal-data (3.54.0-1ubuntu1) ... 511s Selecting previously unselected package gsettings-desktop-schemas. 511s Preparing to unpack .../079-gsettings-desktop-schemas_48~beta-1ubuntu1_all.deb ... 511s Unpacking gsettings-desktop-schemas (48~beta-1ubuntu1) ... 511s Selecting previously unselected package libhandy-1-0:s390x. 511s Preparing to unpack .../080-libhandy-1-0_1.8.3-2_s390x.deb ... 511s Unpacking libhandy-1-0:s390x (1.8.3-2) ... 511s Selecting previously unselected package libvte-2.91-common. 511s Preparing to unpack .../081-libvte-2.91-common_0.78.3-3_s390x.deb ... 511s Unpacking libvte-2.91-common (0.78.3-3) ... 511s Selecting previously unselected package libvte-2.91-0:s390x. 511s Preparing to unpack .../082-libvte-2.91-0_0.78.3-3_s390x.deb ... 511s Unpacking libvte-2.91-0:s390x (0.78.3-3) ... 511s Selecting previously unselected package gnome-terminal. 511s Preparing to unpack .../083-gnome-terminal_3.54.0-1ubuntu1_s390x.deb ... 511s Unpacking gnome-terminal (3.54.0-1ubuntu1) ... 511s Selecting previously unselected package libwhoopsie-preferences0. 511s Preparing to unpack .../084-libwhoopsie-preferences0_23build3_s390x.deb ... 511s Unpacking libwhoopsie-preferences0 (23build3) ... 511s Selecting previously unselected package libwhoopsie0:s390x. 511s Preparing to unpack .../085-libwhoopsie0_0.2.78_s390x.deb ... 511s Unpacking libwhoopsie0:s390x (0.2.78) ... 511s Selecting previously unselected package whoopsie-preferences. 511s Preparing to unpack .../086-whoopsie-preferences_23build3_s390x.deb ... 511s Unpacking whoopsie-preferences (23build3) ... 511s Selecting previously unselected package apport-gtk. 511s Preparing to unpack .../087-apport-gtk_2.31.0-0ubuntu5_all.deb ... 511s Unpacking apport-gtk (2.31.0-0ubuntu5) ... 511s Selecting previously unselected package python3-pyqt5.sip. 511s Preparing to unpack .../088-python3-pyqt5.sip_12.17.0-1_s390x.deb ... 511s Unpacking python3-pyqt5.sip (12.17.0-1) ... 511s Selecting previously unselected package libdouble-conversion3:s390x. 511s Preparing to unpack .../089-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 511s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 511s Selecting previously unselected package libpcre2-16-0:s390x. 511s Preparing to unpack .../090-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 511s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 511s Selecting previously unselected package libqt5core5t64:s390x. 511s Preparing to unpack .../091-libqt5core5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 511s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 511s Selecting previously unselected package libqt5dbus5t64:s390x. 511s Preparing to unpack .../092-libqt5dbus5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 511s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 511s Selecting previously unselected package libglvnd0:s390x. 511s Preparing to unpack .../093-libglvnd0_1.7.0-1build1_s390x.deb ... 511s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 511s Selecting previously unselected package libwayland-server0:s390x. 511s Preparing to unpack .../094-libwayland-server0_1.23.1-1_s390x.deb ... 511s Unpacking libwayland-server0:s390x (1.23.1-1) ... 511s Selecting previously unselected package libdrm-radeon1:s390x. 511s Preparing to unpack .../095-libdrm-radeon1_2.4.123-1_s390x.deb ... 511s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 511s Selecting previously unselected package libglapi-mesa:s390x. 511s Preparing to unpack .../096-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 511s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 511s Selecting previously unselected package libxcb-dri3-0:s390x. 511s Preparing to unpack .../097-libxcb-dri3-0_1.17.0-2_s390x.deb ... 511s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 511s Selecting previously unselected package libxcb-present0:s390x. 511s Preparing to unpack .../098-libxcb-present0_1.17.0-2_s390x.deb ... 511s Unpacking libxcb-present0:s390x (1.17.0-2) ... 511s Selecting previously unselected package libxcb-randr0:s390x. 511s Preparing to unpack .../099-libxcb-randr0_1.17.0-2_s390x.deb ... 511s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 511s Selecting previously unselected package libxcb-sync1:s390x. 511s Preparing to unpack .../100-libxcb-sync1_1.17.0-2_s390x.deb ... 511s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 511s Selecting previously unselected package libxcb-xfixes0:s390x. 511s Preparing to unpack .../101-libxcb-xfixes0_1.17.0-2_s390x.deb ... 511s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 511s Selecting previously unselected package libxshmfence1:s390x. 511s Preparing to unpack .../102-libxshmfence1_1.3-1build5_s390x.deb ... 511s Unpacking libxshmfence1:s390x (1.3-1build5) ... 511s Selecting previously unselected package mesa-libgallium:s390x. 511s Preparing to unpack .../103-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 511s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 512s Selecting previously unselected package libgbm1:s390x. 512s Preparing to unpack .../104-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 512s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 512s Selecting previously unselected package libegl-mesa0:s390x. 512s Preparing to unpack .../105-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 512s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 512s Selecting previously unselected package libegl1:s390x. 512s Preparing to unpack .../106-libegl1_1.7.0-1build1_s390x.deb ... 512s Unpacking libegl1:s390x (1.7.0-1build1) ... 512s Selecting previously unselected package libxcb-glx0:s390x. 512s Preparing to unpack .../107-libxcb-glx0_1.17.0-2_s390x.deb ... 512s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 512s Selecting previously unselected package libxxf86vm1:s390x. 512s Preparing to unpack .../108-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 512s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 512s Selecting previously unselected package libvulkan1:s390x. 512s Preparing to unpack .../109-libvulkan1_1.4.304.0-1_s390x.deb ... 512s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 512s Selecting previously unselected package libgl1-mesa-dri:s390x. 512s Preparing to unpack .../110-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 512s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 512s Selecting previously unselected package libglx-mesa0:s390x. 512s Preparing to unpack .../111-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 512s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 512s Selecting previously unselected package libglx0:s390x. 512s Preparing to unpack .../112-libglx0_1.7.0-1build1_s390x.deb ... 512s Unpacking libglx0:s390x (1.7.0-1build1) ... 512s Selecting previously unselected package libgl1:s390x. 512s Preparing to unpack .../113-libgl1_1.7.0-1build1_s390x.deb ... 512s Unpacking libgl1:s390x (1.7.0-1build1) ... 512s Selecting previously unselected package x11-common. 512s Preparing to unpack .../114-x11-common_1%3a7.7+23ubuntu3_all.deb ... 512s Unpacking x11-common (1:7.7+23ubuntu3) ... 512s Selecting previously unselected package libice6:s390x. 512s Preparing to unpack .../115-libice6_2%3a1.1.1-1_s390x.deb ... 512s Unpacking libice6:s390x (2:1.1.1-1) ... 512s Selecting previously unselected package libmtdev1t64:s390x. 512s Preparing to unpack .../116-libmtdev1t64_1.1.7-1_s390x.deb ... 512s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 512s Selecting previously unselected package libwacom-common. 512s Preparing to unpack .../117-libwacom-common_2.14.0-1_all.deb ... 512s Unpacking libwacom-common (2.14.0-1) ... 512s Selecting previously unselected package libwacom9:s390x. 512s Preparing to unpack .../118-libwacom9_2.14.0-1_s390x.deb ... 512s Unpacking libwacom9:s390x (2.14.0-1) ... 512s Selecting previously unselected package libinput-bin. 512s Preparing to unpack .../119-libinput-bin_1.26.2-1_s390x.deb ... 512s Unpacking libinput-bin (1.26.2-1) ... 512s Selecting previously unselected package libinput10:s390x. 512s Preparing to unpack .../120-libinput10_1.26.2-1_s390x.deb ... 512s Unpacking libinput10:s390x (1.26.2-1) ... 512s Selecting previously unselected package libmd4c0:s390x. 512s Preparing to unpack .../121-libmd4c0_0.5.2-2_s390x.deb ... 512s Unpacking libmd4c0:s390x (0.5.2-2) ... 512s Selecting previously unselected package libqt5network5t64:s390x. 512s Preparing to unpack .../122-libqt5network5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package libsm6:s390x. 512s Preparing to unpack .../123-libsm6_2%3a1.2.4-1_s390x.deb ... 512s Unpacking libsm6:s390x (2:1.2.4-1) ... 512s Selecting previously unselected package libxcb-icccm4:s390x. 512s Preparing to unpack .../124-libxcb-icccm4_0.4.2-1_s390x.deb ... 512s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 512s Selecting previously unselected package libxcb-image0:s390x. 512s Preparing to unpack .../125-libxcb-image0_0.4.0-2build1_s390x.deb ... 512s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 512s Selecting previously unselected package libxcb-keysyms1:s390x. 512s Preparing to unpack .../126-libxcb-keysyms1_0.4.1-1_s390x.deb ... 512s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 512s Selecting previously unselected package libxcb-render-util0:s390x. 512s Preparing to unpack .../127-libxcb-render-util0_0.3.10-1_s390x.deb ... 512s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 512s Selecting previously unselected package libxcb-shape0:s390x. 512s Preparing to unpack .../128-libxcb-shape0_1.17.0-2_s390x.deb ... 512s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 512s Selecting previously unselected package libxcb-xinerama0:s390x. 512s Preparing to unpack .../129-libxcb-xinerama0_1.17.0-2_s390x.deb ... 512s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 512s Selecting previously unselected package libxcb-xinput0:s390x. 512s Preparing to unpack .../130-libxcb-xinput0_1.17.0-2_s390x.deb ... 512s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 512s Selecting previously unselected package libxcb-xkb1:s390x. 512s Preparing to unpack .../131-libxcb-xkb1_1.17.0-2_s390x.deb ... 512s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 512s Selecting previously unselected package libxkbcommon-x11-0:s390x. 512s Preparing to unpack .../132-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 512s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 512s Selecting previously unselected package libqt5gui5t64:s390x. 512s Preparing to unpack .../133-libqt5gui5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package libqt5widgets5t64:s390x. 512s Preparing to unpack .../134-libqt5widgets5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package libqt5xml5t64:s390x. 512s Preparing to unpack .../135-libqt5xml5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5xml5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package libqt5designer5:s390x. 512s Preparing to unpack .../136-libqt5designer5_5.15.15-6_s390x.deb ... 512s Unpacking libqt5designer5:s390x (5.15.15-6) ... 512s Selecting previously unselected package libqt5sql5t64:s390x. 512s Preparing to unpack .../137-libqt5sql5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5sql5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package libqt5help5:s390x. 512s Preparing to unpack .../138-libqt5help5_5.15.15-6_s390x.deb ... 512s Unpacking libqt5help5:s390x (5.15.15-6) ... 512s Selecting previously unselected package libqt5printsupport5t64:s390x. 512s Preparing to unpack .../139-libqt5printsupport5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5printsupport5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package libqt5test5t64:s390x. 512s Preparing to unpack .../140-libqt5test5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 512s Unpacking libqt5test5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 512s Selecting previously unselected package python3-pyqt5. 512s Preparing to unpack .../141-python3-pyqt5_5.15.11+dfsg-1build2_s390x.deb ... 512s Unpacking python3-pyqt5 (5.15.11+dfsg-1build2) ... 512s Selecting previously unselected package apport-kde. 512s Preparing to unpack .../142-apport-kde_2.31.0-0ubuntu5_all.deb ... 512s Unpacking apport-kde (2.31.0-0ubuntu5) ... 512s Selecting previously unselected package libbabeltrace1:s390x. 512s Preparing to unpack .../143-libbabeltrace1_1.5.11-4build1_s390x.deb ... 512s Unpacking libbabeltrace1:s390x (1.5.11-4build1) ... 512s Selecting previously unselected package libdebuginfod1t64:s390x. 512s Preparing to unpack .../144-libdebuginfod1t64_0.192-4_s390x.deb ... 512s Unpacking libdebuginfod1t64:s390x (0.192-4) ... 512s Selecting previously unselected package libsource-highlight-common. 512s Preparing to unpack .../145-libsource-highlight-common_3.1.9-4.3build1_all.deb ... 512s Unpacking libsource-highlight-common (3.1.9-4.3build1) ... 512s Selecting previously unselected package libsource-highlight4t64:s390x. 512s Preparing to unpack .../146-libsource-highlight4t64_3.1.9-4.3build1_s390x.deb ... 512s Unpacking libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 512s Selecting previously unselected package gdb. 512s Preparing to unpack .../147-gdb_16.2-1ubuntu1_s390x.deb ... 512s Unpacking gdb (16.2-1ubuntu1) ... 512s Selecting previously unselected package libc6-dbg:s390x. 512s Preparing to unpack .../148-libc6-dbg_2.40-4ubuntu1_s390x.deb ... 512s Unpacking libc6-dbg:s390x (2.40-4ubuntu1) ... 513s Selecting previously unselected package apport-retrace. 513s Preparing to unpack .../149-apport-retrace_2.31.0-0ubuntu5_all.deb ... 513s Unpacking apport-retrace (2.31.0-0ubuntu5) ... 513s Selecting previously unselected package valgrind. 513s Preparing to unpack .../150-valgrind_1%3a3.24.0-0ubuntu1_s390x.deb ... 513s Unpacking valgrind (1:3.24.0-0ubuntu1) ... 513s Selecting previously unselected package apport-valgrind. 513s Preparing to unpack .../151-apport-valgrind_2.31.0-0ubuntu5_all.deb ... 513s Unpacking apport-valgrind (2.31.0-0ubuntu5) ... 513s Selecting previously unselected package chaos-marmosets. 513s Preparing to unpack .../152-chaos-marmosets_0.2.0-1_s390x.deb ... 513s Unpacking chaos-marmosets (0.2.0-1) ... 513s Selecting previously unselected package libisl23:s390x. 513s Preparing to unpack .../153-libisl23_0.27-1_s390x.deb ... 513s Unpacking libisl23:s390x (0.27-1) ... 513s Selecting previously unselected package libmpc3:s390x. 513s Preparing to unpack .../154-libmpc3_1.3.1-1build2_s390x.deb ... 513s Unpacking libmpc3:s390x (1.3.1-1build2) ... 513s Selecting previously unselected package cpp-14-s390x-linux-gnu. 513s Preparing to unpack .../155-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package cpp-14. 513s Preparing to unpack .../156-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package cpp-s390x-linux-gnu. 513s Preparing to unpack .../157-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 513s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 513s Selecting previously unselected package cpp. 513s Preparing to unpack .../158-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 513s Unpacking cpp (4:14.2.0-1ubuntu1) ... 513s Selecting previously unselected package desktop-file-utils. 513s Preparing to unpack .../159-desktop-file-utils_0.28-1_s390x.deb ... 513s Unpacking desktop-file-utils (0.28-1) ... 513s Selecting previously unselected package libcc1-0:s390x. 513s Preparing to unpack .../160-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package libgomp1:s390x. 513s Preparing to unpack .../161-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package libitm1:s390x. 513s Preparing to unpack .../162-libitm1_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package libasan8:s390x. 513s Preparing to unpack .../163-libasan8_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package libubsan1:s390x. 513s Preparing to unpack .../164-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package libgcc-14-dev:s390x. 513s Preparing to unpack .../165-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package gcc-14-s390x-linux-gnu. 513s Preparing to unpack .../166-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package gcc-14. 513s Preparing to unpack .../167-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 513s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 513s Selecting previously unselected package gcc-s390x-linux-gnu. 513s Preparing to unpack .../168-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 513s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 513s Selecting previously unselected package gcc. 513s Preparing to unpack .../169-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 513s Unpacking gcc (4:14.2.0-1ubuntu1) ... 513s Selecting previously unselected package librsvg2-2:s390x. 513s Preparing to unpack .../170-librsvg2-2_2.59.2+dfsg-1_s390x.deb ... 513s Unpacking librsvg2-2:s390x (2.59.2+dfsg-1) ... 513s Selecting previously unselected package librsvg2-common:s390x. 513s Preparing to unpack .../171-librsvg2-common_2.59.2+dfsg-1_s390x.deb ... 513s Unpacking librsvg2-common:s390x (2.59.2+dfsg-1) ... 513s Selecting previously unselected package gnome-icon-theme. 513s Preparing to unpack .../172-gnome-icon-theme_3.12.0-5_all.deb ... 513s Unpacking gnome-icon-theme (3.12.0-5) ... 514s Selecting previously unselected package gvfs-common. 514s Preparing to unpack .../173-gvfs-common_1.56.1-1ubuntu1_all.deb ... 514s Unpacking gvfs-common (1.56.1-1ubuntu1) ... 514s Selecting previously unselected package libgck-2-2:s390x. 514s Preparing to unpack .../174-libgck-2-2_4.3.91-1_s390x.deb ... 514s Unpacking libgck-2-2:s390x (4.3.91-1) ... 514s Selecting previously unselected package libgcr-4-4:s390x. 514s Preparing to unpack .../175-libgcr-4-4_4.3.91-1_s390x.deb ... 514s Unpacking libgcr-4-4:s390x (4.3.91-1) ... 514s Selecting previously unselected package libsecret-common. 514s Preparing to unpack .../176-libsecret-common_0.21.6-3_all.deb ... 514s Unpacking libsecret-common (0.21.6-3) ... 514s Selecting previously unselected package libsecret-1-0:s390x. 514s Preparing to unpack .../177-libsecret-1-0_0.21.6-3_s390x.deb ... 514s Unpacking libsecret-1-0:s390x (0.21.6-3) ... 514s Selecting previously unselected package gvfs-libs:s390x. 514s Preparing to unpack .../178-gvfs-libs_1.56.1-1ubuntu1_s390x.deb ... 514s Unpacking gvfs-libs:s390x (1.56.1-1ubuntu1) ... 514s Selecting previously unselected package gvfs-daemons. 514s Preparing to unpack .../179-gvfs-daemons_1.56.1-1ubuntu1_s390x.deb ... 514s Unpacking gvfs-daemons (1.56.1-1ubuntu1) ... 514s Selecting previously unselected package libfontenc1:s390x. 514s Preparing to unpack .../180-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 514s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 514s Selecting previously unselected package libxt6t64:s390x. 514s Preparing to unpack .../181-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 514s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 514s Selecting previously unselected package libxmu6:s390x. 514s Preparing to unpack .../182-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 514s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 514s Selecting previously unselected package libxpm4:s390x. 514s Preparing to unpack .../183-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 514s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 514s Selecting previously unselected package libxaw7:s390x. 514s Preparing to unpack .../184-libxaw7_2%3a1.0.16-1_s390x.deb ... 514s Unpacking libxaw7:s390x (2:1.0.16-1) ... 514s Selecting previously unselected package libxfont2:s390x. 514s Preparing to unpack .../185-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 514s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 514s Selecting previously unselected package libxkbfile1:s390x. 514s Preparing to unpack .../186-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 514s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 514s Selecting previously unselected package python3-iniconfig. 514s Preparing to unpack .../187-python3-iniconfig_1.1.1-2_all.deb ... 514s Unpacking python3-iniconfig (1.1.1-2) ... 514s Selecting previously unselected package python3-packaging. 514s Preparing to unpack .../188-python3-packaging_24.2-1_all.deb ... 514s Unpacking python3-packaging (24.2-1) ... 514s Selecting previously unselected package python3-pluggy. 514s Preparing to unpack .../189-python3-pluggy_1.5.0-1_all.deb ... 514s Unpacking python3-pluggy (1.5.0-1) ... 514s Selecting previously unselected package python3-psutil. 514s Preparing to unpack .../190-python3-psutil_5.9.8-2build3_s390x.deb ... 514s Unpacking python3-psutil (5.9.8-2build3) ... 514s Selecting previously unselected package python3-pytest. 514s Preparing to unpack .../191-python3-pytest_8.3.4-1_all.deb ... 514s Unpacking python3-pytest (8.3.4-1) ... 514s Selecting previously unselected package ubuntu-dbgsym-keyring. 514s Preparing to unpack .../192-ubuntu-dbgsym-keyring_2023.11.28.1_all.deb ... 514s Unpacking ubuntu-dbgsym-keyring (2023.11.28.1) ... 514s Selecting previously unselected package x11-xkb-utils. 514s Preparing to unpack .../193-x11-xkb-utils_7.7+9_s390x.deb ... 514s Unpacking x11-xkb-utils (7.7+9) ... 514s Selecting previously unselected package xserver-common. 514s Preparing to unpack .../194-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 514s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 514s Selecting previously unselected package xvfb. 514s Preparing to unpack .../195-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 514s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 514s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 514s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 514s Setting up liblcms2-2:s390x (2.16-2) ... 514s Setting up python3-iniconfig (1.1.1-2) ... 514s Setting up libpixman-1-0:s390x (0.44.0-3) ... 514s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 514s Setting up libwayland-server0:s390x (1.23.1-1) ... 514s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 514s Setting up libwhoopsie-preferences0 (23build3) ... 514s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 514s Setting up libgck-2-2:s390x (4.3.91-1) ... 514s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 514s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 514s Setting up desktop-file-utils (0.28-1) ... 514s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 514s Setting up libgcr-4-4:s390x (4.3.91-1) ... 514s Setting up hicolor-icon-theme (0.18-2) ... 514s Setting up libxi6:s390x (2:1.8.2-1) ... 514s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 514s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 514s Setting up libvte-2.91-common (0.78.3-3) ... 514s Setting up libdatrie1:s390x (0.2.13-3build1) ... 514s Setting up libdebuginfod-common (0.192-4) ... 514s Setting up libxcb-render0:s390x (1.17.0-2) ... 514s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 514s Setting up libglvnd0:s390x (1.7.0-1build1) ... 514s Setting up libwnck-3-common (43.2-1) ... 514s Setting up libxcb-glx0:s390x (1.17.0-2) ... 514s Setting up ubuntu-dbgsym-keyring (2023.11.28.1) ... 514s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 514s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 514s Setting up libxcb-shape0:s390x (1.17.0-2) ... 514s Setting up x11-common (1:7.7+23ubuntu3) ... 514s Setting up libdeflate0:s390x (1.23-1) ... 514s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 514s Setting up libxcb-shm0:s390x (1.17.0-2) ... 514s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 514s Setting up libwhoopsie0:s390x (0.2.78) ... 514s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 514s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 514s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 514s Setting up libcolord2:s390x (1.4.7-1build2) ... 514s Setting up python3-psutil (5.9.8-2build3) ... 515s Setting up gnome-terminal-data (3.54.0-1ubuntu1) ... 515s Setting up libsource-highlight-common (3.1.9-4.3build1) ... 515s Setting up libxcb-util1:s390x (0.4.1-1) ... 515s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 515s Setting up libc6-dbg:s390x (2.40-4ubuntu1) ... 515s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 515s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 515s Setting up libxcb-present0:s390x (1.17.0-2) ... 515s Setting up libdconf1:s390x (0.40.0-5) ... 515s Setting up libqt5core5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 515s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 515s Setting up python3-packaging (24.2-1) ... 515s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 515s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 515s Setting up libepoxy0:s390x (1.5.10-2) ... 515s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 515s Setting up libxcb-sync1:s390x (1.17.0-2) ... 515s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 515s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 515s Setting up chaos-marmosets (0.2.0-1) ... 515s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 515s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 515s Setting up fonts-dejavu-mono (2.37-8) ... 515s Setting up libmpc3:s390x (1.3.1-1build2) ... 515s Setting up libxrandr2:s390x (2:1.5.4-1) ... 515s Setting up fonts-dejavu-core (2.37-8) ... 515s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 515s Setting up libbabeltrace1:s390x (1.5.11-4build1) ... 515s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 515s Setting up libvulkan1:s390x (1.4.304.0-1) ... 515s Setting up python3-pluggy (1.5.0-1) ... 515s Setting up libwebp7:s390x (1.5.0-0.1) ... 515s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 515s Setting up python3-pyqt5.sip (12.17.0-1) ... 515s Setting up libmtdev1t64:s390x (1.1.7-1) ... 515s Setting up libxshmfence1:s390x (1.3-1build5) ... 515s Setting up at-spi2-common (2.55.2-1) ... 515s Setting up dbus-x11 (1.14.10-4ubuntu5) ... 515s Setting up libxcb-randr0:s390x (1.17.0-2) ... 515s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 515s Setting up libqt5sql5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 515s Setting up libmd4c0:s390x (0.5.2-2) ... 515s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 515s Setting up libthai-data (0.1.29-2build1) ... 515s Setting up libwayland-egl1:s390x (1.23.1-1) ... 515s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 515s Setting up libisl23:s390x (0.27-1) ... 515s Setting up valgrind (1:3.24.0-0ubuntu1) ... 515s Setting up gvfs-common (1.56.1-1ubuntu1) ... 515s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 515s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 515s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 515s Setting up libsecret-common (0.21.6-3) ... 515s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 515s Setting up libxres1:s390x (2:1.2.1-1build1) ... 515s Setting up libwacom-common (2.14.0-1) ... 515s Setting up libstartup-notification0:s390x (0.12-8) ... 515s Setting up libwayland-client0:s390x (1.23.1-1) ... 515s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 515s Setting up libdebuginfod1t64:s390x (0.192-4) ... 515s Setting up libice6:s390x (2:1.1.1-1) ... 515s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 515s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 515s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 515s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 515s Setting up gir1.2-atk-1.0:s390x (2.55.2-1) ... 515s Setting up libwacom9:s390x (2.14.0-1) ... 515s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 515s Setting up python3-pytest (8.3.4-1) ... 515s Setting up libxcursor1:s390x (1:1.2.3-1) ... 515s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 515s Setting up libqt5network5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 515s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 515s Setting up apport-valgrind (2.31.0-0ubuntu5) ... 515s Setting up libqt5xml5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 515s Setting up dconf-service (0.40.0-5) ... 515s Setting up libsource-highlight4t64:s390x (3.1.9-4.3build1) ... 515s Setting up whoopsie-preferences (23build3) ... 515s Setting up libharfbuzz-gobject0:s390x (10.2.0-1) ... 515s Setting up libqt5test5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 515s Setting up libinput-bin (1.26.2-1) ... 515s Setting up libthai0:s390x (0.1.29-2build1) ... 515s Setting up libsecret-1-0:s390x (0.21.6-3) ... 515s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 515s Setting up gdb (16.2-1ubuntu1) ... 515s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 515s Setting up cpp-14 (14.2.0-16ubuntu1) ... 515s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 515s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 515s Setting up libegl1:s390x (1.7.0-1build1) ... 515s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 515s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 515s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 515s Setting up libsm6:s390x (2:1.2.4-1) ... 515s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 515s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 515s Setting up libinput10:s390x (1.26.2-1) ... 515s Setting up gtk-update-icon-cache (4.17.1+ds-2ubuntu1) ... 515s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 517s Regenerating fonts cache... done. 517s Setting up libxft2:s390x (2.3.6-1build1) ... 517s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 517s Setting up libglx0:s390x (1.7.0-1build1) ... 517s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 517s Setting up gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 517s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 517s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 517s Setting up apport-retrace (2.31.0-0ubuntu5) ... 517s Setting up libcairo2:s390x (1.18.2-2) ... 517s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 517s Setting up libgl1:s390x (1.7.0-1build1) ... 517s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 517s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 517s Setting up cpp (4:14.2.0-1ubuntu1) ... 517s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 517s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 517s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 517s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 517s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 517s Setting up gsettings-desktop-schemas (48~beta-1ubuntu1) ... 517s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 517s Setting up gir1.2-freedesktop:s390x (1.82.0-4) ... 517s Setting up libpangoxft-1.0-0:s390x (1.56.1-1) ... 517s Setting up libxaw7:s390x (2:1.0.16-1) ... 517s Setting up gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 517s Setting up gcc-14 (14.2.0-16ubuntu1) ... 517s Setting up librsvg2-2:s390x (2.59.2+dfsg-1) ... 517s Setting up gir1.2-pango-1.0:s390x (1.56.1-1) ... 517s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 517s Setting up librsvg2-common:s390x (2.59.2+dfsg-1) ... 517s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 517s Setting up x11-xkb-utils (7.7+9) ... 517s Setting up libqt5help5:s390x (5.15.15-6) ... 517s Setting up gnome-icon-theme (3.12.0-5) ... 517s update-alternatives: using /usr/share/icons/gnome/scalable/places/debian-swirl.svg to provide /usr/share/icons/gnome/scalable/places/start-here.svg (start-here.svg) in auto mode 517s Setting up gcc (4:14.2.0-1ubuntu1) ... 517s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 517s Setting up libqt5printsupport5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 517s Setting up libqt5designer5:s390x (5.15.15-6) ... 517s Setting up xvfb (2:21.1.14-2ubuntu1) ... 517s Setting up python3-pyqt5 (5.15.11+dfsg-1build2) ... 517s Setting up adwaita-icon-theme (48~beta-2) ... 517s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 517s Setting up humanity-icon-theme (0.6.16) ... 517s Setting up ubuntu-mono (24.04-0ubuntu1) ... 518s Processing triggers for man-db (2.13.0-1) ... 518s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 518s Processing triggers for dbus (1.14.10-4ubuntu5) ... 519s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 519s Processing triggers for udev (257.2-3ubuntu1) ... 519s Setting up gvfs-libs:s390x (1.56.1-1ubuntu1) ... 519s Setting up libwnck-3-0:s390x (43.2-1) ... 519s Setting up libhandy-1-0:s390x (1.8.3-2) ... 519s Processing triggers for libc-bin (2.40-4ubuntu1) ... 519s Setting up gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 519s Setting up libvte-2.91-0:s390x (0.78.3-3) ... 519s Setting up gvfs-daemons (1.56.1-1ubuntu1) ... 519s Setting up gir1.2-wnck-3.0:s390x (43.2-1) ... 519s Setting up gnome-terminal (3.54.0-1ubuntu1) ... 519s update-alternatives: using /usr/bin/gnome-terminal.wrapper to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode 519s Setting up apport-kde (2.31.0-0ubuntu5) ... 519s Setting up apport-gtk (2.31.0-0ubuntu5) ... 519s Processing triggers for libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 519s Processing triggers for libc-bin (2.40-4ubuntu1) ... 519s autopkgtest: DBG: testbed command exited with code 0 519s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport'], kind short, sout pipe, serr pipe, env [] 519s autopkgtest: DBG: testbed command exited with code 0 519s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport-gtk'], kind short, sout pipe, serr pipe, env [] 520s autopkgtest: DBG: testbed command exited with code 0 520s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport-kde'], kind short, sout pipe, serr pipe, env [] 520s autopkgtest: DBG: testbed command exited with code 0 520s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport-retrace'], kind short, sout pipe, serr pipe, env [] 520s autopkgtest: DBG: testbed command exited with code 0 520s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'apport-valgrind'], kind short, sout pipe, serr pipe, env [] 521s autopkgtest: DBG: testbed command exited with code 0 521s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wz6Wal/system-tests-packages.all"], kind short, sout raw, serr pipe, env [] 521s autopkgtest: DBG: testbed command exited with code 0 521s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/system-tests-packages.all /tmp/autopkgtest-work.wsxosrws/out/system-tests-packages.all 521s autopkgtest: DBG: got reply from testbed: ok 521s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wz6Wal/build.Wf5/src'], kind short, sout raw, serr raw, env [] 521s autopkgtest: DBG: testbed command exited with code 1 521s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wz6Wal/build.Wf5'], kind short, sout raw, serr pipe, env [] 521s autopkgtest: DBG: testbed command exited with code 0 521s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.wsxosrws/out/tests-tree/ /tmp/autopkgtest.wz6Wal/build.Wf5/src/ 522s autopkgtest: DBG: got reply from testbed: ok 522s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.wz6Wal/build.Wf5/src'], kind short, sout raw, serr pipe, env [] 523s autopkgtest: DBG: testbed command exited with code 0 523s autopkgtest [15:19:49]: test system-tests: [----------------------- 523s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.wz6Wal/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wz6Wal/system-tests-artifacts --chdir=/tmp/autopkgtest.wz6Wal/build.Wf5/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.wz6Wal/system-tests-stderr --stdout=/tmp/autopkgtest.wz6Wal/system-tests-stdout --tmp=/tmp/autopkgtest.wz6Wal/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 --make-executable=/tmp/autopkgtest.wz6Wal/build.Wf5/src/debian/tests/system-tests -- /tmp/autopkgtest.wz6Wal/build.Wf5/src/debian/tests/system-tests'], kind test, sout raw, serr raw, env [] 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wz6Wal/system-tests-artifacts 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: changing to directory: /tmp/autopkgtest.wz6Wal/build.Wf5/src 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: LANG=C.UTF-8 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LANGUAGE 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_ADDRESS 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_ALL 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_COLLATE 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_CTYPE 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_IDENTIFICATION 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_MEASUREMENT 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_MESSAGES 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_MONETARY 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_NAME 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_NUMERIC 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_PAPER 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_TELEPHONE 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: unsetting environment: LC_TIME 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: pretending to be a login shell 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: will write standard error to /tmp/autopkgtest.wz6Wal/system-tests-stderr 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: will write stdout to /tmp/autopkgtest.wz6Wal/system-tests-stdout 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wz6Wal/autopkgtest_tmp 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: marking as executable: /tmp/autopkgtest.wz6Wal/build.Wf5/src/debian/tests/system-tests 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: command to run: /tmp/autopkgtest.wz6Wal/build.Wf5/src/debian/tests/system-tests 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: copying /tmp/tmp.DPUYD9xWG9/out to stdout and file: /tmp/autopkgtest.wz6Wal/system-tests-stdout 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: copying /tmp/tmp.DPUYD9xWG9/err to standard error and file: /tmp/autopkgtest.wz6Wal/system-tests-stdout 523s /tmp/autopkgtest.wz6Wal/wrapper.sh: writing script pid 3568 to /tmp/autopkgtest_script_pid 523s ============================= test session starts ============================== 523s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3 523s cachedir: .pytest_cache 523s rootdir: /tmp/autopkgtest.wz6Wal/autopkgtest_tmp 523s plugins: typeguard-4.4.1 524s collecting ... collected 103 items 524s 524s tests/system/test_apport_retrace.py::test_retrace_system_sandbox SKIPPED [ 0%] 525s tests/system/test_apport_retrace.py::test_retrace_system_sandbox_gdb_sandbox_nonamd64 PASSED [ 1%] 525s tests/system/test_apport_retrace.py::test_retrace_system_sandbox_gdb_sandbox SKIPPED [ 2%] 658s tests/system/test_apport_retrace.py::test_retrace_jammy_sandbox PASSED [ 3%] 658s tests/system/test_apport_retrace.py::test_retrace_jammy_sandbox_gdb_sandbox SKIPPED [ 4%] 723s tests/system/test_apport_valgrind.py::TestApportValgrind::test_sandbox_cache_options PASSED [ 5%] 724s tests/system/test_github_query.py::TestGitHubQuery::test_api_authentication PASSED [ 6%] 734s tests/system/test_packaging_apt_dpkg.py::test_install_packages_versioned[one-line] PASSED [ 7%] 745s tests/system/test_packaging_apt_dpkg.py::test_install_packages_versioned[deb822] PASSED [ 8%] 747s tests/system/test_packaging_apt_dpkg.py::test_install_packages_unversioned[one-line] PASSED [ 9%] 750s tests/system/test_packaging_apt_dpkg.py::test_install_packages_unversioned[deb822] PASSED [ 10%] 755s tests/system/test_packaging_apt_dpkg.py::test_install_packages_dependencies[one-line] PASSED [ 11%] 760s tests/system/test_packaging_apt_dpkg.py::test_install_packages_dependencies[deb822] PASSED [ 12%] 773s tests/system/test_packaging_apt_dpkg.py::test_install_packages_system[one-line] PASSED [ 13%] 787s tests/system/test_packaging_apt_dpkg.py::test_install_packages_system[deb822] PASSED [ 14%] 788s tests/system/test_packaging_apt_dpkg.py::test_install_packages_error[one-line] PASSED [ 15%] 790s tests/system/test_packaging_apt_dpkg.py::test_install_packages_error[deb822] PASSED [ 16%] 1156s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox[one-line] PASSED [ 17%] 1522s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox[deb822] PASSED [ 18%] 1525s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox_repack[one-line] PASSED [ 19%] 1529s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox_repack[deb822] PASSED [ 20%] 1535s tests/system/test_packaging_apt_dpkg.py::test_install_packages_armhf[one-line] PASSED [ 21%] 1542s tests/system/test_packaging_apt_dpkg.py::test_install_packages_armhf[deb822] PASSED [ 22%] 1561s tests/system/test_packaging_apt_dpkg.py::test_install_packages_from_launchpad[one-line] PASSED [ 23%] 1581s tests/system/test_packaging_apt_dpkg.py::test_install_packages_from_launchpad[deb822] PASSED [ 24%] 1592s tests/system/test_packaging_apt_dpkg.py::test_install_old_packages[one-line] PASSED [ 25%] 1602s tests/system/test_packaging_apt_dpkg.py::test_install_old_packages[deb822] PASSED [ 26%] 1604s tests/system/test_packaging_apt_dpkg.py::test_get_source_tree_sandbox[one-line] PASSED [ 27%] 1605s tests/system/test_packaging_apt_dpkg.py::test_get_source_tree_sandbox[deb822] PASSED [ 28%] 1612s tests/system/test_packaging_apt_dpkg.py::test_get_source_tree_lp_sandbox[one-line] PASSED [ 29%] 1617s tests/system/test_packaging_apt_dpkg.py::test_get_source_tree_lp_sandbox[deb822] PASSED [ 30%] 1619s tests/system/test_packaging_apt_dpkg.py::test_create_sources_for_a_named_ppa[one-line] PASSED [ 31%] 1622s tests/system/test_packaging_apt_dpkg.py::test_create_sources_for_a_named_ppa[deb822] PASSED [ 32%] 1624s tests/system/test_packaging_apt_dpkg.py::test_create_sources_for_an_unnamed_ppa[one-line] PASSED [ 33%] 1626s tests/system/test_packaging_apt_dpkg.py::test_create_sources_for_an_unnamed_ppa[deb822] PASSED [ 33%] 1627s tests/system/test_packaging_apt_dpkg.py::test_use_sources_for_a_ppa[one-line] PASSED [ 34%] 1628s tests/system/test_packaging_apt_dpkg.py::test_use_sources_for_a_ppa[deb822] PASSED [ 35%] 1634s tests/system/test_packaging_apt_dpkg.py::test_install_package_from_a_ppa[one-line] PASSED [ 36%] 1640s tests/system/test_packaging_apt_dpkg.py::test_install_package_from_a_ppa[deb822] PASSED [ 37%] 1640s tests/system/test_python_crashes.py::T::test_dbus_service_other_error PASSED [ 38%] 1667s tests/system/test_python_crashes.py::T::test_dbus_service_timeout_running PASSED [ 39%] 1667s tests/system/test_python_crashes.py::T::test_dbus_service_unknown_invalid PASSED [ 40%] 1667s tests/system/test_python_crashes.py::T::test_dbus_service_unknown_wrongbus_notrunning PASSED [ 41%] 1667s tests/system/test_python_crashes.py::T::test_dbus_service_unknown_wrongbus_running PASSED [ 42%] 1667s tests/system/test_signal_crashes.py::T::test_crash_system_slice PASSED [ 43%] 1667s tests/system/test_signal_crashes.py::T::test_create_test_non_sleep_process PASSED [ 44%] 1668s tests/system/test_signal_crashes.py::T::test_create_test_sleep_process PASSED [ 45%] 1682s tests/system/test_signal_crashes.py::T::test_limit_size PASSED [ 46%] 1682s tests/system/test_ui_gtk.py::T::test_administrator_disabled_reporting PASSED [ 47%] 1682s tests/system/test_ui_gtk.py::T::test_apport_bug_package_layout PASSED [ 48%] 1682s tests/system/test_ui_gtk.py::T::test_apport_bug_package_layout_load_file PASSED [ 49%] 1682s tests/system/test_ui_gtk.py::T::test_broken_crash_details PASSED [ 50%] 1682s tests/system/test_ui_gtk.py::T::test_bug_report_installed_package PASSED [ 51%] 1682s tests/system/test_ui_gtk.py::T::test_bug_report_uninstalled_package PASSED [ 52%] 1682s tests/system/test_ui_gtk.py::T::test_close_button PASSED [ 53%] 1682s tests/system/test_ui_gtk.py::T::test_close_during_collect PASSED [ 54%] 1682s tests/system/test_ui_gtk.py::T::test_crash_details PASSED [ 55%] 1682s tests/system/test_ui_gtk.py::T::test_crash_noaccept PASSED [ 56%] 1682s tests/system/test_ui_gtk.py::T::test_crash_nodetails PASSED [ 57%] 1682s tests/system/test_ui_gtk.py::T::test_dialog_nonascii PASSED [ 58%] 1682s tests/system/test_ui_gtk.py::T::test_examine_button PASSED [ 59%] 1682s tests/system/test_ui_gtk.py::T::test_hang_layout PASSED [ 60%] 1682s tests/system/test_ui_gtk.py::T::test_immediate_close PASSED [ 61%] 1682s tests/system/test_ui_gtk.py::T::test_kernel_crash_layout PASSED [ 62%] 1682s tests/system/test_ui_gtk.py::T::test_kerneloops_nodetails PASSED [ 63%] 1682s tests/system/test_ui_gtk.py::T::test_missing_icon PASSED [ 64%] 1682s tests/system/test_ui_gtk.py::T::test_package_crash_layout PASSED [ 65%] 1682s tests/system/test_ui_gtk.py::T::test_recoverable_crash_layout PASSED [ 66%] 1682s tests/system/test_ui_gtk.py::T::test_regular_crash_layout PASSED [ 66%] 1682s tests/system/test_ui_gtk.py::T::test_regular_crash_layout_norestart PASSED [ 67%] 1682s tests/system/test_ui_gtk.py::T::test_regular_crash_layout_restart PASSED [ 68%] 1682s tests/system/test_ui_gtk.py::T::test_regular_crash_thread_layout PASSED [ 69%] 1682s tests/system/test_ui_gtk.py::T::test_resizing PASSED [ 70%] 1682s tests/system/test_ui_gtk.py::T::test_system_crash_from_console_layout PASSED [ 71%] 1682s tests/system/test_ui_gtk.py::T::test_system_crash_layout PASSED [ 72%] 1682s tests/system/test_ui_gtk.py::T::test_text_to_markup PASSED [ 73%] 1682s tests/system/test_ui_gtk.py::T::test_text_to_markup_url_followed_by_dot PASSED [ 74%] 1682s tests/system/test_ui_gtk.py::T::test_ui_run_terminal PASSED [ 75%] 1682s tests/system/test_ui_gtk.py::T::test_ui_update_view_destroyed PASSED [ 76%] 1682s tests/system/test_ui_gtk.py::T::test_update_report PASSED [ 77%] 1682s tests/system/test_ui_gtk.py::T::test_update_report_different_binary_source PASSED [ 78%] 1683s tests/system/test_ui_kde.py::T::test_1_crash_details PASSED [ 79%] 1685s tests/system/test_ui_kde.py::T::test_1_crash_noaccept PASSED [ 80%] 1686s tests/system/test_ui_kde.py::T::test_1_crash_nodetails PASSED [ 81%] 1686s tests/system/test_ui_kde.py::T::test_1_update_report PASSED [ 82%] 1686s tests/system/test_ui_kde.py::T::test_1_update_report_different_binary_source PASSED [ 83%] 1686s tests/system/test_ui_kde.py::T::test_administrator_disabled_reporting PASSED [ 84%] 1686s tests/system/test_ui_kde.py::T::test_apport_bug_package_layout PASSED [ 85%] 1687s tests/system/test_ui_kde.py::T::test_bug_report_installed_package PASSED [ 86%] 1688s tests/system/test_ui_kde.py::T::test_bug_report_uninstalled_package PASSED [ 87%] 1688s tests/system/test_ui_kde.py::T::test_close_button PASSED [ 88%] 1688s tests/system/test_ui_kde.py::T::test_kernel_crash_layout PASSED [ 89%] 1688s tests/system/test_ui_kde.py::T::test_package_crash_layout PASSED [ 90%] 1688s tests/system/test_ui_kde.py::T::test_recoverable_crash_layout PASSED [ 91%] 1688s tests/system/test_ui_kde.py::T::test_regular_crash_layout PASSED [ 92%] 1688s tests/system/test_ui_kde.py::T::test_regular_crash_layout_norestart PASSED [ 93%] 1688s tests/system/test_ui_kde.py::T::test_regular_crash_layout_restart PASSED [ 94%] 1688s tests/system/test_ui_kde.py::T::test_regular_crash_thread_layout PASSED [ 95%] 1688s tests/system/test_ui_kde.py::T::test_system_crash_layout PASSED [ 96%] 1689s tests/system/test_ui_kde.py::T::test_ui_question_choice_hide_dialog PASSED [ 97%] 1689s tests/system/test_ui_kde.py::T::test_ui_question_file_close PASSED [ 98%] 1689s tests/system/test_ui_kde.py::T::test_ui_run_terminal PASSED [ 99%] 1689s tests/system/test_ui_kde.py::T::test_ui_set_upload_progress PASSED [100%] 1689s 1689s =============================== warnings summary =============================== 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_versioned[one-line] 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_versioned[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmpd3cz4ipy/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_versioned[deb822] 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_versioned[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmphr_nm7oj/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_system[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmpwbjtnww2/cache/system/apt/var/lib/apt/lists/partial/ftpmaster.internal_ubuntu_dists_plucky-proposed_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_system[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmp6xzee7in/cache/system/apt/var/lib/apt/lists/partial/ftpmaster.internal_ubuntu_dists_plucky-proposed_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Updating from such a repository can't be done securely, and is therefore disabled by default., W:See apt-secure(8) manpage for repository creation and user configuration details., W:Download is performed unsandboxed as root as file '/tmp/tmp4v38yolk/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmptgy22knu/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox_repack[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmp70lc3myq/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_permanent_sandbox_repack[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmplz5tyxv9/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_armhf[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmp9ej6zebq/cache/Foonux 22.04/armhf/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_armhf[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmps9tkbzh3/cache/Foonux 22.04/armhf/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_from_launchpad[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmpplxfnkfy/cache/Foonux 20.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_focal_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_packages_from_launchpad[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmp7dh8d9fz/cache/Foonux 20.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_focal_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_old_packages[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmp7r8z6t6u/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_old_packages[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmpc01jv369/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_package_from_a_ppa[one-line] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmpv6y3p3t3/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ports.ubuntu.com_ubuntu-ports_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s tests/system/test_packaging_apt_dpkg.py::test_install_package_from_a_ppa[deb822] 1689s /usr/lib/python3/dist-packages/apt/cache.py:565: Warning: W:Download is performed unsandboxed as root as file '/tmp/tmpkoxph1fb/cache/Foonux 22.04/apt/var/lib/apt/lists/partial/ppa.launchpad.net_apport-hackers_apport-autopkgtests_ubuntu_dists_jammy_InRelease' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied) 1689s res = self._cache.update(fetch_progress, slist, pulse_interval) 1689s 1689s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 1689s =========================== short test summary info ============================ 1689s SKIPPED [1] tests/system/test_apport_retrace.py:202: GDB has issues with divide-by-zero on s390x (LP: #2075204) 1689s SKIPPED [1] tests/system/test_apport_retrace.py:259: Testing the GDB sandbox erroring out on non-AMD64 1689s SKIPPED [1] tests/system/test_apport_retrace.py:322: GDB sandbox only available on amd64 1689s =========== 100 passed, 3 skipped, 18 warnings in 1165.71s (0:19:25) =========== 1689s /tmp/autopkgtest.wz6Wal/wrapper.sh: checking for leaked background processes... 1689s /tmp/autopkgtest.wz6Wal/wrapper.sh: waiting for tee/cat subprocesses... 1689s /tmp/autopkgtest.wz6Wal/wrapper.sh: cleaning up... 1689s /tmp/autopkgtest.wz6Wal/wrapper.sh: Exit status: 0 1689s autopkgtest: DBG: testbed command exited with code 0 1689s autopkgtest [15:39:15]: test system-tests: -----------------------] 1689s autopkgtest: DBG: testbed executing test finished with exit status 0 1689s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/system-tests-stdout /tmp/autopkgtest-work.wsxosrws/out/system-tests-stdout 1690s autopkgtest: DBG: got reply from testbed: ok 1690s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/system-tests-stderr /tmp/autopkgtest-work.wsxosrws/out/system-tests-stderr 1690s autopkgtest: DBG: got reply from testbed: ok 1690s system-tests PASS 1690s autopkgtest [15:39:16]: test system-tests: - - - - - - - - - - results - - - - - - - - - - 1690s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wz6Wal/system-tests-artifacts/ /tmp/autopkgtest-work.wsxosrws/out/artifacts/ 1690s autopkgtest: DBG: got reply from testbed: ok 1690s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wz6Wal/system-tests-artifacts', '/tmp/autopkgtest.wz6Wal/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1690s autopkgtest: DBG: testbed command exited with code 0 1690s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 1690s autopkgtest [15:39:16]: @@@@@@@@@@@@@@@@@@@@ summary 1690s unit-and-integration-tests PASS 1690s system-tests PASS 1690s autopkgtest: DBG: testbed stop 1690s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.wz6Wal 1690s autopkgtest: DBG: sending command to testbed: close 1707s autopkgtest: DBG: got reply from testbed: ok 1707s autopkgtest: DBG: sending command to testbed: quit 1707s nova [W] Using flock in prodstack6-s390x 1707s Creating nova instance adt-plucky-s390x-apport-20250212-151106-juju-7f2275-prod-proposed-migration-environment-15-b0f35ad2-bd44-44b4-aa04-e5218e64be80 from image adt/ubuntu-plucky-s390x-server-20250212.img (UUID bc0c6a1e-2159-4845-8bbd-54291ac11f45)... 1707s nova [W] Timed out waiting for 110b5141-4c3a-4fd4-90f8-5e19690d5458 to get deleted. 1707s nova [W] Using flock in prodstack6-s390x 1707s Creating nova instance adt-plucky-s390x-apport-20250212-151106-juju-7f2275-prod-proposed-migration-environment-15-b0f35ad2-bd44-44b4-aa04-e5218e64be80 from image adt/ubuntu-plucky-s390x-server-20250212.img (UUID bc0c6a1e-2159-4845-8bbd-54291ac11f45)... 1707s nova [W] Timed out waiting for 34f193d1-9b9f-419b-acd0-8a87f97409ca to get deleted.