0s autopkgtest: DBG: testbed init 0s autopkgtest [21:24:39]: starting date and time: 2025-02-15 21:24:39+0000 0s autopkgtest [21:24:39]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:24:39]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ro33_ekf/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 alttab --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-16.secgroup --name adt-plucky-s390x-alttab-20250215-212439-juju-7f2275-prod-proposed-migration-environment-15-ebf67b7a-1ac2-4a47-bf95-f5f3a51f063c --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 246s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.x5ASOv 246s autopkgtest: DBG: sending command to testbed: print-execute-command 246s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ugqublq1/runcmd 246s autopkgtest: DBG: sending command to testbed: capabilities 246s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system revert isolation-machine reboot root-on-testbed 246s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'revert', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 246s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.x5ASOv'], kind short, sout raw, serr pipe, env [] 246s autopkgtest: DBG: testbed command exited with code 0 246s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.x5ASOv/wrapper.sh 246s autopkgtest: DBG: got reply from testbed: ok 246s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.x5ASOv/wrapper.sh'], kind short, sout raw, serr pipe, env [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest [21:28:46]: testbed dpkg architecture: s390x 247s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest [21:28:46]: testbed apt version: 2.9.28 247s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest: DBG: testbed has eatmydata 247s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest [21:28:46]: @@@@@@@@@@@@@@@@@@@@ test bed setup 247s 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 [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest [21:28:46]: testbed release detected to be: None 247s 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 [] 248s autopkgtest: DBG: testbed command exited with code 0 248s 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 [] 248s autopkgtest: DBG: testbed command exited with code 0 248s autopkgtest: DBG: adding APT source: Types: deb deb-src 248s URIs: http://ftpmaster.internal/ubuntu/ 248s Suites: plucky-proposed 248s Components: main restricted universe multiverse 248s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 248s 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 [] 248s autopkgtest: DBG: testbed command exited with code 0 248s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 248s Package: * 248s Pin: release plucky-proposed 248s Pin-Priority: 500 248s 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 [] 248s autopkgtest: DBG: testbed command exited with code 0 248s autopkgtest [21:28:47]: updating testbed package index (apt update) 248s 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'] 248s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 249s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 249s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 249s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 249s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 249s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 249s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 249s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 249s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 249s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 249s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 249s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 249s Fetched 1889 kB in 1s (1861 kB/s) 250s Reading package lists... 250s autopkgtest: DBG: testbed command exited with code 0 250s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 250s Package: * 250s Pin: release plucky-proposed 250s Pin-Priority: 100 250s 250s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 250s Pin: release plucky-proposed 250s Pin-Priority: 995 250s 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 [] 250s autopkgtest: DBG: testbed command exited with code 0 250s 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.x5ASOv/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 250s autopkgtest: DBG: testbed command exited with code 0 250s 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'] 250s + lsb_release --codename --short 250s + RELEASE=plucky 250s + cat 250s + [ plucky != trusty ] 250s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 250s Reading package lists... 250s Building dependency tree... 250s Reading state information... 251s Calculating upgrade... 251s The following packages were automatically installed and are no longer required: 251s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 251s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 251s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 251s linux-tools-6.11.0-8-generic 251s Use 'sudo apt autoremove' to remove them. 251s The following packages will be upgraded: 251s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 251s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 251s Need to get 1155 kB of archives. 251s After this operation, 16.4 kB of additional disk space will be used. 251s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 251s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 251s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 251s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 252s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 252s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 252s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 252s Preconfiguring packages ... 252s Fetched 1155 kB in 1s (834 kB/s) 252s (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.) 252s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 252s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 253s Setting up dash (0.5.12-12ubuntu1) ... 253s (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.) 253s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 253s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 253s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 253s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 253s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 253s (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.) 253s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 253s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 253s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 253s (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.) 253s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 253s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 253s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 253s (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.) 253s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 253s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 253s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 253s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 253s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 253s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 253s Setting up libtasn1-6:s390x (4.20.0-2) ... 253s Processing triggers for libc-bin (2.40-4ubuntu1) ... 253s Processing triggers for man-db (2.13.0-1) ... 253s Processing triggers for debianutils (5.21) ... 253s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 253s + /usr/lib/apt/apt-helper analyze-pattern ?true 253s + uname -r 253s + sed s/\./\\./g 253s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 253s + apt list ?obsolete 253s + tail -n+2 253s + grep -v ^linux-.*6\.12\.0-15-generic.* 253s + cut -d/ -f1 254s + true 254s + obsolete_pkgs= 254s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 254s Reading package lists... 254s Building dependency tree... 254s Reading state information... 254s The following packages will be REMOVED: 254s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 254s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 254s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 254s linux-tools-6.11.0-8-generic* 254s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 254s After this operation, 167 MB disk space will be freed. 254s (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.) 254s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 254s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 254s Removing libpython3.12t64:s390x (3.12.9-1) ... 254s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 254s Removing libnsl2:s390x (1.3.0-3build3) ... 254s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 254s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 254s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 255s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 255s Processing triggers for libc-bin (2.40-4ubuntu1) ... 255s (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.) 255s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 255s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 255s + grep -q trusty /etc/lsb-release 255s + [ ! -d /usr/share/doc/unattended-upgrades ] 255s + [ ! -d /usr/share/doc/lxd ] 255s + [ ! -d /usr/share/doc/lxd-client ] 255s + [ ! -d /usr/share/doc/snapd ] 255s + type iptables 255s + cat 255s + chmod 755 /etc/rc.local 255s + . /etc/rc.local 255s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 255s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 255s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 255s + uname -m 255s + [ s390x = ppc64le ] 255s + [ -d /run/systemd/system ] 255s + systemd-detect-virt --quiet --vm 255s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 255s + cat 255s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 255s + echo COMPRESS=lz4 255s autopkgtest: DBG: testbed command exited with code 0 255s autopkgtest [21:28:54]: upgrading testbed (apt dist-upgrade and autopurge) 255s 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'] 255s Reading package lists... 256s Building dependency tree... 256s Reading state information... 256s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 256s Starting 2 pkgProblemResolver with broken count: 0 256s Done 256s Entering ResolveByKeep 256s 256s The following packages will be upgraded: 256s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 256s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 256s Need to get 10.7 MB of archives. 256s After this operation, 305 kB of additional disk space will be used. 256s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 256s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 258s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 259s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 260s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 260s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 261s Preconfiguring packages ... 261s Fetched 10.7 MB in 5s (2257 kB/s) 261s (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.) 261s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 261s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 261s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 261s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 261s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 261s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 261s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 261s Checking for services that may need to be restarted... 261s Checking init scripts... 261s Checking for services that may need to be restarted... 261s Checking init scripts... 262s Stopping some services possibly affected by the upgrade (will be restarted later): 262s cron: stopping...done. 262s 262s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 262s Setting up libc6:s390x (2.41-1ubuntu1) ... 262s Checking for services that may need to be restarted... 262s Checking init scripts... 262s Restarting services possibly affected by the upgrade: 262s cron: restarting...done. 262s 262s Services restarted successfully. 262s (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.) 262s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 262s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 262s Setting up libc-bin (2.41-1ubuntu1) ... 262s (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.) 262s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 262s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 262s Setting up iproute2 (6.13.0-1ubuntu1) ... 262s Setting up locales (2.41-1ubuntu1) ... 262s Installing new version of config file /etc/locale.alias ... 262s Generating locales (this might take a while)... 263s en_US.UTF-8... done 263s Generation complete. 263s Setting up libc-dev-bin (2.41-1ubuntu1) ... 263s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 263s Processing triggers for man-db (2.13.0-1) ... 264s Processing triggers for systemd (257.2-3ubuntu1) ... 265s autopkgtest: DBG: testbed command exited with code 0 265s 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'] 265s Reading package lists... 265s Building dependency tree... 265s Reading state information... 265s Starting pkgProblemResolver with broken count: 0 265s Starting 2 pkgProblemResolver with broken count: 0 265s Done 265s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 265s autopkgtest: DBG: testbed command exited with code 0 265s 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.x5ASOv/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 266s autopkgtest: DBG: testbed command exited with code 1 266s autopkgtest [21:29:05]: rebooting testbed after setup commands that affected boot 266s autopkgtest: DBG: sending command to testbed: reboot 286s autopkgtest: DBG: got reply from testbed: ok 286s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 286s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.x5ASOv'], kind short, sout raw, serr pipe, env [] 286s autopkgtest: DBG: testbed command exited with code 0 286s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.x5ASOv/autopkgtest-reboot 286s autopkgtest: DBG: got reply from testbed: ok 286s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 286s autopkgtest: DBG: testbed command exited with code 0 286s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 287s autopkgtest: DBG: testbed command exited with code 0 287s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 287s autopkgtest: DBG: testbed command exited with code 0 287s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.x5ASOv'], kind short, sout raw, serr pipe, env [] 287s autopkgtest: DBG: testbed command exited with code 0 287s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.x5ASOv/autopkgtest-reboot-prepare 287s autopkgtest: DBG: got reply from testbed: ok 287s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 287s autopkgtest: DBG: testbed command exited with code 0 287s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 287s autopkgtest: DBG: testbed command exited with code 0 287s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 288s autopkgtest: DBG: testbed command exited with code 0 288s autopkgtest [21:29:27]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 288s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 288s autopkgtest: DBG: testbed command exited with code 0 288s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.x5ASOv/testbed-packages"], kind short, sout raw, serr pipe, env [] 288s autopkgtest: DBG: testbed command exited with code 0 288s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/testbed-packages /tmp/autopkgtest-work.ro33_ekf/out/testbed-packages 288s autopkgtest: DBG: got reply from testbed: ok 288s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 288s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.x5ASOv'], kind short, sout raw, serr pipe, env [] 288s autopkgtest: DBG: testbed command exited with code 0 288s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.x5ASOv/autopkgtest-reboot 288s autopkgtest: DBG: got reply from testbed: ok 288s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.x5ASOv'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.x5ASOv/autopkgtest-reboot-prepare 289s autopkgtest: DBG: got reply from testbed: ok 289s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.x5ASOv/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: Binaries: initialising 290s autopkgtest [21:29:29]: @@@@@@@@@@@@@@@@@@@@ apt-source alttab 290s autopkgtest: DBG: blame += alttab 290s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 290s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'alttab'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^alttab$'], kind short, sout pipe, serr raw, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'alttab=1.7.1-3'], kind short, sout pipe, serr raw, env [] 291s autopkgtest: DBG: testbed command exited with code 0 291s autopkgtest: DBG: install_deps: deps_new=[] 291s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 291s autopkgtest: DBG: testbed command exited with code 0 291s 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.x5ASOv/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source alttab=1.7.1-3 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 alttab_*.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'] 291s + cd / 291s + mktemp -d /tmp/autopkgtest.x5ASOv/build.XXX 291s + builddir=/tmp/autopkgtest.x5ASOv/build.iY8 291s + cd /tmp/autopkgtest.x5ASOv/build.iY8 291s + apt-get source -d -q --only-source alttab=1.7.1-3 292s + OUT=Reading package lists... 292s NOTICE: 'alttab' packaging is maintained in the 'Git' version control system at: 292s https://salsa.debian.org/debian/alttab.git 292s Please use: 292s git clone https://salsa.debian.org/debian/alttab.git 292s to retrieve the latest (possibly unreleased) updates to the package. 292s Need to get 2862 kB of source archives. 292s Get:1 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (dsc) [2417 B] 292s Get:2 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (tar) [2849 kB] 292s Get:3 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (asc) [833 B] 292s Get:4 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (diff) [9712 B] 292s Fetched 2862 kB in 1s (1935 kB/s) 292s Download complete and in download only mode 292s + [ -n ] 292s + + grep ^Get: 292s echo Reading package lists... 292s NOTICE: 'alttab' packaging is maintained in the 'Git' version control system at: 292s https://salsa.debian.org/debian/alttab.git 292s Please use: 292s git clone https://salsa.debian.org/debian/alttab.git 292s to retrieve the latest (possibly unreleased) updates to the package. 292s Need to get 2862 kB of source archives. 292s Get:1 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (dsc) [2417 B] 292s Get:2 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (tar) [2849 kB] 292s Get:3 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (asc) [833 B] 292s Get:4 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (diff) [9712 B] 292s Fetched 2862 kB in 1s (1935 kB/s) 292s Download complete and in download only mode 292s Get:1 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (dsc) [2417 B] 292s Get:2 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (tar) [2849 kB] 292s Get:3 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (asc) [833 B] 292s Get:4 http://ftpmaster.internal/ubuntu plucky/universe alttab 1.7.1-3 (diff) [9712 B] 292s + dpkg-source -x alttab_1.7.1-3.dsc src 292s gpgv: Signature made Fri Jun 7 07:34:53 2024 UTC 292s gpgv: using RSA key 2EE7A7A517FC124CF115C354651EEFB02527DF13 292s gpgv: Can't check signature: No public key 292s dpkg-source: warning: cannot verify inline signature for ./alttab_1.7.1-3.dsc: no acceptable signature found 293s + chmod -R a+rX . 293s + cd src/. 293s + pwd 293s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest [21:29:32]: testing package alttab version 1.7.1-3 293s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/build.iY8/src/debian/ /tmp/autopkgtest-work.ro33_ekf/out/pkg/debian/ 293s autopkgtest: DBG: got reply from testbed: ok 293s autopkgtest: DBG: processing dependency @ 293s autopkgtest: DBG: synthesised dependency alttab 293s autopkgtest: DBG: processing dependency procps 293s autopkgtest: DBG: processing dependency x11-apps 293s autopkgtest: DBG: processing dependency x11-utils 293s autopkgtest: DBG: processing dependency xdotool 293s autopkgtest: DBG: processing dependency xvfb 293s autopkgtest: DBG: Test defined: name upstream path None command "env ALTTAB=alttab test/run-in-xvfb.test" restrictions ['allow-stderr'] features ['test-name=upstream'] depends ['alttab', 'procps', 'x11-apps', 'x11-utils', 'xdotool', 'xvfb'] 293s autopkgtest [21:29:32]: build not needed 293s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/build.iY8/src/ /tmp/autopkgtest-work.ro33_ekf/out/tests-tree/ 293s autopkgtest: DBG: got reply from testbed: ok 293s autopkgtest: DBG: processing dependency @ 293s autopkgtest: DBG: synthesised dependency alttab 293s autopkgtest: DBG: processing dependency procps 293s autopkgtest: DBG: processing dependency x11-apps 293s autopkgtest: DBG: processing dependency x11-utils 293s autopkgtest: DBG: processing dependency xdotool 293s autopkgtest: DBG: processing dependency xvfb 293s autopkgtest: DBG: Test defined: name upstream path None command "env ALTTAB=alttab test/run-in-xvfb.test" restrictions ['allow-stderr'] features ['test-name=upstream'] depends ['alttab', 'procps', 'x11-apps', 'x11-utils', 'xdotool', 'xvfb'] 293s autopkgtest [21:29:32]: test upstream: preparing testbed 293s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['alttab', 'procps', 'x11-apps', 'x11-utils', 'xdotool', 'xvfb'] 293s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 293s autopkgtest: DBG: install_deps: deps_new=['alttab', 'procps', 'x11-apps', 'x11-utils', 'xdotool', 'xvfb'] 293s autopkgtest: DBG: install-deps: satisfying alttab, procps, x11-apps, x11-utils, xdotool, xvfb 293s autopkgtest: DBG: can use apt-get on testbed: True 293s 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', 'alttab, procps, x11-apps, x11-utils, xdotool, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 294s Reading package lists... 294s Building dependency tree... 294s Reading state information... 294s Starting pkgProblemResolver with broken count: 0 294s Starting 2 pkgProblemResolver with broken count: 0 294s Done 294s The following NEW packages will be installed: 294s alttab fontconfig-config fonts-dejavu-core fonts-dejavu-mono libdrm-radeon1 294s libfontconfig1 libfontenc1 libfreetype6 libgbm1 libgl1 libgl1-mesa-dri 294s libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libice6 libpixman-1-0 libsm6 294s libvulkan1 libwayland-server0 libx11-xcb1 libxaw7 libxcb-damage0 294s libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-shape0 294s libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdo3 294s libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbfile1 libxmu6 libxpm4 294s libxrandr2 libxrender1 libxshmfence1 libxt6t64 libxtst6 libxv1 libxxf86dga1 294s libxxf86vm1 mesa-libgallium x11-apps x11-common x11-utils x11-xkb-utils 294s xdotool xserver-common xvfb 294s 0 upgraded, 58 newly installed, 0 to remove and 0 not upgraded. 294s Need to get 14.2 MB of archives. 294s After this operation, 51.8 MB of additional disk space will be used. 294s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 295s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 295s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 295s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 295s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 295s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 295s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 295s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 295s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 295s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x alttab s390x 1.7.1-3 [48.7 kB] 295s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 295s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 295s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 295s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 295s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 295s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 295s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 295s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 295s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 295s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 295s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 295s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 297s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 297s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 297s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 297s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 297s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 297s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 297s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 297s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 297s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 297s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 297s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 297s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 297s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 297s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 297s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-damage0 s390x 1.17.0-2 [4946 B] 297s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 297s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 297s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 297s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 297s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 297s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 297s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 297s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 297s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libxtst6 s390x 2:1.2.5-1 [13.5 kB] 297s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libxv1 s390x 2:1.0.11-1.1build1 [11.3 kB] 297s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86dga1 s390x 2:1.1.5-1build1 [12.3 kB] 297s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x x11-apps s390x 7.7+11build3 [773 kB] 297s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 297s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 297s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 297s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x x11-utils s390x 7.7+7 [198 kB] 297s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 297s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 297s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 297s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x libxdo3 s390x 1:3.20160805.1-5build1 [23.3 kB] 297s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x xdotool s390x 1:3.20160805.1-5build1 [43.6 kB] 297s Fetched 14.2 MB in 3s (4698 kB/s) 297s Selecting previously unselected package libfreetype6:s390x. 298s (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.) 298s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 298s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 298s Selecting previously unselected package fonts-dejavu-mono. 298s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 298s Unpacking fonts-dejavu-mono (2.37-8) ... 298s Selecting previously unselected package fonts-dejavu-core. 298s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 298s Unpacking fonts-dejavu-core (2.37-8) ... 298s Selecting previously unselected package fontconfig-config. 298s Preparing to unpack .../03-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 298s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 298s Selecting previously unselected package libfontconfig1:s390x. 298s Preparing to unpack .../04-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 298s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 298s Selecting previously unselected package libxrender1:s390x. 298s Preparing to unpack .../05-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 298s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 298s Selecting previously unselected package libxft2:s390x. 298s Preparing to unpack .../06-libxft2_2.3.6-1build1_s390x.deb ... 298s Unpacking libxft2:s390x (2.3.6-1build1) ... 298s Selecting previously unselected package libxpm4:s390x. 298s Preparing to unpack .../07-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 298s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 298s Selecting previously unselected package libxrandr2:s390x. 298s Preparing to unpack .../08-libxrandr2_2%3a1.5.4-1_s390x.deb ... 298s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 298s Selecting previously unselected package alttab. 298s Preparing to unpack .../09-alttab_1.7.1-3_s390x.deb ... 298s Unpacking alttab (1.7.1-3) ... 298s Selecting previously unselected package libdrm-radeon1:s390x. 298s Preparing to unpack .../10-libdrm-radeon1_2.4.123-1_s390x.deb ... 298s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 298s Selecting previously unselected package libfontenc1:s390x. 298s Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 298s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 298s Selecting previously unselected package libwayland-server0:s390x. 298s Preparing to unpack .../12-libwayland-server0_1.23.1-1_s390x.deb ... 298s Unpacking libwayland-server0:s390x (1.23.1-1) ... 298s Selecting previously unselected package libglapi-mesa:s390x. 298s Preparing to unpack .../13-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 298s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 298s Selecting previously unselected package libx11-xcb1:s390x. 298s Preparing to unpack .../14-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 298s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 298s Selecting previously unselected package libxcb-dri3-0:s390x. 298s Preparing to unpack .../15-libxcb-dri3-0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcb-present0:s390x. 298s Preparing to unpack .../16-libxcb-present0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-present0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcb-randr0:s390x. 298s Preparing to unpack .../17-libxcb-randr0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcb-sync1:s390x. 298s Preparing to unpack .../18-libxcb-sync1_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcb-xfixes0:s390x. 298s Preparing to unpack .../19-libxcb-xfixes0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxshmfence1:s390x. 298s Preparing to unpack .../20-libxshmfence1_1.3-1build5_s390x.deb ... 298s Unpacking libxshmfence1:s390x (1.3-1build5) ... 298s Selecting previously unselected package mesa-libgallium:s390x. 298s Preparing to unpack .../21-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 298s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 298s Selecting previously unselected package libgbm1:s390x. 298s Preparing to unpack .../22-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 298s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 298s Selecting previously unselected package libvulkan1:s390x. 298s Preparing to unpack .../23-libvulkan1_1.4.304.0-1_s390x.deb ... 298s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 298s Selecting previously unselected package libgl1-mesa-dri:s390x. 298s Preparing to unpack .../24-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 298s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 298s Selecting previously unselected package libxcb-glx0:s390x. 298s Preparing to unpack .../25-libxcb-glx0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcb-shm0:s390x. 298s Preparing to unpack .../26-libxcb-shm0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxxf86vm1:s390x. 298s Preparing to unpack .../27-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 298s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 298s Selecting previously unselected package libglx-mesa0:s390x. 298s Preparing to unpack .../28-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 298s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 298s Selecting previously unselected package x11-common. 298s Preparing to unpack .../29-x11-common_1%3a7.7+23ubuntu3_all.deb ... 298s Unpacking x11-common (1:7.7+23ubuntu3) ... 298s Selecting previously unselected package libice6:s390x. 298s Preparing to unpack .../30-libice6_2%3a1.1.1-1_s390x.deb ... 298s Unpacking libice6:s390x (2:1.1.1-1) ... 298s Selecting previously unselected package libpixman-1-0:s390x. 298s Preparing to unpack .../31-libpixman-1-0_0.44.0-3_s390x.deb ... 298s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 298s Selecting previously unselected package libsm6:s390x. 298s Preparing to unpack .../32-libsm6_2%3a1.2.4-1_s390x.deb ... 298s Unpacking libsm6:s390x (2:1.2.4-1) ... 298s Selecting previously unselected package libxt6t64:s390x. 298s Preparing to unpack .../33-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 298s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 298s Selecting previously unselected package libxmu6:s390x. 298s Preparing to unpack .../34-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 298s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 298s Selecting previously unselected package libxaw7:s390x. 298s Preparing to unpack .../35-libxaw7_2%3a1.0.16-1_s390x.deb ... 298s Unpacking libxaw7:s390x (2:1.0.16-1) ... 298s Selecting previously unselected package libxcb-damage0:s390x. 298s Preparing to unpack .../36-libxcb-damage0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-damage0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcb-shape0:s390x. 298s Preparing to unpack .../37-libxcb-shape0_1.17.0-2_s390x.deb ... 298s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 298s Selecting previously unselected package libxcomposite1:s390x. 298s Preparing to unpack .../38-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 298s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 298s Selecting previously unselected package libxfixes3:s390x. 298s Preparing to unpack .../39-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 298s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 298s Selecting previously unselected package libxcursor1:s390x. 298s Preparing to unpack .../40-libxcursor1_1%3a1.2.3-1_s390x.deb ... 298s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 298s Selecting previously unselected package libxfont2:s390x. 298s Preparing to unpack .../41-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 298s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 298s Selecting previously unselected package libxi6:s390x. 298s Preparing to unpack .../42-libxi6_2%3a1.8.2-1_s390x.deb ... 298s Unpacking libxi6:s390x (2:1.8.2-1) ... 298s Selecting previously unselected package libxinerama1:s390x. 298s Preparing to unpack .../43-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 298s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 298s Selecting previously unselected package libxkbfile1:s390x. 298s Preparing to unpack .../44-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 298s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 298s Selecting previously unselected package libxtst6:s390x. 298s Preparing to unpack .../45-libxtst6_2%3a1.2.5-1_s390x.deb ... 298s Unpacking libxtst6:s390x (2:1.2.5-1) ... 298s Selecting previously unselected package libxv1:s390x. 298s Preparing to unpack .../46-libxv1_2%3a1.0.11-1.1build1_s390x.deb ... 298s Unpacking libxv1:s390x (2:1.0.11-1.1build1) ... 298s Selecting previously unselected package libxxf86dga1:s390x. 298s Preparing to unpack .../47-libxxf86dga1_2%3a1.1.5-1build1_s390x.deb ... 298s Unpacking libxxf86dga1:s390x (2:1.1.5-1build1) ... 298s Selecting previously unselected package x11-apps. 298s Preparing to unpack .../48-x11-apps_7.7+11build3_s390x.deb ... 298s Unpacking x11-apps (7.7+11build3) ... 298s Selecting previously unselected package libglvnd0:s390x. 298s Preparing to unpack .../49-libglvnd0_1.7.0-1build1_s390x.deb ... 298s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 298s Selecting previously unselected package libglx0:s390x. 298s Preparing to unpack .../50-libglx0_1.7.0-1build1_s390x.deb ... 298s Unpacking libglx0:s390x (1.7.0-1build1) ... 298s Selecting previously unselected package libgl1:s390x. 298s Preparing to unpack .../51-libgl1_1.7.0-1build1_s390x.deb ... 298s Unpacking libgl1:s390x (1.7.0-1build1) ... 298s Selecting previously unselected package x11-utils. 298s Preparing to unpack .../52-x11-utils_7.7+7_s390x.deb ... 298s Unpacking x11-utils (7.7+7) ... 298s Selecting previously unselected package x11-xkb-utils. 298s Preparing to unpack .../53-x11-xkb-utils_7.7+9_s390x.deb ... 298s Unpacking x11-xkb-utils (7.7+9) ... 298s Selecting previously unselected package xserver-common. 298s Preparing to unpack .../54-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 298s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 298s Selecting previously unselected package xvfb. 298s Preparing to unpack .../55-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 298s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 298s Selecting previously unselected package libxdo3:s390x. 298s Preparing to unpack .../56-libxdo3_1%3a3.20160805.1-5build1_s390x.deb ... 298s Unpacking libxdo3:s390x (1:3.20160805.1-5build1) ... 298s Selecting previously unselected package xdotool. 298s Preparing to unpack .../57-xdotool_1%3a3.20160805.1-5build1_s390x.deb ... 298s Unpacking xdotool (1:3.20160805.1-5build1) ... 298s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 298s Setting up libpixman-1-0:s390x (0.44.0-3) ... 298s Setting up libwayland-server0:s390x (1.23.1-1) ... 298s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 298s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 298s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 298s Setting up libxi6:s390x (2:1.8.2-1) ... 298s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 298s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 298s Setting up libglvnd0:s390x (1.7.0-1build1) ... 298s Setting up libxcb-glx0:s390x (1.17.0-2) ... 298s Setting up libxcb-shape0:s390x (1.17.0-2) ... 298s Setting up x11-common (1:7.7+23ubuntu3) ... 299s Setting up libxxf86dga1:s390x (2:1.1.5-1build1) ... 299s Setting up libxcb-shm0:s390x (1.17.0-2) ... 299s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 299s Setting up libxcb-present0:s390x (1.17.0-2) ... 299s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 299s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 299s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 299s Setting up libxcb-sync1:s390x (1.17.0-2) ... 299s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 299s Setting up libxv1:s390x (2:1.0.11-1.1build1) ... 299s Setting up fonts-dejavu-mono (2.37-8) ... 299s Setting up libxrandr2:s390x (2:1.5.4-1) ... 299s Setting up fonts-dejavu-core (2.37-8) ... 299s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 299s Setting up libvulkan1:s390x (1.4.304.0-1) ... 299s Setting up libxshmfence1:s390x (1.3-1build5) ... 299s Setting up libxcb-randr0:s390x (1.17.0-2) ... 299s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 299s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 299s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 299s Setting up libxcb-damage0:s390x (1.17.0-2) ... 299s Setting up libice6:s390x (2:1.1.1-1) ... 299s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 299s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 299s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 299s Setting up libxtst6:s390x (2:1.2.5-1) ... 299s Setting up libxcursor1:s390x (1:1.2.3-1) ... 299s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 299s Setting up libxdo3:s390x (1:3.20160805.1-5build1) ... 299s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 299s Setting up libsm6:s390x (2:1.2.4-1) ... 299s Setting up libxft2:s390x (2.3.6-1build1) ... 299s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 299s Setting up libglx0:s390x (1.7.0-1build1) ... 299s Setting up xdotool (1:3.20160805.1-5build1) ... 299s Setting up libgl1:s390x (1.7.0-1build1) ... 299s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 299s Setting up alttab (1.7.1-3) ... 299s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 299s Setting up libxaw7:s390x (2:1.0.16-1) ... 299s Setting up x11-utils (7.7+7) ... 299s Setting up x11-xkb-utils (7.7+9) ... 299s Setting up x11-apps (7.7+11build3) ... 299s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 299s Setting up xvfb (2:21.1.14-2ubuntu1) ... 299s Processing triggers for man-db (2.13.0-1) ... 299s Processing triggers for libc-bin (2.41-1ubuntu1) ... 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'alttab'], kind short, sout pipe, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.x5ASOv/upstream-packages.all"], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/upstream-packages.all /tmp/autopkgtest-work.ro33_ekf/out/upstream-packages.all 300s autopkgtest: DBG: got reply from testbed: ok 300s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.x5ASOv/build.iY8/src'], kind short, sout raw, serr raw, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.x5ASOv/build.iY8/src already exists 300s autopkgtest [21:29:39]: test upstream: env ALTTAB=alttab test/run-in-xvfb.test 300s autopkgtest [21:29:39]: test upstream: [----------------------- 300s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.x5ASOv/wrapper.sh --debug --artifacts=/tmp/autopkgtest.x5ASOv/upstream-artifacts --chdir=/tmp/autopkgtest.x5ASOv/build.iY8/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.x5ASOv/upstream-stderr --stdout=/tmp/autopkgtest.x5ASOv/upstream-stdout --tmp=/tmp/autopkgtest.x5ASOv/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 'env ALTTAB=alttab test/run-in-xvfb.test'"], kind test, sout raw, serr raw, env [] 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.x5ASOv/upstream-artifacts 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: changing to directory: /tmp/autopkgtest.x5ASOv/build.iY8/src 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: setting environment: LANG=C.UTF-8 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LANGUAGE 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_ADDRESS 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_ALL 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_COLLATE 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_CTYPE 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_IDENTIFICATION 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_MEASUREMENT 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_MESSAGES 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_MONETARY 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_NAME 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_NUMERIC 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_PAPER 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_TELEPHONE 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: unsetting environment: LC_TIME 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: pretending to be a login shell 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: will write standard error to /tmp/autopkgtest.x5ASOv/upstream-stderr 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: will write stdout to /tmp/autopkgtest.x5ASOv/upstream-stdout 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.x5ASOv/autopkgtest_tmp 300s /tmp/autopkgtest.x5ASOv/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 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: command to run: bash -ec env ALTTAB=alttab test/run-in-xvfb.test 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: copying /tmp/tmp.TFGSaq0FYU/out to stdout and file: /tmp/autopkgtest.x5ASOv/upstream-stdout 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: copying /tmp/tmp.TFGSaq0FYU/err to standard error and file: /tmp/autopkgtest.x5ASOv/upstream-stdout 300s /tmp/autopkgtest.x5ASOv/wrapper.sh: writing script pid 2193 to /tmp/autopkgtest_script_pid 300s 1..3 300s chmod: changing permissions of '/tmp/.X11-unix': Operation not permitted 301s alttab 1.7.1 301s debug level 2 301s resource manager: "(null)" 301s can't get resource manager, using empty db 301s WM: 0 301s desktops: 0 301s screens: 1 301s modMask 8, backMask 1, modCode 64, keyCode 23 301s cancelCode 9, killCode 45 301s 112x128 tile, 32x32 icon 301s bw: 0 301s viewport: mode 0, 0x0+0+0 301s positioning policy: 0, position: +0+0 301s icon source: 2 301s icon theme: hicolor 301s vertical: 0 301s keep_ui: 0 301s bottomline: 0 301s no_skip_taskbar: 0 301s icon dir: /usr/share/icons/hicolor 301s icon dir: /usr/local/share/icons/hicolor 301s icon dir: /home/ubuntu/.icons/hicolor 301s icon dir: /home/ubuntu/.local/share/icons/hicolor 301s icon dir: /usr/share/pixmaps 301s icon dir: /home/ubuntu/.local/share/pixmaps 301s icon dirs: 16, files: 22, apps: 9 301s app "org.freedesktop.fwupd" [/usr/share/icons/hicolor/64x64/apps/org.freedesktop.fwupd.png] (64x64) 301s app "apport" [/usr/share/icons/hicolor/32x32/apps/apport.png] (32x32) 301s app "gvim" [/usr/share/icons/hicolor/48x48/apps/gvim.png] (48x48) 301s app "python3.13" [/usr/share/pixmaps/python3.13.xpm] (1x1) 301s app "ubuntu-logo-text" [/usr/share/pixmaps/ubuntu-logo-text.png] (1x1) 301s app "ubuntu-logo-text-dark" [/usr/share/pixmaps/ubuntu-logo-text-dark.png] (1x1) 301s app "python3" [/usr/share/pixmaps/python3.xpm] (1x1) 301s app "htop" [/usr/share/pixmaps/htop.png] (1x1) 301s app "debian-logo" [/usr/share/pixmaps/debian-logo.png] (1x1) 301s randr v. 1.6 available (sufficient) 301s early allocating colors 301s early opening font 301s early building GCs 303s ok 1 - start 303s Event type 34 303s Press 222: 8-23 303s preparing ui 303s output 0 (0 by randr) crtc: +0+0 1280x1024 noutput 1 npossible 1 303s using single randr output as viewport 303s randr reports single head, using default screen instead 303s before initWinlist 303s sortlist: 303s Can't find _NET_WM_ICON (20000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 2097153, IconMaskHint: 32, icon_mask: 2097155, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0x20000a 303s window 1, id 20000a added to list 303s Can't find _NET_WM_ICON (e0000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 14680065, IconMaskHint: 32, icon_mask: 14680067, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0xe0000a 303s window 2, id e0000a added to list 303s Can't find _NET_WM_ICON (80000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 8388609, IconMaskHint: 32, icon_mask: 8388611, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0x80000a 303s window 3, id 80000a added to list 303s Can't find _NET_WM_ICON (60000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 6291457, IconMaskHint: 32, icon_mask: 6291459, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0x60000a 303s window 4, id 60000a added to list 303s Can't find _NET_WM_ICON (c0000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 12582913, IconMaskHint: 32, icon_mask: 12582915, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0xc0000a 303s window 5, id c0000a added to list 303s Can't find _NET_WM_ICON (40000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 4194305, IconMaskHint: 32, icon_mask: 4194307, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0x40000a 303s window 6, id 40000a added to list 303s Can't find _NET_WM_ICON (a0000a, xeyes) 303s IconPixmapHint: 4, icon_pixmap: 10485761, IconMaskHint: 32, icon_mask: 10485763, IconWindowHint: 0, icon_window: 0 303s no icon in WM hints (xeyes) 303s depth=1 303s rebuilding icon from depth 1 to 24 (xeyes) 303s using direct focus tracking for 0xa0000a 303s window 7, id a0000a added to list 303s before qsort 303s sortlist: 303s 0x20000a 303s 0xe0000a 303s 0x80000a 303s 0x60000a 303s 0xc0000a 303s 0x40000a 303s 0xa0000a 303s winlist: 303s 0: 0x20000a xeyes 303s 1: 0xe0000a xeyes 303s 2: 0x80000a xeyes 303s 3: 0x60000a xeyes 303s 4: 0xc0000a xeyes 303s 5: 0x40000a xeyes 303s 6: 0xa0000a xeyes 303s after qsort 303s winlist: 303s 0: 0x20000a xeyes 303s 1: 0xe0000a xeyes 303s 2: 0x80000a xeyes 303s 3: 0x60000a xeyes 303s 4: 0xc0000a xeyes 303s 5: 0x40000a xeyes 303s 6: 0xa0000a xeyes 303s initWinlist ret: number of items in winlist: 7 303s Current (selected) item in winlist: 1 303s got 7 windows 303s 0: 20000a (lvl 1, icon 16777220 (48x32)): xeyes 303s 1: e0000a (lvl 1, icon 16777221 (48x32)): xeyes 303s 2: 80000a (lvl 1, icon 16777222 (48x32)): xeyes 303s 3: 60000a (lvl 1, icon 16777223 (48x32)): xeyes 303s 4: c0000a (lvl 1, icon 16777224 (48x32)): xeyes 303s 5: 40000a (lvl 1, icon 16777225 (48x32)): xeyes 303s 6: a0000a (lvl 1, icon 16777226 (48x32)): xeyes 303s tile w=112 h=128 303s uiwin 848x144 +216+440, 1 screen(s): [1280x1024], viewport 1280x1024+0+0, avail_w 1280 303s scaling icon onto tile 303s scaling icon onto tile 303s scaling icon onto tile 303s scaling icon onto tile 303s scaling icon onto tile 303s scaling icon onto tile 303s scaling icon onto tile 303s prepared 7 tiles 303s our window is 0x1000030 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s expose ui 303s attr abs at expose: 848x144 +216+440 303s copying tile 0 to canvas 303s XCopyArea returned 1 303s copying tile 1 to canvas 303s XCopyArea returned 1 303s copying tile 2 to canvas 303s XCopyArea returned 1 303s copying tile 3 to canvas 303s XCopyArea returned 1 303s copying tile 4 to canvas 303s XCopyArea returned 1 303s copying tile 5 to canvas 303s XCopyArea returned 1 303s copying tile 6 to canvas 303s XCopyArea returned 1 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Event type 14 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 2 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 3 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 4 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 5 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 6 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 0 303s Release 1000030: 8-23 303s Press 222: 8-23 303s item 1 303s Release 1000030: 8-23 304s Press 222: 8-23 304s item 2 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 3 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 4 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 5 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 6 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 0 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 1 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 2 304s Release 1000030: 8-23 304s Press 222: 8-23 304s item 3 304s Release 1000030: 8-23 305s Press 222: 8-23 305s item 4 305s Release 1000030: 8-23 305s Press 222: 8-23 305s item 5 305s Release 1000030: 8-23 305s Press 222: 8-23 305s item 6 305s destroying our window 305s changing focus to 0xa0000a 305s ewmh_setFocus win 0xa0000a 305s ewmh switching window to 0xa0000a 305s destroying tiles 305s destroying icons and winlist 305s before freeWinlist 305s sortlist: 305s 0xa0000a 305s 0x20000a 305s 0xe0000a 305s 0x80000a 305s 0x60000a 305s 0xc0000a 305s 0x40000a 305s Release 1000030: 8-23 305s Release 1000030: 8-64 305s Event type 18 305s event DestroyNotify: 0xc0000a found in sortlist, removing 305s Event type 18 305s event DestroyNotify: 0x80000a found in sortlist, removing 305s Event type 18 305s event DestroyNotify: 0x20000a found in sortlist, removing 305s Event type 18 305s event DestroyNotify: 0xe0000a found in sortlist, removing 305s Event type 18 305s event DestroyNotify: 0x40000a found in sortlist, removing 305s Event type 18 305s event DestroyNotify: 0x60000a found in sortlist, removing 305s Event type 18 305s Event type 10 305s event DestroyNotify: 0xa0000a found in sortlist, removing 305s ok 2 - simple cycle, focus 306s /tmp/autopkgtest.x5ASOv/wrapper.sh: checking for leaked background processes... 306s ok 3 - unmap windows 306s /tmp/autopkgtest.x5ASOv/wrapper.sh: waiting for tee/cat subprocesses... 306s /tmp/autopkgtest.x5ASOv/wrapper.sh: cleaning up... 306s /tmp/autopkgtest.x5ASOv/wrapper.sh: Exit status: 0 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest [21:29:45]: test upstream: -----------------------] 306s autopkgtest: DBG: testbed executing test finished with exit status 0 306s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/upstream-stdout /tmp/autopkgtest-work.ro33_ekf/out/upstream-stdout 307s autopkgtest: DBG: got reply from testbed: ok 307s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/upstream-stderr /tmp/autopkgtest-work.ro33_ekf/out/upstream-stderr 307s autopkgtest: DBG: got reply from testbed: ok 307s autopkgtest [21:29:46]: test upstream: - - - - - - - - - - results - - - - - - - - - - 307s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.x5ASOv/upstream-artifacts/ /tmp/autopkgtest-work.ro33_ekf/out/artifacts/ 307s upstream PASS 307s autopkgtest: DBG: got reply from testbed: ok 307s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.x5ASOv/upstream-artifacts', '/tmp/autopkgtest.x5ASOv/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 308s autopkgtest: DBG: testbed command exited with code 0 308s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 308s autopkgtest [21:29:47]: @@@@@@@@@@@@@@@@@@@@ summary 308s upstream PASS 308s autopkgtest: DBG: testbed stop 308s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.x5ASOv 308s autopkgtest: DBG: sending command to testbed: close 326s autopkgtest: DBG: got reply from testbed: ok 326s autopkgtest: DBG: sending command to testbed: quit 326s nova [W] Using flock in prodstack6-s390x 326s flock: timeout while waiting to get lock 326s Creating nova instance adt-plucky-s390x-alttab-20250215-212439-juju-7f2275-prod-proposed-migration-environment-15-ebf67b7a-1ac2-4a47-bf95-f5f3a51f063c from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 326s nova [W] Timed out waiting for 027150b2-c000-4e00-bfba-8b789ad0261d to get deleted.