0s autopkgtest: DBG: testbed init 0s autopkgtest [12:52:08]: starting date and time: 2025-02-19 12:52:08+0000 0s autopkgtest [12:52:08]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:52:08]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.k8dhwu9p/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-roborock --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-9.secgroup --name adt-plucky-s390x-python-roborock-20250219-125208-juju-7f2275-prod-proposed-migration-environment-15-e2636f96-5ceb-4270-b85b-306e4050f3db --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 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.boac6Z 105s autopkgtest: DBG: sending command to testbed: print-execute-command 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.quksvudq/runcmd 105s autopkgtest: DBG: sending command to testbed: capabilities 105s autopkgtest: DBG: got reply from testbed: ok revert revert-full-system reboot suggested-normal-user=ubuntu isolation-machine root-on-testbed 105s autopkgtest: DBG: testbed capabilities: ['revert', 'revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.boac6Z'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.boac6Z/wrapper.sh 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.boac6Z/wrapper.sh'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:53:54]: testbed dpkg architecture: s390x 106s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:53:54]: testbed apt version: 2.9.30 106s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed has eatmydata 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:53:54]: @@@@@@@@@@@@@@@@@@@@ test bed setup 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:53:54]: testbed release detected to be: None 106s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT source: Types: deb deb-src 107s URIs: http://ftpmaster.internal/ubuntu/ 107s Suites: plucky-proposed 107s Components: main restricted universe multiverse 107s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 500 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [12:53:55]: updating testbed package index (apt update) 107s 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'] 107s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 108s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 108s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 108s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 108s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 108s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 108s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 108s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 108s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 108s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 108s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 108s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 108s Fetched 1700 kB in 1s (1854 kB/s) 109s Reading package lists... 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 109s Package: * 109s Pin: release plucky-proposed 109s Pin-Priority: 100 109s 109s Package: src:sphinx:any 109s Pin: release plucky-proposed 109s Pin-Priority: 995 109s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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.boac6Z/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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'] 109s + lsb_release --codename --short 109s + RELEASE=plucky 109s + cat 109s + [ plucky != trusty ] 109s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 109s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s Calculating upgrade... 110s The following packages were automatically installed and are no longer required: 110s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 110s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 110s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 110s linux-tools-6.11.0-8-generic 110s Use 'sudo apt autoremove' to remove them. 110s The following packages will be upgraded: 110s iproute2 liblsof0 libp11-kit0 lsof 110s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 110s Need to get 1791 kB of archives. 110s After this operation, 17.4 kB of additional disk space will be used. 110s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 111s Preconfiguring packages ... 111s Fetched 1791 kB in 1s (2888 kB/s) 111s (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.) 111s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 111s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 111s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 111s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 111s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 111s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 111s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 111s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 111s Setting up liblsof0 (4.99.4+dfsg-1) ... 111s Setting up iproute2 (6.13.0-1ubuntu1) ... 111s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 111s Setting up lsof (4.99.4+dfsg-1) ... 111s Processing triggers for man-db (2.13.0-1) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 112s + /usr/lib/apt/apt-helper analyze-pattern ?true 112s + uname+ sed s/\./\\./g 112s -r 112s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 112s + apt list ?obsolete 112s + tail+ cut -d/ -f1 112s -n+2 112s + grep -v ^linux-.*6\.12\.0-15-generic.* 113s + true 113s + obsolete_pkgs= 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s The following packages will be REMOVED: 113s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 113s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 113s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 113s linux-tools-6.11.0-8-generic* 113s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 113s After this operation, 167 MB disk space will be freed. 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 113s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 113s Removing libpython3.12t64:s390x (3.12.9-1) ... 113s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 113s Removing libnsl2:s390x (1.3.0-3build3) ... 113s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 113s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 115s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 115s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 115s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s + grep -q trusty /etc/lsb-release 115s + [ ! -d /usr/share/doc/unattended-upgrades ] 115s + [ ! -d /usr/share/doc/lxd ] 115s + [ ! -d /usr/share/doc/lxd-client ] 115s + [ ! -d /usr/share/doc/snapd ] 115s + type iptables 115s + cat 115s + chmod 755 /etc/rc.local 115s + . /etc/rc.local 115s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 115s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 115s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 115s + uname -m 115s + [ s390x = ppc64le ] 115s + [ -d /run/systemd/system ] 115s + systemd-detect-virt --quiet --vm 115s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 115s + cat 115s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 115s + echo COMPRESS=lz4 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [12:54:03]: upgrading testbed (apt dist-upgrade and autopurge) 115s 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'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 116s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s Entering ResolveByKeep 116s 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 117s Starting pkgProblemResolver with broken count: 0 117s Starting 2 pkgProblemResolver with broken count: 0 117s Done 117s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s autopkgtest: DBG: testbed command exited with code 0 117s 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.boac6Z/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 117s autopkgtest: DBG: testbed command exited with code 1 117s autopkgtest [12:54:05]: rebooting testbed after setup commands that affected boot 117s autopkgtest: DBG: sending command to testbed: reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.boac6Z'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.boac6Z/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.boac6Z'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.boac6Z/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [12:54:27]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 139s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.boac6Z/testbed-packages"], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/testbed-packages /tmp/autopkgtest-work.k8dhwu9p/out/testbed-packages 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.boac6Z'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.boac6Z/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.boac6Z'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.boac6Z/autopkgtest-reboot-prepare 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.boac6Z/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: Binaries: initialising 142s autopkgtest [12:54:30]: @@@@@@@@@@@@@@@@@@@@ apt-source python-roborock 142s autopkgtest: DBG: blame += python-roborock 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 142s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-roborock'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-roborock$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-roborock=2.11.2-1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: install_deps: deps_new=[] 143s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s 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.boac6Z/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-roborock=2.11.2-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 python-roborock_*.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=sphinx/8.1.3-5'] 143s + cd / 143s + mktemp -d /tmp/autopkgtest.boac6Z/build.XXX 143s + builddir=/tmp/autopkgtest.boac6Z/build.KHh 143s + cd /tmp/autopkgtest.boac6Z/build.KHh 143s + apt-get source -d -q --only-source python-roborock=2.11.2-1 143s + OUT=Reading package lists... 143s NOTICE: 'python-roborock' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/homeassistant-team/deps/python-roborock.git 143s Please use: 143s git clone https://salsa.debian.org/homeassistant-team/deps/python-roborock.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 158 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (dsc) [2789 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (tar) [152 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (diff) [3532 B] 143s Fetched 158 kB in 0s (366 kB/s) 143s Download complete and in download only mode 143s + [ -n ] 143s + + grep ^Get: 143s echo Reading package lists... 143s NOTICE: 'python-roborock' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/homeassistant-team/deps/python-roborock.git 143s Please use: 143s git clone https://salsa.debian.org/homeassistant-team/deps/python-roborock.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 158 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (dsc) [2789 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (tar) [152 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (diff) [3532 B] 143s Fetched 158 kB in 0s (366 kB/s) 143s Download complete and in download only mode 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (dsc) [2789 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (tar) [152 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-roborock 2.11.2-1 (diff) [3532 B] 143s + dpkg-source -x python-roborock_2.11.2-1.dsc src 144s gpgv: Signature made Sun Feb 16 03:38:05 2025 UTC 144s gpgv: using RSA key FB8ACFA78C726089C38AD0269605A1098C63B92A 144s gpgv: Can't check signature: No public key 144s dpkg-source: warning: cannot verify inline signature for ./python-roborock_2.11.2-1.dsc: no acceptable signature found 144s + chmod -R a+rX . 144s + cd src/. 144s + pwd 144s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [12:54:32]: testing package python-roborock version 2.11.2-1 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/build.KHh/src/debian/ /tmp/autopkgtest-work.k8dhwu9p/out/pkg/debian/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency python3-aioresponses 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-freezegun 144s autopkgtest: DBG: processing dependency python3-pytest 144s autopkgtest: DBG: processing dependency python3-pytest-asyncio 144s autopkgtest: DBG: processing dependency python3-pytest-timeout 144s autopkgtest: DBG: processing dependency @ 144s autopkgtest: DBG: synthesised dependency python3-roborock 144s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-aioresponses', 'python3-all', 'python3-freezegun', 'python3-pytest', 'python3-pytest-asyncio', 'python3-pytest-timeout', 'python3-roborock'] 144s autopkgtest [12:54:32]: build not needed 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/build.KHh/src/ /tmp/autopkgtest-work.k8dhwu9p/out/tests-tree/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency python3-aioresponses 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-freezegun 144s autopkgtest: DBG: processing dependency python3-pytest 144s autopkgtest: DBG: processing dependency python3-pytest-asyncio 144s autopkgtest: DBG: processing dependency python3-pytest-timeout 144s autopkgtest: DBG: processing dependency @ 144s autopkgtest: DBG: synthesised dependency python3-roborock 144s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-aioresponses', 'python3-all', 'python3-freezegun', 'python3-pytest', 'python3-pytest-asyncio', 'python3-pytest-timeout', 'python3-roborock'] 144s autopkgtest [12:54:32]: test run-tests: preparing testbed 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-aioresponses', 'python3-all', 'python3-freezegun', 'python3-pytest', 'python3-pytest-asyncio', 'python3-pytest-timeout', 'python3-roborock'] 144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 144s autopkgtest: DBG: install_deps: deps_new=['python3-aioresponses', 'python3-all', 'python3-freezegun', 'python3-pytest', 'python3-pytest-asyncio', 'python3-pytest-timeout', 'python3-roborock'] 144s autopkgtest: DBG: install-deps: satisfying python3-aioresponses, python3-all, python3-freezegun, python3-pytest, python3-pytest-asyncio, python3-pytest-timeout, python3-roborock 144s autopkgtest: DBG: can use apt-get on testbed: True 144s 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', 'python3-aioresponses, python3-all, python3-freezegun, python3-pytest, python3-pytest-asyncio, python3-pytest-timeout, python3-roborock'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 144s Reading package lists... 145s Building dependency tree... 145s Reading state information... 145s Starting pkgProblemResolver with broken count: 0 145s Starting 2 pkgProblemResolver with broken count: 0 145s Done 145s The following NEW packages will be installed: 145s fonts-font-awesome fonts-lato libdeflate0 libfreetype6 libgomp1 145s libgraphite2-3 libharfbuzz0b libimagequant0 libjbig0 libjpeg-turbo8 libjpeg8 145s libjs-jquery libjs-sphinxdoc libjs-underscore liblcms2-2 libnsl2 145s libopenjp2-7 libpython3.12-minimal libpython3.12-stdlib libraqm0 145s libsharpyuv0 libtiff6 libwebp7 libwebpdemux2 libwebpmux3 145s python3-aiohappyeyeballs python3-aiohttp python3-aioresponses 145s python3-aiosignal python3-all python3-async-generator python3-async-timeout 145s python3-click python3-construct python3-dateutil python3-freezegun 145s python3-frozenlist python3-iniconfig python3-multidict python3-packaging 145s python3-paho-mqtt python3-pil python3-pluggy python3-pycryptodome 145s python3-pytest python3-pytest-asyncio python3-pytest-timeout 145s python3-roborock python3-vacuum-map-parser-base 145s python3-vacuum-map-parser-roborock python3-yarl python3.12 145s python3.12-minimal sphinx-rtd-theme-common 145s 0 upgraded, 54 newly installed, 0 to remove and 0 not upgraded. 145s Need to get 16.2 MB of archives. 145s After this operation, 59.2 MB of additional disk space will be used. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 146s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 146s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 146s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 146s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 146s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 146s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 146s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 146s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 146s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 146s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 146s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 146s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 146s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 146s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 146s Get:18 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 146s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 146s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 146s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 146s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 146s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 146s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 146s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 146s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 146s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiohappyeyeballs all 2.4.6-1 [10.5 kB] 146s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-multidict s390x 6.1.0-1build1 [38.4 kB] 146s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-yarl s390x 1.13.1-1build1 [122 kB] 146s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-async-timeout all 5.0.1-1 [6830 B] 146s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-frozenlist s390x 1.5.0-1build1 [64.2 kB] 146s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiosignal all 1.3.2-1 [5182 B] 146s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiohttp s390x 3.10.11-1 [363 kB] 146s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 146s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aioresponses all 0.7.6-2 [10.9 kB] 146s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 146s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-async-generator all 1.10-4 [17.5 kB] 146s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x python3-click all 8.1.8-1 [79.8 kB] 146s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 146s Get:40 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-freezegun all 1.5.1-1.2 [15.9 kB] 146s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 146s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-paho-mqtt all 2.0.0-1 [58.1 kB] 146s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 146s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 146s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 146s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pycryptodome s390x 3.20.0+dfsg-3build1 [1094 kB] 146s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 146s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-asyncio all 0.25.1-1 [17.0 kB] 146s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-timeout all 2.3.1-1 [22.1 kB] 146s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-vacuum-map-parser-base all 0.1.3-2 [15.8 kB] 146s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-construct all 2.10.68+dfsg1-2 [50.6 kB] 146s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-vacuum-map-parser-roborock all 0.1.2-3 [13.0 kB] 146s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 146s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-roborock all 2.11.2-1 [77.5 kB] 147s Fetched 16.2 MB in 2s (10.7 MB/s) 147s Selecting previously unselected package libpython3.12-minimal:s390x. 147s (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 ... 55929 files and directories currently installed.) 147s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 147s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 147s Selecting previously unselected package python3.12-minimal. 147s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 147s Unpacking python3.12-minimal (3.12.9-1) ... 147s Selecting previously unselected package fonts-lato. 147s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 147s Unpacking fonts-lato (2.015-1) ... 147s Selecting previously unselected package libnsl2:s390x. 147s Preparing to unpack .../03-libnsl2_1.3.0-3build3_s390x.deb ... 147s Unpacking libnsl2:s390x (1.3.0-3build3) ... 147s Selecting previously unselected package libpython3.12-stdlib:s390x. 147s Preparing to unpack .../04-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 147s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 147s Selecting previously unselected package python3.12. 147s Preparing to unpack .../05-python3.12_3.12.9-1_s390x.deb ... 147s Unpacking python3.12 (3.12.9-1) ... 147s Selecting previously unselected package fonts-font-awesome. 147s Preparing to unpack .../06-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 147s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 148s Selecting previously unselected package libdeflate0:s390x. 148s Preparing to unpack .../07-libdeflate0_1.23-1_s390x.deb ... 148s Unpacking libdeflate0:s390x (1.23-1) ... 148s Selecting previously unselected package libfreetype6:s390x. 148s Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 148s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 148s Selecting previously unselected package libgomp1:s390x. 148s Preparing to unpack .../09-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 148s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 148s Selecting previously unselected package libgraphite2-3:s390x. 148s Preparing to unpack .../10-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 148s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 148s Selecting previously unselected package libharfbuzz0b:s390x. 148s Preparing to unpack .../11-libharfbuzz0b_10.2.0-1_s390x.deb ... 148s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 148s Selecting previously unselected package libimagequant0:s390x. 148s Preparing to unpack .../12-libimagequant0_2.18.0-1build1_s390x.deb ... 148s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 148s Selecting previously unselected package libjpeg-turbo8:s390x. 148s Preparing to unpack .../13-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 148s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 148s Selecting previously unselected package libjpeg8:s390x. 148s Preparing to unpack .../14-libjpeg8_8c-2ubuntu11_s390x.deb ... 148s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 148s Selecting previously unselected package libjs-jquery. 148s Preparing to unpack .../15-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 148s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 148s Selecting previously unselected package libjs-underscore. 148s Preparing to unpack .../16-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 148s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 148s Selecting previously unselected package libjs-sphinxdoc. 148s Preparing to unpack .../17-libjs-sphinxdoc_8.1.3-5_all.deb ... 148s Unpacking libjs-sphinxdoc (8.1.3-5) ... 148s Selecting previously unselected package liblcms2-2:s390x. 148s Preparing to unpack .../18-liblcms2-2_2.16-2_s390x.deb ... 148s Unpacking liblcms2-2:s390x (2.16-2) ... 148s Selecting previously unselected package libraqm0:s390x. 148s Preparing to unpack .../19-libraqm0_0.10.2-1_s390x.deb ... 148s Unpacking libraqm0:s390x (0.10.2-1) ... 148s Selecting previously unselected package libsharpyuv0:s390x. 148s Preparing to unpack .../20-libsharpyuv0_1.5.0-0.1_s390x.deb ... 148s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 148s Selecting previously unselected package libjbig0:s390x. 148s Preparing to unpack .../21-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 148s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 148s Selecting previously unselected package libwebp7:s390x. 148s Preparing to unpack .../22-libwebp7_1.5.0-0.1_s390x.deb ... 148s Unpacking libwebp7:s390x (1.5.0-0.1) ... 148s Selecting previously unselected package libtiff6:s390x. 148s Preparing to unpack .../23-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 148s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 148s Selecting previously unselected package libwebpdemux2:s390x. 148s Preparing to unpack .../24-libwebpdemux2_1.5.0-0.1_s390x.deb ... 148s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 148s Selecting previously unselected package libwebpmux3:s390x. 148s Preparing to unpack .../25-libwebpmux3_1.5.0-0.1_s390x.deb ... 148s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 148s Selecting previously unselected package python3-aiohappyeyeballs. 148s Preparing to unpack .../26-python3-aiohappyeyeballs_2.4.6-1_all.deb ... 148s Unpacking python3-aiohappyeyeballs (2.4.6-1) ... 148s Selecting previously unselected package python3-multidict. 148s Preparing to unpack .../27-python3-multidict_6.1.0-1build1_s390x.deb ... 148s Unpacking python3-multidict (6.1.0-1build1) ... 148s Selecting previously unselected package python3-yarl. 148s Preparing to unpack .../28-python3-yarl_1.13.1-1build1_s390x.deb ... 148s Unpacking python3-yarl (1.13.1-1build1) ... 148s Selecting previously unselected package python3-async-timeout. 148s Preparing to unpack .../29-python3-async-timeout_5.0.1-1_all.deb ... 148s Unpacking python3-async-timeout (5.0.1-1) ... 148s Selecting previously unselected package python3-frozenlist. 148s Preparing to unpack .../30-python3-frozenlist_1.5.0-1build1_s390x.deb ... 148s Unpacking python3-frozenlist (1.5.0-1build1) ... 148s Selecting previously unselected package python3-aiosignal. 148s Preparing to unpack .../31-python3-aiosignal_1.3.2-1_all.deb ... 148s Unpacking python3-aiosignal (1.3.2-1) ... 148s Selecting previously unselected package python3-aiohttp. 148s Preparing to unpack .../32-python3-aiohttp_3.10.11-1_s390x.deb ... 148s Unpacking python3-aiohttp (3.10.11-1) ... 148s Selecting previously unselected package python3-packaging. 148s Preparing to unpack .../33-python3-packaging_24.2-1_all.deb ... 148s Unpacking python3-packaging (24.2-1) ... 148s Selecting previously unselected package python3-aioresponses. 148s Preparing to unpack .../34-python3-aioresponses_0.7.6-2_all.deb ... 148s Unpacking python3-aioresponses (0.7.6-2) ... 148s Selecting previously unselected package python3-all. 148s Preparing to unpack .../35-python3-all_3.13.1-1~exp2_s390x.deb ... 148s Unpacking python3-all (3.13.1-1~exp2) ... 148s Selecting previously unselected package python3-async-generator. 148s Preparing to unpack .../36-python3-async-generator_1.10-4_all.deb ... 148s Unpacking python3-async-generator (1.10-4) ... 148s Selecting previously unselected package python3-click. 148s Preparing to unpack .../37-python3-click_8.1.8-1_all.deb ... 148s Unpacking python3-click (8.1.8-1) ... 148s Selecting previously unselected package python3-dateutil. 148s Preparing to unpack .../38-python3-dateutil_2.9.0-3_all.deb ... 148s Unpacking python3-dateutil (2.9.0-3) ... 148s Selecting previously unselected package python3-freezegun. 148s Preparing to unpack .../39-python3-freezegun_1.5.1-1.2_all.deb ... 148s Unpacking python3-freezegun (1.5.1-1.2) ... 148s Selecting previously unselected package python3-iniconfig. 148s Preparing to unpack .../40-python3-iniconfig_1.1.1-2_all.deb ... 148s Unpacking python3-iniconfig (1.1.1-2) ... 148s Selecting previously unselected package python3-paho-mqtt. 148s Preparing to unpack .../41-python3-paho-mqtt_2.0.0-1_all.deb ... 148s Unpacking python3-paho-mqtt (2.0.0-1) ... 148s Selecting previously unselected package libopenjp2-7:s390x. 148s Preparing to unpack .../42-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 148s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 148s Selecting previously unselected package python3-pil:s390x. 148s Preparing to unpack .../43-python3-pil_11.1.0-5_s390x.deb ... 148s Unpacking python3-pil:s390x (11.1.0-5) ... 148s Selecting previously unselected package python3-pluggy. 148s Preparing to unpack .../44-python3-pluggy_1.5.0-1_all.deb ... 148s Unpacking python3-pluggy (1.5.0-1) ... 148s Selecting previously unselected package python3-pycryptodome. 148s Preparing to unpack .../45-python3-pycryptodome_3.20.0+dfsg-3build1_s390x.deb ... 148s Unpacking python3-pycryptodome (3.20.0+dfsg-3build1) ... 148s Selecting previously unselected package python3-pytest. 148s Preparing to unpack .../46-python3-pytest_8.3.4-1_all.deb ... 148s Unpacking python3-pytest (8.3.4-1) ... 148s Selecting previously unselected package python3-pytest-asyncio. 148s Preparing to unpack .../47-python3-pytest-asyncio_0.25.1-1_all.deb ... 148s Unpacking python3-pytest-asyncio (0.25.1-1) ... 148s Selecting previously unselected package python3-pytest-timeout. 148s Preparing to unpack .../48-python3-pytest-timeout_2.3.1-1_all.deb ... 148s Unpacking python3-pytest-timeout (2.3.1-1) ... 148s Selecting previously unselected package python3-vacuum-map-parser-base. 148s Preparing to unpack .../49-python3-vacuum-map-parser-base_0.1.3-2_all.deb ... 148s Unpacking python3-vacuum-map-parser-base (0.1.3-2) ... 148s Selecting previously unselected package python3-construct. 148s Preparing to unpack .../50-python3-construct_2.10.68+dfsg1-2_all.deb ... 148s Unpacking python3-construct (2.10.68+dfsg1-2) ... 148s Selecting previously unselected package python3-vacuum-map-parser-roborock. 148s Preparing to unpack .../51-python3-vacuum-map-parser-roborock_0.1.2-3_all.deb ... 148s Unpacking python3-vacuum-map-parser-roborock (0.1.2-3) ... 148s Selecting previously unselected package sphinx-rtd-theme-common. 148s Preparing to unpack .../52-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 148s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 148s Selecting previously unselected package python3-roborock. 148s Preparing to unpack .../53-python3-roborock_2.11.2-1_all.deb ... 148s Unpacking python3-roborock (2.11.2-1) ... 148s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 148s Setting up liblcms2-2:s390x (2.16-2) ... 148s Setting up python3-iniconfig (1.1.1-2) ... 148s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 148s Setting up fonts-lato (2.015-1) ... 148s Setting up python3-async-generator (1.10-4) ... 149s Setting up python3-pycryptodome (3.20.0+dfsg-3build1) ... 150s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 150s Setting up libdeflate0:s390x (1.23-1) ... 150s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 150s Setting up python3-click (8.1.8-1) ... 150s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 150s Setting up python3-multidict (6.1.0-1build1) ... 150s Setting up python3-frozenlist (1.5.0-1build1) ... 150s Setting up python3-aiosignal (1.3.2-1) ... 151s Setting up python3-async-timeout (5.0.1-1) ... 151s Setting up python3-packaging (24.2-1) ... 151s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 151s Setting up libimagequant0:s390x (2.18.0-1build1) ... 151s Setting up python3-paho-mqtt (2.0.0-1) ... 151s Setting up python3-construct (2.10.68+dfsg1-2) ... 152s Setting up python3-aiohappyeyeballs (2.4.6-1) ... 153s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 153s Setting up python3-pluggy (1.5.0-1) ... 153s Setting up libwebp7:s390x (1.5.0-0.1) ... 153s Setting up libnsl2:s390x (1.3.0-3build3) ... 153s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 153s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 153s Setting up python3-dateutil (2.9.0-3) ... 153s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 153s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 153s Setting up python3-yarl (1.13.1-1build1) ... 153s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 153s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 153s Setting up python3-freezegun (1.5.1-1.2) ... 153s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 153s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 153s Setting up python3.12-minimal (3.12.9-1) ... 153s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 153s Setting up python3-pytest (8.3.4-1) ... 154s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 154s Setting up python3.12 (3.12.9-1) ... 155s Setting up python3-aiohttp (3.10.11-1) ... 155s Setting up python3-all (3.13.1-1~exp2) ... 155s Setting up libraqm0:s390x (0.10.2-1) ... 155s Setting up libjs-sphinxdoc (8.1.3-5) ... 155s Setting up python3-pytest-asyncio (0.25.1-1) ... 156s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 156s Setting up python3-aioresponses (0.7.6-2) ... 156s Setting up python3-pytest-timeout (2.3.1-1) ... 156s Setting up python3-pil:s390x (11.1.0-5) ... 156s Setting up python3-vacuum-map-parser-base (0.1.3-2) ... 157s Setting up python3-vacuum-map-parser-roborock (0.1.2-3) ... 157s Setting up python3-roborock (2.11.2-1) ... 157s Processing triggers for systemd (257.2-3ubuntu1) ... 157s Processing triggers for man-db (2.13.0-1) ... 157s Processing triggers for libc-bin (2.40-4ubuntu1) ... 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-roborock'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.boac6Z/run-tests-packages.all"], kind short, sout raw, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/run-tests-packages.all /tmp/autopkgtest-work.k8dhwu9p/out/run-tests-packages.all 158s autopkgtest: DBG: got reply from testbed: ok 158s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.boac6Z/build.KHh/src'], kind short, sout raw, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.boac6Z/build.KHh/src already exists 158s autopkgtest [12:54:46]: test run-tests: [----------------------- 158s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.boac6Z/wrapper.sh --debug --artifacts=/tmp/autopkgtest.boac6Z/run-tests-artifacts --chdir=/tmp/autopkgtest.boac6Z/build.KHh/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.boac6Z/run-tests-stderr --stdout=/tmp/autopkgtest.boac6Z/run-tests-stdout --tmp=/tmp/autopkgtest.boac6Z/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.boac6Z/build.KHh/src/debian/tests/run-tests -- /tmp/autopkgtest.boac6Z/build.KHh/src/debian/tests/run-tests'], kind test, sout raw, serr raw, env [] 159s /tmp/autopkgtest.boac6Z/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.boac6Z/run-tests-artifacts 159s /tmp/autopkgtest.boac6Z/wrapper.sh: changing to directory: /tmp/autopkgtest.boac6Z/build.KHh/src 159s /tmp/autopkgtest.boac6Z/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 159s /tmp/autopkgtest.boac6Z/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 159s /tmp/autopkgtest.boac6Z/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 159s /tmp/autopkgtest.boac6Z/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 159s /tmp/autopkgtest.boac6Z/wrapper.sh: setting environment: LANG=C.UTF-8 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LANGUAGE 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_ADDRESS 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_ALL 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_COLLATE 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_CTYPE 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_IDENTIFICATION 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_MEASUREMENT 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_MESSAGES 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_MONETARY 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_NAME 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_NUMERIC 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_PAPER 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_TELEPHONE 159s /tmp/autopkgtest.boac6Z/wrapper.sh: unsetting environment: LC_TIME 159s /tmp/autopkgtest.boac6Z/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 159s /tmp/autopkgtest.boac6Z/wrapper.sh: pretending to be a login shell 159s /tmp/autopkgtest.boac6Z/wrapper.sh: will write standard error to /tmp/autopkgtest.boac6Z/run-tests-stderr 159s /tmp/autopkgtest.boac6Z/wrapper.sh: will write stdout to /tmp/autopkgtest.boac6Z/run-tests-stdout 159s /tmp/autopkgtest.boac6Z/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.boac6Z/autopkgtest_tmp 159s /tmp/autopkgtest.boac6Z/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 159s /tmp/autopkgtest.boac6Z/wrapper.sh: marking as executable: /tmp/autopkgtest.boac6Z/build.KHh/src/debian/tests/run-tests 159s /tmp/autopkgtest.boac6Z/wrapper.sh: command to run: /tmp/autopkgtest.boac6Z/build.KHh/src/debian/tests/run-tests 159s /tmp/autopkgtest.boac6Z/wrapper.sh: copying /tmp/tmp.wIwfYZISOM/out to stdout and file: /tmp/autopkgtest.boac6Z/run-tests-stdout 159s /tmp/autopkgtest.boac6Z/wrapper.sh: copying /tmp/tmp.wIwfYZISOM/err to standard error and file: /tmp/autopkgtest.boac6Z/run-tests-stdout 159s /tmp/autopkgtest.boac6Z/wrapper.sh: writing script pid 2056 to /tmp/autopkgtest_script_pid 159s /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:207: PytestDeprecationWarning: The configuration option "asyncio_default_fixture_loop_scope" is unset. 159s The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class", "module", "package", "session" 159s 159s warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET)) 159s ============================= test session starts ============================== 159s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.12 159s cachedir: .pytest_cache 159s rootdir: /tmp/autopkgtest.boac6Z/autopkgtest_tmp 159s plugins: timeout-2.3.1, asyncio-0.25.1, typeguard-4.4.1 159s asyncio: mode=Mode.AUTO, asyncio_default_fixture_loop_scope=None 159s collecting ... collected 28 items 159s 159s tests/test_containers.py::test_user_data PASSED [ 3%] 159s tests/test_containers.py::test_home_data PASSED [ 7%] 159s tests/test_containers.py::test_serialize_and_unserialize PASSED [ 10%] 159s tests/test_containers.py::test_consumable PASSED [ 14%] 159s tests/test_containers.py::test_status PASSED [ 17%] 159s tests/test_containers.py::test_dnd_timer PASSED [ 21%] 159s tests/test_containers.py::test_clean_summary PASSED [ 25%] 159s tests/test_containers.py::test_clean_record PASSED [ 28%] 159s tests/test_containers.py::test_no_value PASSED [ 32%] 159s tests/test_local_api_v1.py::test_async_connect PASSED [ 35%] 159s tests/test_local_api_v1.py::test_get_room_mapping PASSED [ 39%] 159s tests/test_queue.py::test_can_create PASSED [ 42%] 159s tests/test_queue.py::test_set_result PASSED [ 46%] 159s tests/test_queue.py::test_set_exception PASSED [ 50%] 159s tests/test_queue.py::test_get_timeout PASSED [ 53%] 159s tests/test_roborock_message.py::test_roborock_message PASSED [ 57%] 159s tests/test_util.py::test_start_date_lower_than_now_lower_than_end_date PASSED [ 60%] 159s tests/test_util.py::test_start_date_greater_than_now_greater_tat_end_date PASSED [ 64%] 159s tests/test_util.py::test_start_date_lower_than_now_greater_than_end_date PASSED [ 67%] 159s tests/test_util.py::test_start_date_greater_than_now_lower_than_end_date PASSED [ 71%] 159s tests/test_util.py::test_start_date_lower_than_end_date_lower_than_now PASSED [ 75%] 159s tests/test_util.py::test_start_date_greater_than_end_date_greater_than_now PASSED [ 78%] 159s tests/test_web_api.py::test_pass_login_flow PASSED [ 82%] 159s tests/test_web_api.py::test_code_login_flow PASSED [ 85%] 159s tests/test_web_api.py::test_get_home_data_v2 PASSED [ 89%] 159s tests/test_web_api.py::test_nc_prepare PASSED [ 92%] 159s tests/test_web_api.py::test_get_scenes PASSED [ 96%] 159s tests/test_web_api.py::test_execute_scene PASSED [100%] 159s 159s ============================== 28 passed in 0.24s ============================== 160s /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:207: PytestDeprecationWarning: The configuration option "asyncio_default_fixture_loop_scope" is unset. 160s The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class", "module", "package", "session" 160s 160s warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET)) 160s ============================= test session starts ============================== 160s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.13 160s cachedir: .pytest_cache 160s rootdir: /tmp/autopkgtest.boac6Z/autopkgtest_tmp 160s plugins: timeout-2.3.1, asyncio-0.25.1, typeguard-4.4.1 160s asyncio: mode=Mode.AUTO, asyncio_default_fixture_loop_scope=None 160s collecting ... collected 28 items 160s 160s tests/test_containers.py::test_user_data PASSED [ 3%] 160s tests/test_containers.py::test_home_data PASSED [ 7%] 160s tests/test_containers.py::test_serialize_and_unserialize PASSED [ 10%] 160s tests/test_containers.py::test_consumable PASSED [ 14%] 160s tests/test_containers.py::test_status PASSED [ 17%] 160s tests/test_containers.py::test_dnd_timer PASSED [ 21%] 160s tests/test_containers.py::test_clean_summary PASSED [ 25%] 160s tests/test_containers.py::test_clean_record PASSED [ 28%] 160s tests/test_containers.py::test_no_value PASSED [ 32%] 160s tests/test_local_api_v1.py::test_async_connect PASSED [ 35%] 160s tests/test_local_api_v1.py::test_get_room_mapping PASSED [ 39%] 160s tests/test_queue.py::test_can_create PASSED [ 42%] 160s tests/test_queue.py::test_set_result PASSED [ 46%] 160s tests/test_queue.py::test_set_exception PASSED [ 50%] 160s tests/test_queue.py::test_get_timeout PASSED [ 53%] 160s tests/test_roborock_message.py::test_roborock_message PASSED [ 57%] 160s tests/test_util.py::test_start_date_lower_than_now_lower_than_end_date PASSED [ 60%] 160s tests/test_util.py::test_start_date_greater_than_now_greater_tat_end_date PASSED [ 64%] 160s tests/test_util.py::test_start_date_lower_than_now_greater_than_end_date PASSED [ 67%] 160s tests/test_util.py::test_start_date_greater_than_now_lower_than_end_date PASSED [ 71%] 160s tests/test_util.py::test_start_date_lower_than_end_date_lower_than_now PASSED [ 75%] 160s tests/test_util.py::test_start_date_greater_than_end_date_greater_than_now PASSED [ 78%] 160s tests/test_web_api.py::test_pass_login_flow PASSED [ 82%] 160s tests/test_web_api.py::test_code_login_flow PASSED [ 85%] 160s tests/test_web_api.py::test_get_home_data_v2 PASSED [ 89%] 160s tests/test_web_api.py::test_nc_prepare PASSED [ 92%] 160s tests/test_web_api.py::test_get_scenes PASSED [ 96%] 160s tests/test_web_api.py::test_execute_scene PASSED [100%] 160s 160s ============================== 28 passed in 0.22s ============================== 160s /tmp/autopkgtest.boac6Z/wrapper.sh: checking for leaked background processes... 160s /tmp/autopkgtest.boac6Z/wrapper.sh: waiting for tee/cat subprocesses... 160s /tmp/autopkgtest.boac6Z/wrapper.sh: cleaning up... 160s /tmp/autopkgtest.boac6Z/wrapper.sh: Exit status: 0 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest [12:54:48]: test run-tests: -----------------------] 160s autopkgtest: DBG: testbed executing test finished with exit status 0 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/run-tests-stdout /tmp/autopkgtest-work.k8dhwu9p/out/run-tests-stdout 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/run-tests-stderr /tmp/autopkgtest-work.k8dhwu9p/out/run-tests-stderr 161s autopkgtest: DBG: got reply from testbed: ok 161s run-tests PASS 161s autopkgtest [12:54:49]: test run-tests: - - - - - - - - - - results - - - - - - - - - - 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.boac6Z/run-tests-artifacts/ /tmp/autopkgtest-work.k8dhwu9p/out/artifacts/ 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.boac6Z/run-tests-artifacts', '/tmp/autopkgtest.boac6Z/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 161s autopkgtest [12:54:49]: @@@@@@@@@@@@@@@@@@@@ summary 161s run-tests PASS 161s autopkgtest: DBG: testbed stop 161s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.boac6Z 161s 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 flock: timeout while waiting to get lock 178s Creating nova instance adt-plucky-s390x-python-roborock-20250219-125208-juju-7f2275-prod-proposed-migration-environment-15-e2636f96-5ceb-4270-b85b-306e4050f3db from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 178s nova [W] Timed out waiting for 3de4c784-8635-4062-ba55-d3838c83227e to get deleted.