0s autopkgtest: DBG: testbed init 0s autopkgtest [13:05:35]: starting date and time: 2025-02-21 13:05:35+0000 0s autopkgtest [13:05:35]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [13:05:35]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.15mnm6h2/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:build-essential --apt-upgrade feedbackd --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=build-essential/12.12 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-31.secgroup --name adt-plucky-s390x-feedbackd-20250221-130534-juju-7f2275-prod-proposed-migration-environment-15-e0e19064-db0b-48e1-a75f-71665e4e5229 --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 86s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ed7AnL 86s autopkgtest: DBG: sending command to testbed: print-execute-command 86s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ks26_9f1/runcmd 86s autopkgtest: DBG: sending command to testbed: capabilities 86s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu reboot isolation-machine revert-full-system revert root-on-testbed 86s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'reboot', 'isolation-machine', 'revert-full-system', 'revert', 'root-on-testbed', 'has_internet'] 86s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ed7AnL/wrapper.sh 86s autopkgtest: DBG: got reply from testbed: ok 86s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/wrapper.sh'], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest [13:07:00]: testbed dpkg architecture: s390x 86s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest [13:07:01]: testbed apt version: 2.9.30ubuntu1 86s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed has eatmydata 86s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest [13:07:01]: @@@@@@@@@@@@@@@@@@@@ test bed setup 86s 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 [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest [13:07:01]: testbed release detected to be: None 86s 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 [] 86s autopkgtest: DBG: testbed command exited with code 0 86s 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 [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: adding APT source: Types: deb deb-src 87s URIs: http://ftpmaster.internal/ubuntu/ 87s Suites: plucky-proposed 87s Components: main restricted universe multiverse 87s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 87s 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 [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 87s Package: * 87s Pin: release plucky-proposed 87s Pin-Priority: 500 87s 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 [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest [13:07:02]: updating testbed package index (apt update) 87s 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'] 88s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 88s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 88s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 88s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 88s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 88s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 88s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 88s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 88s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 88s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 88s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 88s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 88s Fetched 1711 kB in 1s (1904 kB/s) 89s Reading package lists... 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 89s Package: * 89s Pin: release plucky-proposed 89s Pin-Priority: 100 89s 89s Package: src:build-essential:any 89s Pin: release plucky-proposed 89s Pin-Priority: 995 89s 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:build-essential:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s 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.ed7AnL/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s 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'] 90s + lsb_release --codename --short 90s + RELEASE=plucky 90s + cat 90s + [ plucky != trusty ] 90s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 90s Reading package lists... 90s Building dependency tree... 90s Reading state information... 90s Calculating upgrade... 90s Calculating upgrade... 90s The following packages were automatically installed and are no longer required: 90s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 90s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 90s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 90s linux-tools-6.11.0-8-generic 90s Use 'sudo apt autoremove' to remove them. 90s The following packages will be upgraded: 90s base-files gcc-14-base motd-news-config 90s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 90s Need to get 134 kB of archives. 90s After this operation, 0 B of additional disk space will be used. 90s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 90s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 90s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 91s Fetched 134 kB in 0s (320 kB/s) 91s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 91s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 91s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 91s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 91s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 91s Setting up base-files (13.6ubuntu1) ... 91s Updating /root/.profile to current default. 91s motd-news.service is a disabled or a static unit not running, not starting it. 91s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 91s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 91s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 91s Setting up motd-news-config (13.6ubuntu1) ... 91s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 91s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 91s Processing triggers for install-info (7.1.1-1) ... 91s Processing triggers for man-db (2.13.0-1) ... 91s Processing triggers for initramfs-tools (0.145ubuntu2) ... 91s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 91s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 95s Using config file '/etc/zipl.conf' 95s Building bootmap in '/boot' 95s Adding IPL section 'ubuntu' (default) 95s Preparing boot device for LD-IPL: vda (0000). 95s Done. 96s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 96s + /usr/lib/apt/apt-helper analyze-pattern ?true 96s + uname -r 96s + sed s/\./\\./g 96s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 96s + apt list ?obsolete 96s + tail -n+2 96s + grep -v ^linux-.*6\.12\.0-15-generic.* 96s + cut -d/ -f1 96s + true 96s + obsolete_pkgs= 96s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 96s Reading package lists... 96s Building dependency tree... 96s Reading state information... 96s Solving dependencies... 96s The following packages will be REMOVED: 96s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 96s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 96s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 96s linux-tools-6.11.0-8-generic* 96s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 96s After this operation, 167 MB disk space will be freed. 96s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 96s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 96s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 96s Removing libpython3.12t64:s390x (3.12.9-1) ... 96s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 96s Removing libnsl2:s390x (1.3.0-3build3) ... 96s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 96s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 96s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 97s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 97s Processing triggers for libc-bin (2.40-4ubuntu1) ... 97s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 97s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 97s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 97s + grep -q trusty /etc/lsb-release 97s + [ ! -d /usr/share/doc/unattended-upgrades ] 97s + [ ! -d /usr/share/doc/lxd ] 97s + [ ! -d /usr/share/doc/lxd-client ] 97s + [ ! -d /usr/share/doc/snapd ] 97s + type iptables 97s + cat 97s + chmod 755 /etc/rc.local 97s + . /etc/rc.local 97s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 97s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 97s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 97s + uname -m 97s + [ s390x = ppc64le ] 97s + [ -d /run/systemd/system ] 97s + systemd-detect-virt --quiet --vm 97s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 97s + cat 97s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 97s + echo COMPRESS=lz4 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [13:07:12]: upgrading testbed (apt dist-upgrade and autopurge) 97s 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'] 98s Reading package lists... 98s Building dependency tree... 98s Reading state information... 98s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 98s Starting 2 pkgProblemResolver with broken count: 0 98s Done 98s Entering ResolveByKeep 98s 98s Calculating upgrade... 98s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 98s autopkgtest: DBG: testbed command exited with code 0 98s 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'] 99s Reading package lists... 99s Building dependency tree... 99s Reading state information... 99s Starting pkgProblemResolver with broken count: 0 99s Starting 2 pkgProblemResolver with broken count: 0 99s Done 99s Solving dependencies... 99s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 99s autopkgtest: DBG: testbed command exited with code 0 99s 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.ed7AnL/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 99s autopkgtest: DBG: testbed command exited with code 1 99s autopkgtest [13:07:14]: rebooting testbed after setup commands that affected boot 99s autopkgtest: DBG: sending command to testbed: reboot 117s autopkgtest: DBG: got reply from testbed: ok 117s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 117s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot 118s autopkgtest: DBG: got reply from testbed: ok 118s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare 119s autopkgtest: DBG: got reply from testbed: ok 119s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [13:07:34]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 119s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ed7AnL/testbed-packages"], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/testbed-packages /tmp/autopkgtest-work.15mnm6h2/out/testbed-packages 120s autopkgtest: DBG: got reply from testbed: ok 120s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 120s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot 120s autopkgtest: DBG: got reply from testbed: ok 120s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare 121s autopkgtest: DBG: got reply from testbed: ok 121s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: Binaries: initialising 122s autopkgtest [13:07:37]: @@@@@@@@@@@@@@@@@@@@ apt-source feedbackd 122s autopkgtest: DBG: blame += feedbackd 122s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 122s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'feedbackd'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^feedbackd-common$'], kind short, sout pipe, serr raw, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'feedbackd-common=0.7.0-1'], kind short, sout pipe, serr raw, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libfeedback-dev$'], kind short, sout pipe, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libfeedback-dev=0.7.0-1'], kind short, sout pipe, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libfeedback-0\\.0-0$'], kind short, sout pipe, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libfeedback-0.0-0=0.7.0-1'], kind short, sout pipe, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^feedbackd$'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'feedbackd=0.7.0-1'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gir1\\.2-lfb-0\\.0$'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gir1.2-lfb-0.0=0.7.0-1'], kind short, sout pipe, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: install_deps: deps_new=[] 124s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s 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.ed7AnL/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source feedbackd=0.7.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 feedbackd_*.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=build-essential/12.12'] 125s + cd / 125s + mktemp -d /tmp/autopkgtest.ed7AnL/build.XXX 125s + builddir=/tmp/autopkgtest.ed7AnL/build.H9w 125s + cd /tmp/autopkgtest.ed7AnL/build.H9w 125s + apt-get source -d -q --only-source feedbackd=0.7.0-1 125s + OUT=Reading package lists... 125s NOTICE: 'feedbackd' packaging is maintained in the 'Git' version control system at: 125s https://salsa.debian.org/DebianOnMobile-team/feedbackd.git 125s Please use: 125s git clone https://salsa.debian.org/DebianOnMobile-team/feedbackd.git 125s to retrieve the latest (possibly unreleased) updates to the package. 125s Need to get 121 kB of source archives. 125s Get:1 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (dsc) [2925 B] 125s Get:2 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (tar) [103 kB] 125s Get:3 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (asc) [833 B] 125s Get:4 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (diff) [14.1 kB] 125s Fetched 121 kB in 0s (285 kB/s) 125s Download complete and in download only mode 125s + [ -n ] 125s + grep ^Get: 125s + echo Reading package lists... 125s NOTICE: 'feedbackd' packaging is maintained in the 'Git' version control system at: 125s https://salsa.debian.org/DebianOnMobile-team/feedbackd.git 125s Please use: 125s git clone https://salsa.debian.org/DebianOnMobile-team/feedbackd.git 125s to retrieve the latest (possibly unreleased) updates to the package. 125s Need to get 121 kB of source archives. 125s Get:1 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (dsc) [2925 B] 125s Get:2 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (tar) [103 kB] 125s Get:3 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (asc) [833 B] 125s Get:4 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (diff) [14.1 kB] 125s Fetched 121 kB in 0s (285 kB/s) 125s Download complete and in download only mode 125s Get:1 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (dsc) [2925 B] 125s Get:2 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (tar) [103 kB] 125s Get:3 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (asc) [833 B] 125s Get:4 http://ftpmaster.internal/ubuntu plucky/universe feedbackd 0.7.0-1 (diff) [14.1 kB] 125s + dpkg-source -x feedbackd_0.7.0-1.dsc src 125s gpgv: Signature made Mon Feb 3 15:50:23 2025 UTC 125s gpgv: using RSA key 63F6CCDF96229D09286B2AC325BF86524AFCC1E3 125s gpgv: Can't check signature: No public key 125s dpkg-source: warning: cannot verify inline signature for ./feedbackd_0.7.0-1.dsc: no acceptable signature found 125s + chmod -R a+rX . 125s + cd src/. 125s + pwd 125s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [13:07:40]: testing package feedbackd version 0.7.0-1 125s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/build.H9w/src/debian/ /tmp/autopkgtest-work.15mnm6h2/out/pkg/debian/ 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency libfeedback-dev 126s autopkgtest: DBG: marked alternatives ['libfeedback-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency pkg-config 126s autopkgtest: DBG: Test defined: name build-test path debian/tests/build-test command "None" restrictions ['allow-stderr', 'superficial'] features [] depends ['build-essential', 'libfeedback-dev', 'pkg-config'] 126s autopkgtest: DBG: processing dependency gir1.2-lfb-0.0 126s autopkgtest: DBG: marked alternatives ['gir1.2-lfb-0.0'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency python3 126s autopkgtest: DBG: processing dependency python3-gi 126s autopkgtest: DBG: Test defined: name command1 path None command "python3 -c 'import gi; from gi.repository import Lfb'" restrictions ['allow-stderr', 'superficial'] features [] depends ['gir1.2-lfb-0.0', 'python3', 'python3-gi'] 126s autopkgtest: DBG: processing dependency feedbackd 126s autopkgtest: DBG: marked alternatives ['feedbackd'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name command2 path None command "fbd-theme-validate /usr/share/feedbackd/themes/default.json" restrictions ['allow-stderr', 'superficial'] features [] depends ['feedbackd'] 126s autopkgtest [13:07:41]: build not needed 126s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/build.H9w/src/ /tmp/autopkgtest-work.15mnm6h2/out/tests-tree/ 127s autopkgtest: DBG: got reply from testbed: ok 127s autopkgtest: DBG: processing dependency build-essential 127s autopkgtest: DBG: processing dependency libfeedback-dev 127s autopkgtest: DBG: marked alternatives ['libfeedback-dev'] as a synthesised dependency 127s autopkgtest: DBG: processing dependency pkg-config 127s autopkgtest: DBG: Test defined: name build-test path debian/tests/build-test command "None" restrictions ['allow-stderr', 'superficial'] features [] depends ['build-essential', 'libfeedback-dev', 'pkg-config'] 128s autopkgtest: DBG: processing dependency gir1.2-lfb-0.0 128s autopkgtest: DBG: marked alternatives ['gir1.2-lfb-0.0'] as a synthesised dependency 128s autopkgtest: DBG: processing dependency python3 128s autopkgtest: DBG: processing dependency python3-gi 128s autopkgtest: DBG: Test defined: name command1 path None command "python3 -c 'import gi; from gi.repository import Lfb'" restrictions ['allow-stderr', 'superficial'] features [] depends ['gir1.2-lfb-0.0', 'python3', 'python3-gi'] 128s autopkgtest: DBG: processing dependency feedbackd 128s autopkgtest: DBG: marked alternatives ['feedbackd'] as a synthesised dependency 128s autopkgtest: DBG: Test defined: name command2 path None command "fbd-theme-validate /usr/share/feedbackd/themes/default.json" restrictions ['allow-stderr', 'superficial'] features [] depends ['feedbackd'] 128s autopkgtest [13:07:43]: test build-test: preparing testbed 128s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['build-essential', 'libfeedback-dev', 'pkg-config'] 128s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 128s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'libfeedback-dev', 'pkg-config'] 128s autopkgtest: DBG: install-deps: satisfying build-essential, libfeedback-dev, pkg-config 128s autopkgtest: DBG: can use apt-get on testbed: True 128s 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', 'build-essential, libfeedback-dev, pkg-config'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 128s Starting pkgProblemResolver with broken count: 0 128s Starting 2 pkgProblemResolver with broken count: 0 128s Done 129s The following NEW packages will be installed: 129s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ 129s g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 129s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gir1.2-lfb-0.0 girepository-tools 129s libasan8 libblkid-dev libcc1-0 libfeedback-0.0-0 libfeedback-dev libffi-dev 129s libgcc-14-dev libgio-2.0-dev libgio-2.0-dev-bin libgirepository-2.0-0 129s libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libgomp1 libisl23 libitm1 129s libmount-dev libmpc3 libpcre2-16-0 libpcre2-32-0 libpcre2-dev 129s libpcre2-posix3 libpkgconf3 libselinux1-dev libsepol-dev libstdc++-14-dev 129s libsysprof-capture-4-dev libubsan1 native-architecture pkgconf pkgconf-bin 129s python3-packaging uuid-dev zlib1g-dev 129s 0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded. 129s Need to get 54.4 MB of archives. 129s After this operation, 180 MB of additional disk space will be used. 129s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 129s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 129s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu3 [9572 kB] 129s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu3 [1028 B] 129s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 129s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 129s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 129s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 129s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 129s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 130s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 130s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu3 [1037 kB] 130s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu3 [18.7 MB] 130s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu3 [526 kB] 130s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 130s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 130s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu3 [2611 kB] 130s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu3 [11.0 MB] 131s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu3 [21.8 kB] 131s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 131s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 131s Get:22 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x build-essential s390x 12.12 [4610 B] 131s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libfeedback-0.0-0 s390x 0.7.0-1 [24.4 kB] 131s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x gir1.2-lfb-0.0 s390x 0.7.0-1 [5074 B] 131s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x native-architecture all 0.2.5 [2082 B] 131s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libgirepository-2.0-0 s390x 2.83.3-2 [75.4 kB] 131s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x girepository-tools s390x 2.83.3-2 [114 kB] 131s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.7-1 [58.9 kB] 131s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x uuid-dev s390x 2.40.2-14ubuntu1 [54.0 kB] 131s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libblkid-dev s390x 2.40.2-14ubuntu1 [233 kB] 131s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libsepol-dev s390x 3.7-1 [412 kB] 131s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 131s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 131s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 131s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 131s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libselinux1-dev s390x 3.7-3ubuntu2 [169 kB] 131s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libmount-dev s390x 2.40.2-14ubuntu1 [34.6 kB] 131s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libsysprof-capture-4-dev s390x 48~beta-2 [51.9 kB] 131s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 131s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 131s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 131s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 131s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libgio-2.0-dev s390x 2.83.3-2 [1818 kB] 131s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-bin s390x 2.83.3-2 [99.5 kB] 131s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 131s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libgio-2.0-dev-bin s390x 2.83.3-2 [129 kB] 131s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-dev-bin s390x 2.83.3-2 [18.1 kB] 131s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-dev s390x 2.83.3-2 [18.9 kB] 131s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x libfeedback-dev s390x 0.7.0-1 [64.0 kB] 131s Fetched 54.4 MB in 2s (21.8 MB/s) 131s Selecting previously unselected package libisl23:s390x. 131s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 131s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 131s Unpacking libisl23:s390x (0.27-1) ... 131s Selecting previously unselected package libmpc3:s390x. 131s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 131s Unpacking libmpc3:s390x (1.3.1-1build2) ... 131s Selecting previously unselected package cpp-14-s390x-linux-gnu. 131s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu3_s390x.deb ... 131s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package cpp-14. 132s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking cpp-14 (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package cpp-s390x-linux-gnu. 132s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 132s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 132s Selecting previously unselected package cpp. 132s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 132s Unpacking cpp (4:14.2.0-1ubuntu1) ... 132s Selecting previously unselected package libcc1-0:s390x. 132s Preparing to unpack .../06-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 132s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 132s Selecting previously unselected package libgomp1:s390x. 132s Preparing to unpack .../07-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 132s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 132s Selecting previously unselected package libitm1:s390x. 132s Preparing to unpack .../08-libitm1_15-20250213-1ubuntu1_s390x.deb ... 132s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 132s Selecting previously unselected package libasan8:s390x. 132s Preparing to unpack .../09-libasan8_15-20250213-1ubuntu1_s390x.deb ... 132s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 132s Selecting previously unselected package libubsan1:s390x. 132s Preparing to unpack .../10-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 132s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 132s Selecting previously unselected package libgcc-14-dev:s390x. 132s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package gcc-14-s390x-linux-gnu. 132s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package gcc-14. 132s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking gcc-14 (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package gcc-s390x-linux-gnu. 132s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 132s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 132s Selecting previously unselected package gcc. 132s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 132s Unpacking gcc (4:14.2.0-1ubuntu1) ... 132s Selecting previously unselected package libstdc++-14-dev:s390x. 132s Preparing to unpack .../16-libstdc++-14-dev_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package g++-14-s390x-linux-gnu. 132s Preparing to unpack .../17-g++-14-s390x-linux-gnu_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package g++-14. 132s Preparing to unpack .../18-g++-14_14.2.0-17ubuntu3_s390x.deb ... 132s Unpacking g++-14 (14.2.0-17ubuntu3) ... 132s Selecting previously unselected package g++-s390x-linux-gnu. 132s Preparing to unpack .../19-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 132s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 132s Selecting previously unselected package g++. 132s Preparing to unpack .../20-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 132s Unpacking g++ (4:14.2.0-1ubuntu1) ... 132s Selecting previously unselected package build-essential. 132s Preparing to unpack .../21-build-essential_12.12_s390x.deb ... 132s Unpacking build-essential (12.12) ... 132s Selecting previously unselected package libfeedback-0.0-0:s390x. 132s Preparing to unpack .../22-libfeedback-0.0-0_0.7.0-1_s390x.deb ... 132s Unpacking libfeedback-0.0-0:s390x (0.7.0-1) ... 132s Selecting previously unselected package gir1.2-lfb-0.0:s390x. 132s Preparing to unpack .../23-gir1.2-lfb-0.0_0.7.0-1_s390x.deb ... 132s Unpacking gir1.2-lfb-0.0:s390x (0.7.0-1) ... 132s Selecting previously unselected package native-architecture. 132s Preparing to unpack .../24-native-architecture_0.2.5_all.deb ... 132s Unpacking native-architecture (0.2.5) ... 132s Selecting previously unselected package libgirepository-2.0-0:s390x. 132s Preparing to unpack .../25-libgirepository-2.0-0_2.83.3-2_s390x.deb ... 132s Unpacking libgirepository-2.0-0:s390x (2.83.3-2) ... 132s Selecting previously unselected package girepository-tools:s390x. 132s Preparing to unpack .../26-girepository-tools_2.83.3-2_s390x.deb ... 132s Unpacking girepository-tools:s390x (2.83.3-2) ... 132s Selecting previously unselected package libffi-dev:s390x. 132s Preparing to unpack .../27-libffi-dev_3.4.7-1_s390x.deb ... 132s Unpacking libffi-dev:s390x (3.4.7-1) ... 132s Selecting previously unselected package uuid-dev:s390x. 132s Preparing to unpack .../28-uuid-dev_2.40.2-14ubuntu1_s390x.deb ... 132s Unpacking uuid-dev:s390x (2.40.2-14ubuntu1) ... 132s Selecting previously unselected package libblkid-dev:s390x. 132s Preparing to unpack .../29-libblkid-dev_2.40.2-14ubuntu1_s390x.deb ... 132s Unpacking libblkid-dev:s390x (2.40.2-14ubuntu1) ... 132s Selecting previously unselected package libsepol-dev:s390x. 132s Preparing to unpack .../30-libsepol-dev_3.7-1_s390x.deb ... 132s Unpacking libsepol-dev:s390x (3.7-1) ... 132s Selecting previously unselected package libpcre2-16-0:s390x. 132s Preparing to unpack .../31-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 132s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 132s Selecting previously unselected package libpcre2-32-0:s390x. 132s Preparing to unpack .../32-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 132s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 132s Selecting previously unselected package libpcre2-posix3:s390x. 132s Preparing to unpack .../33-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 132s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 132s Selecting previously unselected package libpcre2-dev:s390x. 132s Preparing to unpack .../34-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 132s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 132s Selecting previously unselected package libselinux1-dev:s390x. 132s Preparing to unpack .../35-libselinux1-dev_3.7-3ubuntu2_s390x.deb ... 132s Unpacking libselinux1-dev:s390x (3.7-3ubuntu2) ... 132s Selecting previously unselected package libmount-dev:s390x. 132s Preparing to unpack .../36-libmount-dev_2.40.2-14ubuntu1_s390x.deb ... 132s Unpacking libmount-dev:s390x (2.40.2-14ubuntu1) ... 132s Selecting previously unselected package libsysprof-capture-4-dev:s390x. 132s Preparing to unpack .../37-libsysprof-capture-4-dev_48~beta-2_s390x.deb ... 132s Unpacking libsysprof-capture-4-dev:s390x (48~beta-2) ... 132s Selecting previously unselected package libpkgconf3:s390x. 132s Preparing to unpack .../38-libpkgconf3_1.8.1-4_s390x.deb ... 132s Unpacking libpkgconf3:s390x (1.8.1-4) ... 132s Selecting previously unselected package pkgconf-bin. 132s Preparing to unpack .../39-pkgconf-bin_1.8.1-4_s390x.deb ... 132s Unpacking pkgconf-bin (1.8.1-4) ... 133s Selecting previously unselected package pkgconf:s390x. 133s Preparing to unpack .../40-pkgconf_1.8.1-4_s390x.deb ... 133s Unpacking pkgconf:s390x (1.8.1-4) ... 133s Selecting previously unselected package zlib1g-dev:s390x. 133s Preparing to unpack .../41-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 133s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 133s Selecting previously unselected package libgio-2.0-dev:s390x. 133s Preparing to unpack .../42-libgio-2.0-dev_2.83.3-2_s390x.deb ... 133s Unpacking libgio-2.0-dev:s390x (2.83.3-2) ... 133s Selecting previously unselected package libglib2.0-bin. 133s Preparing to unpack .../43-libglib2.0-bin_2.83.3-2_s390x.deb ... 133s Unpacking libglib2.0-bin (2.83.3-2) ... 133s Selecting previously unselected package python3-packaging. 133s Preparing to unpack .../44-python3-packaging_24.2-1_all.deb ... 133s Unpacking python3-packaging (24.2-1) ... 133s Selecting previously unselected package libgio-2.0-dev-bin. 133s Preparing to unpack .../45-libgio-2.0-dev-bin_2.83.3-2_s390x.deb ... 133s Unpacking libgio-2.0-dev-bin (2.83.3-2) ... 133s Selecting previously unselected package libglib2.0-dev-bin. 133s Preparing to unpack .../46-libglib2.0-dev-bin_2.83.3-2_s390x.deb ... 133s Unpacking libglib2.0-dev-bin (2.83.3-2) ... 133s Selecting previously unselected package libglib2.0-dev:s390x. 133s Preparing to unpack .../47-libglib2.0-dev_2.83.3-2_s390x.deb ... 133s Unpacking libglib2.0-dev:s390x (2.83.3-2) ... 133s Selecting previously unselected package libfeedback-dev:s390x. 133s Preparing to unpack .../48-libfeedback-dev_0.7.0-1_s390x.deb ... 133s Unpacking libfeedback-dev:s390x (0.7.0-1) ... 133s Setting up native-architecture (0.2.5) ... 133s Setting up libgirepository-2.0-0:s390x (2.83.3-2) ... 133s Setting up libfeedback-0.0-0:s390x (0.7.0-1) ... 133s Setting up libglib2.0-bin (2.83.3-2) ... 133s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 133s Setting up libffi-dev:s390x (3.4.7-1) ... 133s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 133s Setting up libsysprof-capture-4-dev:s390x (48~beta-2) ... 133s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 133s Setting up python3-packaging (24.2-1) ... 133s Setting up libpkgconf3:s390x (1.8.1-4) ... 133s Setting up uuid-dev:s390x (2.40.2-14ubuntu1) ... 133s Setting up libmpc3:s390x (1.3.1-1build2) ... 133s Setting up libsepol-dev:s390x (3.7-1) ... 133s Setting up pkgconf-bin (1.8.1-4) ... 133s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 133s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 133s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 133s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 133s Setting up libisl23:s390x (0.27-1) ... 133s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 133s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 133s Setting up libblkid-dev:s390x (2.40.2-14ubuntu1) ... 133s Setting up libgio-2.0-dev-bin (2.83.3-2) ... 133s Setting up girepository-tools:s390x (2.83.3-2) ... 133s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 133s Setting up libselinux1-dev:s390x (3.7-3ubuntu2) ... 133s Setting up gir1.2-lfb-0.0:s390x (0.7.0-1) ... 133s Setting up pkgconf:s390x (1.8.1-4) ... 133s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu3) ... 133s Setting up cpp-14 (14.2.0-17ubuntu3) ... 133s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu3) ... 133s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu3) ... 133s Setting up libmount-dev:s390x (2.40.2-14ubuntu1) ... 133s Setting up libglib2.0-dev-bin (2.83.3-2) ... 133s Setting up libgio-2.0-dev:s390x (2.83.3-2) ... 133s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 133s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu3) ... 133s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 133s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu3) ... 133s Setting up cpp (4:14.2.0-1ubuntu1) ... 133s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 133s Setting up gcc-14 (14.2.0-17ubuntu3) ... 133s Setting up g++-14 (14.2.0-17ubuntu3) ... 133s Setting up gcc (4:14.2.0-1ubuntu1) ... 133s Setting up g++ (4:14.2.0-1ubuntu1) ... 133s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 133s Setting up build-essential (12.12) ... 133s Processing triggers for install-info (7.1.1-1) ... 133s Processing triggers for libc-bin (2.40-4ubuntu1) ... 133s Processing triggers for man-db (2.13.0-1) ... 134s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 134s No schema files found: doing nothing. 134s Setting up libglib2.0-dev:s390x (2.83.3-2) ... 134s Setting up libfeedback-dev:s390x (0.7.0-1) ... 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libfeedback-dev'], kind short, sout pipe, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ed7AnL/build-test-packages.all"], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/build-test-packages.all /tmp/autopkgtest-work.15mnm6h2/out/build-test-packages.all 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ed7AnL/build.H9w/src'], kind short, sout raw, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ed7AnL/build.H9w/src already exists 135s autopkgtest [13:07:50]: test build-test: [----------------------- 135s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.ed7AnL/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ed7AnL/build-test-artifacts --chdir=/tmp/autopkgtest.ed7AnL/build.H9w/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.ed7AnL/build-test-stderr --stdout=/tmp/autopkgtest.ed7AnL/build-test-stdout --tmp=/tmp/autopkgtest.ed7AnL/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=build-essential/12.12 --make-executable=/tmp/autopkgtest.ed7AnL/build.H9w/src/debian/tests/build-test -- /tmp/autopkgtest.ed7AnL/build.H9w/src/debian/tests/build-test'], kind test, sout raw, serr raw, env [] 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ed7AnL/build-test-artifacts 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: changing to directory: /tmp/autopkgtest.ed7AnL/build.H9w/src 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: LANG=C.UTF-8 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LANGUAGE 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_ADDRESS 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_ALL 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_COLLATE 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_CTYPE 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_IDENTIFICATION 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MEASUREMENT 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MESSAGES 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MONETARY 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_NAME 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_NUMERIC 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_PAPER 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_TELEPHONE 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_TIME 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: pretending to be a login shell 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: will write standard error to /tmp/autopkgtest.ed7AnL/build-test-stderr 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: will write stdout to /tmp/autopkgtest.ed7AnL/build-test-stdout 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ed7AnL/autopkgtest_tmp 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=build-essential/12.12 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: marking as executable: /tmp/autopkgtest.ed7AnL/build.H9w/src/debian/tests/build-test 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: command to run: /tmp/autopkgtest.ed7AnL/build.H9w/src/debian/tests/build-test 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: copying /tmp/tmp.qnI1yEAnx6/out to stdout and file: /tmp/autopkgtest.ed7AnL/build-test-stdout 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: copying /tmp/tmp.qnI1yEAnx6/err to standard error and file: /tmp/autopkgtest.ed7AnL/build-test-stdout 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: writing script pid 1967 to /tmp/autopkgtest_script_pid 135s gcc -o t1 -I/usr/include/libfeedback-0.0 -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/sysprof-6 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gio-unix-2.0 -pthread debian/tests/build-test.c -lfeedback-0.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 135s Build test of debian/tests/build-test.c succeeded 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: checking for leaked background processes... 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: waiting for tee/cat subprocesses... 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: cleaning up... 135s /tmp/autopkgtest.ed7AnL/wrapper.sh: Exit status: 0 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [13:07:50]: test build-test: -----------------------] 135s autopkgtest: DBG: testbed executing test finished with exit status 0 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/build-test-stdout /tmp/autopkgtest-work.15mnm6h2/out/build-test-stdout 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/build-test-stderr /tmp/autopkgtest-work.15mnm6h2/out/build-test-stderr 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest [13:07:51]: test build-test: - - - - - - - - - - results - - - - - - - - - - 136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/build-test-artifacts/ /tmp/autopkgtest-work.15mnm6h2/out/artifacts/ 136s build-test PASS (superficial) 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ed7AnL/build-test-artifacts', '/tmp/autopkgtest.ed7AnL/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [13:07:51]: test command1: preparing testbed 136s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'libfeedback-dev', 'pkg-config'], deps_new=['gir1.2-lfb-0.0', 'python3', 'python3-gi'] 136s autopkgtest: DBG: testbed reset 136s autopkgtest: DBG: sending command to testbed: revert 230s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ed7AnL 230s autopkgtest: DBG: sending command to testbed: print-execute-command 230s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ks26_9f1/runcmd 230s autopkgtest: DBG: sending command to testbed: capabilities 230s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed reboot ok isolation-machine revert-full-system revert 230s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'reboot', 'ok', 'isolation-machine', 'revert-full-system', 'revert', 'has_internet'] 230s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 230s autopkgtest: DBG: testbed command exited with code 0 230s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ed7AnL/wrapper.sh 230s autopkgtest: DBG: got reply from testbed: ok 230s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/wrapper.sh'], kind short, sout raw, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest [13:09:26]: testbed dpkg architecture: s390x 231s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest [13:09:26]: testbed apt version: 2.9.30ubuntu1 231s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed has eatmydata 231s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest [13:09:27]: @@@@@@@@@@@@@@@@@@@@ test bed setup 232s 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 [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest [13:09:27]: testbed release detected to be: plucky 232s 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 [] 232s autopkgtest: DBG: testbed command exited with code 0 232s 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 [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: adding APT source: Types: deb deb-src 232s URIs: http://ftpmaster.internal/ubuntu/ 232s Suites: plucky-proposed 232s Components: main restricted universe multiverse 232s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 232s 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 [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 232s Package: * 232s Pin: release plucky-proposed 232s Pin-Priority: 500 232s 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 [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest [13:09:28]: updating testbed package index (apt update) 233s 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'] 233s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 233s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 233s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 233s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 233s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 233s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 234s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 234s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 234s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 234s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 234s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 234s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 234s Fetched 1711 kB in 1s (1795 kB/s) 234s Reading package lists... 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 234s Package: * 234s Pin: release plucky-proposed 234s Pin-Priority: 100 234s 234s Package: src:build-essential:any 234s Pin: release plucky-proposed 234s Pin-Priority: 995 234s 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:build-essential:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 235s autopkgtest: DBG: testbed command exited with code 0 235s 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.ed7AnL/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 235s autopkgtest: DBG: testbed command exited with code 0 235s 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'] 235s + lsb_release --codename --short 235s Reading package lists...+ RELEASE=plucky 235s + cat 235s + [ plucky != trusty ] 235s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 235s 235s Building dependency tree... 235s Reading state information... 235s Calculating upgrade... 235s Calculating upgrade... 235s The following packages were automatically installed and are no longer required: 235s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 235s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 235s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 235s linux-tools-6.11.0-8-generic 235s Use 'sudo apt autoremove' to remove them. 235s The following packages will be upgraded: 235s base-files gcc-14-base motd-news-config 236s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 236s Need to get 134 kB of archives. 236s After this operation, 0 B of additional disk space will be used. 236s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 236s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 236s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 236s Fetched 134 kB in 0s (334 kB/s) 236s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 236s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 236s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 236s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 236s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 236s Setting up base-files (13.6ubuntu1) ... 236s Updating /root/.profile to current default. 237s motd-news.service is a disabled or a static unit not running, not starting it. 237s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 237s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 237s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 237s Setting up motd-news-config (13.6ubuntu1) ... 237s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 237s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 237s Processing triggers for install-info (7.1.1-1) ... 237s Processing triggers for man-db (2.13.0-1) ... 237s Processing triggers for initramfs-tools (0.145ubuntu2) ... 237s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 237s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 241s Using config file '/etc/zipl.conf' 241s Building bootmap in '/boot' 241s Adding IPL section 'ubuntu' (default) 241s Preparing boot device for LD-IPL: vda (0000). 241s Done. 241s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 241s + /usr/lib/apt/apt-helper analyze-pattern ?true 241s + uname -r 241s + sed s/\./\\./g 241s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 241s + apt list ?obsolete 241s + tail+ cut -d/ -f1 241s -n+2 241s + grep -v ^linux-.*6\.12\.0-15-generic.* 241s + true 241s + obsolete_pkgs= 241s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 241s Reading package lists... 241s Building dependency tree... 241s Reading state information... 242s Solving dependencies... 242s The following packages will be REMOVED: 242s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 242s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 242s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 242s linux-tools-6.11.0-8-generic* 242s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 242s After this operation, 167 MB disk space will be freed. 242s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 242s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 242s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 242s Removing libpython3.12t64:s390x (3.12.9-1) ... 242s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 242s Removing libnsl2:s390x (1.3.0-3build3) ... 242s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 242s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 242s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 243s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 243s Processing triggers for libc-bin (2.40-4ubuntu1) ... 243s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 243s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 243s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 243s + grep -q trusty /etc/lsb-release 243s + [ ! -d /usr/share/doc/unattended-upgrades ] 243s + [ ! -d /usr/share/doc/lxd ] 243s + [ ! -d /usr/share/doc/lxd-client ] 243s + [ ! -d /usr/share/doc/snapd ] 243s + type iptables 243s + cat 243s + chmod 755 /etc/rc.local 243s + . /etc/rc.local 243s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 243s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 243s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 243s + uname -m 243s + [ s390x = ppc64le ] 243s + [ -d /run/systemd/system ] 243s + systemd-detect-virt --quiet --vm 243s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 243s + cat 243s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 243s + echo COMPRESS=lz4 243s autopkgtest: DBG: testbed command exited with code 0 243s autopkgtest [13:09:38]: upgrading testbed (apt dist-upgrade and autopurge) 243s 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'] 243s Reading package lists... 243s Building dependency tree... 243s Reading state information... 244s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 244s Starting 2 pkgProblemResolver with broken count: 0 244s Done 244s Entering ResolveByKeep 244s 244s Calculating upgrade... 244s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 244s autopkgtest: DBG: testbed command exited with code 0 244s 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'] 244s Reading package lists... 244s Building dependency tree... 244s Reading state information... 244s Starting pkgProblemResolver with broken count: 0 244s Starting 2 pkgProblemResolver with broken count: 0 244s Done 245s Solving dependencies... 245s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 245s autopkgtest: DBG: testbed command exited with code 0 245s 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.ed7AnL/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 245s autopkgtest: DBG: testbed command exited with code 1 245s autopkgtest [13:09:40]: rebooting testbed after setup commands that affected boot 245s autopkgtest: DBG: sending command to testbed: reboot 265s autopkgtest: DBG: got reply from testbed: ok 265s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 265s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 265s autopkgtest: DBG: testbed command exited with code 0 265s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot 265s autopkgtest: DBG: got reply from testbed: ok 265s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare 267s autopkgtest: DBG: got reply from testbed: ok 267s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 268s autopkgtest: DBG: testbed command exited with code 0 268s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 268s autopkgtest: DBG: testbed command exited with code 0 268s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ed7AnL/testbed-packages"], kind short, sout raw, serr pipe, env [] 268s autopkgtest: DBG: testbed command exited with code 0 268s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/testbed-packages /tmp/autopkgtest-work.15mnm6h2/out/testbed-packages 269s autopkgtest: DBG: got reply from testbed: ok 269s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 269s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 270s autopkgtest: DBG: testbed command exited with code 0 270s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot 270s autopkgtest: DBG: got reply from testbed: ok 270s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 270s autopkgtest: DBG: testbed command exited with code 0 270s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 271s autopkgtest: DBG: testbed command exited with code 0 271s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 271s autopkgtest: DBG: testbed command exited with code 0 271s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 271s autopkgtest: DBG: testbed command exited with code 0 271s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare 272s autopkgtest: DBG: got reply from testbed: ok 272s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 272s autopkgtest: DBG: testbed command exited with code 0 272s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 272s autopkgtest: DBG: testbed command exited with code 0 272s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 272s autopkgtest: DBG: testbed command exited with code 0 272s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 272s autopkgtest: DBG: install_deps: deps_new=['gir1.2-lfb-0.0', 'python3', 'python3-gi'] 272s autopkgtest: DBG: install-deps: satisfying gir1.2-lfb-0.0, python3, python3-gi 272s autopkgtest: DBG: can use apt-get on testbed: True 272s 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', 'gir1.2-lfb-0.0, python3, python3-gi'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 272s Reading package lists... 272s Building dependency tree... 272s Reading state information... 273s Starting pkgProblemResolver with broken count: 0 273s Starting 2 pkgProblemResolver with broken count: 0 273s Done 273s The following NEW packages will be installed: 273s gir1.2-lfb-0.0 libfeedback-0.0-0 273s 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. 273s Need to get 29.4 kB of archives. 273s After this operation, 123 kB of additional disk space will be used. 273s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libfeedback-0.0-0 s390x 0.7.0-1 [24.4 kB] 273s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x gir1.2-lfb-0.0 s390x 0.7.0-1 [5074 B] 273s Fetched 29.4 kB in 0s (102 kB/s) 273s Selecting previously unselected package libfeedback-0.0-0:s390x. 273s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 273s Preparing to unpack .../libfeedback-0.0-0_0.7.0-1_s390x.deb ... 273s Unpacking libfeedback-0.0-0:s390x (0.7.0-1) ... 273s Selecting previously unselected package gir1.2-lfb-0.0:s390x. 273s Preparing to unpack .../gir1.2-lfb-0.0_0.7.0-1_s390x.deb ... 273s Unpacking gir1.2-lfb-0.0:s390x (0.7.0-1) ... 273s Setting up libfeedback-0.0-0:s390x (0.7.0-1) ... 273s Setting up gir1.2-lfb-0.0:s390x (0.7.0-1) ... 273s Processing triggers for libc-bin (2.40-4ubuntu1) ... 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gir1.2-lfb-0.0'], kind short, sout pipe, serr pipe, env [] 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ed7AnL/command1-packages.all"], kind short, sout raw, serr pipe, env [] 274s autopkgtest: DBG: testbed command exited with code 0 274s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command1-packages.all /tmp/autopkgtest-work.15mnm6h2/out/command1-packages.all 274s autopkgtest: DBG: got reply from testbed: ok 276s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ed7AnL/build.H9w/src'], kind short, sout raw, serr raw, env [] 276s autopkgtest: DBG: testbed command exited with code 1 276s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL/build.H9w'], kind short, sout raw, serr pipe, env [] 276s autopkgtest: DBG: testbed command exited with code 0 276s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.15mnm6h2/out/tests-tree/ /tmp/autopkgtest.ed7AnL/build.H9w/src/ 278s autopkgtest: DBG: got reply from testbed: ok 278s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.ed7AnL/build.H9w/src'], kind short, sout raw, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest [13:10:13]: test command1: python3 -c 'import gi; from gi.repository import Lfb' 278s autopkgtest [13:10:13]: test command1: [----------------------- 278s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.ed7AnL/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ed7AnL/command1-artifacts --chdir=/tmp/autopkgtest.ed7AnL/build.H9w/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.ed7AnL/command1-stderr --stdout=/tmp/autopkgtest.ed7AnL/command1-stdout --tmp=/tmp/autopkgtest.ed7AnL/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=build-essential/12.12 -- bash -ec \'python3 -c \'"\'"\'import gi; from gi.repository import Lfb\'"\'"\'\''], kind test, sout raw, serr raw, env [] 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ed7AnL/command1-artifacts 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: changing to directory: /tmp/autopkgtest.ed7AnL/build.H9w/src 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: LANG=C.UTF-8 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LANGUAGE 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_ADDRESS 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_ALL 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_COLLATE 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_CTYPE 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_IDENTIFICATION 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MEASUREMENT 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MESSAGES 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MONETARY 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_NAME 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_NUMERIC 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_PAPER 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_TELEPHONE 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_TIME 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: pretending to be a login shell 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: will write standard error to /tmp/autopkgtest.ed7AnL/command1-stderr 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: will write stdout to /tmp/autopkgtest.ed7AnL/command1-stdout 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ed7AnL/autopkgtest_tmp 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=build-essential/12.12 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: command to run: bash -ec python3 -c 'import gi; from gi.repository import Lfb' 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: copying /tmp/tmp.uIA8cftEkN/out to stdout and file: /tmp/autopkgtest.ed7AnL/command1-stdout 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: copying /tmp/tmp.uIA8cftEkN/err to standard error and file: /tmp/autopkgtest.ed7AnL/command1-stdout 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: writing script pid 1258 to /tmp/autopkgtest_script_pid 278s :1: PyGIWarning: Lfb was imported without specifying a version first. Use gi.require_version('Lfb', '0.0') before import to ensure that the right version gets loaded. 278s import gi; from gi.repository import Lfb 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: checking for leaked background processes... 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: waiting for tee/cat subprocesses... 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: cleaning up... 278s /tmp/autopkgtest.ed7AnL/wrapper.sh: Exit status: 0 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest [13:10:13]: test command1: -----------------------] 278s autopkgtest: DBG: testbed executing test finished with exit status 0 278s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command1-stdout /tmp/autopkgtest-work.15mnm6h2/out/command1-stdout 279s autopkgtest: DBG: got reply from testbed: ok 279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command1-stderr /tmp/autopkgtest-work.15mnm6h2/out/command1-stderr 279s autopkgtest: DBG: got reply from testbed: ok 279s autopkgtest [13:10:14]: test command1: - - - - - - - - - - results - - - - - - - - - - 279s command1 PASS (superficial) 279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command1-artifacts/ /tmp/autopkgtest-work.15mnm6h2/out/artifacts/ 279s autopkgtest: DBG: got reply from testbed: ok 279s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ed7AnL/command1-artifacts', '/tmp/autopkgtest.ed7AnL/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 280s autopkgtest: DBG: testbed command exited with code 0 280s autopkgtest [13:10:15]: test command2: preparing testbed 280s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['gir1.2-lfb-0.0', 'python3', 'python3-gi'], deps_new=['feedbackd'] 280s autopkgtest: DBG: testbed reset 280s autopkgtest: DBG: sending command to testbed: revert 396s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ed7AnL 396s autopkgtest: DBG: sending command to testbed: print-execute-command 396s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ks26_9f1/runcmd 396s autopkgtest: DBG: sending command to testbed: capabilities 396s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu root-on-testbed reboot ok isolation-machine revert-full-system revert 396s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'root-on-testbed', 'reboot', 'ok', 'isolation-machine', 'revert-full-system', 'revert', 'has_internet'] 396s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 396s autopkgtest: DBG: testbed command exited with code 0 396s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ed7AnL/wrapper.sh 396s autopkgtest: DBG: got reply from testbed: ok 396s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/wrapper.sh'], kind short, sout raw, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest [13:12:12]: testbed dpkg architecture: s390x 397s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest [13:12:12]: testbed apt version: 2.9.30ubuntu1 397s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest: DBG: testbed has eatmydata 397s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 397s autopkgtest: DBG: testbed command exited with code 0 397s autopkgtest [13:12:12]: @@@@@@@@@@@@@@@@@@@@ test bed setup 397s 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 [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest [13:12:13]: testbed release detected to be: plucky 398s 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 [] 398s autopkgtest: DBG: testbed command exited with code 0 398s 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 [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: adding APT source: Types: deb deb-src 398s URIs: http://ftpmaster.internal/ubuntu/ 398s Suites: plucky-proposed 398s Components: main restricted universe multiverse 398s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 398s 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 [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 398s Package: * 398s Pin: release plucky-proposed 398s Pin-Priority: 500 398s 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 [] 398s autopkgtest: DBG: testbed command exited with code 0 398s autopkgtest [13:12:13]: updating testbed package index (apt update) 398s 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'] 399s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 399s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 399s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 399s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 399s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.8 kB] 399s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 399s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [719 kB] 399s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [90.3 kB] 399s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [131 kB] 399s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 399s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [637 kB] 399s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4436 B] 399s Fetched 1711 kB in 1s (1865 kB/s) 400s Reading package lists... 400s autopkgtest: DBG: testbed command exited with code 0 400s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 400s Package: * 400s Pin: release plucky-proposed 400s Pin-Priority: 100 400s 400s Package: src:build-essential:any 400s Pin: release plucky-proposed 400s Pin-Priority: 995 400s 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:build-essential:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 400s autopkgtest: DBG: testbed command exited with code 0 400s 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.ed7AnL/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 400s autopkgtest: DBG: testbed command exited with code 0 400s 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'] 401s + lsb_release --codename --short 401s + RELEASE=plucky 401s + cat 401s + [ plucky != trusty ] 401s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 401s Reading package lists... 401s Building dependency tree... 401s Reading state information... 401s Calculating upgrade... 401s Calculating upgrade... 401s The following packages were automatically installed and are no longer required: 401s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 401s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 401s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 401s linux-tools-6.11.0-8-generic 401s Use 'sudo apt autoremove' to remove them. 401s The following packages will be upgraded: 401s base-files gcc-14-base motd-news-config 401s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 401s Need to get 134 kB of archives. 401s After this operation, 0 B of additional disk space will be used. 401s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x motd-news-config all 13.6ubuntu1 [5168 B] 401s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.6ubuntu1 [75.4 kB] 401s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu3 [53.6 kB] 402s Fetched 134 kB in 0s (322 kB/s) 402s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 402s Preparing to unpack .../motd-news-config_13.6ubuntu1_all.deb ... 402s Unpacking motd-news-config (13.6ubuntu1) over (13.5ubuntu3) ... 402s Preparing to unpack .../base-files_13.6ubuntu1_s390x.deb ... 402s Unpacking base-files (13.6ubuntu1) over (13.5ubuntu3) ... 402s Setting up base-files (13.6ubuntu1) ... 402s Updating /root/.profile to current default. 402s motd-news.service is a disabled or a static unit not running, not starting it. 402s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 402s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu3_s390x.deb ... 402s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu3) over (14.2.0-17ubuntu1) ... 402s Setting up motd-news-config (13.6ubuntu1) ... 402s Setting up gcc-14-base:s390x (14.2.0-17ubuntu3) ... 402s Processing triggers for plymouth-theme-ubuntu-text (24.004.60-2ubuntu5) ... 403s Processing triggers for install-info (7.1.1-1) ... 403s Processing triggers for man-db (2.13.0-1) ... 403s Processing triggers for initramfs-tools (0.145ubuntu2) ... 403s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 403s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 407s Using config file '/etc/zipl.conf' 407s Building bootmap in '/boot' 407s Adding IPL section 'ubuntu' (default) 407s Preparing boot device for LD-IPL: vda (0000). 407s Done. 407s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 407s + /usr/lib/apt/apt-helper analyze-pattern ?true 407s + uname -r 407s + sed s/\./\\./g 407s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 407s + apt list ?obsolete 407s + tail -n+2 407s + cut -d/ -f1 407s + grep -v ^linux-.*6\.12\.0-15-generic.* 407s + true 407s + obsolete_pkgs= 407s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 407s Reading package lists... 407s Building dependency tree... 407s Reading state information... 407s Solving dependencies... 407s The following packages will be REMOVED: 407s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 407s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 407s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 407s linux-tools-6.11.0-8-generic* 407s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 407s After this operation, 167 MB disk space will be freed. 407s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 407s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 407s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 407s Removing libpython3.12t64:s390x (3.12.9-1) ... 407s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 407s Removing libnsl2:s390x (1.3.0-3build3) ... 407s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 408s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 408s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 408s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 408s Processing triggers for libc-bin (2.40-4ubuntu1) ... 408s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 408s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 408s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 409s + grep -q trusty /etc/lsb-release 409s + [ ! -d /usr/share/doc/unattended-upgrades ] 409s + [ ! -d /usr/share/doc/lxd ] 409s + [ ! -d /usr/share/doc/lxd-client ] 409s + [ ! -d /usr/share/doc/snapd ] 409s + type iptables 409s + cat 409s + chmod 755 /etc/rc.local 409s + . /etc/rc.local 409s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 409s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 409s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 409s + uname -m 409s + [ s390x = ppc64le ] 409s + [ -d /run/systemd/system ] 409s + systemd-detect-virt --quiet --vm 409s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 409s + cat 409s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 409s + echo COMPRESS=lz4 409s autopkgtest: DBG: testbed command exited with code 0 409s autopkgtest [13:12:24]: upgrading testbed (apt dist-upgrade and autopurge) 409s 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'] 409s Reading package lists... 409s Building dependency tree... 409s Reading state information... 409s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 409s Starting 2 pkgProblemResolver with broken count: 0 409s Done 409s Entering ResolveByKeep 409s 409s Calculating upgrade... 410s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 410s autopkgtest: DBG: testbed command exited with code 0 410s 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'] 410s Reading package lists... 410s Building dependency tree... 410s Reading state information... 410s Starting pkgProblemResolver with broken count: 0 410s Starting 2 pkgProblemResolver with broken count: 0 410s Done 410s Solving dependencies... 410s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 410s autopkgtest: DBG: testbed command exited with code 0 410s 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.ed7AnL/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 410s autopkgtest: DBG: testbed command exited with code 1 410s autopkgtest [13:12:25]: rebooting testbed after setup commands that affected boot 410s autopkgtest: DBG: sending command to testbed: reboot 429s autopkgtest: DBG: got reply from testbed: ok 429s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 429s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 429s autopkgtest: DBG: testbed command exited with code 0 429s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot 429s autopkgtest: DBG: got reply from testbed: ok 429s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 430s autopkgtest: DBG: testbed command exited with code 0 430s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 430s autopkgtest: DBG: testbed command exited with code 0 430s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 430s autopkgtest: DBG: testbed command exited with code 0 430s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 430s autopkgtest: DBG: testbed command exited with code 0 430s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare 431s autopkgtest: DBG: got reply from testbed: ok 431s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 431s autopkgtest: DBG: testbed command exited with code 0 431s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 431s autopkgtest: DBG: testbed command exited with code 0 431s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 431s autopkgtest: DBG: testbed command exited with code 0 431s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ed7AnL/testbed-packages"], kind short, sout raw, serr pipe, env [] 431s autopkgtest: DBG: testbed command exited with code 0 431s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/testbed-packages /tmp/autopkgtest-work.15mnm6h2/out/testbed-packages 432s autopkgtest: DBG: got reply from testbed: ok 432s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 432s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 432s autopkgtest: DBG: testbed command exited with code 0 432s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot 432s autopkgtest: DBG: got reply from testbed: ok 432s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 432s autopkgtest: DBG: testbed command exited with code 0 432s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 433s autopkgtest: DBG: testbed command exited with code 0 433s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 433s autopkgtest: DBG: testbed command exited with code 0 433s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL'], kind short, sout raw, serr pipe, env [] 433s autopkgtest: DBG: testbed command exited with code 0 433s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare 433s autopkgtest: DBG: got reply from testbed: ok 433s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 433s autopkgtest: DBG: testbed command exited with code 0 433s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ed7AnL/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 433s autopkgtest: DBG: testbed command exited with code 0 433s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 434s autopkgtest: DBG: testbed command exited with code 0 434s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 434s autopkgtest: DBG: install_deps: deps_new=['feedbackd'] 434s autopkgtest: DBG: install-deps: satisfying feedbackd 434s autopkgtest: DBG: can use apt-get on testbed: True 434s 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', 'feedbackd'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 434s Reading package lists... 434s Building dependency tree... 434s Reading state information... 434s Starting pkgProblemResolver with broken count: 0 434s Starting 2 pkgProblemResolver with broken count: 0 434s Done 434s The following NEW packages will be installed: 434s dconf-gsettings-backend dconf-service feedbackd feedbackd-common 434s libasound2-data libasound2t64 libcanberra0 libdconf1 libfeedback-0.0-0 434s libgmobile-common libgmobile0 libgsound0t64 libltdl7 libogg0 libtdb1 434s libvorbis0a libvorbisfile3 sound-theme-freedesktop 435s 0 upgraded, 18 newly installed, 0 to remove and 0 not upgraded. 435s Need to get 1359 kB of archives. 435s After this operation, 4101 kB of additional disk space will be used. 435s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 435s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 435s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 435s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libfeedback-0.0-0 s390x 0.7.0-1 [24.4 kB] 435s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libgmobile-common all 0.2.1-1 [6568 B] 435s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libgmobile0 s390x 0.2.1-1 [19.2 kB] 435s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 435s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 435s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 435s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libtdb1 s390x 1.4.12-1build1 [49.5 kB] 435s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 435s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 435s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 435s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x sound-theme-freedesktop all 0.8-3ubuntu1 [384 kB] 435s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcanberra0 s390x 0.30-17ubuntu1 [41.4 kB] 435s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgsound0t64 s390x 1.0.3-3.2build2 [8882 B] 435s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x feedbackd-common all 0.7.0-1 [5204 B] 435s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x feedbackd s390x 0.7.0-1 [97.1 kB] 435s Fetched 1359 kB in 1s (2258 kB/s) 435s Selecting previously unselected package libdconf1:s390x. 435s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 435s Preparing to unpack .../00-libdconf1_0.40.0-5_s390x.deb ... 435s Unpacking libdconf1:s390x (0.40.0-5) ... 435s Selecting previously unselected package dconf-service. 435s Preparing to unpack .../01-dconf-service_0.40.0-5_s390x.deb ... 435s Unpacking dconf-service (0.40.0-5) ... 435s Selecting previously unselected package dconf-gsettings-backend:s390x. 435s Preparing to unpack .../02-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 435s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 435s Selecting previously unselected package libfeedback-0.0-0:s390x. 435s Preparing to unpack .../03-libfeedback-0.0-0_0.7.0-1_s390x.deb ... 435s Unpacking libfeedback-0.0-0:s390x (0.7.0-1) ... 435s Selecting previously unselected package libgmobile-common. 435s Preparing to unpack .../04-libgmobile-common_0.2.1-1_all.deb ... 435s Unpacking libgmobile-common (0.2.1-1) ... 435s Selecting previously unselected package libgmobile0:s390x. 435s Preparing to unpack .../05-libgmobile0_0.2.1-1_s390x.deb ... 435s Unpacking libgmobile0:s390x (0.2.1-1) ... 435s Selecting previously unselected package libasound2-data. 435s Preparing to unpack .../06-libasound2-data_1.2.13-1build1_all.deb ... 435s Unpacking libasound2-data (1.2.13-1build1) ... 435s Selecting previously unselected package libasound2t64:s390x. 435s Preparing to unpack .../07-libasound2t64_1.2.13-1build1_s390x.deb ... 435s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 435s Selecting previously unselected package libltdl7:s390x. 435s Preparing to unpack .../08-libltdl7_2.5.4-3build1_s390x.deb ... 435s Unpacking libltdl7:s390x (2.5.4-3build1) ... 435s Selecting previously unselected package libtdb1:s390x. 435s Preparing to unpack .../09-libtdb1_1.4.12-1build1_s390x.deb ... 435s Unpacking libtdb1:s390x (1.4.12-1build1) ... 435s Selecting previously unselected package libogg0:s390x. 435s Preparing to unpack .../10-libogg0_1.3.5-3build1_s390x.deb ... 435s Unpacking libogg0:s390x (1.3.5-3build1) ... 435s Selecting previously unselected package libvorbis0a:s390x. 436s Preparing to unpack .../11-libvorbis0a_1.3.7-2_s390x.deb ... 436s Unpacking libvorbis0a:s390x (1.3.7-2) ... 436s Selecting previously unselected package libvorbisfile3:s390x. 436s Preparing to unpack .../12-libvorbisfile3_1.3.7-2_s390x.deb ... 436s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 436s Selecting previously unselected package sound-theme-freedesktop. 436s Preparing to unpack .../13-sound-theme-freedesktop_0.8-3ubuntu1_all.deb ... 436s Unpacking sound-theme-freedesktop (0.8-3ubuntu1) ... 436s Selecting previously unselected package libcanberra0:s390x. 436s Preparing to unpack .../14-libcanberra0_0.30-17ubuntu1_s390x.deb ... 436s Unpacking libcanberra0:s390x (0.30-17ubuntu1) ... 436s Selecting previously unselected package libgsound0t64:s390x. 436s Preparing to unpack .../15-libgsound0t64_1.0.3-3.2build2_s390x.deb ... 436s Unpacking libgsound0t64:s390x (1.0.3-3.2build2) ... 436s Selecting previously unselected package feedbackd-common. 436s Preparing to unpack .../16-feedbackd-common_0.7.0-1_all.deb ... 436s Unpacking feedbackd-common (0.7.0-1) ... 436s Selecting previously unselected package feedbackd. 436s Preparing to unpack .../17-feedbackd_0.7.0-1_s390x.deb ... 436s Unpacking feedbackd (0.7.0-1) ... 436s Setting up libogg0:s390x (1.3.5-3build1) ... 436s Setting up libtdb1:s390x (1.4.12-1build1) ... 436s Setting up libfeedback-0.0-0:s390x (0.7.0-1) ... 436s Setting up libdconf1:s390x (0.40.0-5) ... 436s Setting up libasound2-data (1.2.13-1build1) ... 436s Setting up libasound2t64:s390x (1.2.13-1build1) ... 436s Setting up libvorbis0a:s390x (1.3.7-2) ... 436s Setting up libgmobile-common (0.2.1-1) ... 436s Setting up libltdl7:s390x (2.5.4-3build1) ... 436s Setting up sound-theme-freedesktop (0.8-3ubuntu1) ... 436s Setting up libgmobile0:s390x (0.2.1-1) ... 436s Setting up dconf-service (0.40.0-5) ... 436s Setting up libvorbisfile3:s390x (1.3.7-2) ... 436s Setting up libcanberra0:s390x (0.30-17ubuntu1) ... 436s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 436s Setting up libgsound0t64:s390x (1.0.3-3.2build2) ... 436s Setting up feedbackd-common (0.7.0-1) ... 436s Processing triggers for man-db (2.13.0-1) ... 436s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 436s Processing triggers for udev (257.2-3ubuntu1) ... 437s Processing triggers for libc-bin (2.40-4ubuntu1) ... 437s Setting up feedbackd (0.7.0-1) ... 437s Created symlink '/etc/systemd/user/graphical-session.target.wants/fbd-alert-slider.service' → '/usr/lib/systemd/user/fbd-alert-slider.service'. 437s autopkgtest: DBG: testbed command exited with code 0 437s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'feedbackd'], kind short, sout pipe, serr pipe, env [] 437s autopkgtest: DBG: testbed command exited with code 0 437s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ed7AnL/command2-packages.all"], kind short, sout raw, serr pipe, env [] 439s autopkgtest: DBG: testbed command exited with code 0 439s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command2-packages.all /tmp/autopkgtest-work.15mnm6h2/out/command2-packages.all 440s autopkgtest: DBG: got reply from testbed: ok 440s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ed7AnL/build.H9w/src'], kind short, sout raw, serr raw, env [] 440s autopkgtest: DBG: testbed command exited with code 1 440s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ed7AnL/build.H9w'], kind short, sout raw, serr pipe, env [] 440s autopkgtest: DBG: testbed command exited with code 0 440s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.15mnm6h2/out/tests-tree/ /tmp/autopkgtest.ed7AnL/build.H9w/src/ 441s autopkgtest: DBG: got reply from testbed: ok 441s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.ed7AnL/build.H9w/src'], kind short, sout raw, serr pipe, env [] 441s autopkgtest: DBG: testbed command exited with code 0 441s autopkgtest [13:12:56]: test command2: fbd-theme-validate /usr/share/feedbackd/themes/default.json 441s autopkgtest [13:12:56]: test command2: [----------------------- 441s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ed7AnL/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ed7AnL/command2-artifacts --chdir=/tmp/autopkgtest.ed7AnL/build.H9w/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.ed7AnL/command2-stderr --stdout=/tmp/autopkgtest.ed7AnL/command2-stdout --tmp=/tmp/autopkgtest.ed7AnL/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=build-essential/12.12 -- bash -ec 'fbd-theme-validate /usr/share/feedbackd/themes/default.json'"], kind test, sout raw, serr raw, env [] 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ed7AnL/command2-artifacts 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: changing to directory: /tmp/autopkgtest.ed7AnL/build.H9w/src 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: LANG=C.UTF-8 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LANGUAGE 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_ADDRESS 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_ALL 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_COLLATE 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_CTYPE 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_IDENTIFICATION 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MEASUREMENT 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MESSAGES 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_MONETARY 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_NAME 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_NUMERIC 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_PAPER 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_TELEPHONE 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: unsetting environment: LC_TIME 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: pretending to be a login shell 441s Loading theme file at '/usr/share/feedbackd/themes/default.json' 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: will write standard error to /tmp/autopkgtest.ed7AnL/command2-stderr 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: will write stdout to /tmp/autopkgtest.ed7AnL/command2-stdout 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ed7AnL/autopkgtest_tmp 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=build-essential/12.12 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: command to run: bash -ec fbd-theme-validate /usr/share/feedbackd/themes/default.json 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: copying /tmp/tmp.DOJYHnSo97/out to stdout and file: /tmp/autopkgtest.ed7AnL/command2-stdout 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: copying /tmp/tmp.DOJYHnSo97/err to standard error and file: /tmp/autopkgtest.ed7AnL/command2-stdout 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: writing script pid 1425 to /tmp/autopkgtest_script_pid 441s Validation successful. 441s 441s (fbd-theme-validate:1443): dconf-WARNING **: 13:14:22.390: failed to commit changes to dconf: Cannot autolaunch D-Bus without X11 $DISPLAY 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: checking for leaked background processes... 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: waiting for tee/cat subprocesses... 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: cleaning up... 441s /tmp/autopkgtest.ed7AnL/wrapper.sh: Exit status: 0 441s autopkgtest: DBG: testbed command exited with code 0 442s autopkgtest [13:12:57]: test command2: -----------------------] 442s autopkgtest: DBG: testbed executing test finished with exit status 0 442s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command2-stdout /tmp/autopkgtest-work.15mnm6h2/out/command2-stdout 442s autopkgtest: DBG: got reply from testbed: ok 442s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command2-stderr /tmp/autopkgtest-work.15mnm6h2/out/command2-stderr 442s autopkgtest: DBG: got reply from testbed: ok 442s autopkgtest [13:12:57]: test command2: - - - - - - - - - - results - - - - - - - - - - 442s command2 PASS (superficial) 442s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ed7AnL/command2-artifacts/ /tmp/autopkgtest-work.15mnm6h2/out/artifacts/ 442s autopkgtest: DBG: got reply from testbed: ok 442s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ed7AnL/command2-artifacts', '/tmp/autopkgtest.ed7AnL/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 442s autopkgtest: DBG: testbed command exited with code 0 442s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 442s autopkgtest [13:12:57]: @@@@@@@@@@@@@@@@@@@@ summary 442s build-test PASS (superficial) 442s command1 PASS (superficial) 442s command2 PASS (superficial) 442s autopkgtest: DBG: testbed stop 442s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ed7AnL 442s autopkgtest: DBG: sending command to testbed: close 448s autopkgtest: DBG: got reply from testbed: ok 448s autopkgtest: DBG: sending command to testbed: quit 448s nova [W] Using flock in prodstack6-s390x 448s Creating nova instance adt-plucky-s390x-feedbackd-20250221-130534-juju-7f2275-prod-proposed-migration-environment-15-e0e19064-db0b-48e1-a75f-71665e4e5229 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 448s nova [W] Timed out waiting for f31db590-1b0e-4a5d-bc3e-69d55d6a78f5 to get deleted. 448s nova [W] Using flock in prodstack6-s390x 448s Creating nova instance adt-plucky-s390x-feedbackd-20250221-130534-juju-7f2275-prod-proposed-migration-environment-15-e0e19064-db0b-48e1-a75f-71665e4e5229 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 448s nova [W] Timed out waiting for 029dd987-1bce-4a2c-840d-8316fe6b72da to get deleted. 448s nova [W] Using flock in prodstack6-s390x 448s flock: timeout while waiting to get lock 448s Creating nova instance adt-plucky-s390x-feedbackd-20250221-130534-juju-7f2275-prod-proposed-migration-environment-15-e0e19064-db0b-48e1-a75f-71665e4e5229 from image adt/ubuntu-plucky-s390x-server-20250221.img (UUID 911778ad-2250-45eb-bdc8-6f3429c92c46)... 448s nova [W] Timed out waiting for b739bd9d-f3f3-4a2e-abd5-78ed2eb86ea0 to get deleted.