0s autopkgtest: DBG: testbed init 0s autopkgtest [12:08:47]: starting date and time: 2025-02-19 12:08:47+0000 0s autopkgtest [12:08:47]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:08:47]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.9w9hnwqy/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade govee-ble --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-17.secgroup --name adt-plucky-s390x-govee-ble-20250219-120847-juju-7f2275-prod-proposed-migration-environment-15-ec614314-25e4-4a89-b7ab-bb346f568e74 --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 124s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.cDBFYw 124s autopkgtest: DBG: sending command to testbed: print-execute-command 124s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.hlwu_n26/runcmd 124s autopkgtest: DBG: sending command to testbed: capabilities 124s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu revert revert-full-system isolation-machine root-on-testbed 124s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'revert', 'revert-full-system', 'isolation-machine', 'root-on-testbed', 'has_internet'] 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cDBFYw'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.cDBFYw/wrapper.sh 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cDBFYw/wrapper.sh'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [12:10:52]: testbed dpkg architecture: s390x 125s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [12:10:52]: testbed apt version: 2.9.30 125s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed has eatmydata 125s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [12:10:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 125s 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 [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [12:10:52]: testbed release detected to be: None 125s 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 [] 126s autopkgtest: DBG: testbed command exited with code 0 126s 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 [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: adding APT source: Types: deb deb-src 126s URIs: http://ftpmaster.internal/ubuntu/ 126s Suites: plucky-proposed 126s Components: main restricted universe multiverse 126s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 126s 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 [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 126s Package: * 126s Pin: release plucky-proposed 126s Pin-Priority: 500 126s 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 [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [12:10:53]: updating testbed package index (apt update) 126s 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'] 126s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 127s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 127s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 127s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 127s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 127s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 127s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 127s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 127s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 127s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 127s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 127s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 127s Fetched 1700 kB in 1s (1612 kB/s) 128s Reading package lists... 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 128s Package: * 128s Pin: release plucky-proposed 128s Pin-Priority: 100 128s 128s Package: src:sphinx:any 128s Pin: release plucky-proposed 128s Pin-Priority: 995 128s 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 [] 128s autopkgtest: DBG: testbed command exited with code 0 128s 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.cDBFYw/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s 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'] 129s + lsb_release --codename --short 129s + RELEASE=plucky 129s + cat 129s + [ plucky != trusty ] 129s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 129s Reading package lists... 129s Building dependency tree... 129s Reading state information... 129s Calculating upgrade... 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 liblsof0 libp11-kit0 lsof 129s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 129s Need to get 1791 kB of archives. 129s After this operation, 17.4 kB of additional disk space will be used. 129s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 130s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 130s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 130s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 130s Preconfiguring packages ... 130s Fetched 1791 kB in 1s (2507 kB/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 ... 81030 files and directories currently installed.) 130s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 130s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 130s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 130s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 130s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 130s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 130s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 130s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 130s Setting up liblsof0 (4.99.4+dfsg-1) ... 130s Setting up iproute2 (6.13.0-1ubuntu1) ... 130s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 130s Setting up lsof (4.99.4+dfsg-1) ... 130s Processing triggers for man-db (2.13.0-1) ... 131s Processing triggers for libc-bin (2.40-4ubuntu1) ... 131s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 131s + /usr/lib/apt/apt-helper analyze-pattern ?true 131s + uname -r 131s + sed s/\./\\./g 131s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 131s + apt list ?obsolete 131s + + grep -v ^linux-.*6\.12\.0-15-generic.* 131s + tail -n+2 131s cut -d/ -f1 131s + true 131s + obsolete_pkgs= 131s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 131s Reading package lists... 131s Building dependency tree... 131s Reading state information... 131s The following packages will be REMOVED: 131s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 131s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 131s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 131s linux-tools-6.11.0-8-generic* 132s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 132s After this operation, 167 MB disk space will be freed. 132s (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.) 132s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 132s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 132s Removing libpython3.12t64:s390x (3.12.9-1) ... 132s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 132s Removing libnsl2:s390x (1.3.0-3build3) ... 132s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 132s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 132s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 133s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 133s Processing triggers for libc-bin (2.40-4ubuntu1) ... 133s (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.) 133s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 133s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 133s + grep -q trusty /etc/lsb-release 133s + [ ! -d /usr/share/doc/unattended-upgrades ] 133s + [ ! -d /usr/share/doc/lxd ] 133s + [ ! -d /usr/share/doc/lxd-client ] 133s + [ ! -d /usr/share/doc/snapd ] 133s + type iptables 133s + cat 133s + chmod 755 /etc/rc.local 133s + . /etc/rc.local 133s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 133s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 133s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 133s + uname -m 133s + [ s390x = ppc64le ] 133s + [ -d /run/systemd/system ] 133s + systemd-detect-virt --quiet --vm 133s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 133s + cat 133s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 133s + echo COMPRESS=lz4 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [12:11:00]: upgrading testbed (apt dist-upgrade and autopurge) 133s 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'] 133s Reading package lists... 133s Building dependency tree... 133s Reading state information... 133s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 133s Starting 2 pkgProblemResolver with broken count: 0 133s Done 134s Entering ResolveByKeep 134s 134s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 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 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 134s autopkgtest: DBG: testbed command exited with code 0 134s 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.cDBFYw/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 135s autopkgtest: DBG: testbed command exited with code 1 135s autopkgtest [12:11:02]: rebooting testbed after setup commands that affected boot 135s autopkgtest: DBG: sending command to testbed: reboot 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 154s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cDBFYw'], 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.sh /tmp/autopkgtest.cDBFYw/autopkgtest-reboot 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cDBFYw/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.cDBFYw/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], 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.cDBFYw/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.cDBFYw'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.cDBFYw/autopkgtest-reboot-prepare 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cDBFYw/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.cDBFYw/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 [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest [12:11:23]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 156s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.cDBFYw/testbed-packages"], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/testbed-packages /tmp/autopkgtest-work.9w9hnwqy/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.cDBFYw'], 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.cDBFYw/autopkgtest-reboot 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cDBFYw/autopkgtest-reboot'], 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.cDBFYw/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], 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.cDBFYw/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.cDBFYw'], 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.cDBFYw/autopkgtest-reboot-prepare 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.cDBFYw/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.cDBFYw/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: Binaries: initialising 158s autopkgtest [12:11:25]: @@@@@@@@@@@@@@@@@@@@ apt-source govee-ble 158s autopkgtest: DBG: blame += govee-ble 158s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 158s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'govee-ble'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-govee-ble$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-govee-ble=0.43.0-1'], kind short, sout pipe, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: install_deps: deps_new=[] 159s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s 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.cDBFYw/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source govee-ble=0.43.0-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x govee-ble_*.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'] 159s + cd / 159s + mktemp -d /tmp/autopkgtest.cDBFYw/build.XXX 159s + builddir=/tmp/autopkgtest.cDBFYw/build.1qF 159s + cd /tmp/autopkgtest.cDBFYw/build.1qF 159s + apt-get source -d -q --only-source govee-ble=0.43.0-1 159s + OUT=Reading package lists... 159s NOTICE: 'govee-ble' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/python-team/packages/govee-ble.git 159s Please use: 159s git clone https://salsa.debian.org/python-team/packages/govee-ble.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 71.8 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (dsc) [2468 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (tar) [64.7 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (diff) [4576 B] 159s Fetched 71.8 kB in 0s (185 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + echo Reading package lists... 159s NOTICE: 'govee-ble' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/python-team/packages/govee-ble.git 159s Please use: 159s git clone https://salsa.debian.org/python-team/packages/govee-ble.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 71.8 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (dsc) [2468 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (tar) [64.7 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (diff) [4576 B] 159s Fetched 71.8 kB in 0s (185 kB/s) 159s Download complete and in download only mode 159s + grep ^Get: 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (dsc) [2468 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (tar) [64.7 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe govee-ble 0.43.0-1 (diff) [4576 B] 159s + dpkg-source -x govee-ble_0.43.0-1.dsc src 159s gpgv: Signature made Mon Feb 10 19:56:10 2025 UTC 159s gpgv: using RSA key FB8ACFA78C726089C38AD0269605A1098C63B92A 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./govee-ble_0.43.0-1.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 [12:11:26]: testing package govee-ble version 0.43.0-1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/build.1qF/src/debian/ /tmp/autopkgtest-work.9w9hnwqy/out/pkg/debian/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency python3-all 160s autopkgtest: DBG: processing dependency python3-bluetooth-sensor-state-data 160s autopkgtest: DBG: processing dependency python3-pytest 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency python3-govee-ble 160s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-all', 'python3-bluetooth-sensor-state-data', 'python3-pytest', 'python3-govee-ble'] 160s autopkgtest [12:11:27]: build not needed 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/build.1qF/src/ /tmp/autopkgtest-work.9w9hnwqy/out/tests-tree/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency python3-all 160s autopkgtest: DBG: processing dependency python3-bluetooth-sensor-state-data 160s autopkgtest: DBG: processing dependency python3-pytest 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency python3-govee-ble 160s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-all', 'python3-bluetooth-sensor-state-data', 'python3-pytest', 'python3-govee-ble'] 160s autopkgtest [12:11:27]: test run-tests: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-bluetooth-sensor-state-data', 'python3-pytest', 'python3-govee-ble'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-bluetooth-sensor-state-data', 'python3-pytest', 'python3-govee-ble'] 160s autopkgtest: DBG: install-deps: satisfying python3-all, python3-bluetooth-sensor-state-data, python3-pytest, python3-govee-ble 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', 'python3-all, python3-bluetooth-sensor-state-data, python3-pytest, python3-govee-ble'], 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 bluez fonts-font-awesome fonts-lato libasound2-data libasound2t64 161s libjs-jquery libjs-sphinxdoc libjs-underscore libnsl2 libpython3.12-minimal 161s libpython3.12-stdlib python3-aiooui python3-all python3-async-interrupt 161s python3-bleak python3-bleak-retry-connector python3-bluetooth-adapters 161s python3-bluetooth-auto-recovery python3-bluetooth-data-tools 161s python3-bluetooth-sensor-state-data python3-btsocket python3-dbus-fast 161s python3-govee-ble python3-habluetooth python3-home-assistant-bluetooth 161s python3-iniconfig python3-packaging python3-pluggy python3-pyric 161s python3-pytest python3-sensor-state-data python3-uart-devices 161s python3-usb-devices python3.12 python3.12-minimal sphinx-rtd-theme-common 161s 0 upgraded, 36 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 13.9 MB of archives. 161s After this operation, 52.5 MB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 161s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 161s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 162s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 162s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 162s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 162s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 162s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 162s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x bluez s390x 5.79-1 [1423 kB] 162s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 162s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 162s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 162s Get:13 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 162s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiooui all 0.1.9-1 [312 kB] 162s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 162s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-async-interrupt all 1.2.0-1 [6430 B] 162s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-dbus-fast s390x 2.33.0-1 [118 kB] 162s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bleak all 0.22.3-1 [94.7 kB] 162s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-uart-devices all 0.1.0-2 [6552 B] 162s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-usb-devices all 0.4.5-2 [9014 B] 162s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bluetooth-adapters all 0.21.1-1 [13.5 kB] 162s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bleak-retry-connector all 3.8.1-1 [15.2 kB] 162s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-btsocket all 0.3.0-1 [19.0 kB] 162s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyric all 0.1.6.3-2 [114 kB] 162s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-rtd-theme-common all 3.0.2+dfsg-2 [1014 kB] 162s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bluetooth-auto-recovery all 1.4.2-2 [25.6 kB] 162s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bluetooth-data-tools s390x 1.23.4-1 [11.2 kB] 162s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-habluetooth s390x 3.21.1-1 [61.1 kB] 162s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-home-assistant-bluetooth s390x 1.13.1-1 [7948 B] 162s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sensor-state-data all 2.18.1-1 [11.2 kB] 162s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bluetooth-sensor-state-data all 1.7.5-1 [22.0 kB] 162s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-govee-ble all 0.43.0-1 [28.0 kB] 162s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 162s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 162s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 162s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 162s Fetched 13.9 MB in 1s (11.2 MB/s) 162s Selecting previously unselected package libpython3.12-minimal: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 ... 55929 files and directories currently installed.) 162s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 162s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 162s Selecting previously unselected package python3.12-minimal. 162s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 162s Unpacking python3.12-minimal (3.12.9-1) ... 162s Selecting previously unselected package fonts-lato. 162s Preparing to unpack .../02-fonts-lato_2.015-1_all.deb ... 162s Unpacking fonts-lato (2.015-1) ... 163s Selecting previously unselected package libnsl2:s390x. 163s Preparing to unpack .../03-libnsl2_1.3.0-3build3_s390x.deb ... 163s Unpacking libnsl2:s390x (1.3.0-3build3) ... 163s Selecting previously unselected package libpython3.12-stdlib:s390x. 163s Preparing to unpack .../04-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 163s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 163s Selecting previously unselected package python3.12. 163s Preparing to unpack .../05-python3.12_3.12.9-1_s390x.deb ... 163s Unpacking python3.12 (3.12.9-1) ... 163s Selecting previously unselected package libasound2-data. 163s Preparing to unpack .../06-libasound2-data_1.2.13-1build1_all.deb ... 163s Unpacking libasound2-data (1.2.13-1build1) ... 163s Selecting previously unselected package libasound2t64:s390x. 163s Preparing to unpack .../07-libasound2t64_1.2.13-1build1_s390x.deb ... 163s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 163s Selecting previously unselected package bluez. 163s Preparing to unpack .../08-bluez_5.79-1_s390x.deb ... 163s Unpacking bluez (5.79-1) ... 163s Selecting previously unselected package fonts-font-awesome. 163s Preparing to unpack .../09-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 163s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 163s Selecting previously unselected package libjs-jquery. 163s Preparing to unpack .../10-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 163s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 163s Selecting previously unselected package libjs-underscore. 163s Preparing to unpack .../11-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 163s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 163s Selecting previously unselected package libjs-sphinxdoc. 163s Preparing to unpack .../12-libjs-sphinxdoc_8.1.3-5_all.deb ... 163s Unpacking libjs-sphinxdoc (8.1.3-5) ... 163s Selecting previously unselected package python3-aiooui. 163s Preparing to unpack .../13-python3-aiooui_0.1.9-1_all.deb ... 163s Unpacking python3-aiooui (0.1.9-1) ... 163s Selecting previously unselected package python3-all. 163s Preparing to unpack .../14-python3-all_3.13.1-1~exp2_s390x.deb ... 163s Unpacking python3-all (3.13.1-1~exp2) ... 163s Selecting previously unselected package python3-async-interrupt. 163s Preparing to unpack .../15-python3-async-interrupt_1.2.0-1_all.deb ... 163s Unpacking python3-async-interrupt (1.2.0-1) ... 163s Selecting previously unselected package python3-dbus-fast. 163s Preparing to unpack .../16-python3-dbus-fast_2.33.0-1_s390x.deb ... 163s Unpacking python3-dbus-fast (2.33.0-1) ... 163s Selecting previously unselected package python3-bleak. 163s Preparing to unpack .../17-python3-bleak_0.22.3-1_all.deb ... 163s Unpacking python3-bleak (0.22.3-1) ... 163s Selecting previously unselected package python3-uart-devices. 163s Preparing to unpack .../18-python3-uart-devices_0.1.0-2_all.deb ... 163s Unpacking python3-uart-devices (0.1.0-2) ... 163s Selecting previously unselected package python3-usb-devices. 163s Preparing to unpack .../19-python3-usb-devices_0.4.5-2_all.deb ... 163s Unpacking python3-usb-devices (0.4.5-2) ... 163s Selecting previously unselected package python3-bluetooth-adapters. 163s Preparing to unpack .../20-python3-bluetooth-adapters_0.21.1-1_all.deb ... 163s Unpacking python3-bluetooth-adapters (0.21.1-1) ... 163s Selecting previously unselected package python3-bleak-retry-connector. 163s Preparing to unpack .../21-python3-bleak-retry-connector_3.8.1-1_all.deb ... 163s Unpacking python3-bleak-retry-connector (3.8.1-1) ... 163s Selecting previously unselected package python3-btsocket. 163s Preparing to unpack .../22-python3-btsocket_0.3.0-1_all.deb ... 163s Unpacking python3-btsocket (0.3.0-1) ... 163s Selecting previously unselected package python3-pyric. 163s Preparing to unpack .../23-python3-pyric_0.1.6.3-2_all.deb ... 163s Unpacking python3-pyric (0.1.6.3-2) ... 163s Selecting previously unselected package sphinx-rtd-theme-common. 163s Preparing to unpack .../24-sphinx-rtd-theme-common_3.0.2+dfsg-2_all.deb ... 163s Unpacking sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 163s Selecting previously unselected package python3-bluetooth-auto-recovery. 163s Preparing to unpack .../25-python3-bluetooth-auto-recovery_1.4.2-2_all.deb ... 163s Unpacking python3-bluetooth-auto-recovery (1.4.2-2) ... 163s Selecting previously unselected package python3-bluetooth-data-tools. 163s Preparing to unpack .../26-python3-bluetooth-data-tools_1.23.4-1_s390x.deb ... 163s Unpacking python3-bluetooth-data-tools (1.23.4-1) ... 163s Selecting previously unselected package python3-habluetooth. 163s Preparing to unpack .../27-python3-habluetooth_3.21.1-1_s390x.deb ... 163s Unpacking python3-habluetooth (3.21.1-1) ... 163s Selecting previously unselected package python3-home-assistant-bluetooth. 163s Preparing to unpack .../28-python3-home-assistant-bluetooth_1.13.1-1_s390x.deb ... 163s Unpacking python3-home-assistant-bluetooth (1.13.1-1) ... 163s Selecting previously unselected package python3-sensor-state-data. 163s Preparing to unpack .../29-python3-sensor-state-data_2.18.1-1_all.deb ... 163s Unpacking python3-sensor-state-data (2.18.1-1) ... 163s Selecting previously unselected package python3-bluetooth-sensor-state-data. 163s Preparing to unpack .../30-python3-bluetooth-sensor-state-data_1.7.5-1_all.deb ... 163s Unpacking python3-bluetooth-sensor-state-data (1.7.5-1) ... 163s Selecting previously unselected package python3-govee-ble. 163s Preparing to unpack .../31-python3-govee-ble_0.43.0-1_all.deb ... 163s Unpacking python3-govee-ble (0.43.0-1) ... 163s Selecting previously unselected package python3-iniconfig. 163s Preparing to unpack .../32-python3-iniconfig_1.1.1-2_all.deb ... 163s Unpacking python3-iniconfig (1.1.1-2) ... 163s Selecting previously unselected package python3-packaging. 163s Preparing to unpack .../33-python3-packaging_24.2-1_all.deb ... 163s Unpacking python3-packaging (24.2-1) ... 163s Selecting previously unselected package python3-pluggy. 163s Preparing to unpack .../34-python3-pluggy_1.5.0-1_all.deb ... 163s Unpacking python3-pluggy (1.5.0-1) ... 163s Selecting previously unselected package python3-pytest. 163s Preparing to unpack .../35-python3-pytest_8.3.4-1_all.deb ... 163s Unpacking python3-pytest (8.3.4-1) ... 163s Setting up python3-pyric (0.1.6.3-2) ... 164s Setting up python3-iniconfig (1.1.1-2) ... 164s Setting up python3-sensor-state-data (2.18.1-1) ... 164s Setting up python3-aiooui (0.1.9-1) ... 164s Setting up python3-uart-devices (0.1.0-2) ... 164s Setting up fonts-lato (2.015-1) ... 164s Setting up python3-usb-devices (0.4.5-2) ... 164s Setting up python3-bluetooth-data-tools (1.23.4-1) ... 164s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 164s Setting up python3-btsocket (0.3.0-1) ... 164s Setting up libasound2-data (1.2.13-1build1) ... 164s Setting up python3-packaging (24.2-1) ... 165s Setting up libasound2t64:s390x (1.2.13-1build1) ... 165s Setting up python3-pluggy (1.5.0-1) ... 165s Setting up python3-async-interrupt (1.2.0-1) ... 165s Setting up libnsl2:s390x (1.3.0-3build3) ... 165s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 165s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 165s Setting up sphinx-rtd-theme-common (3.0.2+dfsg-2) ... 165s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 165s Setting up python3.12-minimal (3.12.9-1) ... 166s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 166s Setting up python3-pytest (8.3.4-1) ... 166s Setting up python3.12 (3.12.9-1) ... 167s Setting up python3-all (3.13.1-1~exp2) ... 167s Setting up bluez (5.79-1) ... 168s Created symlink '/etc/systemd/user/default.target.wants/mpris-proxy.service' → '/usr/lib/systemd/user/mpris-proxy.service'. 168s Created symlink '/etc/systemd/system/dbus-org.bluez.service' → '/usr/lib/systemd/system/bluetooth.service'. 168s Created symlink '/etc/systemd/system/bluetooth.target.wants/bluetooth.service' → '/usr/lib/systemd/system/bluetooth.service'. 168s Setting up libjs-sphinxdoc (8.1.3-5) ... 168s Setting up python3-dbus-fast (2.33.0-1) ... 168s Setting up python3-bleak (0.22.3-1) ... 168s Setting up python3-bluetooth-adapters (0.21.1-1) ... 168s Setting up python3-bleak-retry-connector (3.8.1-1) ... 169s Setting up python3-bluetooth-auto-recovery (1.4.2-2) ... 169s Setting up python3-habluetooth (3.21.1-1) ... 169s Setting up python3-home-assistant-bluetooth (1.13.1-1) ... 169s Setting up python3-bluetooth-sensor-state-data (1.7.5-1) ... 169s Setting up python3-govee-ble (0.43.0-1) ... 169s Processing triggers for systemd (257.2-3ubuntu1) ... 169s Processing triggers for man-db (2.13.0-1) ... 170s Processing triggers for dbus (1.16.0-1ubuntu1) ... 170s Processing triggers for libc-bin (2.40-4ubuntu1) ... 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-govee-ble'], 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.cDBFYw/run-tests-packages.all"], kind short, sout raw, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/run-tests-packages.all /tmp/autopkgtest-work.9w9hnwqy/out/run-tests-packages.all 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.cDBFYw/build.1qF/src'], kind short, sout raw, serr raw, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.cDBFYw/build.1qF/src already exists 171s autopkgtest [12:11:38]: test run-tests: [----------------------- 171s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.cDBFYw/wrapper.sh --debug --artifacts=/tmp/autopkgtest.cDBFYw/run-tests-artifacts --chdir=/tmp/autopkgtest.cDBFYw/build.1qF/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.cDBFYw/run-tests-stderr --stdout=/tmp/autopkgtest.cDBFYw/run-tests-stdout --tmp=/tmp/autopkgtest.cDBFYw/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.cDBFYw/build.1qF/src/debian/tests/run-tests -- /tmp/autopkgtest.cDBFYw/build.1qF/src/debian/tests/run-tests'], kind test, sout raw, serr raw, env [] 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.cDBFYw/run-tests-artifacts 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: changing to directory: /tmp/autopkgtest.cDBFYw/build.1qF/src 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: setting environment: LANG=C.UTF-8 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LANGUAGE 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_ADDRESS 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_ALL 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_COLLATE 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_CTYPE 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_IDENTIFICATION 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_MEASUREMENT 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_MESSAGES 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_MONETARY 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_NAME 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_NUMERIC 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_PAPER 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_TELEPHONE 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: unsetting environment: LC_TIME 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: pretending to be a login shell 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: will write standard error to /tmp/autopkgtest.cDBFYw/run-tests-stderr 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: will write stdout to /tmp/autopkgtest.cDBFYw/run-tests-stdout 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.cDBFYw/autopkgtest_tmp 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: marking as executable: /tmp/autopkgtest.cDBFYw/build.1qF/src/debian/tests/run-tests 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: command to run: /tmp/autopkgtest.cDBFYw/build.1qF/src/debian/tests/run-tests 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: copying /tmp/tmp.OciIMxvugu/out to stdout and file: /tmp/autopkgtest.cDBFYw/run-tests-stdout 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: copying /tmp/tmp.OciIMxvugu/err to standard error and file: /tmp/autopkgtest.cDBFYw/run-tests-stdout 171s /tmp/autopkgtest.cDBFYw/wrapper.sh: writing script pid 2048 to /tmp/autopkgtest_script_pid 172s ============================= test session starts ============================== 172s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.12 172s cachedir: .pytest_cache 172s rootdir: /tmp/autopkgtest.cDBFYw/autopkgtest_tmp 172s plugins: typeguard-4.4.1 172s collecting ... collected 68 items 172s 172s tests/test_parser.py::test_can_create PASSED [ 1%] 172s tests/test_parser.py::test_gvh5054 PASSED [ 2%] 172s tests/test_parser.py::test_gvh5051 PASSED [ 4%] 172s tests/test_parser.py::test_gvh5052 PASSED [ 5%] 172s tests/test_parser.py::test_gvh5071 PASSED [ 7%] 172s tests/test_parser.py::test_gvh5075 PASSED [ 8%] 172s tests/test_parser.py::test_gvh5075_2 PASSED [ 10%] 172s tests/test_parser.py::test_gvh5075_negative_values PASSED [ 11%] 172s tests/test_parser.py::test_gvh5075_oversized_values PASSED [ 13%] 172s tests/test_parser.py::test_gvh5075_other_values PASSED [ 14%] 172s tests/test_parser.py::test_gvh5177 PASSED [ 16%] 172s tests/test_parser.py::test_gvh5103 PASSED [ 17%] 172s tests/test_parser.py::test_gvh5105 PASSED [ 19%] 172s tests/test_parser.py::test_gvh5105_2 PASSED [ 20%] 172s tests/test_parser.py::test_gvh5100 PASSED [ 22%] 172s tests/test_parser.py::test_gvh5108_with_external_probe PASSED [ 23%] 172s tests/test_parser.py::test_gvh5126_button_1 PASSED [ 25%] 172s tests/test_parser.py::test_gvh5126_button_0 PASSED [ 26%] 172s tests/test_parser.py::test_gvh5125_button_0 PASSED [ 27%] 172s tests/test_parser.py::test_gvh5125_button_1 PASSED [ 29%] 172s tests/test_parser.py::test_gvh5122_button_0 PASSED [ 30%] 172s tests/test_parser.py::test_gvh5122_passive_button_0 PASSED [ 32%] 172s tests/test_parser.py::test_gvh5122_passive_2_button_0 PASSED [ 33%] 172s tests/test_parser.py::test_gvh5123_open PASSED [ 35%] 172s tests/test_parser.py::test_gvh5123_closed PASSED [ 36%] 172s tests/test_parser.py::test_gvh5124_vibrating PASSED [ 38%] 172s tests/test_parser.py::test_gvh5124_vibrating_2 PASSED [ 39%] 172s tests/test_parser.py::test_gvh5121_motion PASSED [ 41%] 172s tests/test_parser.py::test_gvh5121_motion_2 PASSED [ 42%] 172s tests/test_parser.py::test_gvh5184_packet_type_1 PASSED [ 44%] 172s tests/test_parser.py::test_gvh5184_packet_type_2 PASSED [ 45%] 172s tests/test_parser.py::test_gvh5185 PASSED [ 47%] 172s tests/test_parser.py::test_gvh5185_variant PASSED [ 48%] 172s tests/test_parser.py::test_gvh5185_2_variant PASSED [ 50%] 172s tests/test_parser.py::test_gvh5183 PASSED [ 51%] 172s tests/test_parser.py::test_gvh5183_no_local_name PASSED [ 52%] 172s tests/test_parser.py::test_gvh5183_variant PASSED [ 54%] 172s tests/test_parser.py::test_gvh5181 PASSED [ 55%] 172s tests/test_parser.py::test_gvh5181_variant PASSED [ 57%] 172s tests/test_parser.py::test_gvh5181_variant_2 PASSED [ 58%] 172s tests/test_parser.py::test_gvh5181_variant_3 PASSED [ 60%] 172s tests/test_parser.py::test_gvh5181_variant_4 PASSED [ 61%] 172s tests/test_parser.py::test_gvh5181_variant_5 PASSED [ 63%] 172s tests/test_parser.py::test_gvh5182 PASSED [ 64%] 172s tests/test_parser.py::test_gvh5179 PASSED [ 66%] 172s tests/test_parser.py::test_gvh5179_2 PASSED [ 67%] 172s tests/test_parser.py::test_gvh5074 PASSED [ 69%] 172s tests/test_parser.py::test_gvh5178 PASSED [ 70%] 172s tests/test_parser.py::test_gvh5178_error PASSED [ 72%] 172s tests/test_parser.py::test_gvh5198_probe_1_2 PASSED [ 73%] 172s tests/test_parser.py::test_gvh5198_probe_3_4 PASSED [ 75%] 172s tests/test_parser.py::test_gvh5198_invalid PASSED [ 76%] 172s tests/test_parser.py::test_gvh5075_debug_hex PASSED [ 77%] 172s tests/test_parser.py::test_gvh5055_probe_1_2 PASSED [ 79%] 172s tests/test_parser.py::test_gvh5055_probe_3_4 PASSED [ 80%] 172s tests/test_parser.py::test_gvh5055_probe_5_6 PASSED [ 82%] 172s tests/test_parser.py::test_gvh5055_error PASSED [ 83%] 172s tests/test_parser.py::test_gvh5108 PASSED [ 85%] 172s tests/test_parser.py::test_gvh5108_no_name PASSED [ 86%] 172s tests/test_parser.py::test_gvh5106 PASSED [ 88%] 172s tests/test_parser.py::test_not_gvh5106 PASSED [ 89%] 172s tests/test_parser.py::test_get_model_info PASSED [ 91%] 172s tests/test_parser.py::test_gvh5127_motion PASSED [ 92%] 172s tests/test_parser.py::test_gvh5127_presence PASSED [ 94%] 172s tests/test_parser.py::test_gvh5127_absent PASSED [ 95%] 172s tests/test_parser.py::test_gvh5130_no_pressure_detected PASSED [ 97%] 172s tests/test_parser.py::test_gvh5130_pressure_detected PASSED [ 98%] 172s tests/test_parser.py::test_gvh5130_button PASSED [100%] 172s 172s ============================== 68 passed in 0.29s ============================== 172s ============================= test session starts ============================== 172s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.13 172s cachedir: .pytest_cache 172s rootdir: /tmp/autopkgtest.cDBFYw/autopkgtest_tmp 172s plugins: typeguard-4.4.1 172s collecting ... collected 68 items 172s 172s tests/test_parser.py::test_can_create PASSED [ 1%] 172s tests/test_parser.py::test_gvh5054 PASSED [ 2%] 172s tests/test_parser.py::test_gvh5051 PASSED [ 4%] 172s tests/test_parser.py::test_gvh5052 PASSED [ 5%] 172s tests/test_parser.py::test_gvh5071 PASSED [ 7%] 172s tests/test_parser.py::test_gvh5075 PASSED [ 8%] 172s tests/test_parser.py::test_gvh5075_2 PASSED [ 10%] 172s tests/test_parser.py::test_gvh5075_negative_values PASSED [ 11%] 172s tests/test_parser.py::test_gvh5075_oversized_values PASSED [ 13%] 172s tests/test_parser.py::test_gvh5075_other_values PASSED [ 14%] 172s tests/test_parser.py::test_gvh5177 PASSED [ 16%] 172s tests/test_parser.py::test_gvh5103 PASSED [ 17%] 172s tests/test_parser.py::test_gvh5105 PASSED [ 19%] 172s tests/test_parser.py::test_gvh5105_2 PASSED [ 20%] 172s tests/test_parser.py::test_gvh5100 PASSED [ 22%] 172s tests/test_parser.py::test_gvh5108_with_external_probe PASSED [ 23%] 172s tests/test_parser.py::test_gvh5126_button_1 PASSED [ 25%] 172s tests/test_parser.py::test_gvh5126_button_0 PASSED [ 26%] 172s tests/test_parser.py::test_gvh5125_button_0 PASSED [ 27%] 172s tests/test_parser.py::test_gvh5125_button_1 PASSED [ 29%] 172s tests/test_parser.py::test_gvh5122_button_0 PASSED [ 30%] 172s tests/test_parser.py::test_gvh5122_passive_button_0 PASSED [ 32%] 172s tests/test_parser.py::test_gvh5122_passive_2_button_0 PASSED [ 33%] 172s tests/test_parser.py::test_gvh5123_open PASSED [ 35%] 172s tests/test_parser.py::test_gvh5123_closed PASSED [ 36%] 172s tests/test_parser.py::test_gvh5124_vibrating PASSED [ 38%] 172s tests/test_parser.py::test_gvh5124_vibrating_2 PASSED [ 39%] 172s tests/test_parser.py::test_gvh5121_motion PASSED [ 41%] 172s tests/test_parser.py::test_gvh5121_motion_2 PASSED [ 42%] 172s tests/test_parser.py::test_gvh5184_packet_type_1 PASSED [ 44%] 172s tests/test_parser.py::test_gvh5184_packet_type_2 PASSED [ 45%] 172s tests/test_parser.py::test_gvh5185 PASSED [ 47%] 172s tests/test_parser.py::test_gvh5185_variant PASSED [ 48%] 172s tests/test_parser.py::test_gvh5185_2_variant PASSED [ 50%] 172s tests/test_parser.py::test_gvh5183 PASSED [ 51%] 172s tests/test_parser.py::test_gvh5183_no_local_name PASSED [ 52%] 172s tests/test_parser.py::test_gvh5183_variant PASSED [ 54%] 172s tests/test_parser.py::test_gvh5181 PASSED [ 55%] 172s tests/test_parser.py::test_gvh5181_variant PASSED [ 57%] 172s tests/test_parser.py::test_gvh5181_variant_2 PASSED [ 58%] 172s tests/test_parser.py::test_gvh5181_variant_3 PASSED [ 60%] 172s tests/test_parser.py::test_gvh5181_variant_4 PASSED [ 61%] 172s tests/test_parser.py::test_gvh5181_variant_5 PASSED [ 63%] 172s tests/test_parser.py::test_gvh5182 PASSED [ 64%] 172s tests/test_parser.py::test_gvh5179 PASSED [ 66%] 172s tests/test_parser.py::test_gvh5179_2 PASSED [ 67%] 172s tests/test_parser.py::test_gvh5074 PASSED [ 69%] 172s tests/test_parser.py::test_gvh5178 PASSED [ 70%] 172s tests/test_parser.py::test_gvh5178_error PASSED [ 72%] 172s tests/test_parser.py::test_gvh5198_probe_1_2 PASSED [ 73%] 172s tests/test_parser.py::test_gvh5198_probe_3_4 PASSED [ 75%] 172s tests/test_parser.py::test_gvh5198_invalid PASSED [ 76%] 172s tests/test_parser.py::test_gvh5075_debug_hex PASSED [ 77%] 172s tests/test_parser.py::test_gvh5055_probe_1_2 PASSED [ 79%] 172s tests/test_parser.py::test_gvh5055_probe_3_4 PASSED [ 80%] 172s tests/test_parser.py::test_gvh5055_probe_5_6 PASSED [ 82%] 172s tests/test_parser.py::test_gvh5055_error PASSED [ 83%] 172s tests/test_parser.py::test_gvh5108 PASSED [ 85%] 172s tests/test_parser.py::test_gvh5108_no_name PASSED [ 86%] 172s tests/test_parser.py::test_gvh5106 PASSED [ 88%] 172s tests/test_parser.py::test_not_gvh5106 PASSED [ 89%] 172s tests/test_parser.py::test_get_model_info PASSED [ 91%] 172s tests/test_parser.py::test_gvh5127_motion PASSED [ 92%] 172s tests/test_parser.py::test_gvh5127_presence PASSED [ 94%] 172s tests/test_parser.py::test_gvh5127_absent PASSED [ 95%] 172s tests/test_parser.py::test_gvh5130_no_pressure_detected PASSED [ 97%] 172s tests/test_parser.py::test_gvh5130_pressure_detected PASSED [ 98%] 172s tests/test_parser.py::test_gvh5130_button PASSED [100%] 172s 172s ============================== 68 passed in 0.23s ============================== 172s /tmp/autopkgtest.cDBFYw/wrapper.sh: checking for leaked background processes... 172s /tmp/autopkgtest.cDBFYw/wrapper.sh: waiting for tee/cat subprocesses... 172s /tmp/autopkgtest.cDBFYw/wrapper.sh: cleaning up... 172s /tmp/autopkgtest.cDBFYw/wrapper.sh: Exit status: 0 172s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest [12:11:40]: test run-tests: -----------------------] 173s autopkgtest: DBG: testbed executing test finished with exit status 0 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/run-tests-stdout /tmp/autopkgtest-work.9w9hnwqy/out/run-tests-stdout 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/run-tests-stderr /tmp/autopkgtest-work.9w9hnwqy/out/run-tests-stderr 173s autopkgtest: DBG: got reply from testbed: ok 173s run-tests PASS 173s autopkgtest [12:11:40]: test run-tests: - - - - - - - - - - results - - - - - - - - - - 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.cDBFYw/run-tests-artifacts/ /tmp/autopkgtest-work.9w9hnwqy/out/artifacts/ 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.cDBFYw/run-tests-artifacts', '/tmp/autopkgtest.cDBFYw/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 [12:11:40]: @@@@@@@@@@@@@@@@@@@@ summary 173s run-tests PASS 173s autopkgtest: DBG: testbed stop 173s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.cDBFYw 173s autopkgtest: DBG: sending command to testbed: close 190s autopkgtest: DBG: got reply from testbed: ok 190s autopkgtest: DBG: sending command to testbed: quit 190s nova [W] Using flock in prodstack6-s390x 190s Creating nova instance adt-plucky-s390x-govee-ble-20250219-120847-juju-7f2275-prod-proposed-migration-environment-15-ec614314-25e4-4a89-b7ab-bb346f568e74 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 190s nova [W] Timed out waiting for 17fa2587-3431-401d-b6a0-342fd00cbd35 to get deleted.