0s autopkgtest: DBG: testbed init 0s autopkgtest [22:09:48]: starting date and time: 2025-02-15 22:09:48+0000 0s autopkgtest [22:09:48]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [22:09:48]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.x6dvt7b0/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade dose3 --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-1.secgroup --name adt-plucky-s390x-dose3-20250215-220948-juju-7f2275-prod-proposed-migration-environment-15-f9a7a47d-d8fb-4ddc-98e6-0a123337d084 --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 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.OJc3sP 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qrvcx7ht/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert suggested-normal-user=ubuntu revert-full-system root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'revert-full-system', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.OJc3sP/wrapper.sh 106s autopkgtest: DBG: got reply from testbed: ok 106s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [22:11:35]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [22:11:35]: testbed apt version: 2.9.28 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [22:11:35]: @@@@@@@@@@@@@@@@@@@@ test bed setup 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [22:11:35]: testbed release detected to be: None 107s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 500 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [22:11:36]: updating testbed package index (apt update) 108s 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'] 108s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 109s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 109s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 109s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 109s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 109s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 109s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 109s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 109s Fetched 2073 kB in 1s (1978 kB/s) 110s Reading package lists... 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 100 110s 110s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 110s Pin: release plucky-proposed 110s Pin-Priority: 995 110s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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.OJc3sP/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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'] 111s + lsb_release --codename --short 111s + RELEASE=plucky 111s + cat 111s + [ plucky != trusty ] 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade... 111s The following packages were automatically installed and are no longer required: 111s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 111s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 111s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 111s linux-tools-6.11.0-8-generic 111s Use 'sudo apt autoremove' to remove them. 111s The following packages will be upgraded: 111s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 111s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 111s Need to get 1155 kB of archives. 111s After this operation, 16.4 kB of additional disk space will be used. 111s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 112s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 112s Preconfiguring packages ... 112s Fetched 1155 kB in 1s (1825 kB/s) 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 112s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 112s Setting up dash (0.5.12-12ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 112s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 112s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 112s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 112s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 112s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 112s Setting up libtasn1-6:s390x (4.20.0-2) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for debianutils (5.21) ... 113s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 113s + /usr/lib/apt/apt-helper analyze-pattern ?true 113s + uname -r 113s + sed s/\./\\./g 113s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 113s + apt list ?obsolete 113s + tail -n+2 113s + cut -d/ -f1 113s + grep -v ^linux-.*6\.12\.0-15-generic.* 113s + true 113s + obsolete_pkgs= 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 114s The following packages will be REMOVED: 114s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 114s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 114s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 114s linux-tools-6.11.0-8-generic* 114s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 114s After this operation, 167 MB disk space will be freed. 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 114s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 114s Removing libpython3.12t64:s390x (3.12.9-1) ... 114s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 114s Removing libnsl2:s390x (1.3.0-3build3) ... 114s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 114s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 115s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 115s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 115s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s + grep -q trusty /etc/lsb-release 115s + [ ! -d /usr/share/doc/unattended-upgrades ] 115s + [ ! -d /usr/share/doc/lxd ] 115s + [ ! -d /usr/share/doc/lxd-client ] 115s + [ ! -d /usr/share/doc/snapd ] 115s + type iptables 115s + cat 115s + chmod 755 /etc/rc.local 115s + . /etc/rc.local 115s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 115s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 115s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 115s + uname -m 115s + [ s390x = ppc64le ] 115s + [ -d /run/systemd/system ] 115s + systemd-detect-virt --quiet --vm 115s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 115s + cat 115s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 115s + echo COMPRESS=lz4 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [22:11:43]: upgrading testbed (apt dist-upgrade and autopurge) 115s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s Entering ResolveByKeep 116s 116s The following packages will be upgraded: 116s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 117s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s Need to get 10.7 MB of archives. 117s After this operation, 305 kB of additional disk space will be used. 117s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 117s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 117s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 117s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 118s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 118s Preconfiguring packages ... 118s Fetched 10.7 MB in 1s (9533 kB/s) 118s (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 ... 55867 files and directories currently installed.) 118s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 118s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Stopping some services possibly affected by the upgrade (will be restarted later): 118s cron: stopping...done. 118s 118s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Setting up libc6:s390x (2.41-1ubuntu1) ... 119s Checking for services that may need to be restarted... 119s Checking init scripts... 119s Restarting services possibly affected by the upgrade: 119s cron: restarting...done. 119s 119s Services restarted successfully. 119s (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 ... 55868 files and directories currently installed.) 119s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 119s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 119s Setting up libc-bin (2.41-1ubuntu1) ... 119s (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 ... 55868 files and directories currently installed.) 119s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 119s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 119s Setting up iproute2 (6.13.0-1ubuntu1) ... 119s Setting up locales (2.41-1ubuntu1) ... 119s Installing new version of config file /etc/locale.alias ... 119s Generating locales (this might take a while)... 120s en_US.UTF-8... done 120s Generation complete. 120s Setting up libc-dev-bin (2.41-1ubuntu1) ... 120s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 120s Processing triggers for man-db (2.13.0-1) ... 121s Processing triggers for systemd (257.2-3ubuntu1) ... 122s autopkgtest: DBG: testbed command exited with code 0 122s 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'] 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 123s Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s autopkgtest: DBG: testbed command exited with code 0 123s 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.OJc3sP/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 1 123s autopkgtest [22:11:51]: rebooting testbed after setup commands that affected boot 123s autopkgtest: DBG: sending command to testbed: reboot 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [22:12:13]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 145s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/testbed-packages"], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/testbed-packages /tmp/autopkgtest-work.x6dvt7b0/out/testbed-packages 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: Binaries: initialising 148s autopkgtest [22:12:16]: @@@@@@@@@@@@@@@@@@@@ apt-source dose3 148s autopkgtest: DBG: blame += dose3 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 148s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'dose3'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^dose-extra$'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'dose-extra=7.0.0-5build8'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libdose3-ocaml-dev$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libdose3-ocaml-dev=7.0.0-5build8'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^apt-cudf$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'apt-cudf=7.0.0-5build8'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^dose-doc$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'dose-doc=7.0.0-5build8'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^dose-builddebcheck$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'dose-builddebcheck=7.0.0-5build8'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^dose-distcheck$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'dose-distcheck=7.0.0-5build8'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: install_deps: deps_new=[] 151s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s 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.OJc3sP/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source dose3=7.0.0-5build8 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 dose3_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 151s + cd / 151s + mktemp -d /tmp/autopkgtest.OJc3sP/build.XXX 151s + builddir=/tmp/autopkgtest.OJc3sP/build.2Gi 151s + cd /tmp/autopkgtest.OJc3sP/build.2Gi 151s + apt-get source -d -q --only-source dose3=7.0.0-5build8 152s + OUT=Reading package lists... 152s NOTICE: 'dose3' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/ocaml-team/dose3.git 152s Please use: 152s git clone https://salsa.debian.org/ocaml-team/dose3.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 1447 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (dsc) [2909 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (tar) [1423 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (diff) [20.7 kB] 152s Fetched 1447 kB in 1s (1979 kB/s) 152s Download complete and in download only mode 152s + [ -n ] 152s + + grep ^Get: 152s echo Reading package lists... 152s NOTICE: 'dose3' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/ocaml-team/dose3.git 152s Please use: 152s git clone https://salsa.debian.org/ocaml-team/dose3.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 1447 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (dsc) [2909 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (tar) [1423 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (diff) [20.7 kB] 152s Fetched 1447 kB in 1s (1979 kB/s) 152s Download complete and in download only mode 152s Get:1 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (dsc) [2909 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (tar) [1423 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/universe dose3 7.0.0-5build8 (diff) [20.7 kB] 152s + dpkg-source -x dose3_7.0.0-5build8.dsc src 152s gpgv: Signature made Tue Sep 24 21:49:12 2024 UTC 152s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 152s gpgv: Can't check signature: No public key 152s dpkg-source: warning: cannot verify inline signature for ./dose3_7.0.0-5build8.dsc: no acceptable signature found 152s + chmod -R a+rX . 152s + cd src/. 152s + pwd 152s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [22:12:20]: testing package dose3 version 7.0.0-5build8 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/ /tmp/autopkgtest-work.x6dvt7b0/out/pkg/debian/ 152s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: processing dependency dose-distcheck 153s autopkgtest: DBG: marked alternatives ['dose-distcheck'] as a synthesised dependency 153s autopkgtest: DBG: Test defined: name dose-debcheck path debian/tests/dose-debcheck command "None" restrictions [] features [] depends ['dose-distcheck'] 153s autopkgtest: DBG: Test defined: name bug811569 path debian/tests/bug811569 command "None" restrictions [] features [] depends ['dose-distcheck'] 153s autopkgtest: DBG: Test defined: name bug790422 path debian/tests/bug790422 command "None" restrictions [] features [] depends ['dose-distcheck'] 153s autopkgtest: DBG: Test defined: name bug867104 path debian/tests/bug867104 command "None" restrictions [] features [] depends ['dose-distcheck'] 153s autopkgtest: DBG: processing dependency dose-builddebcheck 153s autopkgtest: DBG: marked alternatives ['dose-builddebcheck'] as a synthesised dependency 153s autopkgtest: DBG: Test defined: name dose-builddebcheck path debian/tests/dose-builddebcheck command "None" restrictions [] features [] depends ['dose-builddebcheck'] 153s autopkgtest: DBG: Test defined: name bug896084 path debian/tests/bug896084 command "None" restrictions [] features [] depends ['dose-builddebcheck'] 154s autopkgtest: DBG: processing dependency dose-extra 154s autopkgtest: DBG: marked alternatives ['dose-extra'] as a synthesised dependency 154s autopkgtest: DBG: Test defined: name dose-outdated path debian/tests/dose-outdated command "None" restrictions [] features [] depends ['dose-extra'] 154s autopkgtest [22:12:22]: build not needed 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/build.2Gi/src/ /tmp/autopkgtest-work.x6dvt7b0/out/tests-tree/ 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: processing dependency dose-distcheck 155s autopkgtest: DBG: marked alternatives ['dose-distcheck'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name dose-debcheck path debian/tests/dose-debcheck command "None" restrictions [] features [] depends ['dose-distcheck'] 155s autopkgtest: DBG: Test defined: name bug811569 path debian/tests/bug811569 command "None" restrictions [] features [] depends ['dose-distcheck'] 155s autopkgtest: DBG: Test defined: name bug790422 path debian/tests/bug790422 command "None" restrictions [] features [] depends ['dose-distcheck'] 155s autopkgtest: DBG: Test defined: name bug867104 path debian/tests/bug867104 command "None" restrictions [] features [] depends ['dose-distcheck'] 155s autopkgtest: DBG: processing dependency dose-builddebcheck 155s autopkgtest: DBG: marked alternatives ['dose-builddebcheck'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name dose-builddebcheck path debian/tests/dose-builddebcheck command "None" restrictions [] features [] depends ['dose-builddebcheck'] 155s autopkgtest: DBG: Test defined: name bug896084 path debian/tests/bug896084 command "None" restrictions [] features [] depends ['dose-builddebcheck'] 156s autopkgtest: DBG: processing dependency dose-extra 156s autopkgtest: DBG: marked alternatives ['dose-extra'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name dose-outdated path debian/tests/dose-outdated command "None" restrictions [] features [] depends ['dose-extra'] 156s autopkgtest [22:12:24]: test dose-debcheck: preparing testbed 156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dose-distcheck'] 156s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 156s autopkgtest: DBG: install_deps: deps_new=['dose-distcheck'] 156s autopkgtest: DBG: install-deps: satisfying dose-distcheck 156s autopkgtest: DBG: can use apt-get on testbed: True 156s 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', 'dose-distcheck'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 156s Reading package lists... 156s Building dependency tree... 156s Reading state information... 156s Starting pkgProblemResolver with broken count: 0 156s Starting 2 pkgProblemResolver with broken count: 0 156s Done 157s The following NEW packages will be installed: 157s dose-distcheck 157s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 157s Need to get 1415 kB of archives. 157s After this operation, 5756 kB of additional disk space will be used. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x dose-distcheck s390x 7.0.0-5build8 [1415 kB] 157s Fetched 1415 kB in 1s (2304 kB/s) 157s Selecting previously unselected package dose-distcheck. 158s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 158s Preparing to unpack .../dose-distcheck_7.0.0-5build8_s390x.deb ... 158s Unpacking dose-distcheck (7.0.0-5build8) ... 158s Setting up dose-distcheck (7.0.0-5build8) ... 158s Processing triggers for man-db (2.13.0-1) ... 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-distcheck'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/dose-debcheck-packages.all"], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-debcheck-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/dose-debcheck-packages.all 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OJc3sP/build.2Gi/src already exists 159s autopkgtest [22:12:27]: test dose-debcheck: [----------------------- 159s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/dose-debcheck-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/dose-debcheck-stderr --stdout=/tmp/autopkgtest.OJc3sP/dose-debcheck-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-debcheck -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-debcheck"], kind test, sout raw, serr raw, env [] 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/dose-debcheck-artifacts 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/dose-debcheck-stderr 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/dose-debcheck-stdout 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-debcheck 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-debcheck 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.C1SEuI3mhD/out to stdout and file: /tmp/autopkgtest.OJc3sP/dose-debcheck-stdout 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.C1SEuI3mhD/err to standard error and file: /tmp/autopkgtest.OJc3sP/dose-debcheck-stdout 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1440 to /tmp/autopkgtest_script_pid 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 159s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [22:12:27]: test dose-debcheck: -----------------------] 159s autopkgtest: DBG: testbed executing test finished with exit status 0 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-debcheck-stdout /tmp/autopkgtest-work.x6dvt7b0/out/dose-debcheck-stdout 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-debcheck-stderr /tmp/autopkgtest-work.x6dvt7b0/out/dose-debcheck-stderr 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest [22:12:28]: test dose-debcheck: - - - - - - - - - - results - - - - - - - - - - 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-debcheck-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 160s dose-debcheck PASS 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/dose-debcheck-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest [22:12:28]: test bug811569: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dose-distcheck'], deps_new=['dose-distcheck'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['dose-distcheck'] 160s autopkgtest: DBG: install-deps: satisfying dose-distcheck 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', 'dose-distcheck'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 161s Building dependency tree... 161s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-distcheck'], kind short, sout pipe, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/bug811569-packages.all"], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug811569-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/bug811569-packages.all 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OJc3sP/build.2Gi/src already exists 162s autopkgtest [22:12:30]: test bug811569: [----------------------- 162s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/bug811569-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/bug811569-stderr --stdout=/tmp/autopkgtest.OJc3sP/bug811569-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug811569 -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug811569"], kind test, sout raw, serr raw, env [] 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/bug811569-artifacts 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/bug811569-stderr 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/bug811569-stdout 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug811569 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug811569 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.kPrYAly4TK/out to stdout and file: /tmp/autopkgtest.OJc3sP/bug811569-stdout 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.kPrYAly4TK/err to standard error and file: /tmp/autopkgtest.OJc3sP/bug811569-stdout 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1589 to /tmp/autopkgtest_script_pid 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 162s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [22:12:30]: test bug811569: -----------------------] 162s autopkgtest: DBG: testbed executing test finished with exit status 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug811569-stdout /tmp/autopkgtest-work.x6dvt7b0/out/bug811569-stdout 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug811569-stderr /tmp/autopkgtest-work.x6dvt7b0/out/bug811569-stderr 162s autopkgtest: DBG: got reply from testbed: ok 163s bug811569 PASS 163s autopkgtest [22:12:31]: test bug811569: - - - - - - - - - - results - - - - - - - - - - 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug811569-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/bug811569-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [22:12:31]: test bug790422: preparing testbed 163s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dose-distcheck'], deps_new=['dose-distcheck'] 163s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 163s autopkgtest: DBG: install_deps: deps_new=['dose-distcheck'] 163s autopkgtest: DBG: install-deps: satisfying dose-distcheck 163s autopkgtest: DBG: can use apt-get on testbed: True 163s 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', 'dose-distcheck'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 163s Reading package lists... 163s Building dependency tree... 163s Reading state information... 163s Starting pkgProblemResolver with broken count: 0 163s Starting 2 pkgProblemResolver with broken count: 0 163s Done 164s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-distcheck'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/bug790422-packages.all"], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug790422-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/bug790422-packages.all 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OJc3sP/build.2Gi/src already exists 164s autopkgtest [22:12:32]: test bug790422: [----------------------- 164s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/bug790422-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/bug790422-stderr --stdout=/tmp/autopkgtest.OJc3sP/bug790422-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug790422 -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug790422"], kind test, sout raw, serr raw, env [] 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/bug790422-artifacts 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/bug790422-stderr 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/bug790422-stdout 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug790422 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug790422 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.PlUtPtxMA2/out to stdout and file: /tmp/autopkgtest.OJc3sP/bug790422-stdout 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.PlUtPtxMA2/err to standard error and file: /tmp/autopkgtest.OJc3sP/bug790422-stdout 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1740 to /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 165s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest [22:12:33]: test bug790422: -----------------------] 165s autopkgtest: DBG: testbed executing test finished with exit status 0 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug790422-stdout /tmp/autopkgtest-work.x6dvt7b0/out/bug790422-stdout 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug790422-stderr /tmp/autopkgtest-work.x6dvt7b0/out/bug790422-stderr 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest [22:12:33]: test bug790422: - - - - - - - - - - results - - - - - - - - - - 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug790422-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 165s bug790422 PASS 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/bug790422-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [22:12:34]: test bug867104: preparing testbed 166s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dose-distcheck'], deps_new=['dose-distcheck'] 166s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 166s autopkgtest: DBG: install_deps: deps_new=['dose-distcheck'] 166s autopkgtest: DBG: install-deps: satisfying dose-distcheck 166s autopkgtest: DBG: can use apt-get on testbed: True 166s 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', 'dose-distcheck'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 166s Reading package lists... 166s Building dependency tree... 166s Reading state information... 166s Starting pkgProblemResolver with broken count: 0 166s Starting 2 pkgProblemResolver with broken count: 0 166s Done 166s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-distcheck'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/bug867104-packages.all"], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug867104-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/bug867104-packages.all 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OJc3sP/build.2Gi/src already exists 167s autopkgtest [22:12:35]: test bug867104: [----------------------- 167s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/bug867104-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/bug867104-stderr --stdout=/tmp/autopkgtest.OJc3sP/bug867104-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug867104 -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug867104"], kind test, sout raw, serr raw, env [] 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/bug867104-artifacts 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/bug867104-stderr 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/bug867104-stdout 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug867104 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug867104 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.But6WtIoZN/out to stdout and file: /tmp/autopkgtest.OJc3sP/bug867104-stdout 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.But6WtIoZN/err to standard error and file: /tmp/autopkgtest.OJc3sP/bug867104-stdout 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1889 to /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 167s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 167s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [22:12:36]: test bug867104: -----------------------] 168s autopkgtest: DBG: testbed executing test finished with exit status 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug867104-stdout /tmp/autopkgtest-work.x6dvt7b0/out/bug867104-stdout 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug867104-stderr /tmp/autopkgtest-work.x6dvt7b0/out/bug867104-stderr 168s autopkgtest: DBG: got reply from testbed: ok 168s bug867104 PASS 168s autopkgtest [22:12:36]: test bug867104: - - - - - - - - - - results - - - - - - - - - - 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug867104-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/bug867104-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [22:12:36]: test dose-builddebcheck: preparing testbed 168s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dose-distcheck'], deps_new=['dose-builddebcheck'] 168s autopkgtest: DBG: testbed reset 168s autopkgtest: DBG: sending command to testbed: revert 303s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.OJc3sP 303s autopkgtest: DBG: sending command to testbed: print-execute-command 303s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qrvcx7ht/runcmd 303s autopkgtest: DBG: sending command to testbed: capabilities 303s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert suggested-normal-user=ubuntu ok revert-full-system root-on-testbed 303s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'ok', 'revert-full-system', 'root-on-testbed', 'has_internet'] 303s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 303s autopkgtest: DBG: testbed command exited with code 0 303s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.OJc3sP/wrapper.sh 303s autopkgtest: DBG: got reply from testbed: ok 303s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/wrapper.sh'], kind short, sout raw, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest [22:14:52]: testbed dpkg architecture: s390x 304s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest [22:14:52]: testbed apt version: 2.9.28 304s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: testbed has eatmydata 304s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest [22:14:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 304s 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 [] 305s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest [22:14:53]: testbed release detected to be: plucky 305s 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 [] 305s autopkgtest: DBG: testbed command exited with code 0 305s 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 [] 305s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest: DBG: adding APT source: Types: deb deb-src 305s URIs: http://ftpmaster.internal/ubuntu/ 305s Suites: plucky-proposed 305s Components: main restricted universe multiverse 305s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 305s 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 [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 306s Package: * 306s Pin: release plucky-proposed 306s Pin-Priority: 500 306s 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 [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest [22:14:54]: updating testbed package index (apt update) 306s 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'] 306s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 306s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 306s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 306s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 307s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 307s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 307s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 307s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 307s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 307s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 307s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 307s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 307s Fetched 2073 kB in 1s (1836 kB/s) 308s Reading package lists... 308s autopkgtest: DBG: testbed command exited with code 0 308s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 308s Package: * 308s Pin: release plucky-proposed 308s Pin-Priority: 100 308s 308s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 308s Pin: release plucky-proposed 308s Pin-Priority: 995 308s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 308s autopkgtest: DBG: testbed command exited with code 0 308s 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.OJc3sP/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 308s autopkgtest: DBG: testbed command exited with code 0 308s 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'] 308s + lsb_release --codename --short 308s + RELEASE=plucky 308s + cat 308s + [ plucky != trusty ] 308s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 308s Reading package lists... 308s Building dependency tree... 308s Reading state information... 309s Calculating upgrade... 309s The following packages were automatically installed and are no longer required: 309s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 309s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 309s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 309s linux-tools-6.11.0-8-generic 309s Use 'sudo apt autoremove' to remove them. 309s The following packages will be upgraded: 309s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 309s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 309s Need to get 1155 kB of archives. 309s After this operation, 16.4 kB of additional disk space will be used. 309s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 309s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 309s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 309s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 309s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 309s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 309s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 310s Preconfiguring packages ... 310s Fetched 1155 kB in 1s (1789 kB/s) 310s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 310s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 310s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 310s Setting up dash (0.5.12-12ubuntu1) ... 310s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 310s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 310s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 310s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 310s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 310s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 310s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 310s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 310s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 310s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 310s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 310s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 310s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 310s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 310s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 310s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 310s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 310s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 310s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 310s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 310s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 310s Setting up libtasn1-6:s390x (4.20.0-2) ... 310s Processing triggers for libc-bin (2.40-4ubuntu1) ... 310s Processing triggers for man-db (2.13.0-1) ... 311s Processing triggers for debianutils (5.21) ... 311s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 311s + /usr/lib/apt/apt-helper analyze-pattern ?true 311s + + sed s/\./\\./g 311s uname -r 311s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 311s + + tail -n+2 311s apt list ?obsolete 311s + grep -v ^linux-.*6\.12\.0-15-generic.* 311s + cut -d/ -f1 311s + true 311s + obsolete_pkgs= 311s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 311s Reading package lists... 311s Building dependency tree... 311s Reading state information... 311s The following packages will be REMOVED: 311s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 311s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 311s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 311s linux-tools-6.11.0-8-generic* 312s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 312s After this operation, 167 MB disk space will be freed. 312s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 312s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 312s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 312s Removing libpython3.12t64:s390x (3.12.9-1) ... 312s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 312s Removing libnsl2:s390x (1.3.0-3build3) ... 312s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 312s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 312s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 313s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 313s Processing triggers for libc-bin (2.40-4ubuntu1) ... 313s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 313s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 313s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 313s + grep -q trusty /etc/lsb-release 313s + [ ! -d /usr/share/doc/unattended-upgrades ] 313s + [ ! -d /usr/share/doc/lxd ] 313s + [ ! -d /usr/share/doc/lxd-client ] 313s + [ ! -d /usr/share/doc/snapd ] 313s + type iptables 313s + cat 313s + chmod 755 /etc/rc.local 313s + . /etc/rc.local 313s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 313s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 313s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 313s + uname -m 313s + [ s390x = ppc64le ] 313s + [ -d /run/systemd/system ] 313s + systemd-detect-virt --quiet --vm 313s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 313s + cat 313s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 313s + echo COMPRESS=lz4 313s autopkgtest: DBG: testbed command exited with code 0 313s autopkgtest [22:15:01]: upgrading testbed (apt dist-upgrade and autopurge) 313s 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'] 314s Reading package lists... 314s Building dependency tree... 314s Reading state information... 314s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 314s Starting 2 pkgProblemResolver with broken count: 0 314s Done 314s Entering ResolveByKeep 314s 314s The following packages will be upgraded: 314s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 315s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 315s Need to get 10.7 MB of archives. 315s After this operation, 305 kB of additional disk space will be used. 315s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 315s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 315s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 316s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 316s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 316s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 316s Preconfiguring packages ... 317s Fetched 10.7 MB in 2s (6061 kB/s) 317s (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 ... 55867 files and directories currently installed.) 317s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 317s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 317s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 317s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 317s Checking for services that may need to be restarted... 317s Checking init scripts... 317s Checking for services that may need to be restarted... 317s Checking init scripts... 317s Stopping some services possibly affected by the upgrade (will be restarted later): 317s cron: stopping...done. 317s 317s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Setting up libc6:s390x (2.41-1ubuntu1) ... 317s Checking for services that may need to be restarted... 317s Checking init scripts... 317s Restarting services possibly affected by the upgrade: 317s cron: restarting...done. 317s 317s Services restarted successfully. 317s (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 ... 55868 files and directories currently installed.) 317s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 317s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Setting up libc-bin (2.41-1ubuntu1) ... 317s (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 ... 55868 files and directories currently installed.) 317s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 317s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 317s Setting up iproute2 (6.13.0-1ubuntu1) ... 318s Setting up locales (2.41-1ubuntu1) ... 318s Installing new version of config file /etc/locale.alias ... 318s Generating locales (this might take a while)... 319s en_US.UTF-8... done 319s Generation complete. 319s Setting up libc-dev-bin (2.41-1ubuntu1) ... 319s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 319s Processing triggers for man-db (2.13.0-1) ... 320s Processing triggers for systemd (257.2-3ubuntu1) ... 321s autopkgtest: DBG: testbed command exited with code 0 321s 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'] 321s Reading package lists... 321s Building dependency tree... 321s Reading state information... 321s Starting pkgProblemResolver with broken count: 0 321s Starting 2 pkgProblemResolver with broken count: 0 321s Done 321s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 321s autopkgtest: DBG: testbed command exited with code 0 321s 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.OJc3sP/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 322s autopkgtest: DBG: testbed command exited with code 1 322s autopkgtest [22:15:10]: rebooting testbed after setup commands that affected boot 322s autopkgtest: DBG: sending command to testbed: reboot 343s autopkgtest: DBG: got reply from testbed: ok 343s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 343s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot 343s autopkgtest: DBG: got reply from testbed: ok 343s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare 344s autopkgtest: DBG: got reply from testbed: ok 344s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/testbed-packages"], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/testbed-packages /tmp/autopkgtest-work.x6dvt7b0/out/testbed-packages 348s autopkgtest: DBG: got reply from testbed: ok 348s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 348s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot 348s autopkgtest: DBG: got reply from testbed: ok 348s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 349s autopkgtest: DBG: testbed command exited with code 0 349s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 349s autopkgtest: DBG: testbed command exited with code 0 349s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare 349s autopkgtest: DBG: got reply from testbed: ok 349s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 349s autopkgtest: DBG: testbed command exited with code 0 349s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 350s autopkgtest: DBG: install_deps: deps_new=['dose-builddebcheck'] 350s autopkgtest: DBG: install-deps: satisfying dose-builddebcheck 350s autopkgtest: DBG: can use apt-get on testbed: True 350s 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', 'dose-builddebcheck'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 350s Reading package lists... 350s Building dependency tree... 350s Reading state information... 350s Starting pkgProblemResolver with broken count: 0 350s Starting 2 pkgProblemResolver with broken count: 0 350s Done 350s The following NEW packages will be installed: 350s dose-builddebcheck 351s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 351s Need to get 1415 kB of archives. 351s After this operation, 5729 kB of additional disk space will be used. 351s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x dose-builddebcheck s390x 7.0.0-5build8 [1415 kB] 351s Fetched 1415 kB in 1s (2237 kB/s) 351s Selecting previously unselected package dose-builddebcheck. 352s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 352s Preparing to unpack .../dose-builddebcheck_7.0.0-5build8_s390x.deb ... 352s Unpacking dose-builddebcheck (7.0.0-5build8) ... 352s Setting up dose-builddebcheck (7.0.0-5build8) ... 352s Processing triggers for man-db (2.13.0-1) ... 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-builddebcheck'], kind short, sout pipe, serr pipe, env [] 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/dose-builddebcheck-packages.all"], kind short, sout raw, serr pipe, env [] 353s autopkgtest: DBG: testbed command exited with code 0 353s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-builddebcheck-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/dose-builddebcheck-packages.all 353s autopkgtest: DBG: got reply from testbed: ok 353s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 353s autopkgtest: DBG: testbed command exited with code 1 353s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP/build.2Gi'], kind short, sout raw, serr pipe, env [] 353s autopkgtest: DBG: testbed command exited with code 0 353s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.x6dvt7b0/out/tests-tree/ /tmp/autopkgtest.OJc3sP/build.2Gi/src/ 356s autopkgtest: DBG: got reply from testbed: ok 356s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr pipe, env [] 357s autopkgtest: DBG: testbed command exited with code 0 357s autopkgtest [22:15:45]: test dose-builddebcheck: [----------------------- 357s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/dose-builddebcheck-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/dose-builddebcheck-stderr --stdout=/tmp/autopkgtest.OJc3sP/dose-builddebcheck-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-builddebcheck -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-builddebcheck"], kind test, sout raw, serr raw, env [] 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/dose-builddebcheck-artifacts 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/dose-builddebcheck-stderr 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/dose-builddebcheck-stdout 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-builddebcheck 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-builddebcheck 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.v3lvJCBGHw/out to stdout and file: /tmp/autopkgtest.OJc3sP/dose-builddebcheck-stdout 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.v3lvJCBGHw/err to standard error and file: /tmp/autopkgtest.OJc3sP/dose-builddebcheck-stdout 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1246 to /tmp/autopkgtest_script_pid 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 357s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 357s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest [22:15:46]: test dose-builddebcheck: -----------------------] 358s autopkgtest: DBG: testbed executing test finished with exit status 0 358s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-builddebcheck-stdout /tmp/autopkgtest-work.x6dvt7b0/out/dose-builddebcheck-stdout 358s autopkgtest: DBG: got reply from testbed: ok 358s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-builddebcheck-stderr /tmp/autopkgtest-work.x6dvt7b0/out/dose-builddebcheck-stderr 358s autopkgtest: DBG: got reply from testbed: ok 358s dose-builddebcheck PASS 358s autopkgtest [22:15:46]: test dose-builddebcheck: - - - - - - - - - - results - - - - - - - - - - 358s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-builddebcheck-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 358s autopkgtest: DBG: got reply from testbed: ok 358s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/dose-builddebcheck-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 358s autopkgtest: DBG: testbed command exited with code 0 358s autopkgtest [22:15:46]: test bug896084: preparing testbed 358s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dose-builddebcheck'], deps_new=['dose-builddebcheck'] 358s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 358s autopkgtest: DBG: install_deps: deps_new=['dose-builddebcheck'] 358s autopkgtest: DBG: install-deps: satisfying dose-builddebcheck 358s autopkgtest: DBG: can use apt-get on testbed: True 358s 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', 'dose-builddebcheck'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 359s Reading package lists... 359s Building dependency tree... 359s Reading state information... 359s Starting pkgProblemResolver with broken count: 0 359s Starting 2 pkgProblemResolver with broken count: 0 359s Done 359s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-builddebcheck'], kind short, sout pipe, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/bug896084-packages.all"], kind short, sout raw, serr pipe, env [] 359s autopkgtest: DBG: testbed command exited with code 0 359s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug896084-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/bug896084-packages.all 360s autopkgtest: DBG: got reply from testbed: ok 360s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.OJc3sP/build.2Gi/src already exists 360s autopkgtest [22:15:48]: test bug896084: [----------------------- 360s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/bug896084-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/bug896084-stderr --stdout=/tmp/autopkgtest.OJc3sP/bug896084-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug896084 -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug896084"], kind test, sout raw, serr raw, env [] 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/bug896084-artifacts 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/bug896084-stderr 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/bug896084-stdout 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug896084 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/bug896084 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.C40Ul5mIvk/out to stdout and file: /tmp/autopkgtest.OJc3sP/bug896084-stdout 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.C40Ul5mIvk/err to standard error and file: /tmp/autopkgtest.OJc3sP/bug896084-stdout 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1395 to /tmp/autopkgtest_script_pid 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 360s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 360s autopkgtest: DBG: testbed command exited with code 0 360s autopkgtest [22:15:48]: test bug896084: -----------------------] 360s autopkgtest: DBG: testbed executing test finished with exit status 0 360s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug896084-stdout /tmp/autopkgtest-work.x6dvt7b0/out/bug896084-stdout 360s autopkgtest: DBG: got reply from testbed: ok 360s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug896084-stderr /tmp/autopkgtest-work.x6dvt7b0/out/bug896084-stderr 361s autopkgtest: DBG: got reply from testbed: ok 361s bug896084 PASS 361s autopkgtest [22:15:49]: test bug896084: - - - - - - - - - - results - - - - - - - - - - 361s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/bug896084-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 361s autopkgtest: DBG: got reply from testbed: ok 361s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/bug896084-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest [22:15:49]: test dose-outdated: preparing testbed 361s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dose-builddebcheck'], deps_new=['dose-extra'] 361s autopkgtest: DBG: testbed reset 361s autopkgtest: DBG: sending command to testbed: revert 502s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.OJc3sP 502s autopkgtest: DBG: sending command to testbed: print-execute-command 502s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qrvcx7ht/runcmd 502s autopkgtest: DBG: sending command to testbed: capabilities 502s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert suggested-normal-user=ubuntu ok revert-full-system root-on-testbed 502s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'ok', 'revert-full-system', 'root-on-testbed', 'has_internet'] 502s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 502s autopkgtest: DBG: testbed command exited with code 0 502s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.OJc3sP/wrapper.sh 504s autopkgtest: DBG: got reply from testbed: ok 504s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/wrapper.sh'], kind short, sout raw, serr pipe, env [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [22:18:11]: testbed dpkg architecture: s390x 504s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [22:18:11]: testbed apt version: 2.9.28 504s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest: DBG: testbed has eatmydata 504s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [22:18:11]: @@@@@@@@@@@@@@@@@@@@ test bed setup 504s 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 [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [22:18:12]: testbed release detected to be: plucky 504s 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 [] 504s autopkgtest: DBG: testbed command exited with code 0 504s 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 [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest: DBG: adding APT source: Types: deb deb-src 504s URIs: http://ftpmaster.internal/ubuntu/ 504s Suites: plucky-proposed 504s Components: main restricted universe multiverse 504s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 504s 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 [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 504s Package: * 504s Pin: release plucky-proposed 504s Pin-Priority: 500 504s 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 [] 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [22:18:12]: updating testbed package index (apt update) 504s 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'] 505s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 505s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 505s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 505s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 505s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 505s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 505s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 506s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 506s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 506s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 506s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 506s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 506s Fetched 2073 kB in 1s (1647 kB/s) 506s Reading package lists... 506s autopkgtest: DBG: testbed command exited with code 0 506s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 506s Package: * 506s Pin: release plucky-proposed 506s Pin-Priority: 100 506s 506s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 506s Pin: release plucky-proposed 506s Pin-Priority: 995 506s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 507s autopkgtest: DBG: testbed command exited with code 0 507s 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.OJc3sP/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 507s autopkgtest: DBG: testbed command exited with code 0 507s 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'] 507s + lsb_release --codename --short 507s + RELEASE=plucky 507s + cat 507s + [ plucky != trusty ] 507s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 507s Reading package lists... 507s Building dependency tree... 507s Reading state information... 507s Calculating upgrade... 507s The following packages were automatically installed and are no longer required: 507s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 507s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 507s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 507s linux-tools-6.11.0-8-generic 507s Use 'sudo apt autoremove' to remove them. 507s The following packages will be upgraded: 507s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 508s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 508s Need to get 1155 kB of archives. 508s After this operation, 16.4 kB of additional disk space will be used. 508s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 508s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 508s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 508s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 508s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 508s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 508s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 508s Preconfiguring packages ... 508s Fetched 1155 kB in 1s (1696 kB/s) 509s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 509s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 509s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 509s Setting up dash (0.5.12-12ubuntu1) ... 509s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 509s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 509s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 509s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 509s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 509s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 509s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 509s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 509s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 509s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 509s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 509s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 509s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 509s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 509s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 509s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 509s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 509s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 509s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 509s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 509s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 509s Setting up libtasn1-6:s390x (4.20.0-2) ... 509s Processing triggers for libc-bin (2.40-4ubuntu1) ... 509s Processing triggers for man-db (2.13.0-1) ... 509s Processing triggers for debianutils (5.21) ... 510s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 510s + /usr/lib/apt/apt-helper analyze-pattern ?true 510s + uname -r 510s + sed s/\./\\./g 510s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 510s + apt list ?obsolete 510s + tail -n+2 510s + cut -d/ -f1 510s + grep -v ^linux-.*6\.12\.0-15-generic.* 510s + true 510s + obsolete_pkgs= 510s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 510s Reading package lists... 510s Building dependency tree... 510s Reading state information... 510s The following packages will be REMOVED: 510s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 510s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 510s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 510s linux-tools-6.11.0-8-generic* 510s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 510s After this operation, 167 MB disk space will be freed. 510s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 510s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 510s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 510s Removing libpython3.12t64:s390x (3.12.9-1) ... 510s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 510s Removing libnsl2:s390x (1.3.0-3build3) ... 510s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 510s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 510s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 511s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 512s Processing triggers for libc-bin (2.40-4ubuntu1) ... 512s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 512s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 512s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 512s + grep -q trusty /etc/lsb-release 512s + [ ! -d /usr/share/doc/unattended-upgrades ] 512s + [ ! -d /usr/share/doc/lxd ] 512s + [ ! -d /usr/share/doc/lxd-client ] 512s + [ ! -d /usr/share/doc/snapd ] 512s + type iptables 512s + cat 512s + chmod 755 /etc/rc.local 512s + . /etc/rc.local 512s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 512s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 512s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 512s + uname -m 512s + [ s390x = ppc64le ] 512s + [ -d /run/systemd/system ] 512s + systemd-detect-virt --quiet --vm 512s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 512s + cat 512s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 512s + echo COMPRESS=lz4 512s autopkgtest: DBG: testbed command exited with code 0 512s autopkgtest [22:18:20]: upgrading testbed (apt dist-upgrade and autopurge) 512s 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'] 512s Reading package lists... 512s Building dependency tree... 512s Reading state information... 512s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 512s Starting 2 pkgProblemResolver with broken count: 0 512s Done 513s Entering ResolveByKeep 513s 513s The following packages will be upgraded: 513s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 513s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 513s Need to get 10.7 MB of archives. 513s After this operation, 305 kB of additional disk space will be used. 513s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 513s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 514s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 514s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 514s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 514s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 514s Preconfiguring packages ... 514s Fetched 10.7 MB in 1s (9385 kB/s) 514s (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 ... 55867 files and directories currently installed.) 514s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 514s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 514s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 514s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 514s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 514s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 515s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 515s Checking for services that may need to be restarted... 515s Checking init scripts... 515s Checking for services that may need to be restarted... 515s Checking init scripts... 515s Stopping some services possibly affected by the upgrade (will be restarted later): 515s cron: stopping...done. 515s 515s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 515s Setting up libc6:s390x (2.41-1ubuntu1) ... 515s Checking for services that may need to be restarted... 515s Checking init scripts... 515s Restarting services possibly affected by the upgrade: 515s cron: restarting...done. 515s 515s Services restarted successfully. 515s (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 ... 55868 files and directories currently installed.) 515s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 515s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 515s Setting up libc-bin (2.41-1ubuntu1) ... 515s (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 ... 55868 files and directories currently installed.) 515s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 515s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 515s Setting up iproute2 (6.13.0-1ubuntu1) ... 515s Setting up locales (2.41-1ubuntu1) ... 515s Installing new version of config file /etc/locale.alias ... 516s Generating locales (this might take a while)... 517s en_US.UTF-8... done 517s Generation complete. 517s Setting up libc-dev-bin (2.41-1ubuntu1) ... 517s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 517s Processing triggers for man-db (2.13.0-1) ... 518s Processing triggers for systemd (257.2-3ubuntu1) ... 519s autopkgtest: DBG: testbed command exited with code 0 519s 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'] 519s Reading package lists... 519s Building dependency tree... 519s Reading state information... 519s Starting pkgProblemResolver with broken count: 0 519s Starting 2 pkgProblemResolver with broken count: 0 519s Done 519s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 519s autopkgtest: DBG: testbed command exited with code 0 519s 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.OJc3sP/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 520s autopkgtest: DBG: testbed command exited with code 1 520s autopkgtest [22:18:28]: rebooting testbed after setup commands that affected boot 520s autopkgtest: DBG: sending command to testbed: reboot 537s autopkgtest: DBG: got reply from testbed: ok 537s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 537s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 537s autopkgtest: DBG: testbed command exited with code 0 537s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot 537s autopkgtest: DBG: got reply from testbed: ok 537s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 537s autopkgtest: DBG: testbed command exited with code 0 537s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 538s autopkgtest: DBG: testbed command exited with code 0 538s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 538s autopkgtest: DBG: testbed command exited with code 0 538s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 538s autopkgtest: DBG: testbed command exited with code 0 538s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare 538s autopkgtest: DBG: got reply from testbed: ok 538s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 538s autopkgtest: DBG: testbed command exited with code 0 538s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 538s autopkgtest: DBG: testbed command exited with code 0 538s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 539s autopkgtest: DBG: testbed command exited with code 0 539s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/testbed-packages"], kind short, sout raw, serr pipe, env [] 539s autopkgtest: DBG: testbed command exited with code 0 539s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/testbed-packages /tmp/autopkgtest-work.x6dvt7b0/out/testbed-packages 540s autopkgtest: DBG: got reply from testbed: ok 540s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 540s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot 540s autopkgtest: DBG: got reply from testbed: ok 540s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare 541s autopkgtest: DBG: got reply from testbed: ok 541s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.OJc3sP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 542s autopkgtest: DBG: install_deps: deps_new=['dose-extra'] 542s autopkgtest: DBG: install-deps: satisfying dose-extra 542s autopkgtest: DBG: can use apt-get on testbed: True 542s 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', 'dose-extra'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 542s Reading package lists... 542s Building dependency tree... 542s Reading state information... 542s Starting pkgProblemResolver with broken count: 0 542s Starting 2 pkgProblemResolver with broken count: 0 542s Done 542s The following NEW packages will be installed: 542s dose-extra 543s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 543s Need to get 2945 kB of archives. 543s After this operation, 22.1 MB of additional disk space will be used. 543s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x dose-extra s390x 7.0.0-5build8 [2945 kB] 543s Fetched 2945 kB in 1s (4507 kB/s) 543s Selecting previously unselected package dose-extra. 544s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 544s Preparing to unpack .../dose-extra_7.0.0-5build8_s390x.deb ... 544s Unpacking dose-extra (7.0.0-5build8) ... 544s Setting up dose-extra (7.0.0-5build8) ... 544s Processing triggers for man-db (2.13.0-1) ... 544s autopkgtest: DBG: testbed command exited with code 0 544s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'dose-extra'], kind short, sout pipe, serr pipe, env [] 545s autopkgtest: DBG: testbed command exited with code 0 545s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.OJc3sP/dose-outdated-packages.all"], kind short, sout raw, serr pipe, env [] 545s autopkgtest: DBG: testbed command exited with code 0 545s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-outdated-packages.all /tmp/autopkgtest-work.x6dvt7b0/out/dose-outdated-packages.all 545s autopkgtest: DBG: got reply from testbed: ok 545s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr raw, env [] 545s autopkgtest: DBG: testbed command exited with code 1 545s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.OJc3sP/build.2Gi'], kind short, sout raw, serr pipe, env [] 545s autopkgtest: DBG: testbed command exited with code 0 545s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.x6dvt7b0/out/tests-tree/ /tmp/autopkgtest.OJc3sP/build.2Gi/src/ 548s autopkgtest: DBG: got reply from testbed: ok 548s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.OJc3sP/build.2Gi/src'], kind short, sout raw, serr pipe, env [] 548s autopkgtest: DBG: testbed command exited with code 0 548s autopkgtest [22:18:56]: test dose-outdated: [----------------------- 548s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.OJc3sP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.OJc3sP/dose-outdated-artifacts --chdir=/tmp/autopkgtest.OJc3sP/build.2Gi/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.OJc3sP/dose-outdated-stderr --stdout=/tmp/autopkgtest.OJc3sP/dose-outdated-stdout --tmp=/tmp/autopkgtest.OJc3sP/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-outdated -- /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-outdated"], kind test, sout raw, serr raw, env [] 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.OJc3sP/dose-outdated-artifacts 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: changing to directory: /tmp/autopkgtest.OJc3sP/build.2Gi/src 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: LANG=C.UTF-8 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LANGUAGE 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ADDRESS 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_ALL 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_COLLATE 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_CTYPE 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MEASUREMENT 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MESSAGES 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_MONETARY 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NAME 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_NUMERIC 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_PAPER 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TELEPHONE 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: unsetting environment: LC_TIME 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: pretending to be a login shell 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write standard error to /tmp/autopkgtest.OJc3sP/dose-outdated-stderr 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: will write stdout to /tmp/autopkgtest.OJc3sP/dose-outdated-stdout 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.OJc3sP/autopkgtest_tmp 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: marking as executable: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-outdated 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: command to run: /tmp/autopkgtest.OJc3sP/build.2Gi/src/debian/tests/dose-outdated 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.mAiMr1eyTW/out to stdout and file: /tmp/autopkgtest.OJc3sP/dose-outdated-stdout 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: copying /tmp/tmp.mAiMr1eyTW/err to standard error and file: /tmp/autopkgtest.OJc3sP/dose-outdated-stdout 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: writing script pid 1238 to /tmp/autopkgtest_script_pid 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: checking for leaked background processes... 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: waiting for tee/cat subprocesses... 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: cleaning up... 548s /tmp/autopkgtest.OJc3sP/wrapper.sh: Exit status: 0 548s autopkgtest: DBG: testbed command exited with code 0 548s autopkgtest [22:18:56]: test dose-outdated: -----------------------] 548s autopkgtest: DBG: testbed executing test finished with exit status 0 548s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-outdated-stdout /tmp/autopkgtest-work.x6dvt7b0/out/dose-outdated-stdout 548s autopkgtest: DBG: got reply from testbed: ok 548s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-outdated-stderr /tmp/autopkgtest-work.x6dvt7b0/out/dose-outdated-stderr 549s autopkgtest: DBG: got reply from testbed: ok 549s autopkgtest [22:18:57]: test dose-outdated: - - - - - - - - - - results - - - - - - - - - - 549s dose-outdated PASS 549s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.OJc3sP/dose-outdated-artifacts/ /tmp/autopkgtest-work.x6dvt7b0/out/artifacts/ 549s autopkgtest: DBG: got reply from testbed: ok 549s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.OJc3sP/dose-outdated-artifacts', '/tmp/autopkgtest.OJc3sP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 549s autopkgtest: DBG: testbed command exited with code 0 549s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 549s autopkgtest [22:18:57]: @@@@@@@@@@@@@@@@@@@@ summary 549s dose-debcheck PASS 549s bug811569 PASS 549s bug790422 PASS 549s bug867104 PASS 549s dose-builddebcheck PASS 549s bug896084 PASS 549s dose-outdated PASS 549s autopkgtest: DBG: testbed stop 549s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.OJc3sP 549s autopkgtest: DBG: sending command to testbed: close 567s autopkgtest: DBG: got reply from testbed: ok 567s autopkgtest: DBG: sending command to testbed: quit 567s nova [W] Using flock in prodstack6-s390x 567s flock: timeout while waiting to get lock 567s Creating nova instance adt-plucky-s390x-dose3-20250215-220948-juju-7f2275-prod-proposed-migration-environment-15-f9a7a47d-d8fb-4ddc-98e6-0a123337d084 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 567s nova [W] Timed out waiting for 7068e4ba-1880-47a7-9ee7-47b6863f925e to get deleted. 567s nova [W] Using flock in prodstack6-s390x 567s flock: timeout while waiting to get lock 567s Creating nova instance adt-plucky-s390x-dose3-20250215-220948-juju-7f2275-prod-proposed-migration-environment-15-f9a7a47d-d8fb-4ddc-98e6-0a123337d084 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 567s nova [W] Timed out waiting for 1aa72178-db92-4d10-88df-19edcf480002 to get deleted. 567s nova [W] Using flock in prodstack6-s390x 567s Creating nova instance adt-plucky-s390x-dose3-20250215-220948-juju-7f2275-prod-proposed-migration-environment-15-f9a7a47d-d8fb-4ddc-98e6-0a123337d084 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 567s nova [W] Timed out waiting for d201cfac-4354-4b1b-b129-2755f38171b8 to get deleted.