0s autopkgtest: DBG: testbed init 0s autopkgtest [04:38:54]: starting date and time: 2025-02-19 04:38:54+0000 0s autopkgtest [04:38:54]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:38:54]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.2a43ugsg/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:py3dns --apt-upgrade py3dns --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=py3dns/4.0.2-3 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-16.secgroup --name adt-plucky-s390x-py3dns-20250219-043854-juju-7f2275-prod-proposed-migration-environment-15-1ff0d007-80ed-49ac-bf73-95da762b0014 --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 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.nBUKi2 112s autopkgtest: DBG: sending command to testbed: print-execute-command 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.k3enr22n/runcmd 112s autopkgtest: DBG: sending command to testbed: capabilities 112s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert suggested-normal-user=ubuntu isolation-machine reboot root-on-testbed 112s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nBUKi2'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.nBUKi2/wrapper.sh 112s autopkgtest: DBG: got reply from testbed: ok 112s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nBUKi2/wrapper.sh'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [04:40:46]: testbed dpkg architecture: s390x 112s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [04:40:46]: testbed apt version: 2.9.29 112s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed has eatmydata 113s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [04:40:47]: @@@@@@@@@@@@@@@@@@@@ test bed setup 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [04:40:47]: testbed release detected to be: None 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT source: Types: deb deb-src 113s URIs: http://ftpmaster.internal/ubuntu/ 113s Suites: plucky-proposed 113s Components: main restricted universe multiverse 113s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 113s Package: * 113s Pin: release plucky-proposed 113s Pin-Priority: 500 113s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [04:40:48]: updating testbed package index (apt update) 114s 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'] 114s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 114s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 114s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 114s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 114s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 115s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 115s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 115s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 115s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 115s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 115s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 115s Fetched 1723 kB in 2s (1028 kB/s) 117s Reading package lists... 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 117s Package: * 117s Pin: release plucky-proposed 117s Pin-Priority: 100 117s 117s Package: src:py3dns:any 117s Pin: release plucky-proposed 117s Pin-Priority: 995 117s 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:py3dns:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s 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.nBUKi2/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 117s + lsb_release --codename --short 117s + RELEASE=plucky 117s + cat 117s + [ plucky != trusty ] 117s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s Calculating upgrade... 117s The following packages were automatically installed and are no longer required: 117s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 117s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 117s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 117s linux-tools-6.11.0-8-generic 117s Use 'sudo apt autoremove' to remove them. 117s The following NEW packages will be installed: 117s libapt-pkg7.0 117s The following packages will be upgraded: 117s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 117s s390-tools-signed 118s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 118s Need to get 8909 kB of archives. 118s After this operation, 3624 kB of additional disk space will be used. 118s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 119s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 119s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 119s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 120s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 120s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 121s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 126s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 127s Fetched 8909 kB in 9s (983 kB/s) 127s Selecting previously unselected package libapt-pkg7.0:s390x. 127s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80980 files and directories currently installed.) 127s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 127s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 127s Setting up libapt-pkg7.0:s390x (2.9.30) ... 127s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81029 files and directories currently installed.) 127s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 127s Unpacking apt (2.9.30) over (2.9.29) ... 127s Setting up apt (2.9.30) ... 128s (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.) 128s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 128s Unpacking apt-utils (2.9.30) over (2.9.29) ... 128s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 128s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 128s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 128s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 128s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 128s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 128s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 128s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 128s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 128s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 128s Setting up apt-utils (2.9.30) ... 128s Setting up rsyslog (8.2412.0-2ubuntu1) ... 128s info: The user `syslog' is already a member of `adm'. 129s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 129s Setting up dhcpcd-base (1:10.1.0-7) ... 129s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 129s Setting up s390-tools (2.37.0-0ubuntu2) ... 130s Processing triggers for libc-bin (2.40-4ubuntu1) ... 130s Processing triggers for man-db (2.13.0-1) ... 131s Processing triggers for initramfs-tools (0.145ubuntu2) ... 131s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 131s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 135s Using config file '/etc/zipl.conf' 135s Building bootmap in '/boot' 135s Adding IPL section 'ubuntu' (default) 135s Preparing boot device for LD-IPL: vda (0000). 135s Done. 136s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 136s + /usr/lib/apt/apt-helper analyze-pattern ?true 136s + uname -r 136s + sed s/\./\\./g 136s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 136s + apt list ?obsolete 136s + tail -n+2 136s + cut -d/ -f1 136s + grep -v ^linux-.*6\.12\.0-15-generic.* 136s + true 136s + obsolete_pkgs= 136s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 136s Reading package lists... 136s Building dependency tree... 136s Reading state information... 137s The following packages will be REMOVED: 137s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 137s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 137s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 137s linux-tools-6.11.0-8-generic* 137s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 137s After this operation, 167 MB disk space will be freed. 137s (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.) 137s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 137s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 137s Removing libpython3.12t64:s390x (3.12.9-1) ... 137s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 137s Removing libnsl2:s390x (1.3.0-3build3) ... 137s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 137s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 137s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 138s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 138s Processing triggers for libc-bin (2.40-4ubuntu1) ... 138s (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.) 138s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 138s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 138s + grep -q trusty /etc/lsb-release 138s + [ ! -d /usr/share/doc/unattended-upgrades ] 138s + [ ! -d /usr/share/doc/lxd ] 138s + [ ! -d /usr/share/doc/lxd-client ] 138s + [ ! -d /usr/share/doc/snapd ] 138s + type iptables 138s + cat 138s + chmod 755 /etc/rc.local 138s + . /etc/rc.local 138s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 138s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 138s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 138s + uname -m 138s + [ s390x = ppc64le ] 138s + [ -d /run/systemd/system ] 138s + systemd-detect-virt --quiet --vm 138s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 138s + cat 138s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 138s + echo COMPRESS=lz4 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest [04:41:12]: upgrading testbed (apt dist-upgrade and autopurge) 138s 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'] 139s Reading package lists... 139s Building dependency tree... 139s Reading state information... 139s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 139s Starting 2 pkgProblemResolver with broken count: 0 139s Done 139s Entering ResolveByKeep 139s 140s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 140s autopkgtest: DBG: testbed command exited with code 0 140s 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'] 140s Reading package lists... 140s Building dependency tree... 140s Reading state information... 140s Starting pkgProblemResolver with broken count: 0 140s Starting 2 pkgProblemResolver with broken count: 0 140s Done 140s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 140s autopkgtest: DBG: testbed command exited with code 0 140s 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.nBUKi2/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 1 140s autopkgtest [04:41:14]: rebooting testbed after setup commands that affected boot 140s autopkgtest: DBG: sending command to testbed: reboot 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 159s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nBUKi2'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nBUKi2/autopkgtest-reboot 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nBUKi2'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nBUKi2/autopkgtest-reboot-prepare 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [04:41:36]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 162s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nBUKi2/testbed-packages"], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/testbed-packages /tmp/autopkgtest-work.2a43ugsg/out/testbed-packages 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 163s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nBUKi2'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nBUKi2/autopkgtest-reboot 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nBUKi2'], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nBUKi2/autopkgtest-reboot-prepare 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nBUKi2/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: Binaries: initialising 165s autopkgtest [04:41:39]: @@@@@@@@@@@@@@@@@@@@ apt-source py3dns 165s autopkgtest: DBG: blame += py3dns 165s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 165s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'py3dns'], kind short, sout pipe, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-dns$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-dns=4.0.2-3'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: install_deps: deps_new=[] 165s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s 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.nBUKi2/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source py3dns=4.0.2-3 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x py3dns_*.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=py3dns/4.0.2-3'] 166s + cd / 166s + mktemp -d /tmp/autopkgtest.nBUKi2/build.XXX 166s + builddir=/tmp/autopkgtest.nBUKi2/build.TFQ 166s + cd /tmp/autopkgtest.nBUKi2/build.TFQ 166s + apt-get source -d -q --only-source py3dns=4.0.2-3 166s + OUT=Reading package lists... 166s NOTICE: 'py3dns' packaging is maintained in the 'Git' version control system at: 166s https://salsa.debian.org/python-team/packages/py3dns.git 166s Please use: 166s git clone https://salsa.debian.org/python-team/packages/py3dns.git 166s to retrieve the latest (possibly unreleased) updates to the package. 166s Need to get 66.3 kB of source archives. 166s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (dsc) [2313 B] 166s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (tar) [34.0 kB] 166s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (asc) [833 B] 166s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (diff) [29.2 kB] 166s Fetched 66.3 kB in 0s (168 kB/s) 166s Download complete and in download only mode 166s + [ -n ] 166s + echo Reading package lists... 166s NOTICE: 'py3dns' packaging is maintained in the 'Git' version control system at: 166s https://salsa.debian.org/python-team/packages/py3dns.git 166s Please use: 166s git clone https://salsa.debian.org/python-team/packages/py3dns.git 166s to retrieve the latest (possibly unreleased) updates to the package. 166s Need to get 66.3 kB of source archives. 166s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (dsc) [2313 B] 166s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (tar) [34.0 kB] 166s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (asc) [833 B] 166s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (diff) [29.2 kB] 166s Fetched 66.3 kB in 0s (168 kB/s) 166s Download complete and in download only mode 166s + grep ^Get: 166s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (dsc) [2313 B] 166s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (tar) [34.0 kB] 166s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (asc) [833 B] 166s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/universe py3dns 4.0.2-3 (diff) [29.2 kB] 166s + dpkg-source -x py3dns_4.0.2-3.dsc src 166s gpgv: Signature made Sun Jan 12 16:55:00 2025 UTC 166s gpgv: using RSA key 8F6DE104377F3B11E741748731F3144544A1741A 166s gpgv: issuer "tchet@debian.org" 166s gpgv: Can't check signature: No public key 166s dpkg-source: warning: cannot verify inline signature for ./py3dns_4.0.2-3.dsc: no acceptable signature found 166s + chmod -R a+rX . 166s + cd src/. 166s + pwd 166s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [04:41:40]: testing package py3dns version 4.0.2-3 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/build.TFQ/src/debian/ /tmp/autopkgtest-work.2a43ugsg/out/pkg/debian/ 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: processing dependency python3-all 167s autopkgtest: DBG: processing dependency @ 167s autopkgtest: DBG: synthesised dependency python3-dns 167s autopkgtest: DBG: Test defined: name py3 path debian/tests/py3 command "None" restrictions ['allow-stderr', 'needs-internet'] features [] depends ['python3-all', 'python3-dns'] 167s autopkgtest [04:41:41]: build not needed 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/build.TFQ/src/ /tmp/autopkgtest-work.2a43ugsg/out/tests-tree/ 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: processing dependency python3-all 167s autopkgtest: DBG: processing dependency @ 167s autopkgtest: DBG: synthesised dependency python3-dns 167s autopkgtest: DBG: Test defined: name py3 path debian/tests/py3 command "None" restrictions ['allow-stderr', 'needs-internet'] features [] depends ['python3-all', 'python3-dns'] 167s autopkgtest [04:41:41]: test py3: preparing testbed 167s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-dns'] 167s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 167s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-dns'] 167s autopkgtest: DBG: install-deps: satisfying python3-all, python3-dns 167s autopkgtest: DBG: can use apt-get on testbed: True 167s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-all, python3-dns'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 167s Reading package lists... 167s Building dependency tree... 167s Reading state information... 167s Starting pkgProblemResolver with broken count: 0 167s Starting 2 pkgProblemResolver with broken count: 0 167s Done 168s The following NEW packages will be installed: 168s libnsl2 libpython3.12-minimal libpython3.12-stdlib python3-all python3-dns 168s python3.12 python3.12-minimal 168s 0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded. 168s Need to get 6059 kB of archives. 168s After this operation, 24.0 MB of additional disk space will be used. 168s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 169s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 171s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 171s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 172s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 172s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 172s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x python3-dns all 4.0.2-3 [33.2 kB] 173s Fetched 6059 kB in 5s (1238 kB/s) 173s Selecting previously unselected package libpython3.12-minimal:s390x. 173s (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.) 173s Preparing to unpack .../0-libpython3.12-minimal_3.12.9-1_s390x.deb ... 173s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 173s Selecting previously unselected package python3.12-minimal. 173s Preparing to unpack .../1-python3.12-minimal_3.12.9-1_s390x.deb ... 173s Unpacking python3.12-minimal (3.12.9-1) ... 173s Selecting previously unselected package libnsl2:s390x. 173s Preparing to unpack .../2-libnsl2_1.3.0-3build3_s390x.deb ... 173s Unpacking libnsl2:s390x (1.3.0-3build3) ... 173s Selecting previously unselected package libpython3.12-stdlib:s390x. 173s Preparing to unpack .../3-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 173s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 173s Selecting previously unselected package python3.12. 173s Preparing to unpack .../4-python3.12_3.12.9-1_s390x.deb ... 173s Unpacking python3.12 (3.12.9-1) ... 173s Selecting previously unselected package python3-all. 173s Preparing to unpack .../5-python3-all_3.13.1-1~exp2_s390x.deb ... 173s Unpacking python3-all (3.13.1-1~exp2) ... 173s Selecting previously unselected package python3-dns. 173s Preparing to unpack .../6-python3-dns_4.0.2-3_all.deb ... 173s Unpacking python3-dns (4.0.2-3) ... 173s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 173s Setting up python3-dns (4.0.2-3) ... 173s Setting up libnsl2:s390x (1.3.0-3build3) ... 173s Setting up python3.12-minimal (3.12.9-1) ... 174s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 174s Setting up python3.12 (3.12.9-1) ... 176s Setting up python3-all (3.13.1-1~exp2) ... 176s Processing triggers for man-db (2.13.0-1) ... 176s Processing triggers for libc-bin (2.40-4ubuntu1) ... 176s Processing triggers for systemd (257.2-3ubuntu1) ... 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-dns'], kind short, sout pipe, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nBUKi2/py3-packages.all"], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/py3-packages.all /tmp/autopkgtest-work.2a43ugsg/out/py3-packages.all 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.nBUKi2/build.TFQ/src'], kind short, sout raw, serr raw, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.nBUKi2/build.TFQ/src already exists 177s autopkgtest [04:41:51]: test py3: [----------------------- 177s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.nBUKi2/wrapper.sh --debug --artifacts=/tmp/autopkgtest.nBUKi2/py3-artifacts --chdir=/tmp/autopkgtest.nBUKi2/build.TFQ/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.nBUKi2/py3-stderr --stdout=/tmp/autopkgtest.nBUKi2/py3-stdout --tmp=/tmp/autopkgtest.nBUKi2/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=py3dns/4.0.2-3 --make-executable=/tmp/autopkgtest.nBUKi2/build.TFQ/src/debian/tests/py3 -- /tmp/autopkgtest.nBUKi2/build.TFQ/src/debian/tests/py3'], kind test, sout raw, serr raw, env [] 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.nBUKi2/py3-artifacts 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: changing to directory: /tmp/autopkgtest.nBUKi2/build.TFQ/src 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: setting environment: LANG=C.UTF-8 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LANGUAGE 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_ADDRESS 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_ALL 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_COLLATE 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_CTYPE 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_IDENTIFICATION 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_MEASUREMENT 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_MESSAGES 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_MONETARY 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_NAME 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_NUMERIC 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_PAPER 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_TELEPHONE 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: unsetting environment: LC_TIME 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: pretending to be a login shell 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: will write standard error to /tmp/autopkgtest.nBUKi2/py3-stderr 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: will write stdout to /tmp/autopkgtest.nBUKi2/py3-stdout 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.nBUKi2/autopkgtest_tmp 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=py3dns/4.0.2-3 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: marking as executable: /tmp/autopkgtest.nBUKi2/build.TFQ/src/debian/tests/py3 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: command to run: /tmp/autopkgtest.nBUKi2/build.TFQ/src/debian/tests/py3 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: copying /tmp/tmp.loLvzqufgY/out to stdout and file: /tmp/autopkgtest.nBUKi2/py3-stdout 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: copying /tmp/tmp.loLvzqufgY/err to standard error and file: /tmp/autopkgtest.nBUKi2/py3-stdout 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: writing script pid 1386 to /tmp/autopkgtest_script_pid 178s Testing with python3.12 178s .....................................................FFFF........EE. 178s ====================================================================== 178s ERROR: testNS (DNS.tests.test_base.TestBase.testNS) 178s Lookup NS record from SOA 178s ---------------------------------------------------------------------- 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 274, in qry 178s self.sendUDPRequest(server) 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 370, in sendUDPRequest 178s raise first_socket_error 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 347, in sendUDPRequest 178s r=self.processUDPReply() 178s ^^^^^^^^^^^^^^^^^^^^^^ 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 138, in processUDPReply 178s (self.reply, self.from_address) = self.s.recvfrom(65535) 178s ^^^^^^^^^^^^^^^^^^^^^^ 178s ConnectionRefusedError: [Errno 111] Connection refused 178s 178s During handling of the above exception, another exception occurred: 178s 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/tests/test_base.py", line 158, in testNS 178s resp = dnsob.qry(qtype='NS',server=primary,aa=1) 178s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 278, in qry 178s raise SocketError(reason) 178s DNS.Base.SocketError: [Errno 111] Connection refused 178s 178s ====================================================================== 178s ERROR: testNSD (DNS.tests.test_base.TestBase.testNSD) 178s Lookup NS record from SOA 178s ---------------------------------------------------------------------- 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 323, in req 178s self.sendUDPRequest(server) 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 370, in sendUDPRequest 178s raise first_socket_error 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 347, in sendUDPRequest 178s r=self.processUDPReply() 178s ^^^^^^^^^^^^^^^^^^^^^^ 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 138, in processUDPReply 178s (self.reply, self.from_address) = self.s.recvfrom(65535) 178s ^^^^^^^^^^^^^^^^^^^^^^ 178s ConnectionRefusedError: [Errno 111] Connection refused 178s 178s During handling of the above exception, another exception occurred: 178s 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/tests/test_base.py", line 250, in testNSD 178s resp = dnsob.req(qtype='NS',server=primary,aa=1, timeout=1) 178s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/Base.py", line 327, in req 178s raise SocketError(reason) 178s DNS.Base.SocketError: [Errno 111] Connection refused 178s 178s ====================================================================== 178s FAIL: testDnsRequestA (DNS.tests.test_base.TestBase.testDnsRequestA) 178s ---------------------------------------------------------------------- 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/tests/test_base.py", line 39, in testDnsRequestA 178s self.assertEqual(a_response.answers[0]['data'],'93.184.215.14') 178s AssertionError: '96.7.128.186' != '93.184.215.14' 178s - 96.7.128.186 178s + 93.184.215.14 178s 178s 178s ====================================================================== 178s FAIL: testDnsRequestAAAA (DNS.tests.test_base.TestBase.testDnsRequestAAAA) 178s ---------------------------------------------------------------------- 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/tests/test_base.py", line 66, in testDnsRequestAAAA 178s self.assertEqual(aaaa_response.answers[0]['data'],'2606:2800:21f:cb07:6820:80da:af6b:8b2c') 178s AssertionError: '2600:1406:bc00:17::6007:8128' != '2606:2800:21f:cb07:6820:80da:af6b:8b2c' 178s - 2600:1406:bc00:17::6007:8128 178s + 2606:2800:21f:cb07:6820:80da:af6b:8b2c 178s 178s 178s ====================================================================== 178s FAIL: testDnsRequestAAAAD (DNS.tests.test_base.TestBase.testDnsRequestAAAAD) 178s ---------------------------------------------------------------------- 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/tests/test_base.py", line 185, in testDnsRequestAAAAD 178s self.assertEqual(aaaad_response.answers[0]['data'],b'&\x06(\x00\x02\x1f\xcb\x07h \x80\xda\xafk\x8b,') 178s AssertionError: b'&\x00\x14\x06\xbc\x00\x00\x17\x00\x00\x00\x00`\x07\x81\r' != b'&\x06(\x00\x02\x1f\xcb\x07h \x80\xda\xafk\x8b,' 178s 178s ====================================================================== 178s FAIL: testDnsRequestAD (DNS.tests.test_base.TestBase.testDnsRequestAD) 178s ---------------------------------------------------------------------- 178s Traceback (most recent call last): 178s File "/tmp/autopkgtest.nBUKi2/build.TFQ/src/DNS/tests/test_base.py", line 173, in testDnsRequestAD 178s self.assertEqual(ad_response.answers[0]['data'],'93.184.215.14') 178s AssertionError: '96.7.128.192' != '93.184.215.14' 178s - 96.7.128.192 178s + 93.184.215.14 178s 178s 178s ---------------------------------------------------------------------- 178s Ran 68 tests in 0.302s 178s 178s FAILED (failures=4, errors=2) 178s Test run failed. 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: checking for leaked background processes... 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: waiting for tee/cat subprocesses... 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: cleaning up... 178s /tmp/autopkgtest.nBUKi2/wrapper.sh: Exit status: 1 178s autopkgtest: DBG: testbed command exited with code 1 178s autopkgtest [04:41:52]: test py3: -----------------------] 178s autopkgtest: DBG: testbed executing test finished with exit status 1 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/py3-stdout /tmp/autopkgtest-work.2a43ugsg/out/py3-stdout 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/py3-stderr /tmp/autopkgtest-work.2a43ugsg/out/py3-stderr 179s autopkgtest: DBG: got reply from testbed: ok 179s autopkgtest [04:41:53]: test py3: - - - - - - - - - - results - - - - - - - - - - 179s py3 FAIL non-zero exit status 1 179s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nBUKi2/py3-artifacts/ /tmp/autopkgtest-work.2a43ugsg/out/artifacts/ 179s autopkgtest: DBG: got reply from testbed: ok 179s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.nBUKi2/py3-artifacts', '/tmp/autopkgtest.nBUKi2/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 179s autopkgtest [04:41:53]: @@@@@@@@@@@@@@@@@@@@ summary 179s py3 FAIL non-zero exit status 1 179s autopkgtest: DBG: testbed stop 179s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.nBUKi2 179s autopkgtest: DBG: sending command to testbed: close 196s autopkgtest: DBG: got reply from testbed: ok 196s autopkgtest: DBG: sending command to testbed: quit 196s nova [W] Using flock in prodstack6-s390x 196s Creating nova instance adt-plucky-s390x-py3dns-20250219-043854-juju-7f2275-prod-proposed-migration-environment-15-1ff0d007-80ed-49ac-bf73-95da762b0014 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 196s nova [W] Timed out waiting for bd6f7c84-7366-4bdd-ab97-3fb2f7a3c8c1 to get deleted.