0s autopkgtest: DBG: testbed init 0s autopkgtest [22:38:19]: starting date and time: 2025-02-15 22:38:19+0000 0s autopkgtest [22:38:19]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [22:38:19]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.hxh27bjg/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade gnome-authenticator --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-2.secgroup --name adt-plucky-s390x-gnome-authenticator-20250215-223819-juju-7f2275-prod-proposed-migration-environment-15-2cb946ce-a618-436b-ae9a-6c5988616371 --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.ivcfvB 115s autopkgtest: DBG: sending command to testbed: print-execute-command 115s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.006_1548/runcmd 115s autopkgtest: DBG: sending command to testbed: capabilities 115s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine suggested-normal-user=ubuntu reboot revert-full-system root-on-testbed 115s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ivcfvB'], 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.ivcfvB/wrapper.sh 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ivcfvB/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 [22:40:15]: 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 [22:40:15]: testbed apt version: 2.9.28 116s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed has eatmydata 116s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:40:16]: @@@@@@@@@@@@@@@@@@@@ test bed setup 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:40:16]: testbed release detected to be: None 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: adding APT source: Types: deb deb-src 117s URIs: http://ftpmaster.internal/ubuntu/ 117s Suites: plucky-proposed 117s Components: main restricted universe multiverse 117s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 117s Package: * 117s Pin: release plucky-proposed 117s Pin-Priority: 500 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:40:16]: updating testbed package index (apt update) 117s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 118s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 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 [13.1 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 118s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 118s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 118s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 118s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 118s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 118s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 119s Fetched 2073 kB in 1s (2137 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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube: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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s 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.ivcfvB/${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 + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 120s Reading package lists... 120s Building dependency tree... 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 dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 120s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s Need to get 1155 kB of archives. 120s After this operation, 16.4 kB of additional disk space will be used. 120s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 120s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 120s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 120s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 121s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 121s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 121s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 121s Preconfiguring packages ... 121s Fetched 1155 kB in 1s (1946 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 .../dash_0.5.12-12ubuntu1_s390x.deb ... 121s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 121s Setting up dash (0.5.12-12ubuntu1) ... 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 .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 121s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 121s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 121s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 121s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 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 .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 121s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 121s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 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 .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 121s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 121s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 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 .../libtasn1-6_4.20.0-2_s390x.deb ... 121s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 121s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 121s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 121s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 121s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 121s Setting up libtasn1-6:s390x (4.20.0-2) ... 121s Processing triggers for libc-bin (2.40-4ubuntu1) ... 121s Processing triggers for man-db (2.13.0-1) ... 122s Processing triggers for debianutils (5.21) ... 122s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s + /usr/lib/apt/apt-helper analyze-pattern ?true 122s + uname -r 122s + sed s/\./\\./g 122s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 122s + apt list ?obsolete 122s + tail -n+2 122s + cut -d/ -f1 122s + grep -v ^linux-.*6\.12\.0-15-generic.* 122s + true 122s + obsolete_pkgs= 122s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 122s The following packages will be REMOVED: 122s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 122s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 122s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 122s linux-tools-6.11.0-8-generic* 123s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 123s After this operation, 167 MB disk space will be freed. 123s (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.) 123s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 123s Removing libpython3.12t64:s390x (3.12.9-1) ... 123s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 123s Removing libnsl2:s390x (1.3.0-3build3) ... 123s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 123s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 124s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 124s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55869 files and directories currently installed.) 124s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 124s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 124s + grep -q trusty /etc/lsb-release 124s + [ ! -d /usr/share/doc/unattended-upgrades ] 124s + [ ! -d /usr/share/doc/lxd ] 124s + [ ! -d /usr/share/doc/lxd-client ] 124s + [ ! -d /usr/share/doc/snapd ] 124s + type iptables 124s + cat 124s + chmod 755 /etc/rc.local 124s + . /etc/rc.local 124s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 124s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 124s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 124s + uname -m 124s + [ s390x = ppc64le ] 124s + [ -d /run/systemd/system ] 124s + systemd-detect-virt --quiet --vm 124s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 124s + cat 124s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 124s + echo COMPRESS=lz4 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [22:40:23]: upgrading testbed (apt dist-upgrade and autopurge) 124s 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'] 124s Reading package lists... 124s Building dependency tree... 124s Reading state information... 124s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 124s Starting 2 pkgProblemResolver with broken count: 0 124s Done 125s Entering ResolveByKeep 125s 125s The following packages will be upgraded: 125s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 125s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 125s Need to get 10.7 MB of archives. 125s After this operation, 305 kB of additional disk space will be used. 125s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 125s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 125s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 126s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 126s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 126s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 126s Preconfiguring packages ... 126s Fetched 10.7 MB in 1s (10.1 MB/s) 126s (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.) 126s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 126s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 126s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 126s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 126s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 126s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 126s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 126s Checking for services that may need to be restarted... 126s Checking init scripts... 126s Checking for services that may need to be restarted... 126s Checking init scripts... 126s Stopping some services possibly affected by the upgrade (will be restarted later): 126s cron: stopping...done. 126s 126s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 126s Setting up libc6:s390x (2.41-1ubuntu1) ... 127s Checking for services that may need to be restarted... 127s Checking init scripts... 127s Restarting services possibly affected by the upgrade: 127s cron: restarting...done. 127s 127s Services restarted successfully. 127s (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 ... 55868 files and directories currently installed.) 127s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 127s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 127s Setting up libc-bin (2.41-1ubuntu1) ... 127s (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 ... 55868 files and directories currently installed.) 127s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 127s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 127s Setting up iproute2 (6.13.0-1ubuntu1) ... 127s Setting up locales (2.41-1ubuntu1) ... 127s Installing new version of config file /etc/locale.alias ... 127s Generating locales (this might take a while)... 128s en_US.UTF-8... done 128s Generation complete. 128s Setting up libc-dev-bin (2.41-1ubuntu1) ... 128s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 128s Processing triggers for man-db (2.13.0-1) ... 129s Processing triggers for systemd (257.2-3ubuntu1) ... 130s autopkgtest: DBG: testbed command exited with code 0 130s 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'] 130s Reading package lists... 130s Building dependency tree... 130s Reading state information... 130s Starting pkgProblemResolver with broken count: 0 130s Starting 2 pkgProblemResolver with broken count: 0 130s Done 130s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 130s autopkgtest: DBG: testbed command exited with code 0 130s 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.ivcfvB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 130s autopkgtest: DBG: testbed command exited with code 1 130s autopkgtest [22:40:29]: rebooting testbed after setup commands that affected boot 130s autopkgtest: DBG: sending command to testbed: reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ivcfvB'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ivcfvB/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ivcfvB'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ivcfvB/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [22:40:47]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 148s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ivcfvB/testbed-packages"], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/testbed-packages /tmp/autopkgtest-work.hxh27bjg/out/testbed-packages 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ivcfvB'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ivcfvB/autopkgtest-reboot 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ivcfvB'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ivcfvB/autopkgtest-reboot-prepare 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ivcfvB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: Binaries: initialising 151s autopkgtest [22:40:50]: @@@@@@@@@@@@@@@@@@@@ apt-source gnome-authenticator 151s autopkgtest: DBG: blame += gnome-authenticator 151s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 151s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'gnome-authenticator'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gnome-authenticator$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gnome-authenticator=4.5.0-1'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: install_deps: deps_new=[] 152s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s 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.ivcfvB/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source gnome-authenticator=4.5.0-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x gnome-authenticator_*.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=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 152s + cd / 152s + mktemp -d /tmp/autopkgtest.ivcfvB/build.XXX 152s + builddir=/tmp/autopkgtest.ivcfvB/build.0Ko 152s + cd /tmp/autopkgtest.ivcfvB/build.0Ko 152s + apt-get source -d -q --only-source gnome-authenticator=4.5.0-1 153s + OUT=Reading package lists... 153s NOTICE: 'gnome-authenticator' packaging is maintained in the 'Git' version control system at: 153s https://salsa.debian.org/python-team/packages/gnome-authenticator.git 153s Please use: 153s git clone https://salsa.debian.org/python-team/packages/gnome-authenticator.git 153s to retrieve the latest (possibly unreleased) updates to the package. 153s Need to get 692 kB of source archives. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (dsc) [2537 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (tar) [678 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (diff) [11.8 kB] 153s Fetched 692 kB in 1s (1214 kB/s) 153s Download complete and in download only mode 153s + [ -n ] 153s + echo Reading package lists... 153s NOTICE: 'gnome-authenticator' packaging is maintained in the 'Git' version control system at: 153s https://salsa.debian.org/python-team/packages/gnome-authenticator.git 153s Please use: 153s git clone https://salsa.debian.org/python-team/packages/gnome-authenticator.git 153s to retrieve the latest (possibly unreleased) updates to the package. 153s Need to get 692 kB of source archives. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (dsc) [2537 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (tar) [678 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (diff) [11.8 kB] 153s Fetched 692 kB in 1s (1214 kB/s) 153s Download complete and in download only mode 153s + grep ^Get: 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (dsc) [2537 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (tar) [678 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe gnome-authenticator 4.5.0-1 (diff) [11.8 kB] 153s + dpkg-source -x gnome-authenticator_4.5.0-1.dsc src 153s gpgv: Signature made Fri Sep 6 20:28:14 2024 UTC 153s gpgv: using RSA key 406220C8B8552802378CCE411F5C7A8B45564314 153s gpgv: issuer "bage@debian.org" 153s gpgv: Can't check signature: No public key 153s dpkg-source: warning: cannot verify inline signature for ./gnome-authenticator_4.5.0-1.dsc: no acceptable signature found 153s + chmod -R a+rX . 153s + cd src/. 153s + pwd 153s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest [22:40:52]: testing package gnome-authenticator version 4.5.0-1 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/build.0Ko/src/debian/ /tmp/autopkgtest-work.hxh27bjg/out/pkg/debian/ 153s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: processing dependency xauth 154s autopkgtest: DBG: processing dependency xvfb 154s autopkgtest: DBG: processing dependency @ 154s autopkgtest: DBG: synthesised dependency gnome-authenticator 154s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run /usr/bin/authenticator --help" restrictions ['allow-stderr', 'superficial'] features [] depends ['xauth', 'xvfb', 'gnome-authenticator'] 154s autopkgtest [22:40:53]: build not needed 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/build.0Ko/src/ /tmp/autopkgtest-work.hxh27bjg/out/tests-tree/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: processing dependency xauth 154s autopkgtest: DBG: processing dependency xvfb 154s autopkgtest: DBG: processing dependency @ 154s autopkgtest: DBG: synthesised dependency gnome-authenticator 154s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run /usr/bin/authenticator --help" restrictions ['allow-stderr', 'superficial'] features [] depends ['xauth', 'xvfb', 'gnome-authenticator'] 154s autopkgtest [22:40:53]: test command1: preparing testbed 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['xauth', 'xvfb', 'gnome-authenticator'] 154s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 154s autopkgtest: DBG: install_deps: deps_new=['xauth', 'xvfb', 'gnome-authenticator'] 154s autopkgtest: DBG: install-deps: satisfying xauth, xvfb, gnome-authenticator 154s autopkgtest: DBG: can use apt-get on testbed: True 154s 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', 'xauth, xvfb, gnome-authenticator'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 154s Reading package lists... 154s Building dependency tree... 154s Reading state information... 155s Starting pkgProblemResolver with broken count: 0 155s Starting 2 pkgProblemResolver with broken count: 0 155s Done 155s The following NEW packages will be installed: 155s adwaita-icon-theme at-spi2-common dconf-gsettings-backend dconf-service 155s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono gcr gcr4 155s gnome-authenticator gnome-keyring gtk-update-icon-cache hicolor-icon-theme 155s libadwaita-1-0 libappstream5 libatk-bridge2.0-0t64 libatk1.0-0t64 155s libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3 155s libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcolord2 155s libcpdb-frontend2t64 libcpdb2t64 libcups2t64 libdatrie1 libdconf1 155s libdeflate0 libdrm-radeon1 libegl-mesa0 libegl1 libepoxy0 libfontconfig1 155s libfontenc1 libfreetype6 libgbm1 libgck-1-0 libgck-2-2 libgcr-4-4 155s libgcr-base-3-1 libgcr-ui-3-1 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common 155s libgl1 libgl1-mesa-dri libglapi-mesa libgles2 libglvnd0 libglx-mesa0 libglx0 155s libgraphene-1.0-0 libgraphite2-3 libgstreamer-gl1.0-0 155s libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0t64 155s libgtk-3-common libgtk-4-1 libgtk-4-common libharfbuzz-subset0 libharfbuzz0b 155s libice6 libjbig0 libjpeg-turbo8 libjpeg8 liblcms2-2 liborc-0.4-0t64 155s libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpixman-1-0 155s libsecret-1-0 libsecret-common libsharpyuv0 libsm6 libstemmer0d libthai-data 155s libthai0 libtiff6 libv4l-0t64 libv4lconvert0t64 libvulkan1 155s libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 155s libwebp7 libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-present0 155s libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 155s libxcomposite1 libxcursor1 libxdamage1 libxfixes3 libxfont2 libxi6 155s libxinerama1 libxkbfile1 libxmu6 libxpm4 libxrandr2 libxrender1 155s libxshmfence1 libxt6t64 libxxf86vm1 libzbar0t64 mesa-libgallium p11-kit 155s p11-kit-modules pinentry-gnome3 x11-common x11-xkb-utils xserver-common xvfb 155s 0 upgraded, 125 newly installed, 0 to remove and 0 not upgraded. 155s Need to get 38.5 MB of archives. 155s After this operation, 155 MB of additional disk space will be used. 155s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 155s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 155s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 155s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 155s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 155s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 155s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 155s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 155s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 155s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.4+ds-4 [52.9 kB] 155s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 155s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-3 [578 kB] 156s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 156s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 156s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 156s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 156s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 156s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 156s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 156s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 156s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 156s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 156s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgck-2-2 s390x 4.3.91-1 [76.8 kB] 156s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libgcr-4-4 s390x 4.3.91-1 [204 kB] 156s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 156s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 156s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 156s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 156s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 156s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 156s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-script-interpreter2 s390x 1.18.2-2 [62.3 kB] 156s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb2t64 s390x 2.0~b5-1.2build1 [26.3 kB] 156s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb-frontend2t64 s390x 2.0~b5-1.2build1 [19.4 kB] 156s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 156s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphene-1.0-0 s390x 1.10.8-5 [54.2 kB] 156s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 156s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 156s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-subset0 s390x 10.2.0-1 [552 kB] 156s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 156s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 156s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 156s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 156s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 156s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 156s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 156s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 156s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 156s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 156s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 156s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 156s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 156s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 156s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 156s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 156s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libgles2 s390x 1.7.0-1build1 [22.4 kB] 156s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-common all 4.17.4+ds-4 [1508 kB] 156s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-1 s390x 4.17.4+ds-4 [3252 kB] 156s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-common all 0.21.6-3 [5130 B] 156s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-1-0 s390x 0.21.6-3 [115 kB] 156s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x gcr4 s390x 4.3.91-1 [43.7 kB] 156s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libgck-1-0 s390x 3.41.2-1build3 [81.1 kB] 156s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libgcr-base-3-1 s390x 3.41.2-1build3 [204 kB] 156s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 156s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 156s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 156s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 156s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 156s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 156s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 156s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 156s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 156s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 156s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 156s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 157s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 157s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libgcr-ui-3-1 s390x 3.41.2-1build3 [125 kB] 157s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x gcr s390x 3.41.2-1build3 [60.4 kB] 157s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libstemmer0d s390x 2.2.0-4build1 [174 kB] 157s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libappstream5 s390x 1.0.4-1 [236 kB] 157s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libadwaita-1-0 s390x 1.6.2-1ubuntu1 [421 kB] 157s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 157s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 157s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 157s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 157s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 157s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 157s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 157s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 157s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 157s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 157s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 157s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 157s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 157s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 157s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 157s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 157s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 157s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 157s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 157s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 157s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer1.0-0 s390x 1.25.50-1 [1240 kB] 157s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x liborc-0.4-0t64 s390x 1:0.4.40-1 [212 kB] 158s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-base1.0-0 s390x 1.25.50-1 [919 kB] 158s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-gl1.0-0 s390x 1.25.50-1 [219 kB] 158s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libv4lconvert0t64 s390x 1.28.1-1 [100 kB] 158s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libv4l-0t64 s390x 1.28.1-1 [45.7 kB] 158s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x libzbar0t64 s390x 0.23.93-6build1 [137 kB] 158s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x p11-kit-modules s390x 0.25.5-2ubuntu1 [346 kB] 158s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x p11-kit s390x 0.25.5-2ubuntu1 [143 kB] 158s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x pinentry-gnome3 s390x 1.3.1-2ubuntu2 [46.3 kB] 158s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-keyring s390x 46.2-1 [645 kB] 158s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x gnome-authenticator s390x 4.5.0-1 [4840 kB] 158s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 158s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 158s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 158s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 158s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 158s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 158s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 158s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 158s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 158s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 159s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 159s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 159s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 159s Fetched 38.5 MB in 4s (10.2 MB/s) 159s Selecting previously unselected package libgdk-pixbuf2.0-common. 159s (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.) 159s Preparing to unpack .../000-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 159s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 159s Selecting previously unselected package libjpeg-turbo8:s390x. 159s Preparing to unpack .../001-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 159s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 159s Selecting previously unselected package libjpeg8:s390x. 159s Preparing to unpack .../002-libjpeg8_8c-2ubuntu11_s390x.deb ... 159s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 159s Selecting previously unselected package libdeflate0:s390x. 159s Preparing to unpack .../003-libdeflate0_1.23-1_s390x.deb ... 159s Unpacking libdeflate0:s390x (1.23-1) ... 159s Selecting previously unselected package libjbig0:s390x. 159s Preparing to unpack .../004-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 159s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 159s Selecting previously unselected package libsharpyuv0:s390x. 159s Preparing to unpack .../005-libsharpyuv0_1.5.0-0.1_s390x.deb ... 159s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 159s Selecting previously unselected package libwebp7:s390x. 159s Preparing to unpack .../006-libwebp7_1.5.0-0.1_s390x.deb ... 159s Unpacking libwebp7:s390x (1.5.0-0.1) ... 159s Selecting previously unselected package libtiff6:s390x. 159s Preparing to unpack .../007-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 159s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 159s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 159s Preparing to unpack .../008-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 159s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 159s Selecting previously unselected package gtk-update-icon-cache. 159s Preparing to unpack .../009-gtk-update-icon-cache_4.17.4+ds-4_s390x.deb ... 159s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 159s 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. 159s Unpacking gtk-update-icon-cache (4.17.4+ds-4) ... 159s Selecting previously unselected package hicolor-icon-theme. 159s Preparing to unpack .../010-hicolor-icon-theme_0.18-2_all.deb ... 159s Unpacking hicolor-icon-theme (0.18-2) ... 159s Selecting previously unselected package adwaita-icon-theme. 159s Preparing to unpack .../011-adwaita-icon-theme_48~beta-3_all.deb ... 159s Unpacking adwaita-icon-theme (48~beta-3) ... 159s Selecting previously unselected package at-spi2-common. 159s Preparing to unpack .../012-at-spi2-common_2.55.2-1_all.deb ... 159s Unpacking at-spi2-common (2.55.2-1) ... 159s Selecting previously unselected package libdconf1:s390x. 159s Preparing to unpack .../013-libdconf1_0.40.0-5_s390x.deb ... 159s Unpacking libdconf1:s390x (0.40.0-5) ... 159s Selecting previously unselected package dconf-service. 159s Preparing to unpack .../014-dconf-service_0.40.0-5_s390x.deb ... 159s Unpacking dconf-service (0.40.0-5) ... 159s Selecting previously unselected package dconf-gsettings-backend:s390x. 159s Preparing to unpack .../015-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 159s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 159s Selecting previously unselected package libfreetype6:s390x. 159s Preparing to unpack .../016-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 159s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 159s Selecting previously unselected package fonts-dejavu-mono. 159s Preparing to unpack .../017-fonts-dejavu-mono_2.37-8_all.deb ... 159s Unpacking fonts-dejavu-mono (2.37-8) ... 159s Selecting previously unselected package fonts-dejavu-core. 159s Preparing to unpack .../018-fonts-dejavu-core_2.37-8_all.deb ... 159s Unpacking fonts-dejavu-core (2.37-8) ... 159s Selecting previously unselected package fontconfig-config. 159s Preparing to unpack .../019-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 160s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 160s Selecting previously unselected package libfontconfig1:s390x. 160s Preparing to unpack .../020-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 160s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 160s Selecting previously unselected package fontconfig. 160s Preparing to unpack .../021-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 160s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 160s Selecting previously unselected package libgck-2-2:s390x. 160s Preparing to unpack .../022-libgck-2-2_4.3.91-1_s390x.deb ... 160s Unpacking libgck-2-2:s390x (4.3.91-1) ... 160s Selecting previously unselected package libgcr-4-4:s390x. 160s Preparing to unpack .../023-libgcr-4-4_4.3.91-1_s390x.deb ... 160s Unpacking libgcr-4-4:s390x (4.3.91-1) ... 160s Selecting previously unselected package libpixman-1-0:s390x. 160s Preparing to unpack .../024-libpixman-1-0_0.44.0-3_s390x.deb ... 160s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 160s Selecting previously unselected package libxcb-render0:s390x. 160s Preparing to unpack .../025-libxcb-render0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-render0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxcb-shm0:s390x. 160s Preparing to unpack .../026-libxcb-shm0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxrender1:s390x. 160s Preparing to unpack .../027-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 160s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 160s Selecting previously unselected package libcairo2:s390x. 160s Preparing to unpack .../028-libcairo2_1.18.2-2_s390x.deb ... 160s Unpacking libcairo2:s390x (1.18.2-2) ... 160s Selecting previously unselected package libcairo-gobject2:s390x. 160s Preparing to unpack .../029-libcairo-gobject2_1.18.2-2_s390x.deb ... 160s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 160s Selecting previously unselected package libcairo-script-interpreter2:s390x. 160s Preparing to unpack .../030-libcairo-script-interpreter2_1.18.2-2_s390x.deb ... 160s Unpacking libcairo-script-interpreter2:s390x (1.18.2-2) ... 160s Selecting previously unselected package libcpdb2t64:s390x. 160s Preparing to unpack .../031-libcpdb2t64_2.0~b5-1.2build1_s390x.deb ... 160s Unpacking libcpdb2t64:s390x (2.0~b5-1.2build1) ... 160s Selecting previously unselected package libcpdb-frontend2t64:s390x. 160s Preparing to unpack .../032-libcpdb-frontend2t64_2.0~b5-1.2build1_s390x.deb ... 160s Unpacking libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 160s Selecting previously unselected package libepoxy0:s390x. 160s Preparing to unpack .../033-libepoxy0_1.5.10-2_s390x.deb ... 160s Unpacking libepoxy0:s390x (1.5.10-2) ... 160s Selecting previously unselected package libgraphene-1.0-0:s390x. 160s Preparing to unpack .../034-libgraphene-1.0-0_1.10.8-5_s390x.deb ... 160s Unpacking libgraphene-1.0-0:s390x (1.10.8-5) ... 160s Selecting previously unselected package libgraphite2-3:s390x. 160s Preparing to unpack .../035-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 160s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 160s Selecting previously unselected package libharfbuzz0b:s390x. 160s Preparing to unpack .../036-libharfbuzz0b_10.2.0-1_s390x.deb ... 160s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 160s Selecting previously unselected package libharfbuzz-subset0:s390x. 160s Preparing to unpack .../037-libharfbuzz-subset0_10.2.0-1_s390x.deb ... 160s Unpacking libharfbuzz-subset0:s390x (10.2.0-1) ... 160s Selecting previously unselected package libthai-data. 160s Preparing to unpack .../038-libthai-data_0.1.29-2build1_all.deb ... 160s Unpacking libthai-data (0.1.29-2build1) ... 160s Selecting previously unselected package libdatrie1:s390x. 160s Preparing to unpack .../039-libdatrie1_0.2.13-3build1_s390x.deb ... 160s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 160s Selecting previously unselected package libthai0:s390x. 160s Preparing to unpack .../040-libthai0_0.1.29-2build1_s390x.deb ... 160s Unpacking libthai0:s390x (0.1.29-2build1) ... 160s Selecting previously unselected package libpango-1.0-0:s390x. 160s Preparing to unpack .../041-libpango-1.0-0_1.56.1-1_s390x.deb ... 160s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 160s Selecting previously unselected package libpangoft2-1.0-0:s390x. 160s Preparing to unpack .../042-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 160s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 160s Selecting previously unselected package libpangocairo-1.0-0:s390x. 160s Preparing to unpack .../043-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 160s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 160s Selecting previously unselected package libvulkan1:s390x. 160s Preparing to unpack .../044-libvulkan1_1.4.304.0-1_s390x.deb ... 160s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 160s Selecting previously unselected package libwayland-client0:s390x. 160s Preparing to unpack .../045-libwayland-client0_1.23.1-1_s390x.deb ... 160s Unpacking libwayland-client0:s390x (1.23.1-1) ... 160s Selecting previously unselected package libwayland-egl1:s390x. 160s Preparing to unpack .../046-libwayland-egl1_1.23.1-1_s390x.deb ... 160s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 160s Selecting previously unselected package libxfixes3:s390x. 160s Preparing to unpack .../047-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 160s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 160s Selecting previously unselected package libxcursor1:s390x. 160s Preparing to unpack .../048-libxcursor1_1%3a1.2.3-1_s390x.deb ... 160s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 160s Selecting previously unselected package libxdamage1:s390x. 160s Preparing to unpack .../049-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 160s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 160s Selecting previously unselected package libxi6:s390x. 160s Preparing to unpack .../050-libxi6_2%3a1.8.2-1_s390x.deb ... 160s Unpacking libxi6:s390x (2:1.8.2-1) ... 160s Selecting previously unselected package libxinerama1:s390x. 160s Preparing to unpack .../051-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 160s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 160s Selecting previously unselected package libxrandr2:s390x. 160s Preparing to unpack .../052-libxrandr2_2%3a1.5.4-1_s390x.deb ... 160s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 160s Selecting previously unselected package libglvnd0:s390x. 160s Preparing to unpack .../053-libglvnd0_1.7.0-1build1_s390x.deb ... 160s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 160s Selecting previously unselected package libgles2:s390x. 160s Preparing to unpack .../054-libgles2_1.7.0-1build1_s390x.deb ... 160s Unpacking libgles2:s390x (1.7.0-1build1) ... 160s Selecting previously unselected package libgtk-4-common. 160s Preparing to unpack .../055-libgtk-4-common_4.17.4+ds-4_all.deb ... 160s Unpacking libgtk-4-common (4.17.4+ds-4) ... 160s Selecting previously unselected package libgtk-4-1:s390x. 160s Preparing to unpack .../056-libgtk-4-1_4.17.4+ds-4_s390x.deb ... 160s Unpacking libgtk-4-1:s390x (4.17.4+ds-4) ... 160s Selecting previously unselected package libsecret-common. 160s Preparing to unpack .../057-libsecret-common_0.21.6-3_all.deb ... 160s Unpacking libsecret-common (0.21.6-3) ... 160s Selecting previously unselected package libsecret-1-0:s390x. 160s Preparing to unpack .../058-libsecret-1-0_0.21.6-3_s390x.deb ... 160s Unpacking libsecret-1-0:s390x (0.21.6-3) ... 160s Selecting previously unselected package gcr4. 160s Preparing to unpack .../059-gcr4_4.3.91-1_s390x.deb ... 160s Unpacking gcr4 (4.3.91-1) ... 160s Selecting previously unselected package libgck-1-0:s390x. 160s Preparing to unpack .../060-libgck-1-0_3.41.2-1build3_s390x.deb ... 160s Unpacking libgck-1-0:s390x (3.41.2-1build3) ... 160s Selecting previously unselected package libgcr-base-3-1:s390x. 160s Preparing to unpack .../061-libgcr-base-3-1_3.41.2-1build3_s390x.deb ... 160s Unpacking libgcr-base-3-1:s390x (3.41.2-1build3) ... 160s Selecting previously unselected package libatk1.0-0t64:s390x. 160s Preparing to unpack .../062-libatk1.0-0t64_2.55.2-1_s390x.deb ... 160s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 160s Selecting previously unselected package libatspi2.0-0t64:s390x. 160s Preparing to unpack .../063-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 160s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 160s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 160s Preparing to unpack .../064-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 160s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 160s Selecting previously unselected package liblcms2-2:s390x. 160s Preparing to unpack .../065-liblcms2-2_2.16-2_s390x.deb ... 160s Unpacking liblcms2-2:s390x (2.16-2) ... 160s Selecting previously unselected package libcolord2:s390x. 160s Preparing to unpack .../066-libcolord2_1.4.7-1build2_s390x.deb ... 160s Unpacking libcolord2:s390x (1.4.7-1build2) ... 160s Selecting previously unselected package libavahi-common-data:s390x. 160s Preparing to unpack .../067-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 160s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 160s Selecting previously unselected package libavahi-common3:s390x. 160s Preparing to unpack .../068-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 160s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 160s Selecting previously unselected package libavahi-client3:s390x. 160s Preparing to unpack .../069-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 160s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 160s Selecting previously unselected package libcups2t64:s390x. 160s Preparing to unpack .../070-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 160s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 160s Selecting previously unselected package libwayland-cursor0:s390x. 160s Preparing to unpack .../071-libwayland-cursor0_1.23.1-1_s390x.deb ... 160s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 160s Selecting previously unselected package libxcomposite1:s390x. 160s Preparing to unpack .../072-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 160s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 160s Selecting previously unselected package libgtk-3-common. 160s Preparing to unpack .../073-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 160s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 160s Selecting previously unselected package libgtk-3-0t64:s390x. 160s Preparing to unpack .../074-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 160s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 160s Selecting previously unselected package libgcr-ui-3-1:s390x. 160s Preparing to unpack .../075-libgcr-ui-3-1_3.41.2-1build3_s390x.deb ... 160s Unpacking libgcr-ui-3-1:s390x (3.41.2-1build3) ... 160s Selecting previously unselected package gcr. 160s Preparing to unpack .../076-gcr_3.41.2-1build3_s390x.deb ... 160s Unpacking gcr (3.41.2-1build3) ... 160s Selecting previously unselected package libstemmer0d:s390x. 160s Preparing to unpack .../077-libstemmer0d_2.2.0-4build1_s390x.deb ... 160s Unpacking libstemmer0d:s390x (2.2.0-4build1) ... 160s Selecting previously unselected package libappstream5:s390x. 160s Preparing to unpack .../078-libappstream5_1.0.4-1_s390x.deb ... 160s Unpacking libappstream5:s390x (1.0.4-1) ... 160s Selecting previously unselected package libadwaita-1-0:s390x. 160s Preparing to unpack .../079-libadwaita-1-0_1.6.2-1ubuntu1_s390x.deb ... 160s Unpacking libadwaita-1-0:s390x (1.6.2-1ubuntu1) ... 160s Selecting previously unselected package libwayland-server0:s390x. 160s Preparing to unpack .../080-libwayland-server0_1.23.1-1_s390x.deb ... 160s Unpacking libwayland-server0:s390x (1.23.1-1) ... 160s Selecting previously unselected package libdrm-radeon1:s390x. 160s Preparing to unpack .../081-libdrm-radeon1_2.4.123-1_s390x.deb ... 160s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 160s Selecting previously unselected package libglapi-mesa:s390x. 160s Preparing to unpack .../082-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 160s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 160s Selecting previously unselected package libx11-xcb1:s390x. 160s Preparing to unpack .../083-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 160s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 160s Selecting previously unselected package libxcb-dri3-0:s390x. 160s Preparing to unpack .../084-libxcb-dri3-0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxcb-present0:s390x. 160s Preparing to unpack .../085-libxcb-present0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-present0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxcb-randr0:s390x. 160s Preparing to unpack .../086-libxcb-randr0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxcb-sync1:s390x. 160s Preparing to unpack .../087-libxcb-sync1_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxcb-xfixes0:s390x. 160s Preparing to unpack .../088-libxcb-xfixes0_1.17.0-2_s390x.deb ... 160s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 160s Selecting previously unselected package libxshmfence1:s390x. 160s Preparing to unpack .../089-libxshmfence1_1.3-1build5_s390x.deb ... 160s Unpacking libxshmfence1:s390x (1.3-1build5) ... 160s Selecting previously unselected package mesa-libgallium:s390x. 160s Preparing to unpack .../090-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 160s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 161s Selecting previously unselected package libgbm1:s390x. 161s Preparing to unpack .../091-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 161s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 161s Selecting previously unselected package libegl-mesa0:s390x. 161s Preparing to unpack .../092-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 161s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 161s Selecting previously unselected package libegl1:s390x. 161s Preparing to unpack .../093-libegl1_1.7.0-1build1_s390x.deb ... 161s Unpacking libegl1:s390x (1.7.0-1build1) ... 161s Selecting previously unselected package libxcb-glx0:s390x. 161s Preparing to unpack .../094-libxcb-glx0_1.17.0-2_s390x.deb ... 161s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 161s Selecting previously unselected package libxxf86vm1:s390x. 161s Preparing to unpack .../095-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 161s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 161s Selecting previously unselected package libgl1-mesa-dri:s390x. 161s Preparing to unpack .../096-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 161s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 161s Selecting previously unselected package libglx-mesa0:s390x. 161s Preparing to unpack .../097-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 161s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 161s Selecting previously unselected package libglx0:s390x. 161s Preparing to unpack .../098-libglx0_1.7.0-1build1_s390x.deb ... 161s Unpacking libglx0:s390x (1.7.0-1build1) ... 161s Selecting previously unselected package libgl1:s390x. 161s Preparing to unpack .../099-libgl1_1.7.0-1build1_s390x.deb ... 161s Unpacking libgl1:s390x (1.7.0-1build1) ... 161s Selecting previously unselected package libgstreamer1.0-0:s390x. 161s Preparing to unpack .../100-libgstreamer1.0-0_1.25.50-1_s390x.deb ... 161s Unpacking libgstreamer1.0-0:s390x (1.25.50-1) ... 161s Selecting previously unselected package liborc-0.4-0t64:s390x. 161s Preparing to unpack .../101-liborc-0.4-0t64_1%3a0.4.40-1_s390x.deb ... 161s Unpacking liborc-0.4-0t64:s390x (1:0.4.40-1) ... 161s Selecting previously unselected package libgstreamer-plugins-base1.0-0:s390x. 161s Preparing to unpack .../102-libgstreamer-plugins-base1.0-0_1.25.50-1_s390x.deb ... 161s Unpacking libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 161s Selecting previously unselected package libgstreamer-gl1.0-0:s390x. 161s Preparing to unpack .../103-libgstreamer-gl1.0-0_1.25.50-1_s390x.deb ... 161s Unpacking libgstreamer-gl1.0-0:s390x (1.25.50-1) ... 161s Selecting previously unselected package libv4lconvert0t64:s390x. 161s Preparing to unpack .../104-libv4lconvert0t64_1.28.1-1_s390x.deb ... 161s Unpacking libv4lconvert0t64:s390x (1.28.1-1) ... 161s Selecting previously unselected package libv4l-0t64:s390x. 161s Preparing to unpack .../105-libv4l-0t64_1.28.1-1_s390x.deb ... 161s Unpacking libv4l-0t64:s390x (1.28.1-1) ... 161s Selecting previously unselected package libzbar0t64:s390x. 161s Preparing to unpack .../106-libzbar0t64_0.23.93-6build1_s390x.deb ... 161s Unpacking libzbar0t64:s390x (0.23.93-6build1) ... 161s Selecting previously unselected package p11-kit-modules:s390x. 161s Preparing to unpack .../107-p11-kit-modules_0.25.5-2ubuntu1_s390x.deb ... 161s Unpacking p11-kit-modules:s390x (0.25.5-2ubuntu1) ... 161s Selecting previously unselected package p11-kit. 161s Preparing to unpack .../108-p11-kit_0.25.5-2ubuntu1_s390x.deb ... 161s Unpacking p11-kit (0.25.5-2ubuntu1) ... 161s Selecting previously unselected package pinentry-gnome3. 161s Preparing to unpack .../109-pinentry-gnome3_1.3.1-2ubuntu2_s390x.deb ... 161s Unpacking pinentry-gnome3 (1.3.1-2ubuntu2) ... 161s Selecting previously unselected package gnome-keyring. 161s Preparing to unpack .../110-gnome-keyring_46.2-1_s390x.deb ... 161s Unpacking gnome-keyring (46.2-1) ... 161s Selecting previously unselected package gnome-authenticator. 161s Preparing to unpack .../111-gnome-authenticator_4.5.0-1_s390x.deb ... 161s Unpacking gnome-authenticator (4.5.0-1) ... 161s Selecting previously unselected package libfontenc1:s390x. 161s Preparing to unpack .../112-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 161s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 161s Selecting previously unselected package x11-common. 161s Preparing to unpack .../113-x11-common_1%3a7.7+23ubuntu3_all.deb ... 161s Unpacking x11-common (1:7.7+23ubuntu3) ... 161s Selecting previously unselected package libice6:s390x. 161s Preparing to unpack .../114-libice6_2%3a1.1.1-1_s390x.deb ... 161s Unpacking libice6:s390x (2:1.1.1-1) ... 161s Selecting previously unselected package libsm6:s390x. 161s Preparing to unpack .../115-libsm6_2%3a1.2.4-1_s390x.deb ... 161s Unpacking libsm6:s390x (2:1.2.4-1) ... 161s Selecting previously unselected package libxt6t64:s390x. 161s Preparing to unpack .../116-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 161s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 161s Selecting previously unselected package libxmu6:s390x. 161s Preparing to unpack .../117-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 161s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 161s Selecting previously unselected package libxpm4:s390x. 161s Preparing to unpack .../118-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 161s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 161s Selecting previously unselected package libxaw7:s390x. 161s Preparing to unpack .../119-libxaw7_2%3a1.0.16-1_s390x.deb ... 161s Unpacking libxaw7:s390x (2:1.0.16-1) ... 161s Selecting previously unselected package libxfont2:s390x. 161s Preparing to unpack .../120-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 161s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 161s Selecting previously unselected package libxkbfile1:s390x. 161s Preparing to unpack .../121-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 161s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 161s Selecting previously unselected package x11-xkb-utils. 161s Preparing to unpack .../122-x11-xkb-utils_7.7+9_s390x.deb ... 161s Unpacking x11-xkb-utils (7.7+9) ... 161s Selecting previously unselected package xserver-common. 161s Preparing to unpack .../123-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 161s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 161s Selecting previously unselected package xvfb. 161s Preparing to unpack .../124-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 161s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 161s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 161s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 161s Setting up liblcms2-2:s390x (2.16-2) ... 161s Setting up libpixman-1-0:s390x (0.44.0-3) ... 161s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 161s Setting up libwayland-server0:s390x (1.23.1-1) ... 161s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 161s Setting up libgck-2-2:s390x (4.3.91-1) ... 161s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 161s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 161s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 161s Setting up libgcr-4-4:s390x (4.3.91-1) ... 161s Setting up hicolor-icon-theme (0.18-2) ... 161s Setting up libxi6:s390x (2:1.8.2-1) ... 161s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 161s Setting up libdatrie1:s390x (0.2.13-3build1) ... 161s Setting up libxcb-render0:s390x (1.17.0-2) ... 161s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 161s Setting up libglvnd0:s390x (1.7.0-1build1) ... 161s Setting up libxcb-glx0:s390x (1.17.0-2) ... 161s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 161s Setting up x11-common (1:7.7+23ubuntu3) ... 161s Setting up libdeflate0:s390x (1.23-1) ... 161s Setting up libcpdb2t64:s390x (2.0~b5-1.2build1) ... 161s Setting up libxcb-shm0:s390x (1.17.0-2) ... 161s Setting up libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 161s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 161s Setting up libcolord2:s390x (1.4.7-1build2) ... 161s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 161s Setting up liborc-0.4-0t64:s390x (1:0.4.40-1) ... 161s Setting up libxcb-present0:s390x (1.17.0-2) ... 161s Setting up libdconf1:s390x (0.40.0-5) ... 161s Setting up p11-kit-modules:s390x (0.25.5-2ubuntu1) ... 161s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 161s Setting up libgles2:s390x (1.7.0-1build1) ... 161s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 161s Setting up libepoxy0:s390x (1.5.10-2) ... 161s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 161s Setting up libxcb-sync1:s390x (1.17.0-2) ... 161s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 161s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 161s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 161s Setting up fonts-dejavu-mono (2.37-8) ... 161s Setting up libxrandr2:s390x (2:1.5.4-1) ... 161s Setting up fonts-dejavu-core (2.37-8) ... 161s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 161s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 161s Setting up libvulkan1:s390x (1.4.304.0-1) ... 161s Setting up libwebp7:s390x (1.5.0-0.1) ... 161s Setting up libxshmfence1:s390x (1.3-1build5) ... 161s Setting up at-spi2-common (2.55.2-1) ... 161s Setting up libxcb-randr0:s390x (1.17.0-2) ... 161s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 161s Setting up libthai-data (0.1.29-2build1) ... 161s Setting up libwayland-egl1:s390x (1.23.1-1) ... 161s Setting up libstemmer0d:s390x (2.2.0-4build1) ... 161s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 161s Setting up p11-kit (0.25.5-2ubuntu1) ... 161s Setting up libgck-1-0:s390x (3.41.2-1build3) ... 161s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 161s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 161s Setting up libgcr-base-3-1:s390x (3.41.2-1build3) ... 161s Setting up libsecret-common (0.21.6-3) ... 161s Setting up libgstreamer1.0-0:s390x (1.25.50-1) ... 161s Setcap worked! gst-ptp-helper is not suid! 161s Setting up libgraphene-1.0-0:s390x (1.10.8-5) ... 161s Setting up libwayland-client0:s390x (1.23.1-1) ... 161s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 161s Setting up libice6:s390x (2:1.1.1-1) ... 161s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 161s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 161s Setting up libv4lconvert0t64:s390x (1.28.1-1) ... 161s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 161s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 162s Setting up libxcursor1:s390x (1:1.2.3-1) ... 162s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 162s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 162s Setting up libappstream5:s390x (1.0.4-1) ... 162s Setting up libgstreamer-plugins-base1.0-0:s390x (1.25.50-1) ... 162s Setting up dconf-service (0.40.0-5) ... 162s Setting up libthai0:s390x (0.1.29-2build1) ... 162s Setting up libsecret-1-0:s390x (0.21.6-3) ... 162s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 162s Setting up libv4l-0t64:s390x (1.28.1-1) ... 162s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 162s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 162s Setting up libegl1:s390x (1.7.0-1build1) ... 162s Setting up libharfbuzz-subset0:s390x (10.2.0-1) ... 162s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 162s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 162s Setting up libsm6:s390x (2:1.2.4-1) ... 162s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 162s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 162s Setting up gtk-update-icon-cache (4.17.4+ds-4) ... 162s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 164s Regenerating fonts cache... done. 164s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 164s Setting up libglx0:s390x (1.7.0-1build1) ... 164s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 164s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 164s Setting up libzbar0t64:s390x (0.23.93-6build1) ... 164s Setting up libcairo2:s390x (1.18.2-2) ... 164s Setting up libgl1:s390x (1.7.0-1build1) ... 164s Setting up adwaita-icon-theme (48~beta-3) ... 164s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 164s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 164s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 164s Setting up libgtk-4-common (4.17.4+ds-4) ... 164s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 164s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 164s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 164s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 164s Setting up libcairo-script-interpreter2:s390x (1.18.2-2) ... 164s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 164s Setting up libxaw7:s390x (2:1.0.16-1) ... 164s Setting up libgstreamer-gl1.0-0:s390x (1.25.50-1) ... 164s Setting up x11-xkb-utils (7.7+9) ... 164s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 164s Setting up xvfb (2:21.1.14-2ubuntu1) ... 164s Processing triggers for shared-mime-info (2.4-5) ... 164s Warning: program compiled against libxml 212 using older 209 164s Processing triggers for libc-bin (2.41-1ubuntu1) ... 164s Processing triggers for man-db (2.13.0-1) ... 165s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 165s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 165s Setting up libgtk-4-1:s390x (4.17.4+ds-4) ... 165s Setting up libgcr-ui-3-1:s390x (3.41.2-1build3) ... 165s Setting up libadwaita-1-0:s390x (1.6.2-1ubuntu1) ... 165s Setting up gcr (3.41.2-1build3) ... 165s Setting up pinentry-gnome3 (1.3.1-2ubuntu2) ... 165s Setting up gnome-keyring (46.2-1) ... 165s Created symlink '/etc/systemd/user/graphical-session-pre.target.wants/gnome-keyring-daemon.service' → '/usr/lib/systemd/user/gnome-keyring-daemon.service'. 165s Created symlink '/etc/systemd/user/sockets.target.wants/gnome-keyring-daemon.socket' → '/usr/lib/systemd/user/gnome-keyring-daemon.socket'. 165s Setting up gcr4 (4.3.91-1) ... 165s Created symlink '/etc/systemd/user/graphical-session-pre.target.wants/gcr-ssh-agent.service' → '/usr/lib/systemd/user/gcr-ssh-agent.service'. 165s Created symlink '/etc/systemd/user/sockets.target.wants/gcr-ssh-agent.socket' → '/usr/lib/systemd/user/gcr-ssh-agent.socket'. 165s Setting up gnome-authenticator (4.5.0-1) ... 165s Processing triggers for libc-bin (2.41-1ubuntu1) ... 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gnome-authenticator'], kind short, sout pipe, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ivcfvB/command1-packages.all"], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/command1-packages.all /tmp/autopkgtest-work.hxh27bjg/out/command1-packages.all 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ivcfvB/build.0Ko/src'], kind short, sout raw, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ivcfvB/build.0Ko/src already exists 166s autopkgtest [22:41:05]: test command1: xvfb-run /usr/bin/authenticator --help 166s autopkgtest [22:41:05]: test command1: [----------------------- 166s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ivcfvB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ivcfvB/command1-artifacts --chdir=/tmp/autopkgtest.ivcfvB/build.0Ko/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.ivcfvB/command1-stderr --stdout=/tmp/autopkgtest.ivcfvB/command1-stdout --tmp=/tmp/autopkgtest.ivcfvB/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- bash -ec 'xvfb-run /usr/bin/authenticator --help'"], kind test, sout raw, serr raw, env [] 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ivcfvB/command1-artifacts 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: changing to directory: /tmp/autopkgtest.ivcfvB/build.0Ko/src 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: setting environment: LANG=C.UTF-8 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LANGUAGE 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_ADDRESS 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_ALL 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_COLLATE 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_CTYPE 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_MEASUREMENT 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_MESSAGES 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_MONETARY 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_NAME 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_NUMERIC 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_PAPER 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_TELEPHONE 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: unsetting environment: LC_TIME 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: pretending to be a login shell 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: will write standard error to /tmp/autopkgtest.ivcfvB/command1-stderr 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: will write stdout to /tmp/autopkgtest.ivcfvB/command1-stdout 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ivcfvB/autopkgtest_tmp 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: command to run: bash -ec xvfb-run /usr/bin/authenticator --help 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: copying /tmp/tmp.5gMsD5IPQ7/out to stdout and file: /tmp/autopkgtest.ivcfvB/command1-stdout 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: copying /tmp/tmp.5gMsD5IPQ7/err to standard error and file: /tmp/autopkgtest.ivcfvB/command1-stdout 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: writing script pid 2882 to /tmp/autopkgtest_script_pid 167s 2025-02-15T22:42:31.997891Z INFO authenticator::application: Authenticator (com.belmoussaoui.Authenticator) 167s 2025-02-15T22:42:31.997909Z INFO authenticator::application: Version: 4.5.0 () 167s 2025-02-15T22:42:31.997910Z INFO authenticator::application: Datadir: /usr/share/authenticator 167s 2025-02-15T22:42:31.998432Z INFO authenticator::application: Migrating the secrets to the file backend 167s 2025-02-15T22:42:32.054493Z INFO authenticator::application: Secrets were migrated successfully 167s 167s (authenticator:2912): dconf-WARNING **: 22:42:32.054: failed to commit changes to dconf: Failed to execute child process “dbus-launch” (No such file or directory) 167s 2025-02-15T22:42:32.072893Z ERROR authenticator::application: Could not open keyring: DBus error Prompt was dismissed 167s Usage: 167s authenticator [OPTION…] 167s 167s Help Options: 167s -h, --help Show help options 167s --help-all Show all help options 167s --help-gapplication Show GApplication options 167s 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: checking for leaked background processes... 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: waiting for tee/cat subprocesses... 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: cleaning up... 167s /tmp/autopkgtest.ivcfvB/wrapper.sh: Exit status: 0 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [22:41:06]: test command1: -----------------------] 167s autopkgtest: DBG: testbed executing test finished with exit status 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/command1-stdout /tmp/autopkgtest-work.hxh27bjg/out/command1-stdout 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/command1-stderr /tmp/autopkgtest-work.hxh27bjg/out/command1-stderr 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest [22:41:07]: test command1: - - - - - - - - - - results - - - - - - - - - - 168s command1 PASS (superficial) 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ivcfvB/command1-artifacts/ /tmp/autopkgtest-work.hxh27bjg/out/artifacts/ 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ivcfvB/command1-artifacts', '/tmp/autopkgtest.ivcfvB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 168s autopkgtest [22:41:07]: @@@@@@@@@@@@@@@@@@@@ summary 168s command1 PASS (superficial) 168s autopkgtest: DBG: testbed stop 168s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ivcfvB 168s autopkgtest: DBG: sending command to testbed: close 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: sending command to testbed: quit 186s nova [W] Using flock in prodstack6-s390x 186s flock: timeout while waiting to get lock 186s Creating nova instance adt-plucky-s390x-gnome-authenticator-20250215-223819-juju-7f2275-prod-proposed-migration-environment-15-2cb946ce-a618-436b-ae9a-6c5988616371 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 186s nova [W] Timed out waiting for 5d5090e7-b378-4687-95b2-0a49789d80b1 to get deleted.