0s autopkgtest: DBG: testbed init 0s autopkgtest [01:37:41]: starting date and time: 2025-02-16 01:37:41+0000 0s autopkgtest [01:37:41]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:37:41]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.rrg98xym/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 pineapple-pictures --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-10.secgroup --name adt-plucky-s390x-pineapple-pictures-20250216-013741-juju-7f2275-prod-proposed-migration-environment-15-f3d90d3b-939a-48fd-9765-2e4a47c62e3d --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 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.7LuiXS 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.hypeta2b/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert reboot suggested-normal-user=ubuntu isolation-machine root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.7LuiXS'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.7LuiXS/wrapper.sh 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.7LuiXS/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [01:39:28]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [01:39:28]: testbed apt version: 2.9.28 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [01:39:29]: @@@@@@@@@@@@@@@@@@@@ test bed setup 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [01:39:29]: testbed release detected to be: None 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 500 108s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [01:39:30]: updating testbed package index (apt update) 109s 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'] 109s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 109s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 109s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 110s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 110s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 110s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 110s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 110s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 110s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 110s Fetched 2062 kB in 1s (2148 kB/s) 110s Reading package lists... 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 100 110s 110s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 110s Pin: release plucky-proposed 110s Pin-Priority: 995 110s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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.7LuiXS/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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'] 111s + lsb_release --codename --short 111s + RELEASE=plucky 111s + cat 111s + [ plucky != trusty ] 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade... 111s The following packages were automatically installed and are no longer required: 111s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 111s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 111s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 111s linux-tools-6.11.0-8-generic 111s Use 'sudo apt autoremove' to remove them. 111s The following packages will be upgraded: 111s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 112s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 1155 kB of archives. 112s After this operation, 16.4 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 112s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 112s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 112s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 112s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 112s Preconfiguring packages ... 112s Fetched 1155 kB in 1s (1890 kB/s) 112s (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.) 112s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 112s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 113s Setting up dash (0.5.12-12ubuntu1) ... 113s (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.) 113s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 113s (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.) 113s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 113s (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.) 113s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 113s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 113s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 113s (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.) 113s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 113s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 113s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 113s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 113s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 113s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 113s Setting up libtasn1-6:s390x (4.20.0-2) ... 113s Processing triggers for libc-bin (2.40-4ubuntu1) ... 113s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for debianutils (5.21) ... 113s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 113s + /usr/lib/apt/apt-helper analyze-pattern ?true 113s + uname -r 113s + sed s/\./\\./g 113s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 113s + apt list ?obsolete 113s + tail -n+2 113s + cut -d/ -f1 113s + grep -v ^linux-.*6\.12\.0-15-generic.* 114s + true 114s + obsolete_pkgs= 114s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s The following packages will be REMOVED: 114s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 114s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 114s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 114s linux-tools-6.11.0-8-generic* 114s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 114s After this operation, 167 MB disk space will be freed. 114s (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.) 114s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 114s Removing libpython3.12t64:s390x (3.12.9-1) ... 114s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 114s Removing libnsl2:s390x (1.3.0-3build3) ... 114s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 114s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 115s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 115s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 115s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s + grep -q trusty /etc/lsb-release 116s + [ ! -d /usr/share/doc/unattended-upgrades ] 116s + [ ! -d /usr/share/doc/lxd ] 116s + [ ! -d /usr/share/doc/lxd-client ] 116s + [ ! -d /usr/share/doc/snapd ] 116s + type iptables 116s + cat 116s + chmod 755 /etc/rc.local 116s + . /etc/rc.local 116s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 116s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 116s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 116s + uname -m 116s + [ s390x = ppc64le ] 116s + [ -d /run/systemd/system ] 116s + systemd-detect-virt --quiet --vm 116s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 116s + cat 116s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 116s + echo COMPRESS=lz4 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [01:39:37]: upgrading testbed (apt dist-upgrade and autopurge) 116s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s Entering ResolveByKeep 117s 117s The following packages will be upgraded: 117s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 117s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s Need to get 10.7 MB of archives. 117s After this operation, 305 kB of additional disk space will be used. 117s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 117s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 117s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 117s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 118s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 118s Preconfiguring packages ... 118s Fetched 10.7 MB in 1s (10.8 MB/s) 118s (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.) 118s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 118s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Stopping some services possibly affected by the upgrade (will be restarted later): 118s cron: stopping...done. 118s 118s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Setting up libc6:s390x (2.41-1ubuntu1) ... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Restarting services possibly affected by the upgrade: 119s cron: restarting...done. 119s 119s Services restarted successfully. 119s (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.) 119s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 119s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 119s Setting up libc-bin (2.41-1ubuntu1) ... 119s (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.) 119s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 119s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 119s Setting up iproute2 (6.13.0-1ubuntu1) ... 119s Setting up locales (2.41-1ubuntu1) ... 119s Installing new version of config file /etc/locale.alias ... 119s Generating locales (this might take a while)... 120s en_US.UTF-8... done 120s Generation complete. 120s Setting up libc-dev-bin (2.41-1ubuntu1) ... 120s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 120s Processing triggers for man-db (2.13.0-1) ... 121s Processing triggers for systemd (257.2-3ubuntu1) ... 122s autopkgtest: DBG: testbed command exited with code 0 122s 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'] 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s Starting pkgProblemResolver with broken count: 0 122s Starting 2 pkgProblemResolver with broken count: 0 122s Done 122s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s autopkgtest: DBG: testbed command exited with code 0 122s 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.7LuiXS/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 1 123s autopkgtest [01:39:44]: rebooting testbed after setup commands that affected boot 123s autopkgtest: DBG: sending command to testbed: reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.7LuiXS'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.7LuiXS/autopkgtest-reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.7LuiXS'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.7LuiXS/autopkgtest-reboot-prepare 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [01:40:04]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 143s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.7LuiXS/testbed-packages"], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/testbed-packages /tmp/autopkgtest-work.rrg98xym/out/testbed-packages 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.7LuiXS'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.7LuiXS/autopkgtest-reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.7LuiXS'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.7LuiXS/autopkgtest-reboot-prepare 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.7LuiXS/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: Binaries: initialising 145s autopkgtest [01:40:06]: @@@@@@@@@@@@@@@@@@@@ apt-source pineapple-pictures 145s autopkgtest: DBG: blame += pineapple-pictures 145s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 145s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pineapple-pictures'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^pineapple-pictures$'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'pineapple-pictures=0.9.0-1'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: install_deps: deps_new=[] 146s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s 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.7LuiXS/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pineapple-pictures=0.9.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 pineapple-pictures_*.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'] 146s + cd / 146s + mktemp -d /tmp/autopkgtest.7LuiXS/build.XXX 146s + builddir=/tmp/autopkgtest.7LuiXS/build.jYK 146s + cd /tmp/autopkgtest.7LuiXS/build.jYK 146s + apt-get source -d -q --only-source pineapple-pictures=0.9.0-1 147s + OUT=Reading package lists... 147s NOTICE: 'pineapple-pictures' packaging is maintained in the 'Git' version control system at: 147s https://salsa.debian.org/sudip/pineapple-pictures.git 147s Please use: 147s git clone https://salsa.debian.org/sudip/pineapple-pictures.git 147s to retrieve the latest (possibly unreleased) updates to the package. 147s Need to get 769 kB of source archives. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (dsc) [2081 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (tar) [761 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (diff) [5576 B] 147s Fetched 769 kB in 1s (1298 kB/s) 147s Download complete and in download only mode 147s + [ -n ] 147s + grep ^Get: 147s + echo Reading package lists... 147s NOTICE: 'pineapple-pictures' packaging is maintained in the 'Git' version control system at: 147s https://salsa.debian.org/sudip/pineapple-pictures.git 147s Please use: 147s git clone https://salsa.debian.org/sudip/pineapple-pictures.git 147s to retrieve the latest (possibly unreleased) updates to the package. 147s Need to get 769 kB of source archives. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (dsc) [2081 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (tar) [761 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (diff) [5576 B] 147s Fetched 769 kB in 1s (1298 kB/s) 147s Download complete and in download only mode 147s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (dsc) [2081 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (tar) [761 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pineapple-pictures 0.9.0-1 (diff) [5576 B] 147s + dpkg-source -x pineapple-pictures_0.9.0-1.dsc src 147s gpgv: Signature made Fri Dec 27 14:43:35 2024 UTC 147s gpgv: using RSA key B8340990283D8D9BC1949AC74799A35146D12B35 147s gpgv: Can't check signature: No public key 147s dpkg-source: warning: cannot verify inline signature for ./pineapple-pictures_0.9.0-1.dsc: no acceptable signature found 147s + chmod -R a+rX . 147s + cd src/. 147s + pwd 147s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest [01:40:08]: testing package pineapple-pictures version 0.9.0-1 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/build.jYK/src/debian/ /tmp/autopkgtest-work.rrg98xym/out/pkg/debian/ 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency pineapple-pictures 147s autopkgtest: DBG: processing dependency xvfb 147s autopkgtest: DBG: processing dependency xauth 147s autopkgtest: DBG: processing dependency xdotool 147s autopkgtest: DBG: Test defined: name test-gui path debian/tests/test-gui command "None" restrictions ['superficial'] features [] depends ['pineapple-pictures', 'xvfb', 'xauth', 'xdotool'] 147s autopkgtest [01:40:08]: build not needed 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/build.jYK/src/ /tmp/autopkgtest-work.rrg98xym/out/tests-tree/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency pineapple-pictures 148s autopkgtest: DBG: processing dependency xvfb 148s autopkgtest: DBG: processing dependency xauth 148s autopkgtest: DBG: processing dependency xdotool 148s autopkgtest: DBG: Test defined: name test-gui path debian/tests/test-gui command "None" restrictions ['superficial'] features [] depends ['pineapple-pictures', 'xvfb', 'xauth', 'xdotool'] 148s autopkgtest [01:40:09]: test test-gui: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['pineapple-pictures', 'xvfb', 'xauth', 'xdotool'] 148s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 148s autopkgtest: DBG: install_deps: deps_new=['pineapple-pictures', 'xvfb', 'xauth', 'xdotool'] 148s autopkgtest: DBG: install-deps: satisfying pineapple-pictures, xvfb, xauth, xdotool 148s autopkgtest: DBG: can use apt-get on testbed: True 148s 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', 'pineapple-pictures, xvfb, xauth, xdotool'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 148s Reading package lists... 148s Building dependency tree... 148s Reading state information... 148s Starting pkgProblemResolver with broken count: 0 148s Starting 2 pkgProblemResolver with broken count: 0 148s Done 148s The following NEW packages will be installed: 148s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libb2-1 148s libdouble-conversion3 libdrm-radeon1 libegl-mesa0 libegl1 libfontconfig1 148s libfontenc1 libfreetype6 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa 148s libglvnd0 libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libharfbuzz0b libice6 148s libinput-bin libinput10 libjpeg-turbo8 libjpeg8 libmd4c0 libmtdev1t64 148s libopengl0 libpcre2-16-0 libpixman-1-0 libqt6core6t64 libqt6dbus6 libqt6gui6 148s libqt6svg6 libqt6svgwidgets6 libqt6widgets6 libsm6 libts0t64 libvulkan1 148s libwacom-common libwacom9 libwayland-client0 libwayland-server0 libx11-xcb1 148s libxaw7 libxcb-cursor0 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 148s libxcb-keysyms1 libxcb-present0 libxcb-randr0 libxcb-render-util0 148s libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 148s libxcb-xfixes0 libxcb-xinput0 libxcb-xkb1 libxdo3 libxfont2 libxinerama1 148s libxkbcommon-x11-0 libxkbfile1 libxmu6 libxpm4 libxrandr2 libxrender1 148s libxshmfence1 libxt6t64 libxtst6 libxxf86vm1 mesa-libgallium 148s pineapple-pictures x11-common x11-xkb-utils xdotool xserver-common xvfb 149s 0 upgraded, 84 newly installed, 0 to remove and 0 not upgraded. 149s Need to get 24.9 MB of archives. 149s After this operation, 87.3 MB of additional disk space will be used. 149s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 149s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 149s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 149s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 149s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 149s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 149s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 149s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x libb2-1 s390x 0.98.1-1.1build1 [21.0 kB] 149s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 149s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 149s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 149s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 149s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 149s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 149s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 149s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 150s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 150s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 150s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 150s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 150s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 150s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 150s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 150s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 150s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 150s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt6core6t64 s390x 6.8.1+dfsg-0ubuntu4 [2154 kB] 150s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt6dbus6 s390x 6.8.1+dfsg-0ubuntu4 [304 kB] 150s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 150s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 150s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 150s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libopengl0 s390x 1.7.0-1build1 [48.0 kB] 150s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 150s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libts0t64 s390x 1.22-1.1build1 [66.8 kB] 150s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 150s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 150s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 150s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 150s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x libxcb-cursor0 s390x 0.1.5-1 [11.3 kB] 150s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 150s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 150s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 150s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 150s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 150s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 150s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt6gui6 s390x 6.8.1+dfsg-0ubuntu4 [3670 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt6svg6 s390x 6.8.1-0ubuntu2 [212 kB] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt6widgets6 s390x 6.8.1+dfsg-0ubuntu4 [3027 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt6svgwidgets6 s390x 6.8.1-0ubuntu2 [18.6 kB] 151s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 151s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 151s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 151s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 151s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 151s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 151s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 151s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 151s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libxtst6 s390x 2:1.2.5-1 [13.5 kB] 151s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x pineapple-pictures s390x 0.9.0-1 [197 kB] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 151s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 151s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x xvfb s390x 2:21.1.14-2ubuntu1 [941 kB] 151s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libxdo3 s390x 1:3.20160805.1-5build1 [23.3 kB] 151s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x xdotool s390x 1:3.20160805.1-5build1 [43.6 kB] 151s Fetched 24.9 MB in 2s (12.7 MB/s) 151s Selecting previously unselected package libfreetype6:s390x. 151s (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.) 151s Preparing to unpack .../00-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 151s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 151s Selecting previously unselected package fonts-dejavu-mono. 151s Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ... 151s Unpacking fonts-dejavu-mono (2.37-8) ... 151s Selecting previously unselected package fonts-dejavu-core. 151s Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ... 151s Unpacking fonts-dejavu-core (2.37-8) ... 151s Selecting previously unselected package fontconfig-config. 151s Preparing to unpack .../03-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 151s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 151s Selecting previously unselected package libfontconfig1:s390x. 151s Preparing to unpack .../04-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 151s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 151s Selecting previously unselected package fontconfig. 151s Preparing to unpack .../05-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 151s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 151s Selecting previously unselected package libgomp1:s390x. 151s Preparing to unpack .../06-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package libb2-1:s390x. 151s Preparing to unpack .../07-libb2-1_0.98.1-1.1build1_s390x.deb ... 151s Unpacking libb2-1:s390x (0.98.1-1.1build1) ... 151s Selecting previously unselected package libdouble-conversion3:s390x. 151s Preparing to unpack .../08-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 151s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 151s Selecting previously unselected package libdrm-radeon1:s390x. 151s Preparing to unpack .../09-libdrm-radeon1_2.4.123-1_s390x.deb ... 151s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 151s Selecting previously unselected package libwayland-server0:s390x. 151s Preparing to unpack .../10-libwayland-server0_1.23.1-1_s390x.deb ... 151s Unpacking libwayland-server0:s390x (1.23.1-1) ... 151s Selecting previously unselected package libglapi-mesa:s390x. 151s Preparing to unpack .../11-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 151s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 151s Selecting previously unselected package libx11-xcb1:s390x. 151s Preparing to unpack .../12-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 151s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 151s Selecting previously unselected package libxcb-dri3-0:s390x. 151s Preparing to unpack .../13-libxcb-dri3-0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxcb-present0:s390x. 151s Preparing to unpack .../14-libxcb-present0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-present0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxcb-randr0:s390x. 151s Preparing to unpack .../15-libxcb-randr0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxcb-sync1:s390x. 151s Preparing to unpack .../16-libxcb-sync1_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxcb-xfixes0:s390x. 151s Preparing to unpack .../17-libxcb-xfixes0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxshmfence1:s390x. 151s Preparing to unpack .../18-libxshmfence1_1.3-1build5_s390x.deb ... 151s Unpacking libxshmfence1:s390x (1.3-1build5) ... 151s Selecting previously unselected package mesa-libgallium:s390x. 151s Preparing to unpack .../19-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 151s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 152s Selecting previously unselected package libgbm1:s390x. 152s Preparing to unpack .../20-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 152s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 152s Selecting previously unselected package libwayland-client0:s390x. 152s Preparing to unpack .../21-libwayland-client0_1.23.1-1_s390x.deb ... 152s Unpacking libwayland-client0:s390x (1.23.1-1) ... 152s Selecting previously unselected package libxcb-shm0:s390x. 152s Preparing to unpack .../22-libxcb-shm0_1.17.0-2_s390x.deb ... 152s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 152s Selecting previously unselected package libegl-mesa0:s390x. 152s Preparing to unpack .../23-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 152s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 152s Selecting previously unselected package libfontenc1:s390x. 152s Preparing to unpack .../24-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 152s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 152s Selecting previously unselected package libvulkan1:s390x. 152s Preparing to unpack .../25-libvulkan1_1.4.304.0-1_s390x.deb ... 152s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 152s Selecting previously unselected package libgl1-mesa-dri:s390x. 152s Preparing to unpack .../26-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 152s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 152s Selecting previously unselected package libxcb-glx0:s390x. 152s Preparing to unpack .../27-libxcb-glx0_1.17.0-2_s390x.deb ... 152s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 152s Selecting previously unselected package libxxf86vm1:s390x. 152s Preparing to unpack .../28-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 152s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 152s Selecting previously unselected package libglx-mesa0:s390x. 152s Preparing to unpack .../29-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 152s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 152s Selecting previously unselected package libgraphite2-3:s390x. 152s Preparing to unpack .../30-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 152s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 152s Selecting previously unselected package libharfbuzz0b:s390x. 152s Preparing to unpack .../31-libharfbuzz0b_10.2.0-1_s390x.deb ... 152s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 152s Selecting previously unselected package x11-common. 152s Preparing to unpack .../32-x11-common_1%3a7.7+23ubuntu3_all.deb ... 152s Unpacking x11-common (1:7.7+23ubuntu3) ... 152s Selecting previously unselected package libice6:s390x. 152s Preparing to unpack .../33-libice6_2%3a1.1.1-1_s390x.deb ... 152s Unpacking libice6:s390x (2:1.1.1-1) ... 152s Selecting previously unselected package libwacom-common. 152s Preparing to unpack .../34-libwacom-common_2.14.0-1_all.deb ... 152s Unpacking libwacom-common (2.14.0-1) ... 152s Selecting previously unselected package libwacom9:s390x. 152s Preparing to unpack .../35-libwacom9_2.14.0-1_s390x.deb ... 152s Unpacking libwacom9:s390x (2.14.0-1) ... 152s Selecting previously unselected package libinput-bin. 152s Preparing to unpack .../36-libinput-bin_1.27.1-1_s390x.deb ... 152s Unpacking libinput-bin (1.27.1-1) ... 152s Selecting previously unselected package libmtdev1t64:s390x. 152s Preparing to unpack .../37-libmtdev1t64_1.1.7-1_s390x.deb ... 152s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 152s Selecting previously unselected package libinput10:s390x. 152s Preparing to unpack .../38-libinput10_1.27.1-1_s390x.deb ... 152s Unpacking libinput10:s390x (1.27.1-1) ... 152s Selecting previously unselected package libjpeg-turbo8:s390x. 152s Preparing to unpack .../39-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 152s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 152s Selecting previously unselected package libjpeg8:s390x. 152s Preparing to unpack .../40-libjpeg8_8c-2ubuntu11_s390x.deb ... 152s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 152s Selecting previously unselected package libmd4c0:s390x. 152s Preparing to unpack .../41-libmd4c0_0.5.2-2_s390x.deb ... 152s Unpacking libmd4c0:s390x (0.5.2-2) ... 152s Selecting previously unselected package libpcre2-16-0:s390x. 152s Preparing to unpack .../42-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 152s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 152s Selecting previously unselected package libpixman-1-0:s390x. 152s Preparing to unpack .../43-libpixman-1-0_0.44.0-3_s390x.deb ... 152s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 152s Selecting previously unselected package libqt6core6t64:s390x. 152s Preparing to unpack .../44-libqt6core6t64_6.8.1+dfsg-0ubuntu4_s390x.deb ... 152s Unpacking libqt6core6t64:s390x (6.8.1+dfsg-0ubuntu4) ... 152s Selecting previously unselected package libqt6dbus6:s390x. 152s Preparing to unpack .../45-libqt6dbus6_6.8.1+dfsg-0ubuntu4_s390x.deb ... 152s Unpacking libqt6dbus6:s390x (6.8.1+dfsg-0ubuntu4) ... 152s Selecting previously unselected package libglvnd0:s390x. 152s Preparing to unpack .../46-libglvnd0_1.7.0-1build1_s390x.deb ... 152s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 152s Selecting previously unselected package libegl1:s390x. 152s Preparing to unpack .../47-libegl1_1.7.0-1build1_s390x.deb ... 152s Unpacking libegl1:s390x (1.7.0-1build1) ... 152s Selecting previously unselected package libglx0:s390x. 152s Preparing to unpack .../48-libglx0_1.7.0-1build1_s390x.deb ... 152s Unpacking libglx0:s390x (1.7.0-1build1) ... 152s Selecting previously unselected package libopengl0:s390x. 152s Preparing to unpack .../49-libopengl0_1.7.0-1build1_s390x.deb ... 152s Unpacking libopengl0:s390x (1.7.0-1build1) ... 152s Selecting previously unselected package libsm6:s390x. 152s Preparing to unpack .../50-libsm6_2%3a1.2.4-1_s390x.deb ... 152s Unpacking libsm6:s390x (2:1.2.4-1) ... 152s Selecting previously unselected package libts0t64:s390x. 152s Preparing to unpack .../51-libts0t64_1.22-1.1build1_s390x.deb ... 152s Unpacking libts0t64:s390x (1.22-1.1build1) ... 152s Selecting previously unselected package libxcb-util1:s390x. 152s Preparing to unpack .../52-libxcb-util1_0.4.1-1_s390x.deb ... 152s Unpacking libxcb-util1:s390x (0.4.1-1) ... 152s Selecting previously unselected package libxcb-image0:s390x. 152s Preparing to unpack .../53-libxcb-image0_0.4.0-2build1_s390x.deb ... 152s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 152s Selecting previously unselected package libxcb-render0:s390x. 152s Preparing to unpack .../54-libxcb-render0_1.17.0-2_s390x.deb ... 152s Unpacking libxcb-render0:s390x (1.17.0-2) ... 152s Selecting previously unselected package libxcb-render-util0:s390x. 152s Preparing to unpack .../55-libxcb-render-util0_0.3.10-1_s390x.deb ... 152s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 152s Selecting previously unselected package libxcb-cursor0:s390x. 152s Preparing to unpack .../56-libxcb-cursor0_0.1.5-1_s390x.deb ... 152s Unpacking libxcb-cursor0:s390x (0.1.5-1) ... 152s Selecting previously unselected package libxcb-icccm4:s390x. 152s Preparing to unpack .../57-libxcb-icccm4_0.4.2-1_s390x.deb ... 152s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 152s Selecting previously unselected package libxcb-keysyms1:s390x. 152s Preparing to unpack .../58-libxcb-keysyms1_0.4.1-1_s390x.deb ... 152s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 152s Selecting previously unselected package libxcb-shape0:s390x. 152s Preparing to unpack .../59-libxcb-shape0_1.17.0-2_s390x.deb ... 152s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 152s Selecting previously unselected package libxcb-xinput0:s390x. 152s Preparing to unpack .../60-libxcb-xinput0_1.17.0-2_s390x.deb ... 152s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 152s Selecting previously unselected package libxcb-xkb1:s390x. 152s Preparing to unpack .../61-libxcb-xkb1_1.17.0-2_s390x.deb ... 152s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 152s Selecting previously unselected package libxkbcommon-x11-0:s390x. 152s Preparing to unpack .../62-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 152s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 152s Selecting previously unselected package libqt6gui6:s390x. 152s Preparing to unpack .../63-libqt6gui6_6.8.1+dfsg-0ubuntu4_s390x.deb ... 152s Unpacking libqt6gui6:s390x (6.8.1+dfsg-0ubuntu4) ... 152s Selecting previously unselected package libqt6svg6:s390x. 152s Preparing to unpack .../64-libqt6svg6_6.8.1-0ubuntu2_s390x.deb ... 152s Unpacking libqt6svg6:s390x (6.8.1-0ubuntu2) ... 152s Selecting previously unselected package libqt6widgets6:s390x. 152s Preparing to unpack .../65-libqt6widgets6_6.8.1+dfsg-0ubuntu4_s390x.deb ... 152s Unpacking libqt6widgets6:s390x (6.8.1+dfsg-0ubuntu4) ... 152s Selecting previously unselected package libqt6svgwidgets6:s390x. 152s Preparing to unpack .../66-libqt6svgwidgets6_6.8.1-0ubuntu2_s390x.deb ... 152s Unpacking libqt6svgwidgets6:s390x (6.8.1-0ubuntu2) ... 152s Selecting previously unselected package libxt6t64:s390x. 152s Preparing to unpack .../67-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 152s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 152s Selecting previously unselected package libxmu6:s390x. 152s Preparing to unpack .../68-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 152s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 152s Selecting previously unselected package libxpm4:s390x. 152s Preparing to unpack .../69-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 152s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 152s Selecting previously unselected package libxaw7:s390x. 152s Preparing to unpack .../70-libxaw7_2%3a1.0.16-1_s390x.deb ... 152s Unpacking libxaw7:s390x (2:1.0.16-1) ... 152s Selecting previously unselected package libxfont2:s390x. 152s Preparing to unpack .../71-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 152s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 152s Selecting previously unselected package libxinerama1:s390x. 152s Preparing to unpack .../72-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 152s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 152s Selecting previously unselected package libxkbfile1:s390x. 152s Preparing to unpack .../73-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 152s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 152s Selecting previously unselected package libxrender1:s390x. 152s Preparing to unpack .../74-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 152s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 152s Selecting previously unselected package libxrandr2:s390x. 152s Preparing to unpack .../75-libxrandr2_2%3a1.5.4-1_s390x.deb ... 152s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 152s Selecting previously unselected package libxtst6:s390x. 152s Preparing to unpack .../76-libxtst6_2%3a1.2.5-1_s390x.deb ... 152s Unpacking libxtst6:s390x (2:1.2.5-1) ... 152s Selecting previously unselected package pineapple-pictures. 152s Preparing to unpack .../77-pineapple-pictures_0.9.0-1_s390x.deb ... 152s Unpacking pineapple-pictures (0.9.0-1) ... 152s Selecting previously unselected package x11-xkb-utils. 152s Preparing to unpack .../78-x11-xkb-utils_7.7+9_s390x.deb ... 152s Unpacking x11-xkb-utils (7.7+9) ... 152s Selecting previously unselected package xserver-common. 152s Preparing to unpack .../79-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 152s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 152s Selecting previously unselected package libgl1:s390x. 152s Preparing to unpack .../80-libgl1_1.7.0-1build1_s390x.deb ... 152s Unpacking libgl1:s390x (1.7.0-1build1) ... 152s Selecting previously unselected package xvfb. 152s Preparing to unpack .../81-xvfb_2%3a21.1.14-2ubuntu1_s390x.deb ... 152s Unpacking xvfb (2:21.1.14-2ubuntu1) ... 152s Selecting previously unselected package libxdo3:s390x. 152s Preparing to unpack .../82-libxdo3_1%3a3.20160805.1-5build1_s390x.deb ... 152s Unpacking libxdo3:s390x (1:3.20160805.1-5build1) ... 152s Selecting previously unselected package xdotool. 152s Preparing to unpack .../83-xdotool_1%3a3.20160805.1-5build1_s390x.deb ... 152s Unpacking xdotool (1:3.20160805.1-5build1) ... 152s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 152s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 152s Setting up libpixman-1-0:s390x (0.44.0-3) ... 152s Setting up libwayland-server0:s390x (1.23.1-1) ... 152s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 152s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 152s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 152s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 152s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 152s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 152s Setting up libxcb-render0:s390x (1.17.0-2) ... 152s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 152s Setting up libglvnd0:s390x (1.7.0-1build1) ... 152s Setting up libts0t64:s390x (1.22-1.1build1) ... 152s Setting up libxcb-glx0:s390x (1.17.0-2) ... 152s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 152s Setting up libxcb-shape0:s390x (1.17.0-2) ... 152s Setting up x11-common (1:7.7+23ubuntu3) ... 153s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 153s Setting up libxcb-shm0:s390x (1.17.0-2) ... 153s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 153s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 153s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 153s Setting up libopengl0:s390x (1.7.0-1build1) ... 153s Setting up libxcb-util1:s390x (0.4.1-1) ... 153s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 153s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 153s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 153s Setting up libxcb-present0:s390x (1.17.0-2) ... 153s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 153s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 153s Setting up libxcb-sync1:s390x (1.17.0-2) ... 153s Setting up libxcb-cursor0:s390x (0.1.5-1) ... 153s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 153s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 153s Setting up fonts-dejavu-mono (2.37-8) ... 153s Setting up libxrandr2:s390x (2:1.5.4-1) ... 153s Setting up fonts-dejavu-core (2.37-8) ... 153s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 153s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 153s Setting up libvulkan1:s390x (1.4.304.0-1) ... 153s Setting up libmtdev1t64:s390x (1.1.7-1) ... 153s Setting up libxshmfence1:s390x (1.3-1build5) ... 153s Setting up libxcb-randr0:s390x (1.17.0-2) ... 153s Setting up libmd4c0:s390x (0.5.2-2) ... 153s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 153s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 153s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 153s Setting up libwacom-common (2.14.0-1) ... 153s Setting up libwayland-client0:s390x (1.23.1-1) ... 153s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 153s Setting up libb2-1:s390x (0.98.1-1.1build1) ... 153s Setting up libice6:s390x (2:1.1.1-1) ... 153s Setting up libqt6core6t64:s390x (6.8.1+dfsg-0ubuntu4) ... 153s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 153s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 153s Setting up libwacom9:s390x (2.14.0-1) ... 153s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 153s Setting up libxtst6:s390x (2:1.2.5-1) ... 153s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 153s Setting up libinput-bin (1.27.1-1) ... 153s Setting up libxdo3:s390x (1:3.20160805.1-5build1) ... 153s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 153s Setting up libegl1:s390x (1.7.0-1build1) ... 153s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 153s Setting up libsm6:s390x (2:1.2.4-1) ... 153s Setting up libqt6dbus6:s390x (6.8.1+dfsg-0ubuntu4) ... 153s Setting up libinput10:s390x (1.27.1-1) ... 153s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 155s Regenerating fonts cache... done. 155s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 155s Setting up libglx0:s390x (1.7.0-1build1) ... 155s Setting up xdotool (1:3.20160805.1-5build1) ... 155s Setting up libgl1:s390x (1.7.0-1build1) ... 155s Setting up libqt6gui6:s390x (6.8.1+dfsg-0ubuntu4) ... 155s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 155s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 155s Setting up libxaw7:s390x (2:1.0.16-1) ... 156s Setting up libqt6widgets6:s390x (6.8.1+dfsg-0ubuntu4) ... 156s Setting up libqt6svg6:s390x (6.8.1-0ubuntu2) ... 156s Setting up libqt6svgwidgets6:s390x (6.8.1-0ubuntu2) ... 156s Setting up pineapple-pictures (0.9.0-1) ... 156s Setting up x11-xkb-utils (7.7+9) ... 156s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 156s Setting up xvfb (2:21.1.14-2ubuntu1) ... 156s Processing triggers for man-db (2.13.0-1) ... 156s Processing triggers for udev (257.2-3ubuntu1) ... 156s Processing triggers for libc-bin (2.41-1ubuntu1) ... 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'pineapple-pictures'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.7LuiXS/test-gui-packages.all"], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/test-gui-packages.all /tmp/autopkgtest-work.rrg98xym/out/test-gui-packages.all 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.7LuiXS/build.jYK/src'], kind short, sout raw, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.7LuiXS/build.jYK/src already exists 157s autopkgtest [01:40:18]: test test-gui: [----------------------- 157s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.7LuiXS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.7LuiXS/test-gui-artifacts --chdir=/tmp/autopkgtest.7LuiXS/build.jYK/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.7LuiXS/test-gui-stderr --stdout=/tmp/autopkgtest.7LuiXS/test-gui-stdout --tmp=/tmp/autopkgtest.7LuiXS/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' --make-executable=/tmp/autopkgtest.7LuiXS/build.jYK/src/debian/tests/test-gui -- /tmp/autopkgtest.7LuiXS/build.jYK/src/debian/tests/test-gui"], kind test, sout raw, serr raw, env [] 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.7LuiXS/test-gui-artifacts 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: changing to directory: /tmp/autopkgtest.7LuiXS/build.jYK/src 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: setting environment: LANG=C.UTF-8 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LANGUAGE 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_ADDRESS 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_ALL 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_COLLATE 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_CTYPE 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_MEASUREMENT 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_MESSAGES 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_MONETARY 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_NAME 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_NUMERIC 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_PAPER 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_TELEPHONE 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: unsetting environment: LC_TIME 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: pretending to be a login shell 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: will write standard error to /tmp/autopkgtest.7LuiXS/test-gui-stderr 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: will write stdout to /tmp/autopkgtest.7LuiXS/test-gui-stdout 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.7LuiXS/autopkgtest_tmp 157s /tmp/autopkgtest.7LuiXS/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 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: marking as executable: /tmp/autopkgtest.7LuiXS/build.jYK/src/debian/tests/test-gui 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: command to run: /tmp/autopkgtest.7LuiXS/build.jYK/src/debian/tests/test-gui 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: copying /tmp/tmp.vZrYNux10y/out to stdout and file: /tmp/autopkgtest.7LuiXS/test-gui-stdout 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: copying /tmp/tmp.vZrYNux10y/err to standard error and file: /tmp/autopkgtest.7LuiXS/test-gui-stdout 157s /tmp/autopkgtest.7LuiXS/wrapper.sh: writing script pid 2428 to /tmp/autopkgtest_script_pid 158s 4194311 158s /tmp/autopkgtest.7LuiXS/wrapper.sh: checking for leaked background processes... 158s /tmp/autopkgtest.7LuiXS/wrapper.sh: waiting for tee/cat subprocesses... 158s /tmp/autopkgtest.7LuiXS/wrapper.sh: cleaning up... 158s /tmp/autopkgtest.7LuiXS/wrapper.sh: Exit status: 0 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest [01:40:19]: test test-gui: -----------------------] 158s autopkgtest: DBG: testbed executing test finished with exit status 0 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/test-gui-stdout /tmp/autopkgtest-work.rrg98xym/out/test-gui-stdout 158s autopkgtest: DBG: got reply from testbed: ok 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/test-gui-stderr /tmp/autopkgtest-work.rrg98xym/out/test-gui-stderr 159s autopkgtest: DBG: got reply from testbed: ok 159s test-gui PASS (superficial) 159s autopkgtest [01:40:20]: test test-gui: - - - - - - - - - - results - - - - - - - - - - 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.7LuiXS/test-gui-artifacts/ /tmp/autopkgtest-work.rrg98xym/out/artifacts/ 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.7LuiXS/test-gui-artifacts', '/tmp/autopkgtest.7LuiXS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 159s autopkgtest [01:40:20]: @@@@@@@@@@@@@@@@@@@@ summary 159s test-gui PASS (superficial) 159s autopkgtest: DBG: testbed stop 159s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.7LuiXS 159s autopkgtest: DBG: sending command to testbed: close 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: sending command to testbed: quit 176s nova [W] Using flock in prodstack6-s390x 176s flock: timeout while waiting to get lock 176s Creating nova instance adt-plucky-s390x-pineapple-pictures-20250216-013741-juju-7f2275-prod-proposed-migration-environment-15-f3d90d3b-939a-48fd-9765-2e4a47c62e3d from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 176s nova [W] Timed out waiting for 4ec8a606-97c5-4768-9269-08670c23b1d2 to get deleted.