0s autopkgtest: DBG: testbed init 0s autopkgtest [04:35:50]: starting date and time: 2025-02-19 04:35:50+0000 0s autopkgtest [04:35:50]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:35:50]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.g0wby7jk/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:golang-github-prometheus-community-pro-bing --apt-upgrade golang-github-prometheus-community-pro-bing --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=golang-github-prometheus-community-pro-bing/0.6.1-1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-11.secgroup --name adt-plucky-s390x-golang-github-prometheus-community-pro-bing-20250219-043549-juju-7f2275-prod-proposed-migration-environment-15-cb55584b-626d-47c6-8d9b-9aa26f8207c2 --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 118s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.znfHde 118s autopkgtest: DBG: sending command to testbed: print-execute-command 118s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.mdcu7glt/runcmd 118s autopkgtest: DBG: sending command to testbed: capabilities 118s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert isolation-machine suggested-normal-user=ubuntu reboot root-on-testbed 118s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 118s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.znfHde'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.znfHde/wrapper.sh 118s autopkgtest: DBG: got reply from testbed: ok 118s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.znfHde/wrapper.sh'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [04:37:48]: testbed dpkg architecture: s390x 118s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [04:37:48]: testbed apt version: 2.9.29 118s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed has eatmydata 119s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [04:37:49]: @@@@@@@@@@@@@@@@@@@@ test bed setup 119s 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 [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [04:37:49]: testbed release detected to be: None 119s 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 [] 119s autopkgtest: DBG: testbed command exited with code 0 119s 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 [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: adding APT source: Types: deb deb-src 119s URIs: http://ftpmaster.internal/ubuntu/ 119s Suites: plucky-proposed 119s Components: main restricted universe multiverse 119s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 119s 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 [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 119s Package: * 119s Pin: release plucky-proposed 119s Pin-Priority: 500 119s 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 [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [04:37:50]: updating testbed package index (apt update) 120s 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'] 120s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 120s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 120s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 120s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 120s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 120s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 121s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 121s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 121s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 121s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 121s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 121s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 121s Fetched 1723 kB in 1s (1736 kB/s) 121s Reading package lists... 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 121s Package: * 121s Pin: release plucky-proposed 121s Pin-Priority: 100 121s 121s Package: src:golang-github-prometheus-community-pro-bing:any 121s Pin: release plucky-proposed 121s Pin-Priority: 995 121s 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:golang-github-prometheus-community-pro-bing:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s 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.znfHde/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 122s autopkgtest: DBG: testbed command exited with code 0 122s 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'] 122s + lsb_release --codename --short 122s + RELEASE=plucky 122s + cat 122s + [ plucky != trusty ] 122s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s Calculating upgrade... 122s The following packages were automatically installed and are no longer required: 122s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 122s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 122s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 122s linux-tools-6.11.0-8-generic 122s Use 'sudo apt autoremove' to remove them. 122s The following NEW packages will be installed: 122s libapt-pkg7.0 122s The following packages will be upgraded: 122s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 122s s390-tools-signed 123s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 123s Need to get 8909 kB of archives. 123s After this operation, 3624 kB of additional disk space will be used. 123s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 123s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 123s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 123s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 123s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 123s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 123s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 124s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 124s Fetched 8909 kB in 1s (6946 kB/s) 124s Selecting previously unselected package libapt-pkg7.0:s390x. 124s (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 ... 80980 files and directories currently installed.) 124s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 124s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 124s Setting up libapt-pkg7.0:s390x (2.9.30) ... 124s (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 ... 81029 files and directories currently installed.) 124s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 124s Unpacking apt (2.9.30) over (2.9.29) ... 124s Setting up apt (2.9.30) ... 125s (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 ... 81029 files and directories currently installed.) 125s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 125s Unpacking apt-utils (2.9.30) over (2.9.29) ... 125s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 125s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 125s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 125s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 125s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 125s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 125s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 125s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 125s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 125s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 125s Setting up apt-utils (2.9.30) ... 125s Setting up rsyslog (8.2412.0-2ubuntu1) ... 125s info: The user `syslog' is already a member of `adm'. 126s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 126s Setting up dhcpcd-base (1:10.1.0-7) ... 126s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 126s Setting up s390-tools (2.37.0-0ubuntu2) ... 127s Processing triggers for libc-bin (2.40-4ubuntu1) ... 127s Processing triggers for man-db (2.13.0-1) ... 128s Processing triggers for initramfs-tools (0.145ubuntu2) ... 128s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 128s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 132s Using config file '/etc/zipl.conf' 132s Building bootmap in '/boot' 132s Adding IPL section 'ubuntu' (default) 132s Preparing boot device for LD-IPL: vda (0000). 132s Done. 132s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 132s + /usr/lib/apt/apt-helper analyze-pattern ?true 132s + uname -r 132s + sed s/\./\\./g 132s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 132s + apt list ?obsolete 132s + tail -n+2 132s + cut -d/ -f1 132s + grep -v ^linux-.*6\.12\.0-15-generic.* 133s + true 133s + obsolete_pkgs= 133s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 133s Reading package lists... 133s Building dependency tree... 133s Reading state information... 133s The following packages will be REMOVED: 133s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 133s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 133s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 133s linux-tools-6.11.0-8-generic* 133s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 133s After this operation, 167 MB disk space will be freed. 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 ... 81030 files and directories currently installed.) 133s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 133s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 133s Removing libpython3.12t64:s390x (3.12.9-1) ... 133s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 133s Removing libnsl2:s390x (1.3.0-3build3) ... 133s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 133s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 133s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 134s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 134s Processing triggers for libc-bin (2.40-4ubuntu1) ... 134s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 134s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 134s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 135s + grep -q trusty /etc/lsb-release 135s + [ ! -d /usr/share/doc/unattended-upgrades ] 135s + [ ! -d /usr/share/doc/lxd ] 135s + [ ! -d /usr/share/doc/lxd-client ] 135s + [ ! -d /usr/share/doc/snapd ] 135s + type iptables 135s + cat 135s + chmod 755 /etc/rc.local 135s + . /etc/rc.local 135s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 135s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 135s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 135s + uname -m 135s + [ s390x = ppc64le ] 135s + [ -d /run/systemd/system ] 135s + systemd-detect-virt --quiet --vm 135s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 135s + cat 135s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 135s + echo COMPRESS=lz4 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [04:38:05]: upgrading testbed (apt dist-upgrade and autopurge) 135s 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'] 135s Reading package lists... 135s Building dependency tree... 135s Reading state information... 135s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 135s Starting 2 pkgProblemResolver with broken count: 0 135s Done 135s Entering ResolveByKeep 135s 136s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 136s autopkgtest: DBG: testbed command exited with code 0 136s 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'] 136s Reading package lists... 136s Building dependency tree... 136s Reading state information... 136s Starting pkgProblemResolver with broken count: 0 136s Starting 2 pkgProblemResolver with broken count: 0 136s Done 136s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.znfHde/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 137s autopkgtest: DBG: testbed command exited with code 1 137s autopkgtest [04:38:06]: rebooting testbed after setup commands that affected boot 137s autopkgtest: DBG: sending command to testbed: reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.znfHde'], 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.znfHde/autopkgtest-reboot 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.znfHde/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.znfHde/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.znfHde/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.znfHde'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.znfHde/autopkgtest-reboot-prepare 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.znfHde/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.znfHde/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest [04:38:25]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 155s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.znfHde/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.znfHde/testbed-packages /tmp/autopkgtest-work.g0wby7jk/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.znfHde'], 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.znfHde/autopkgtest-reboot 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.znfHde/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.znfHde/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.znfHde/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.znfHde'], 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.znfHde/autopkgtest-reboot-prepare 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.znfHde/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.znfHde/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: Binaries: initialising 157s autopkgtest [04:38:27]: @@@@@@@@@@@@@@@@@@@@ apt-source golang-github-prometheus-community-pro-bing 157s autopkgtest: DBG: blame += golang-github-prometheus-community-pro-bing 157s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 157s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'golang-github-prometheus-community-pro-bing'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^golang-github-prometheus-community-pro-bing-dev$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'golang-github-prometheus-community-pro-bing-dev=0.6.1-1'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: install_deps: deps_new=[] 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.znfHde/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source golang-github-prometheus-community-pro-bing=0.6.1-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 golang-github-prometheus-community-pro-bing_*.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=golang-github-prometheus-community-pro-bing/0.6.1-1'] 158s + cd / 158s + mktemp -d /tmp/autopkgtest.znfHde/build.XXX 158s + builddir=/tmp/autopkgtest.znfHde/build.T6N 158s + cd /tmp/autopkgtest.znfHde/build.T6N 158s + apt-get source -d -q --only-source golang-github-prometheus-community-pro-bing=0.6.1-1 159s + OUT=Reading package lists... 159s NOTICE: 'golang-github-prometheus-community-pro-bing' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/go-team/packages/golang-github-prometheus-community-pro-bing.git 159s Please use: 159s git clone https://salsa.debian.org/go-team/packages/golang-github-prometheus-community-pro-bing.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 33.0 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (dsc) [2558 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (tar) [27.0 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (diff) [3444 B] 159s Fetched 33.0 kB in 0s (106 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + echo Reading package lists... 159s NOTICE: 'golang-github-prometheus-community-pro-bing' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/go-team/packages/golang-github-prometheus-community-pro-bing.git 159s Please use: 159s git clone https://salsa.debian.org/go-team/packages/golang-github-prometheus-community-pro-bing.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 33.0 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (dsc) [2558 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (tar) [27.0 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (diff) [3444 B] 159s Fetched 33.0 kB in 0s (106 kB/s) 159s Download complete and in download only mode 159s + grep ^Get: 159s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (dsc) [2558 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (tar) [27.0 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe golang-github-prometheus-community-pro-bing 0.6.1-1 (diff) [3444 B] 159s + dpkg-source -x golang-github-prometheus-community-pro-bing_0.6.1-1.dsc src 159s gpgv: Signature made Fri Feb 7 15:07:05 2025 UTC 159s gpgv: using RSA key 303F687A4EFCB1AE7C1A35A3B700173FBB805A29 159s gpgv: issuer "dswarbrick@debian.org" 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./golang-github-prometheus-community-pro-bing_0.6.1-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 [04:38:29]: testing package golang-github-prometheus-community-pro-bing version 0.6.1-1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.znfHde/build.T6N/src/debian/ /tmp/autopkgtest-work.g0wby7jk/out/pkg/debian/ 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: autodep8 generated control: ----- 159s Test-Command: /usr/bin/dh_golang_autopkgtest 159s Depends: @, @builddeps@, dh-golang, 159s Restrictions: allow-stderr, 159s Features: test-name=dh-golang-autopkgtest 159s 159s 159s ------- 159s autopkgtest: DBG: processing dependency @ 159s autopkgtest: DBG: synthesised dependency golang-github-prometheus-community-pro-bing-dev 159s autopkgtest: DBG: processing dependency @builddeps@ 159s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 159s autopkgtest: DBG: synthesised dependency dh-sequence-golang 159s autopkgtest: DBG: synthesised dependency golang-any 159s autopkgtest: DBG: synthesised dependency golang-github-google-uuid-dev 159s autopkgtest: DBG: synthesised dependency golang-golang-x-net-dev 159s autopkgtest: DBG: synthesised dependency golang-golang-x-sync-dev 159s autopkgtest: DBG: synthesised dependency build-essential 159s autopkgtest: DBG: processing dependency dh-golang 159s autopkgtest: DBG: Test defined: name dh-golang-autopkgtest path None command "/usr/bin/dh_golang_autopkgtest" restrictions ['allow-stderr'] features ['test-name=dh-golang-autopkgtest'] depends ['golang-github-prometheus-community-pro-bing-dev', 'debhelper-compat (= 13)', 'dh-sequence-golang', 'golang-any', 'golang-github-google-uuid-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sync-dev', 'build-essential', 'dh-golang'] 159s autopkgtest [04:38:29]: build not needed 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.znfHde/build.T6N/src/ /tmp/autopkgtest-work.g0wby7jk/out/tests-tree/ 159s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: autodep8 generated control: ----- 160s Test-Command: /usr/bin/dh_golang_autopkgtest 160s Depends: @, @builddeps@, dh-golang, 160s Restrictions: allow-stderr, 160s Features: test-name=dh-golang-autopkgtest 160s 160s 160s ------- 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency golang-github-prometheus-community-pro-bing-dev 160s autopkgtest: DBG: processing dependency @builddeps@ 160s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 160s autopkgtest: DBG: synthesised dependency dh-sequence-golang 160s autopkgtest: DBG: synthesised dependency golang-any 160s autopkgtest: DBG: synthesised dependency golang-github-google-uuid-dev 160s autopkgtest: DBG: synthesised dependency golang-golang-x-net-dev 160s autopkgtest: DBG: synthesised dependency golang-golang-x-sync-dev 160s autopkgtest: DBG: synthesised dependency build-essential 160s autopkgtest: DBG: processing dependency dh-golang 160s autopkgtest: DBG: Test defined: name dh-golang-autopkgtest path None command "/usr/bin/dh_golang_autopkgtest" restrictions ['allow-stderr'] features ['test-name=dh-golang-autopkgtest'] depends ['golang-github-prometheus-community-pro-bing-dev', 'debhelper-compat (= 13)', 'dh-sequence-golang', 'golang-any', 'golang-github-google-uuid-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sync-dev', 'build-essential', 'dh-golang'] 160s autopkgtest [04:38:30]: test dh-golang-autopkgtest: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['golang-github-prometheus-community-pro-bing-dev', 'debhelper-compat (= 13)', 'dh-sequence-golang', 'golang-any', 'golang-github-google-uuid-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sync-dev', 'build-essential', 'dh-golang'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['golang-github-prometheus-community-pro-bing-dev', 'debhelper-compat (= 13)', 'dh-sequence-golang', 'golang-any', 'golang-github-google-uuid-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sync-dev', 'build-essential', 'dh-golang'] 160s autopkgtest: DBG: install-deps: satisfying golang-github-prometheus-community-pro-bing-dev, debhelper-compat (= 13), dh-sequence-golang, golang-any, golang-github-google-uuid-dev, golang-golang-x-net-dev, golang-golang-x-sync-dev, build-essential, dh-golang 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', 'golang-github-prometheus-community-pro-bing-dev, debhelper-compat (= 13), dh-sequence-golang, golang-any, golang-github-google-uuid-dev, golang-golang-x-net-dev, golang-golang-x-sync-dev, build-essential, dh-golang'], 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... 160s Starting pkgProblemResolver with broken count: 0 160s Starting 2 pkgProblemResolver with broken count: 0 160s Done 160s The following NEW packages will be installed: 160s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 160s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 160s dh-golang dh-strip-nondeterminism dwz g++ g++-14 g++-14-s390x-linux-gnu 160s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 160s gettext golang-1.24-go golang-1.24-src golang-any 160s golang-github-google-uuid-dev 160s golang-github-prometheus-community-pro-bing-dev golang-go 160s golang-golang-x-crypto-dev golang-golang-x-net-dev golang-golang-x-sync-dev 160s golang-golang-x-sys-dev golang-golang-x-term-dev golang-golang-x-text-dev 160s golang-src intltool-debian libarchive-zip-perl libasan8 libcc1-0 160s libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 160s libisl23 libitm1 libmpc3 libstdc++-14-dev libtool libubsan1 m4 po-debconf 160s 0 upgraded, 53 newly installed, 0 to remove and 0 not upgraded. 160s Need to get 110 MB of archives. 160s After this operation, 496 MB of additional disk space will be used. 160s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 161s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 161s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 161s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 161s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 161s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 161s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 161s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 163s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 163s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 163s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 163s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 163s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 163s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 163s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 163s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 164s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 164s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 166s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 166s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 166s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 166s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 166s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 167s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 168s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 168s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 168s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 168s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 168s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 168s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 168s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 168s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 168s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 168s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 169s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 169s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 169s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 169s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 169s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 170s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x golang-1.24-src all 1.24.0-1 [21.2 MB] 172s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x golang-1.24-go s390x 1.24.0-1 [27.8 MB] 174s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x golang-src all 2:1.24~2 [5136 B] 174s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x golang-go s390x 2:1.24~2 [44.0 kB] 174s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-any s390x 2:1.24~2 [2842 B] 174s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-uuid-dev all 1.6.0-1 [20.4 kB] 174s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-sys-dev all 0.22.0-1 [457 kB] 175s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-term-dev all 0.22.0-1 [14.6 kB] 175s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-text-dev all 0.16.0-1 [4603 kB] 175s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-crypto-dev all 1:0.25.0-1 [1724 kB] 175s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-net-dev all 1:0.27.0-1 [935 kB] 175s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-sync-dev all 0.7.0-1 [19.5 kB] 175s Get:52 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x golang-github-prometheus-community-pro-bing-dev all 0.6.1-1 [20.7 kB] 175s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x dh-golang all 1.62 [25.2 kB] 175s Fetched 110 MB in 15s (7371 kB/s) 176s Selecting previously unselected package m4. 176s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 176s Preparing to unpack .../00-m4_1.4.19-5_s390x.deb ... 176s Unpacking m4 (1.4.19-5) ... 176s Selecting previously unselected package autoconf. 176s Preparing to unpack .../01-autoconf_2.72-3_all.deb ... 176s Unpacking autoconf (2.72-3) ... 176s Selecting previously unselected package autotools-dev. 176s Preparing to unpack .../02-autotools-dev_20220109.1_all.deb ... 176s Unpacking autotools-dev (20220109.1) ... 176s Selecting previously unselected package automake. 176s Preparing to unpack .../03-automake_1%3a1.17-3_all.deb ... 176s Unpacking automake (1:1.17-3) ... 176s Selecting previously unselected package autopoint. 176s Preparing to unpack .../04-autopoint_0.23.1-1_all.deb ... 176s Unpacking autopoint (0.23.1-1) ... 176s Selecting previously unselected package libisl23:s390x. 176s Preparing to unpack .../05-libisl23_0.27-1_s390x.deb ... 176s Unpacking libisl23:s390x (0.27-1) ... 176s Selecting previously unselected package libmpc3:s390x. 176s Preparing to unpack .../06-libmpc3_1.3.1-1build2_s390x.deb ... 176s Unpacking libmpc3:s390x (1.3.1-1build2) ... 176s Selecting previously unselected package cpp-14-s390x-linux-gnu. 176s Preparing to unpack .../07-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package cpp-14. 176s Preparing to unpack .../08-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package cpp-s390x-linux-gnu. 176s Preparing to unpack .../09-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package cpp. 176s Preparing to unpack .../10-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking cpp (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package libcc1-0:s390x. 176s Preparing to unpack .../11-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 176s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 176s Selecting previously unselected package libgomp1:s390x. 176s Preparing to unpack .../12-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 176s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 176s Selecting previously unselected package libitm1:s390x. 176s Preparing to unpack .../13-libitm1_15-20250213-1ubuntu1_s390x.deb ... 176s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 176s Selecting previously unselected package libasan8:s390x. 176s Preparing to unpack .../14-libasan8_15-20250213-1ubuntu1_s390x.deb ... 176s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 176s Selecting previously unselected package libubsan1:s390x. 176s Preparing to unpack .../15-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 176s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 176s Selecting previously unselected package libgcc-14-dev:s390x. 176s Preparing to unpack .../16-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package gcc-14-s390x-linux-gnu. 176s Preparing to unpack .../17-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package gcc-14. 176s Preparing to unpack .../18-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package gcc-s390x-linux-gnu. 176s Preparing to unpack .../19-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package gcc. 176s Preparing to unpack .../20-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking gcc (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package libstdc++-14-dev:s390x. 176s Preparing to unpack .../21-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package g++-14-s390x-linux-gnu. 176s Preparing to unpack .../22-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package g++-14. 176s Preparing to unpack .../23-g++-14_14.2.0-17ubuntu1_s390x.deb ... 176s Unpacking g++-14 (14.2.0-17ubuntu1) ... 176s Selecting previously unselected package g++-s390x-linux-gnu. 176s Preparing to unpack .../24-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package g++. 176s Preparing to unpack .../25-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 176s Unpacking g++ (4:14.2.0-1ubuntu1) ... 176s Selecting previously unselected package build-essential. 176s Preparing to unpack .../26-build-essential_12.10ubuntu1_s390x.deb ... 176s Unpacking build-essential (12.10ubuntu1) ... 176s Selecting previously unselected package libdebhelper-perl. 176s Preparing to unpack .../27-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 176s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 177s Selecting previously unselected package libtool. 177s Preparing to unpack .../28-libtool_2.5.4-3build1_all.deb ... 177s Unpacking libtool (2.5.4-3build1) ... 177s Selecting previously unselected package dh-autoreconf. 177s Preparing to unpack .../29-dh-autoreconf_20_all.deb ... 177s Unpacking dh-autoreconf (20) ... 177s Selecting previously unselected package libarchive-zip-perl. 177s Preparing to unpack .../30-libarchive-zip-perl_1.68-1_all.deb ... 177s Unpacking libarchive-zip-perl (1.68-1) ... 177s Selecting previously unselected package libfile-stripnondeterminism-perl. 177s Preparing to unpack .../31-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 177s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 177s Selecting previously unselected package dh-strip-nondeterminism. 177s Preparing to unpack .../32-dh-strip-nondeterminism_1.14.1-2_all.deb ... 177s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 177s Selecting previously unselected package debugedit. 177s Preparing to unpack .../33-debugedit_1%3a5.1-2_s390x.deb ... 177s Unpacking debugedit (1:5.1-2) ... 177s Selecting previously unselected package dwz. 177s Preparing to unpack .../34-dwz_0.15-1build6_s390x.deb ... 177s Unpacking dwz (0.15-1build6) ... 177s Selecting previously unselected package gettext. 177s Preparing to unpack .../35-gettext_0.23.1-1_s390x.deb ... 177s Unpacking gettext (0.23.1-1) ... 177s Selecting previously unselected package intltool-debian. 177s Preparing to unpack .../36-intltool-debian_0.35.0+20060710.6_all.deb ... 177s Unpacking intltool-debian (0.35.0+20060710.6) ... 177s Selecting previously unselected package po-debconf. 177s Preparing to unpack .../37-po-debconf_1.0.21+nmu1_all.deb ... 177s Unpacking po-debconf (1.0.21+nmu1) ... 177s Selecting previously unselected package debhelper. 177s Preparing to unpack .../38-debhelper_13.24.1ubuntu2_all.deb ... 177s Unpacking debhelper (13.24.1ubuntu2) ... 177s Selecting previously unselected package golang-1.24-src. 177s Preparing to unpack .../39-golang-1.24-src_1.24.0-1_all.deb ... 177s Unpacking golang-1.24-src (1.24.0-1) ... 178s Selecting previously unselected package golang-1.24-go. 178s Preparing to unpack .../40-golang-1.24-go_1.24.0-1_s390x.deb ... 178s Unpacking golang-1.24-go (1.24.0-1) ... 178s Selecting previously unselected package golang-src. 178s Preparing to unpack .../41-golang-src_2%3a1.24~2_all.deb ... 178s Unpacking golang-src (2:1.24~2) ... 178s Selecting previously unselected package golang-go:s390x. 178s Preparing to unpack .../42-golang-go_2%3a1.24~2_s390x.deb ... 178s Unpacking golang-go:s390x (2:1.24~2) ... 178s Selecting previously unselected package golang-any:s390x. 178s Preparing to unpack .../43-golang-any_2%3a1.24~2_s390x.deb ... 178s Unpacking golang-any:s390x (2:1.24~2) ... 178s Selecting previously unselected package golang-github-google-uuid-dev. 178s Preparing to unpack .../44-golang-github-google-uuid-dev_1.6.0-1_all.deb ... 178s Unpacking golang-github-google-uuid-dev (1.6.0-1) ... 178s Selecting previously unselected package golang-golang-x-sys-dev. 178s Preparing to unpack .../45-golang-golang-x-sys-dev_0.22.0-1_all.deb ... 178s Unpacking golang-golang-x-sys-dev (0.22.0-1) ... 178s Selecting previously unselected package golang-golang-x-term-dev. 178s Preparing to unpack .../46-golang-golang-x-term-dev_0.22.0-1_all.deb ... 178s Unpacking golang-golang-x-term-dev (0.22.0-1) ... 178s Selecting previously unselected package golang-golang-x-text-dev. 178s Preparing to unpack .../47-golang-golang-x-text-dev_0.16.0-1_all.deb ... 178s Unpacking golang-golang-x-text-dev (0.16.0-1) ... 178s Selecting previously unselected package golang-golang-x-crypto-dev. 178s Preparing to unpack .../48-golang-golang-x-crypto-dev_1%3a0.25.0-1_all.deb ... 178s Unpacking golang-golang-x-crypto-dev (1:0.25.0-1) ... 179s Selecting previously unselected package golang-golang-x-net-dev. 179s Preparing to unpack .../49-golang-golang-x-net-dev_1%3a0.27.0-1_all.deb ... 179s Unpacking golang-golang-x-net-dev (1:0.27.0-1) ... 179s Selecting previously unselected package golang-golang-x-sync-dev. 179s Preparing to unpack .../50-golang-golang-x-sync-dev_0.7.0-1_all.deb ... 179s Unpacking golang-golang-x-sync-dev (0.7.0-1) ... 179s Selecting previously unselected package golang-github-prometheus-community-pro-bing-dev. 179s Preparing to unpack .../51-golang-github-prometheus-community-pro-bing-dev_0.6.1-1_all.deb ... 179s Unpacking golang-github-prometheus-community-pro-bing-dev (0.6.1-1) ... 179s Selecting previously unselected package dh-golang. 179s Preparing to unpack .../52-dh-golang_1.62_all.deb ... 179s Unpacking dh-golang (1.62) ... 179s Setting up golang-1.24-src (1.24.0-1) ... 179s Setting up libarchive-zip-perl (1.68-1) ... 179s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 179s Setting up golang-golang-x-sys-dev (0.22.0-1) ... 179s Setting up m4 (1.4.19-5) ... 179s Setting up golang-golang-x-term-dev (0.22.0-1) ... 179s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 179s Setting up autotools-dev (20220109.1) ... 179s Setting up libmpc3:s390x (1.3.1-1build2) ... 179s Setting up golang-golang-x-sync-dev (0.7.0-1) ... 179s Setting up autopoint (0.23.1-1) ... 179s Setting up golang-1.24-go (1.24.0-1) ... 179s Setting up autoconf (2.72-3) ... 179s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 179s Setting up dwz (0.15-1build6) ... 179s Setting up golang-golang-x-text-dev (0.16.0-1) ... 179s Setting up golang-github-google-uuid-dev (1.6.0-1) ... 179s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 179s Setting up debugedit (1:5.1-2) ... 179s Setting up golang-golang-x-crypto-dev (1:0.25.0-1) ... 179s Setting up libisl23:s390x (0.27-1) ... 179s Setting up golang-src (2:1.24~2) ... 179s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 179s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 179s Setting up automake (1:1.17-3) ... 179s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 179s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 179s Setting up gettext (0.23.1-1) ... 179s Setting up golang-go:s390x (2:1.24~2) ... 179s Setting up golang-any:s390x (2:1.24~2) ... 179s Setting up intltool-debian (0.35.0+20060710.6) ... 179s Setting up golang-golang-x-net-dev (1:0.27.0-1) ... 179s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 179s Setting up cpp-14 (14.2.0-17ubuntu1) ... 179s Setting up dh-strip-nondeterminism (1.14.1-2) ... 179s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 179s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 179s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 179s Setting up po-debconf (1.0.21+nmu1) ... 179s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 179s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 179s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 179s Setting up golang-github-prometheus-community-pro-bing-dev (0.6.1-1) ... 179s Setting up cpp (4:14.2.0-1ubuntu1) ... 179s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 179s Setting up gcc-14 (14.2.0-17ubuntu1) ... 179s Setting up g++-14 (14.2.0-17ubuntu1) ... 179s Setting up libtool (2.5.4-3build1) ... 179s Setting up gcc (4:14.2.0-1ubuntu1) ... 179s Setting up dh-autoreconf (20) ... 179s Setting up g++ (4:14.2.0-1ubuntu1) ... 179s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 179s Setting up build-essential (12.10ubuntu1) ... 179s Setting up debhelper (13.24.1ubuntu2) ... 179s Setting up dh-golang (1.62) ... 179s Processing triggers for man-db (2.13.0-1) ... 179s Processing triggers for install-info (7.1.1-1) ... 180s Processing triggers for libc-bin (2.40-4ubuntu1) ... 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'golang-github-prometheus-community-pro-bing-dev'], kind short, sout pipe, serr pipe, env [] 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-packages.all /tmp/autopkgtest-work.g0wby7jk/out/dh-golang-autopkgtest-packages.all 180s autopkgtest: DBG: got reply from testbed: ok 180s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.znfHde/build.T6N/src'], kind short, sout raw, serr raw, env [] 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.znfHde/build.T6N/src already exists 180s autopkgtest [04:38:50]: test dh-golang-autopkgtest: /usr/bin/dh_golang_autopkgtest 180s autopkgtest [04:38:50]: test dh-golang-autopkgtest: [----------------------- 180s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.znfHde/wrapper.sh --debug --artifacts=/tmp/autopkgtest.znfHde/dh-golang-autopkgtest-artifacts --chdir=/tmp/autopkgtest.znfHde/build.T6N/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.znfHde/dh-golang-autopkgtest-stderr --stdout=/tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stdout --tmp=/tmp/autopkgtest.znfHde/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=golang-github-prometheus-community-pro-bing/0.6.1-1 -- bash -ec /usr/bin/dh_golang_autopkgtest'], kind test, sout raw, serr raw, env [] 181s /tmp/autopkgtest.znfHde/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-artifacts 181s /tmp/autopkgtest.znfHde/wrapper.sh: changing to directory: /tmp/autopkgtest.znfHde/build.T6N/src 181s /tmp/autopkgtest.znfHde/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 181s /tmp/autopkgtest.znfHde/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 181s /tmp/autopkgtest.znfHde/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 181s /tmp/autopkgtest.znfHde/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 181s /tmp/autopkgtest.znfHde/wrapper.sh: setting environment: LANG=C.UTF-8 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LANGUAGE 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_ADDRESS 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_ALL 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_COLLATE 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_CTYPE 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_IDENTIFICATION 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_MEASUREMENT 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_MESSAGES 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_MONETARY 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_NAME 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_NUMERIC 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_PAPER 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_TELEPHONE 181s /tmp/autopkgtest.znfHde/wrapper.sh: unsetting environment: LC_TIME 181s /tmp/autopkgtest.znfHde/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 181s /tmp/autopkgtest.znfHde/wrapper.sh: pretending to be a login shell 181s /tmp/autopkgtest.znfHde/wrapper.sh: will write standard error to /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stderr 181s /tmp/autopkgtest.znfHde/wrapper.sh: will write stdout to /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stdout 181s /tmp/autopkgtest.znfHde/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.znfHde/autopkgtest_tmp 181s /tmp/autopkgtest.znfHde/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=golang-github-prometheus-community-pro-bing/0.6.1-1 181s /tmp/autopkgtest.znfHde/wrapper.sh: command to run: bash -ec /usr/bin/dh_golang_autopkgtest 181s /tmp/autopkgtest.znfHde/wrapper.sh: copying /tmp/tmp.DSFTbCCFFE/out to stdout and file: /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stdout 181s /tmp/autopkgtest.znfHde/wrapper.sh: copying /tmp/tmp.DSFTbCCFFE/err to standard error and file: /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stdout 181s /tmp/autopkgtest.znfHde/wrapper.sh: writing script pid 1875 to /tmp/autopkgtest_script_pid 181s [info] Testing github.com/prometheus-community/pro-bing... 181s [info] Source code installed by binary package, overriding dh_auto_configure... 181s -e: warning: LTO optimize is enable in buildflags. But cgo doesn't support it. LTO flags will be stripped in cgo. 181s dh build --buildsystem=golang 181s dh_update_autotools_config -O--buildsystem=golang 181s dh_autoreconf -O--buildsystem=golang 181s debian/rules override_dh_auto_configure 181s make[1]: Entering directory '/tmp/autopkgtest.znfHde/autopkgtest_tmp' 181s -e: warning: LTO optimize is enable in buildflags. But cgo doesn't support it. LTO flags will be stripped in cgo. 181s mkdir -p "obj-s390x-linux-gnu" 181s # remove existing symlinks, since "cp -a" won't convert them 181s find "obj-s390x-linux-gnu" -type l -exec rm "{}" \; 181s cp -a /usr/share/gocode/src "obj-s390x-linux-gnu" 181s make[1]: Leaving directory '/tmp/autopkgtest.znfHde/autopkgtest_tmp' 181s dh_auto_build -O--buildsystem=golang 181s dh_auto_build: warning: LTO optimize is enable in buildflags. But cgo doesn't support it. LTO flags will be stripped in cgo. 181s cd obj-s390x-linux-gnu && go install -trimpath -v -p 2 github.com/prometheus-community/pro-bing 181s internal/unsafeheader 181s internal/goarch 181s internal/cpu 181s internal/abi 181s internal/bytealg 181s internal/byteorder 182s internal/chacha8rand 182s internal/coverage/rtcov 182s internal/godebugs 182s internal/goexperiment 182s internal/goos 182s internal/profilerecord 182s internal/runtime/atomic 182s internal/asan 182s internal/msan 182s internal/race 182s internal/runtime/exithook 182s internal/runtime/math 182s internal/runtime/sys 182s internal/runtime/syscall 182s internal/runtime/maps 182s internal/stringslite 182s sync/atomic 182s internal/sync 182s math/bits 182s unicode 182s runtime 182s unicode/utf8 182s internal/itoa 182s container/list 182s math 182s crypto/internal/fips140/alias 182s crypto/internal/fips140deps/byteorder 182s crypto/internal/fips140deps/cpu 182s cmp 182s crypto/internal/boring/sig 182s unicode/utf16 182s vendor/golang.org/x/crypto/cryptobyte/asn1 182s vendor/golang.org/x/crypto/internal/alias 182s internal/nettrace 182s encoding 182s golang.org/x/net/internal/iana 182s log/internal 185s internal/reflectlite 185s sync 185s errors 185s iter 185s internal/oserror 185s strconv 185s io 185s bytes 185s internal/bisect 185s syscall 185s internal/godebug 185s hash 185s crypto 185s crypto/internal/fips140deps/godebug 185s strings 185s crypto/internal/fips140 185s crypto/internal/impl 185s crypto/internal/fips140/sha256 185s crypto/internal/fips140/subtle 185s crypto/internal/fips140/sha3 185s time 185s crypto/internal/fips140/sha512 185s crypto/internal/fips140/hmac 186s crypto/internal/fips140/check 186s crypto/internal/fips140/aes 186s internal/syscall/unix 186s path 186s slices 186s context 186s io/fs 186s internal/poll 186s internal/filepathlite 186s internal/syscall/execenv 186s internal/testlog 186s math/rand/v2 186s crypto/internal/randutil 186s crypto/subtle 186s crypto/internal/fips140/nistec/fiat 186s os 186s crypto/internal/fips140/nistec 187s crypto/internal/sysrand 187s crypto/internal/entropy 187s crypto/internal/fips140/drbg 187s crypto/internal/fips140/aes/gcm 187s crypto/internal/fips140only 187s crypto/cipher 187s crypto/internal/boring 187s crypto/aes 187s crypto/des 187s crypto/internal/fips140/edwards25519/field 187s reflect 187s crypto/internal/fips140/ecdh 187s crypto/ecdh 187s math/rand 187s crypto/internal/fips140/bigmod 187s crypto/internal/fips140/ecdsa 188s crypto/sha3 188s crypto/internal/fips140hash 188s crypto/sha512 188s crypto/internal/fips140/edwards25519 188s crypto/internal/fips140/ed25519 188s crypto/hmac 188s crypto/internal/fips140/hkdf 188s crypto/internal/fips140/mlkem 188s internal/fmtsort 188s fmt 188s crypto/internal/fips140/tls12 188s crypto/internal/fips140/tls13 188s encoding/binary 188s vendor/golang.org/x/sys/cpu 188s math/big 188s vendor/golang.org/x/crypto/chacha20 188s vendor/golang.org/x/crypto/internal/poly1305 188s vendor/golang.org/x/crypto/chacha20poly1305 188s crypto/md5 188s crypto/rc4 188s crypto/internal/fips140/rsa 189s crypto/sha1 189s crypto/sha256 189s crypto/tls/internal/fips140tls 189s encoding/hex 189s encoding/base64 189s crypto/elliptic 189s crypto/internal/boring/bbig 189s encoding/asn1 189s crypto/rand 189s crypto/ed25519 189s crypto/internal/hpke 189s crypto/rsa 189s vendor/golang.org/x/crypto/cryptobyte 189s crypto/dsa 189s crypto/x509/pkix 189s encoding/pem 189s maps 189s vendor/golang.org/x/net/dns/dnsmessage 189s crypto/ecdsa 189s internal/singleflight 189s weak 189s unique 190s net/netip 190s runtime/cgo 190s net/url 190s path/filepath 190s sort 190s database/sql/driver 190s encoding/json 190s net 191s golang.org/x/net/bpf 191s golang.org/x/sys/unix 192s golang.org/x/sync/errgroup 192s log 192s bufio 192s compress/flate 192s hash/crc32 192s crypto/x509 192s github.com/google/uuid 192s golang.org/x/net/internal/socket 193s golang.org/x/net/ipv4 193s golang.org/x/net/ipv6 193s crypto/tls 193s golang.org/x/net/icmp 193s compress/gzip 193s vendor/golang.org/x/text/transform 193s vendor/golang.org/x/text/unicode/bidi 193s vendor/golang.org/x/text/secure/bidirule 194s vendor/golang.org/x/text/unicode/norm 194s vendor/golang.org/x/net/idna 194s net/textproto 194s vendor/golang.org/x/net/http/httpguts 194s vendor/golang.org/x/net/http/httpproxy 194s vendor/golang.org/x/net/http2/hpack 195s mime 195s mime/quotedprintable 195s net/http/httptrace 195s net/http/internal 195s net/http/internal/ascii 195s mime/multipart 195s net/http 197s github.com/prometheus-community/pro-bing 197s dh_auto_test -O--buildsystem=golang 197s dh_auto_test: warning: LTO optimize is enable in buildflags. But cgo doesn't support it. LTO flags will be stripped in cgo. 197s cd obj-s390x-linux-gnu && go test -vet=off -v -p 2 github.com/prometheus-community/pro-bing 215s === RUN TestHTTPCaller_MakeCall_OnReq 215s --- PASS: TestHTTPCaller_MakeCall_OnReq (0.01s) 215s === RUN TestHTTPCaller_MakeCall_OnConnStart 215s --- PASS: TestHTTPCaller_MakeCall_OnConnStart (0.01s) 215s === RUN TestHTTPCaller_MakeCall_OnConnDone 215s --- PASS: TestHTTPCaller_MakeCall_OnConnDone (0.01s) 215s === RUN TestHTTPCaller_MakeCall_OnTLSStart 215s --- PASS: TestHTTPCaller_MakeCall_OnTLSStart (0.01s) 215s === RUN TestHTTPCaller_MakeCall_OnTLSDone 215s --- PASS: TestHTTPCaller_MakeCall_OnTLSDone (0.01s) 215s === RUN TestHTTPCaller_MakeCall_OnWroteHeaders 215s --- PASS: TestHTTPCaller_MakeCall_OnWroteHeaders (0.00s) 215s === RUN TestHTTPCaller_MakeCall_OnFirstByteReceived 215s --- PASS: TestHTTPCaller_MakeCall_OnFirstByteReceived (0.01s) 215s === RUN TestHTTPCaller_MakeCall_OnResp 215s --- PASS: TestHTTPCaller_MakeCall_OnResp (0.01s) 215s === RUN TestHTTPCaller_MakeCall_IsValidResponse 215s === RUN TestHTTPCaller_MakeCall_IsValidResponse/no_callback 215s === RUN TestHTTPCaller_MakeCall_IsValidResponse/false_callback 215s === RUN TestHTTPCaller_MakeCall_IsValidResponse/true_callback 215s --- PASS: TestHTTPCaller_MakeCall_IsValidResponse (0.01s) 215s --- PASS: TestHTTPCaller_MakeCall_IsValidResponse/no_callback (0.01s) 215s --- PASS: TestHTTPCaller_MakeCall_IsValidResponse/false_callback (0.00s) 215s --- PASS: TestHTTPCaller_MakeCall_IsValidResponse/true_callback (0.00s) 215s === RUN TestHTTPCaller_RunWithContext 216s --- PASS: TestHTTPCaller_RunWithContext (1.00s) 216s === RUN TestProcessPacket 216s --- PASS: TestProcessPacket (0.00s) 216s === RUN TestProcessPacket_IgnoreNonEchoReplies 216s --- PASS: TestProcessPacket_IgnoreNonEchoReplies (0.00s) 216s === RUN TestProcessPacket_IDMismatch 216s --- PASS: TestProcessPacket_IDMismatch (0.00s) 216s === RUN TestProcessPacket_TrackerMismatch 216s --- PASS: TestProcessPacket_TrackerMismatch (0.00s) 216s === RUN TestProcessPacket_LargePacket 216s --- PASS: TestProcessPacket_LargePacket (0.00s) 216s === RUN TestProcessPacket_PacketTooSmall 216s --- PASS: TestProcessPacket_PacketTooSmall (0.00s) 216s === RUN TestNewPingerValid 216s ping_test.go:237: Skipping network test 216s --- SKIP: TestNewPingerValid (0.00s) 216s === RUN TestNewPingerInvalid 216s ping_test.go:341: Skipping network test 216s --- SKIP: TestNewPingerInvalid (0.00s) 216s === RUN TestSetIPAddr 216s ping_test.go:360: Skipping network test 216s --- SKIP: TestSetIPAddr (0.00s) 216s === RUN TestEmptyIPAddr 216s --- PASS: TestEmptyIPAddr (0.00s) 216s === RUN TestStatisticsSunny 216s --- PASS: TestStatisticsSunny (0.00s) 216s === RUN TestStatisticsLossy 216s --- PASS: TestStatisticsLossy (0.00s) 216s === RUN TestStatisticsZeroDivision 216s --- PASS: TestStatisticsZeroDivision (0.00s) 216s === RUN TestSetInterfaceName 216s ping_test.go:485: Skipping network test 216s --- SKIP: TestSetInterfaceName (0.00s) 216s === RUN TestProcessPacket_IgnoresDuplicateSequence 216s --- PASS: TestProcessPacket_IgnoresDuplicateSequence (0.00s) 216s === RUN TestRunBadWrite 216s --- PASS: TestRunBadWrite (0.00s) 216s === RUN TestRunBadRead 216s --- PASS: TestRunBadRead (0.00s) 216s === RUN TestRunOK 216s --- PASS: TestRunOK (0.02s) 216s === RUN TestRunWithTimeoutContext 216s --- PASS: TestRunWithTimeoutContext (0.10s) 216s === RUN TestRunWithBackgroundContext 217s --- PASS: TestRunWithBackgroundContext (0.93s) 217s === RUN TestSetResolveTimeout 217s ping_test.go:861: Skipping network test 217s --- SKIP: TestSetResolveTimeout (0.00s) 217s === RUN TestRunStatisticsConcurrent 815s panic: test timed out after 10m0s 815s running tests: 815s TestRunStatisticsConcurrent (9m58s) 815s 815s goroutine 165 [running]: 815s testing.(*M).startAlarm.func1() 815s /usr/lib/go-1.24/src/testing/testing.go:2484 +0x46a 815s created by time.goFunc 815s /usr/lib/go-1.24/src/time/sleep.go:215 +0x42 815s 815s goroutine 1 [chan receive, 8 minutes]: 815s testing.(*T).Run(0xc00018c000, {0x14af9ce, 0x1b}, 0x14c8d20) 815s /usr/lib/go-1.24/src/testing/testing.go:1859 +0x504 815s testing.runTests.func1(0xc00018c000) 815s /usr/lib/go-1.24/src/testing/testing.go:2279 +0x62 815s testing.tRunner(0xc00018c000, 0xc000079ca0) 815s /usr/lib/go-1.24/src/testing/testing.go:1792 +0x132 815s testing.runTests(0xc00000e288, {0x174dca0, 0x20, 0x20}, {0xc1e5769554a6bba3, 0x8bb2d0763a, 0x179ba60}) 815s /usr/lib/go-1.24/src/testing/testing.go:2277 +0x510 815s testing.(*M).Run(0xc0000a6820) 815s /usr/lib/go-1.24/src/testing/testing.go:2142 +0x6fc 815s main.main() 815s _testmain.go:109 +0xd8 815s 815s goroutine 179 [sync.WaitGroup.Wait, 8 minutes]: 815s sync.runtime_SemacquireWaitGroup(0xc0002e9d10) 815s /usr/lib/go-1.24/src/runtime/sema.go:110 +0x44 815s sync.(*WaitGroup).Wait(0xc0002e9d08) 815s /usr/lib/go-1.24/src/sync/waitgroup.go:118 +0x6a 815s golang.org/x/sync/errgroup.(*Group).Wait(0xc0002e9d00) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:56 +0x3c 815s github.com/prometheus-community/pro-bing.(*Pinger).run(0xc0002a61e0, {0x15416b8, 0x17cb820}, {0x15434a0, 0xc0002b4cf0}) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:605 +0x2d8 815s github.com/prometheus-community/pro-bing.(*Pinger).RunWithContext(0xc0002a61e0, {0x15416b8, 0x17cb820}) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:567 +0x3ea 815s github.com/prometheus-community/pro-bing.(*Pinger).Run(...) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:518 815s github.com/prometheus-community/pro-bing.TestRunStatisticsConcurrent(0xc0002a4700) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping_test.go:884 +0xde 815s testing.tRunner(0xc0002a4700, 0x14c8d20) 815s /usr/lib/go-1.24/src/testing/testing.go:1792 +0x132 815s created by testing.(*T).Run in goroutine 1 815s /usr/lib/go-1.24/src/testing/testing.go:1851 +0x4e4 815s 815s goroutine 185 [IO wait]: 815s internal/poll.runtime_pollWait(0x3ff4e6cc728, 0x72) 815s /usr/lib/go-1.24/src/runtime/netpoll.go:351 +0xfe 815s internal/poll.(*pollDesc).wait(0xc00028f6a0, 0x72, 0x0) 815s /usr/lib/go-1.24/src/internal/poll/fd_poll_runtime.go:84 +0x42 815s internal/poll.(*pollDesc).waitRead(...) 815s /usr/lib/go-1.24/src/internal/poll/fd_poll_runtime.go:89 815s internal/poll.(*FD).RawRead(0xc00028f680, 0xc0000c1a90) 815s /usr/lib/go-1.24/src/internal/poll/fd_unix.go:717 +0x190 815s net.(*rawConn).Read(0xc000068498, 0xc0000c1a90) 815s /usr/lib/go-1.24/src/net/rawconn.go:44 +0x4c 815s golang.org/x/net/internal/socket.(*Conn).recvMsg(0xc000294f20, 0xc0000eaa80, 0x0) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/net/internal/socket/rawconn_msg.go:27 +0x1b6 815s golang.org/x/net/internal/socket.(*Conn).RecvMsg(...) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/net/internal/socket/socket.go:247 815s golang.org/x/net/ipv4.(*payloadHandler).ReadFrom(0xc00029fbe0, {0xc00042e760, 0x20, 0x20}) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/net/ipv4/payload_cmsg.go:31 +0x5c0 815s github.com/prometheus-community/pro-bing.(*icmpv4Conn).ReadFrom(0xc0002b4cf0, {0xc00042e760, 0x20, 0x20}) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/packetconn.go:69 +0x7c 815s github.com/prometheus-community/pro-bing.(*Pinger).recvICMP(0xc0002a61e0, {0x15434a0, 0xc0002b4cf0}, 0xc0002975e0) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:752 +0x180 815s github.com/prometheus-community/pro-bing.(*Pinger).run.func2() 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:597 +0x7a 815s golang.org/x/sync/errgroup.(*Group).Go.func1() 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:78 +0x60 815s created by golang.org/x/sync/errgroup.(*Group).Go in goroutine 179 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:75 +0xd0 815s 815s goroutine 184 [select, 8 minutes]: 815s github.com/prometheus-community/pro-bing.(*Pinger).run.func1() 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:586 +0xb0 815s golang.org/x/sync/errgroup.(*Group).Go.func1() 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:78 +0x60 815s created by golang.org/x/sync/errgroup.(*Group).Go in goroutine 179 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:75 +0xd0 815s 815s goroutine 186 [select, 8 minutes]: 815s github.com/prometheus-community/pro-bing.(*Pinger).runLoop(0xc0002a61e0, {0x15434a0, 0xc0002b4cf0}, 0xc0002975e0) 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:629 +0x1a4 815s github.com/prometheus-community/pro-bing.(*Pinger).run.func3() 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/github.com/prometheus-community/pro-bing/ping.go:602 +0x7a 815s golang.org/x/sync/errgroup.(*Group).Go.func1() 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:78 +0x60 815s created by golang.org/x/sync/errgroup.(*Group).Go in goroutine 179 815s /tmp/autopkgtest.znfHde/autopkgtest_tmp/obj-s390x-linux-gnu/src/golang.org/x/sync/errgroup/errgroup.go:75 +0xd0 815s FAIL github.com/prometheus-community/pro-bing 600.004s 815s FAIL 815s dh_auto_test: error: cd obj-s390x-linux-gnu && go test -vet=off -v -p 2 github.com/prometheus-community/pro-bing returned exit code 1 815s make: *** [debian/rules:6: build] Error 255 815s /tmp/autopkgtest.znfHde/wrapper.sh: checking for leaked background processes... 815s /tmp/autopkgtest.znfHde/wrapper.sh: waiting for tee/cat subprocesses... 815s /tmp/autopkgtest.znfHde/wrapper.sh: cleaning up... 815s /tmp/autopkgtest.znfHde/wrapper.sh: Exit status: 2 815s autopkgtest: DBG: testbed command exited with code 2 815s autopkgtest [04:49:25]: test dh-golang-autopkgtest: -----------------------] 815s autopkgtest: DBG: testbed executing test finished with exit status 2 815s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stdout /tmp/autopkgtest-work.g0wby7jk/out/dh-golang-autopkgtest-stdout 815s autopkgtest: DBG: got reply from testbed: ok 815s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-stderr /tmp/autopkgtest-work.g0wby7jk/out/dh-golang-autopkgtest-stderr 816s autopkgtest: DBG: got reply from testbed: ok 816s dh-golang-autopkgtest FAIL non-zero exit status 2 816s autopkgtest [04:49:26]: test dh-golang-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 816s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.znfHde/dh-golang-autopkgtest-artifacts/ /tmp/autopkgtest-work.g0wby7jk/out/artifacts/ 816s autopkgtest: DBG: got reply from testbed: ok 816s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.znfHde/dh-golang-autopkgtest-artifacts', '/tmp/autopkgtest.znfHde/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 816s autopkgtest: DBG: testbed command exited with code 0 816s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 816s autopkgtest [04:49:26]: @@@@@@@@@@@@@@@@@@@@ summary 816s dh-golang-autopkgtest FAIL non-zero exit status 2 816s autopkgtest: DBG: testbed stop 816s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.znfHde 816s autopkgtest: DBG: sending command to testbed: close 833s autopkgtest: DBG: got reply from testbed: ok 833s autopkgtest: DBG: sending command to testbed: quit 833s nova [W] Using flock in prodstack6-s390x 833s Creating nova instance adt-plucky-s390x-golang-github-prometheus-community-pro-bing-20250219-043549-juju-7f2275-prod-proposed-migration-environment-15-cb55584b-626d-47c6-8d9b-9aa26f8207c2 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 833s nova [W] Timed out waiting for 9d89dd7f-3b22-4ff4-891a-c4473ca470ca to get deleted.