0s autopkgtest: DBG: testbed init 0s autopkgtest [03:20:52]: starting date and time: 2025-02-16 03:20:52+0000 0s autopkgtest [03:20:52]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [03:20:52]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.m9hodwe_/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade sumaclust --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-28.secgroup --name adt-plucky-s390x-sumaclust-20250216-032052-juju-7f2275-prod-proposed-migration-environment-15-a1b470dc-5fed-4717-9cc4-ff011e9f69ce --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 122s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.y9PkYV 122s autopkgtest: DBG: sending command to testbed: print-execute-command 122s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.7wuyjmxf/runcmd 122s autopkgtest: DBG: sending command to testbed: capabilities 122s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert suggested-normal-user=ubuntu reboot revert-full-system root-on-testbed 122s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 122s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.y9PkYV'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.y9PkYV/wrapper.sh 122s autopkgtest: DBG: got reply from testbed: ok 122s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.y9PkYV/wrapper.sh'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [03:22:54]: testbed dpkg architecture: s390x 122s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [03:22:54]: testbed apt version: 2.9.28 122s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed has eatmydata 123s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [03:22:55]: @@@@@@@@@@@@@@@@@@@@ test bed setup 123s 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 [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [03:22:55]: testbed release detected to be: None 123s 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 [] 123s autopkgtest: DBG: testbed command exited with code 0 123s 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 [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: adding APT source: Types: deb deb-src 123s URIs: http://ftpmaster.internal/ubuntu/ 123s Suites: plucky-proposed 123s Components: main restricted universe multiverse 123s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 123s 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 [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 123s Package: * 123s Pin: release plucky-proposed 123s Pin-Priority: 500 123s 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 [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [03:22:56]: updating testbed package index (apt update) 124s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 124s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 124s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 124s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 124s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 124s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [810 kB] 125s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 125s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 125s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 125s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 125s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 125s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [855 kB] 125s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 125s Fetched 2035 kB in 1s (2141 kB/s) 125s Reading package lists... 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 125s Package: * 125s Pin: release plucky-proposed 125s Pin-Priority: 100 125s 125s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 125s Pin: release plucky-proposed 125s Pin-Priority: 995 125s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s Calculating upgrade... 126s 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.y9PkYV/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s 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'] 126s + lsb_release --codename --short 126s + RELEASE=plucky 126s + cat 126s + [ plucky != trusty ] 126s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 126s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 126s + /usr/lib/apt/apt-helper analyze-pattern ?true 126s + uname -r 126s + sed s/\./\\./g 126s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 126s + apt list ?obsolete 126s + tail -n+2 126s + + grep -v ^linux-.*6\.12\.0-15-generic.* 126s cut -d/ -f1 126s + obsolete_pkgs=linux-image-6.11.0-8-generic 126s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 126s Reading package lists... 127s Building dependency tree... 127s Reading state information... 127s The following packages will be REMOVED: 127s linux-image-6.11.0-8-generic* 127s 0 upgraded, 0 newly installed, 1 to remove and 6 not upgraded. 127s After this operation, 10.5 MB disk space will be freed. 127s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80973 files and directories currently installed.) 127s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 127s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-15-generic 127s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-15-generic 127s /etc/kernel/postrm.d/initramfs-tools: 127s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 127s /etc/kernel/postrm.d/zz-zipl: 127s Using config file '/etc/zipl.conf' 127s Building bootmap in '/boot' 127s Adding IPL section 'ubuntu' (default) 127s Preparing boot device for LD-IPL: vda (0000). 127s Done. 127s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 127s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 127s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 128s + grep -q trusty /etc/lsb-release 128s + [ ! -d /usr/share/doc/unattended-upgrades ] 128s + [ ! -d /usr/share/doc/lxd ] 128s + [ ! -d /usr/share/doc/lxd-client ] 128s + [ ! -d /usr/share/doc/snapd ] 128s + type iptables 128s + cat 128s + chmod 755 /etc/rc.local 128s + . /etc/rc.local 128s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 128s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 128s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 128s + uname -m 128s + [ s390x = ppc64le ] 128s + [ -d /run/systemd/system ] 128s + systemd-detect-virt --quiet --vm 128s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 128s + cat 128s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 128s + echo COMPRESS=lz4 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest [03:23:00]: upgrading testbed (apt dist-upgrade and autopurge) 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', 'dist-upgrade'], 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 Calculating upgrade...Starting pkgProblemResolver with broken count: 0 128s Starting 2 pkgProblemResolver with broken count: 0 128s Done 128s Entering ResolveByKeep 128s 129s The following packages were automatically installed and are no longer required: 129s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 129s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 129s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 129s linux-tools-6.11.0-8-generic 129s Use 'sudo apt autoremove' to remove them. 129s The following packages will be upgraded: 129s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 129s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 129s Need to get 10.7 MB of archives. 129s After this operation, 305 kB of additional disk space will be used. 129s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 129s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 129s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 129s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 129s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 129s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 130s Preconfiguring packages ... 130s Fetched 10.7 MB in 1s (10.8 MB/s) 130s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 130s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 130s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 130s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 130s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 130s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 130s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 130s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 130s Checking for services that may need to be restarted... 130s Checking init scripts... 130s Checking for services that may need to be restarted... 130s Checking init scripts... 130s Stopping some services possibly affected by the upgrade (will be restarted later): 130s cron: stopping...done. 130s 130s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 130s Setting up libc6:s390x (2.41-1ubuntu1) ... 130s Checking for services that may need to be restarted... 130s Checking init scripts... 130s Restarting services possibly affected by the upgrade: 130s cron: restarting...done. 130s 130s Services restarted successfully. 130s (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 ... 80970 files and directories currently installed.) 130s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 130s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 131s Setting up libc-bin (2.41-1ubuntu1) ... 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 ... 80970 files and directories currently installed.) 131s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 131s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 131s Setting up iproute2 (6.13.0-1ubuntu1) ... 131s Setting up locales (2.41-1ubuntu1) ... 131s Installing new version of config file /etc/locale.alias ... 131s Generating locales (this might take a while)... 132s en_US.UTF-8... done 132s Generation complete. 132s Setting up libc-dev-bin (2.41-1ubuntu1) ... 132s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 132s Processing triggers for man-db (2.13.0-1) ... 133s Processing triggers for systemd (257.2-3ubuntu1) ... 134s autopkgtest: DBG: testbed command exited with code 0 134s 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'] 134s Reading package lists... 134s Building dependency tree... 134s Reading state information... 134s Starting pkgProblemResolver with broken count: 0 134s Starting 2 pkgProblemResolver with broken count: 0 134s Done 134s The following packages will be REMOVED: 134s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 134s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 134s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 134s linux-tools-6.11.0-8-generic* 135s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 135s After this operation, 167 MB disk space will be freed. 135s (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 ... 80971 files and directories currently installed.) 135s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 135s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 135s Removing libpython3.12t64:s390x (3.12.9-1) ... 135s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 135s Removing libnsl2:s390x (1.3.0-3build3) ... 135s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 135s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 135s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 136s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 136s autopkgtest: DBG: testbed command exited with code 0 136s 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.y9PkYV/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 136s Processing triggers for libc-bin (2.41-1ubuntu1) ... 136s (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 ... 55871 files and directories currently installed.) 136s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 136s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 136s autopkgtest: DBG: testbed command exited with code 1 136s autopkgtest [03:23:08]: rebooting testbed after setup commands that affected boot 136s autopkgtest: DBG: sending command to testbed: reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.y9PkYV'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.y9PkYV/autopkgtest-reboot 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.y9PkYV'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.y9PkYV/autopkgtest-reboot-prepare 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest [03:23:27]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 155s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.y9PkYV/testbed-packages"], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/testbed-packages /tmp/autopkgtest-work.m9hodwe_/out/testbed-packages 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 156s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.y9PkYV'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.y9PkYV/autopkgtest-reboot 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.y9PkYV'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.y9PkYV/autopkgtest-reboot-prepare 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.y9PkYV/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: Binaries: initialising 157s autopkgtest [03:23:29]: @@@@@@@@@@@@@@@@@@@@ apt-source sumaclust 157s autopkgtest: DBG: blame += sumaclust 157s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 157s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'sumaclust'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^sumaclust$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'sumaclust=1.0.36+ds-3'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: install_deps: deps_new=[] 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s 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.y9PkYV/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source sumaclust=1.0.36+ds-3 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x sumaclust_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 159s + cd / 159s + mktemp -d /tmp/autopkgtest.y9PkYV/build.XXX 159s + builddir=/tmp/autopkgtest.y9PkYV/build.3o2 159s + cd /tmp/autopkgtest.y9PkYV/build.3o2 159s + apt-get source -d -q --only-source sumaclust=1.0.36+ds-3 159s + OUT=Reading package lists... 159s NOTICE: 'sumaclust' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/med-team/sumaclust.git 159s Please use: 159s git clone https://salsa.debian.org/med-team/sumaclust.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 124 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (dsc) [2045 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (tar) [109 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (diff) [12.5 kB] 159s Fetched 124 kB in 0s (295 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + grep ^Get: 159s + echo Reading package lists... 159s NOTICE: 'sumaclust' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/med-team/sumaclust.git 159s Please use: 159s git clone https://salsa.debian.org/med-team/sumaclust.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 124 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (dsc) [2045 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (tar) [109 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (diff) [12.5 kB] 159s Fetched 124 kB in 0s (295 kB/s) 159s Download complete and in download only mode 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (dsc) [2045 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (tar) [109 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe sumaclust 1.0.36+ds-3 (diff) [12.5 kB] 159s + dpkg-source -x sumaclust_1.0.36+ds-3.dsc src 159s gpgv: Signature made Fri Dec 13 13:05:03 2024 UTC 159s gpgv: using RSA key F1F007320A035541F0A663CA578A0494D1C646D1 159s gpgv: issuer "tille@debian.org" 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./sumaclust_1.0.36+ds-3.dsc: no acceptable signature found 159s + chmod -R a+rX . 159s + cd src/. 159s + pwd 159s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [03:23:31]: testing package sumaclust version 1.0.36+ds-3 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/ /tmp/autopkgtest-work.m9hodwe_/out/pkg/debian/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency sumaclust 160s autopkgtest: DBG: Test defined: name clusterIdenticalInputs path debian/tests/clusterIdenticalInputs command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest: DBG: Test defined: name clusterThreeInputs path debian/tests/clusterThreeInputs command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest: DBG: Test defined: name clusterTwoInputsTwoSuccessiveCalls path debian/tests/clusterTwoInputsTwoSuccessiveCalls command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest: DBG: Test defined: name clusterTwoInputsTwoThresholds path debian/tests/clusterTwoInputsTwoThresholds command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest [03:23:32]: build not needed 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/build.3o2/src/ /tmp/autopkgtest-work.m9hodwe_/out/tests-tree/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency sumaclust 160s autopkgtest: DBG: Test defined: name clusterIdenticalInputs path debian/tests/clusterIdenticalInputs command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest: DBG: Test defined: name clusterThreeInputs path debian/tests/clusterThreeInputs command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest: DBG: Test defined: name clusterTwoInputsTwoSuccessiveCalls path debian/tests/clusterTwoInputsTwoSuccessiveCalls command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest: DBG: Test defined: name clusterTwoInputsTwoThresholds path debian/tests/clusterTwoInputsTwoThresholds command "None" restrictions [] features [] depends ['sumaclust'] 160s autopkgtest [03:23:32]: test clusterIdenticalInputs: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['sumaclust'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['sumaclust'] 160s autopkgtest: DBG: install-deps: satisfying sumaclust 160s autopkgtest: DBG: can use apt-get on testbed: True 160s 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', 'sumaclust'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 160s Building dependency tree... 160s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s The following NEW packages will be installed: 161s libgomp1 libsuma1 sumaclust 161s 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 299 kB of archives. 161s After this operation, 672 kB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 161s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x libsuma1 s390x 1.0.36-5 [44.0 kB] 161s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x sumaclust s390x 1.0.36+ds-3 [105 kB] 162s Fetched 299 kB in 0s (639 kB/s) 162s Selecting previously unselected package libgomp1:s390x. 162s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 162s Preparing to unpack .../libgomp1_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package libsuma1. 162s Preparing to unpack .../libsuma1_1.0.36-5_s390x.deb ... 162s Unpacking libsuma1 (1.0.36-5) ... 162s Selecting previously unselected package sumaclust. 162s Preparing to unpack .../sumaclust_1.0.36+ds-3_s390x.deb ... 162s Unpacking sumaclust (1.0.36+ds-3) ... 162s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 162s Setting up libsuma1 (1.0.36-5) ... 162s Setting up sumaclust (1.0.36+ds-3) ... 162s Processing triggers for man-db (2.13.0-1) ... 162s Processing triggers for libc-bin (2.41-1ubuntu1) ... 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sumaclust'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-packages.all"], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-packages.all /tmp/autopkgtest-work.m9hodwe_/out/clusterIdenticalInputs-packages.all 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.y9PkYV/build.3o2/src'], kind short, sout raw, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.y9PkYV/build.3o2/src already exists 163s autopkgtest [03:23:35]: test clusterIdenticalInputs: [----------------------- 163s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.y9PkYV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-artifacts --chdir=/tmp/autopkgtest.y9PkYV/build.3o2/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.y9PkYV/clusterIdenticalInputs-stderr --stdout=/tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stdout --tmp=/tmp/autopkgtest.y9PkYV/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterIdenticalInputs -- /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterIdenticalInputs"], kind test, sout raw, serr raw, env [] 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-artifacts 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: changing to directory: /tmp/autopkgtest.y9PkYV/build.3o2/src 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: LANG=C.UTF-8 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LANGUAGE 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ADDRESS 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ALL 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_COLLATE 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_CTYPE 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MEASUREMENT 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MESSAGES 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MONETARY 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NAME 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NUMERIC 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_PAPER 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TELEPHONE 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TIME 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: pretending to be a login shell 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write standard error to /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stderr 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write stdout to /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stdout 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.y9PkYV/autopkgtest_tmp 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: marking as executable: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterIdenticalInputs 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: command to run: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterIdenticalInputs 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.TwgjFGdcov/out to stdout and file: /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stdout 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.TwgjFGdcov/err to standard error and file: /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stdout 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: writing script pid 1344 to /tmp/autopkgtest_script_pid 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: checking for leaked background processes... 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: waiting for tee/cat subprocesses... 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: cleaning up... 163s /tmp/autopkgtest.y9PkYV/wrapper.sh: Exit status: 0 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [03:23:35]: test clusterIdenticalInputs: -----------------------] 163s autopkgtest: DBG: testbed executing test finished with exit status 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stdout /tmp/autopkgtest-work.m9hodwe_/out/clusterIdenticalInputs-stdout 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-stderr /tmp/autopkgtest-work.m9hodwe_/out/clusterIdenticalInputs-stderr 164s autopkgtest: DBG: got reply from testbed: ok 164s clusterIdenticalInputs PASS 164s autopkgtest [03:23:36]: test clusterIdenticalInputs: - - - - - - - - - - results - - - - - - - - - - 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-artifacts/ /tmp/autopkgtest-work.m9hodwe_/out/artifacts/ 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.y9PkYV/clusterIdenticalInputs-artifacts', '/tmp/autopkgtest.y9PkYV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest [03:23:36]: test clusterThreeInputs: preparing testbed 164s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['sumaclust'], deps_new=['sumaclust'] 164s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 164s autopkgtest: DBG: install_deps: deps_new=['sumaclust'] 164s autopkgtest: DBG: install-deps: satisfying sumaclust 164s autopkgtest: DBG: can use apt-get on testbed: True 164s 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', 'sumaclust'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 165s Reading package lists... 165s Building dependency tree... 165s Reading state information... 165s Starting pkgProblemResolver with broken count: 0 165s Starting 2 pkgProblemResolver with broken count: 0 165s Done 165s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sumaclust'], kind short, sout pipe, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.y9PkYV/clusterThreeInputs-packages.all"], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterThreeInputs-packages.all /tmp/autopkgtest-work.m9hodwe_/out/clusterThreeInputs-packages.all 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.y9PkYV/build.3o2/src'], kind short, sout raw, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.y9PkYV/build.3o2/src already exists 166s autopkgtest [03:23:38]: test clusterThreeInputs: [----------------------- 166s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.y9PkYV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.y9PkYV/clusterThreeInputs-artifacts --chdir=/tmp/autopkgtest.y9PkYV/build.3o2/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.y9PkYV/clusterThreeInputs-stderr --stdout=/tmp/autopkgtest.y9PkYV/clusterThreeInputs-stdout --tmp=/tmp/autopkgtest.y9PkYV/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterThreeInputs -- /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterThreeInputs"], kind test, sout raw, serr raw, env [] 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.y9PkYV/clusterThreeInputs-artifacts 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: changing to directory: /tmp/autopkgtest.y9PkYV/build.3o2/src 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: LANG=C.UTF-8 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LANGUAGE 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ADDRESS 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ALL 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_COLLATE 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_CTYPE 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MEASUREMENT 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MESSAGES 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MONETARY 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NAME 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NUMERIC 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_PAPER 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TELEPHONE 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TIME 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: pretending to be a login shell 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write standard error to /tmp/autopkgtest.y9PkYV/clusterThreeInputs-stderr 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write stdout to /tmp/autopkgtest.y9PkYV/clusterThreeInputs-stdout 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.y9PkYV/autopkgtest_tmp 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: marking as executable: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterThreeInputs 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: command to run: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterThreeInputs 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.euh3sBkdo3/out to stdout and file: /tmp/autopkgtest.y9PkYV/clusterThreeInputs-stdout 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.euh3sBkdo3/err to standard error and file: /tmp/autopkgtest.y9PkYV/clusterThreeInputs-stdout 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: writing script pid 1498 to /tmp/autopkgtest_script_pid 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: checking for leaked background processes... 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: waiting for tee/cat subprocesses... 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: cleaning up... 166s /tmp/autopkgtest.y9PkYV/wrapper.sh: Exit status: 0 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [03:23:38]: test clusterThreeInputs: -----------------------] 166s autopkgtest: DBG: testbed executing test finished with exit status 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterThreeInputs-stdout /tmp/autopkgtest-work.m9hodwe_/out/clusterThreeInputs-stdout 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterThreeInputs-stderr /tmp/autopkgtest-work.m9hodwe_/out/clusterThreeInputs-stderr 166s autopkgtest: DBG: got reply from testbed: ok 167s clusterThreeInputs PASS 167s autopkgtest [03:23:39]: test clusterThreeInputs: - - - - - - - - - - results - - - - - - - - - - 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterThreeInputs-artifacts/ /tmp/autopkgtest-work.m9hodwe_/out/artifacts/ 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.y9PkYV/clusterThreeInputs-artifacts', '/tmp/autopkgtest.y9PkYV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [03:23:39]: test clusterTwoInputsTwoSuccessiveCalls: preparing testbed 167s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['sumaclust'], deps_new=['sumaclust'] 167s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 167s autopkgtest: DBG: install_deps: deps_new=['sumaclust'] 167s autopkgtest: DBG: install-deps: satisfying sumaclust 167s autopkgtest: DBG: can use apt-get on testbed: True 167s 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', 'sumaclust'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 167s Reading package lists... 167s Building dependency tree... 167s Reading state information... 167s Starting pkgProblemResolver with broken count: 0 167s Starting 2 pkgProblemResolver with broken count: 0 167s Done 168s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sumaclust'], kind short, sout pipe, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-packages.all"], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-packages.all /tmp/autopkgtest-work.m9hodwe_/out/clusterTwoInputsTwoSuccessiveCalls-packages.all 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.y9PkYV/build.3o2/src'], kind short, sout raw, serr raw, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.y9PkYV/build.3o2/src already exists 168s autopkgtest [03:23:40]: test clusterTwoInputsTwoSuccessiveCalls: [----------------------- 168s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.y9PkYV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-artifacts --chdir=/tmp/autopkgtest.y9PkYV/build.3o2/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.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stderr --stdout=/tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stdout --tmp=/tmp/autopkgtest.y9PkYV/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoSuccessiveCalls -- /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoSuccessiveCalls"], kind test, sout raw, serr raw, env [] 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-artifacts 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: changing to directory: /tmp/autopkgtest.y9PkYV/build.3o2/src 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: LANG=C.UTF-8 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LANGUAGE 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ADDRESS 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ALL 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_COLLATE 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_CTYPE 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MEASUREMENT 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MESSAGES 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MONETARY 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NAME 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NUMERIC 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_PAPER 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TELEPHONE 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TIME 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: pretending to be a login shell 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write standard error to /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stderr 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write stdout to /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stdout 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.y9PkYV/autopkgtest_tmp 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: marking as executable: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoSuccessiveCalls 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: command to run: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoSuccessiveCalls 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.f5qYXlZNs5/out to stdout and file: /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stdout 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.f5qYXlZNs5/err to standard error and file: /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stdout 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: writing script pid 1649 to /tmp/autopkgtest_script_pid 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: checking for leaked background processes... 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: waiting for tee/cat subprocesses... 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: cleaning up... 168s /tmp/autopkgtest.y9PkYV/wrapper.sh: Exit status: 0 168s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest [03:23:41]: test clusterTwoInputsTwoSuccessiveCalls: -----------------------] 169s autopkgtest: DBG: testbed executing test finished with exit status 0 169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stdout /tmp/autopkgtest-work.m9hodwe_/out/clusterTwoInputsTwoSuccessiveCalls-stdout 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-stderr /tmp/autopkgtest-work.m9hodwe_/out/clusterTwoInputsTwoSuccessiveCalls-stderr 169s autopkgtest: DBG: got reply from testbed: ok 169s clusterTwoInputsTwoSuccessiveCalls PASS 169s autopkgtest [03:23:41]: test clusterTwoInputsTwoSuccessiveCalls: - - - - - - - - - - results - - - - - - - - - - 169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-artifacts/ /tmp/autopkgtest-work.m9hodwe_/out/artifacts/ 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoSuccessiveCalls-artifacts', '/tmp/autopkgtest.y9PkYV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest [03:23:42]: test clusterTwoInputsTwoThresholds: preparing testbed 170s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['sumaclust'], deps_new=['sumaclust'] 170s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 170s autopkgtest: DBG: install_deps: deps_new=['sumaclust'] 170s autopkgtest: DBG: install-deps: satisfying sumaclust 170s autopkgtest: DBG: can use apt-get on testbed: True 170s 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', 'sumaclust'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 170s Reading package lists... 170s Building dependency tree... 170s Reading state information... 170s Starting pkgProblemResolver with broken count: 0 170s Starting 2 pkgProblemResolver with broken count: 0 170s Done 170s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sumaclust'], kind short, sout pipe, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-packages.all"], kind short, sout raw, serr pipe, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-packages.all /tmp/autopkgtest-work.m9hodwe_/out/clusterTwoInputsTwoThresholds-packages.all 172s autopkgtest: DBG: got reply from testbed: ok 172s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.y9PkYV/build.3o2/src'], kind short, sout raw, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.y9PkYV/build.3o2/src already exists 172s autopkgtest [03:23:44]: test clusterTwoInputsTwoThresholds: [----------------------- 172s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.y9PkYV/wrapper.sh --debug --artifacts=/tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-artifacts --chdir=/tmp/autopkgtest.y9PkYV/build.3o2/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.y9PkYV/clusterTwoInputsTwoThresholds-stderr --stdout=/tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stdout --tmp=/tmp/autopkgtest.y9PkYV/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoThresholds -- /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoThresholds"], kind test, sout raw, serr raw, env [] 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-artifacts 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: changing to directory: /tmp/autopkgtest.y9PkYV/build.3o2/src 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: LANG=C.UTF-8 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LANGUAGE 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ADDRESS 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_ALL 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_COLLATE 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_CTYPE 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_IDENTIFICATION 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MEASUREMENT 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MESSAGES 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_MONETARY 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NAME 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_NUMERIC 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_PAPER 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TELEPHONE 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: unsetting environment: LC_TIME 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: pretending to be a login shell 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write standard error to /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stderr 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: will write stdout to /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stdout 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.y9PkYV/autopkgtest_tmp 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: marking as executable: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoThresholds 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: command to run: /tmp/autopkgtest.y9PkYV/build.3o2/src/debian/tests/clusterTwoInputsTwoThresholds 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.yVCZZ9jDT5/out to stdout and file: /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stdout 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: copying /tmp/tmp.yVCZZ9jDT5/err to standard error and file: /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stdout 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: writing script pid 1801 to /tmp/autopkgtest_script_pid 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: checking for leaked background processes... 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: waiting for tee/cat subprocesses... 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: cleaning up... 172s /tmp/autopkgtest.y9PkYV/wrapper.sh: Exit status: 0 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest [03:23:44]: test clusterTwoInputsTwoThresholds: -----------------------] 172s autopkgtest: DBG: testbed executing test finished with exit status 0 172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stdout /tmp/autopkgtest-work.m9hodwe_/out/clusterTwoInputsTwoThresholds-stdout 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-stderr /tmp/autopkgtest-work.m9hodwe_/out/clusterTwoInputsTwoThresholds-stderr 173s autopkgtest: DBG: got reply from testbed: ok 173s clusterTwoInputsTwoThresholds PASS 173s autopkgtest [03:23:45]: test clusterTwoInputsTwoThresholds: - - - - - - - - - - results - - - - - - - - - - 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-artifacts/ /tmp/autopkgtest-work.m9hodwe_/out/artifacts/ 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.y9PkYV/clusterTwoInputsTwoThresholds-artifacts', '/tmp/autopkgtest.y9PkYV/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 173s autopkgtest [03:23:45]: @@@@@@@@@@@@@@@@@@@@ summary 173s clusterIdenticalInputs PASS 173s clusterThreeInputs PASS 173s clusterTwoInputsTwoSuccessiveCalls PASS 173s clusterTwoInputsTwoThresholds PASS 173s autopkgtest: DBG: testbed stop 173s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.y9PkYV 173s autopkgtest: DBG: sending command to testbed: close 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: sending command to testbed: quit 178s nova [W] Using flock in prodstack6-s390x 178s Creating nova instance adt-plucky-s390x-sumaclust-20250216-032052-juju-7f2275-prod-proposed-migration-environment-15-a1b470dc-5fed-4717-9cc4-ff011e9f69ce from image adt/ubuntu-plucky-s390x-server-20250216.img (UUID 67327349-c50d-4fb2-aab8-abef6582e685)... 178s nova [W] Timed out waiting for 10281270-d36f-4594-b28f-d409b7113a47 to get deleted.