0s autopkgtest: DBG: testbed init 0s autopkgtest [21:44:45]: starting date and time: 2025-02-15 21:44:45+0000 0s autopkgtest [21:44:45]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:44:45]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.locoq12a/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 cgreen --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-18.secgroup --name adt-plucky-s390x-cgreen-20250215-214445-juju-7f2275-prod-proposed-migration-environment-15-8fa1838f-bfd3-466a-b331-8dc91ae62419 --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 82s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.yAF5NI 82s autopkgtest: DBG: sending command to testbed: print-execute-command 82s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.eoyhloh_/runcmd 82s autopkgtest: DBG: sending command to testbed: capabilities 82s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system revert suggested-normal-user=ubuntu root-on-testbed 82s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 82s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.yAF5NI'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.yAF5NI/wrapper.sh 83s autopkgtest: DBG: got reply from testbed: ok 83s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.yAF5NI/wrapper.sh'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest [21:46:08]: testbed dpkg architecture: s390x 83s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest [21:46:08]: testbed apt version: 2.9.28 83s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed has eatmydata 83s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest [21:46:08]: @@@@@@@@@@@@@@@@@@@@ test bed setup 83s 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 [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest [21:46:09]: testbed release detected to be: None 84s 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 [] 84s autopkgtest: DBG: testbed command exited with code 0 84s 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 [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: adding APT source: Types: deb deb-src 84s URIs: http://ftpmaster.internal/ubuntu/ 84s Suites: plucky-proposed 84s Components: main restricted universe multiverse 84s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 84s 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 [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 84s Package: * 84s Pin: release plucky-proposed 84s Pin-Priority: 500 84s 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 [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest [21:46:09]: updating testbed package index (apt update) 84s 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'] 85s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 85s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 85s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 85s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 85s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 85s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 85s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 85s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 85s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 85s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 85s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 85s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 85s Fetched 1889 kB in 1s (2099 kB/s) 86s Reading package lists... 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 86s Package: * 86s Pin: release plucky-proposed 86s Pin-Priority: 100 86s 86s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 86s Pin: release plucky-proposed 86s Pin-Priority: 995 86s 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 [] 86s autopkgtest: DBG: testbed command exited with code 0 86s 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.yAF5NI/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s 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'] 87s + lsb_release --codename --short 87s + RELEASE=plucky 87s + cat 87s + [ plucky != trusty ] 87s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 87s Reading package lists... 87s Building dependency tree... 87s Reading state information... 87s Calculating upgrade... 87s The following packages were automatically installed and are no longer required: 87s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 87s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 87s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 87s linux-tools-6.11.0-8-generic 87s Use 'sudo apt autoremove' to remove them. 87s The following packages will be upgraded: 87s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 87s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 87s Need to get 1155 kB of archives. 87s After this operation, 16.4 kB of additional disk space will be used. 87s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 87s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 87s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 87s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 88s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 88s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 88s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 88s Preconfiguring packages ... 88s Fetched 1155 kB in 1s (1911 kB/s) 88s (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.) 88s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 88s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 88s Setting up dash (0.5.12-12ubuntu1) ... 88s (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.) 88s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 88s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 88s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 88s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 88s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 88s (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.) 88s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 88s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 88s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 88s (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.) 88s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 88s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 88s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 88s (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.) 88s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 88s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 88s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 88s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 88s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 88s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 88s Setting up libtasn1-6:s390x (4.20.0-2) ... 88s Processing triggers for libc-bin (2.40-4ubuntu1) ... 88s Processing triggers for man-db (2.13.0-1) ... 89s Processing triggers for debianutils (5.21) ... 89s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 89s + /usr/lib/apt/apt-helper analyze-pattern ?true 89s + + sed s/\./\\./g 89s uname -r 89s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 89s + apt+ tail -n+2 89s list ?obsolete 89s + grep -v ^linux-.*6\.12\.0-15-generic.* 89s + cut -d/ -f1 89s + true 89s + obsolete_pkgs= 89s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 89s Reading package lists... 89s Building dependency tree... 89s Reading state information... 89s The following packages will be REMOVED: 89s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 89s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 89s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 89s linux-tools-6.11.0-8-generic* 89s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 89s After this operation, 167 MB disk space will be freed. 89s (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.) 89s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 89s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 89s Removing libpython3.12t64:s390x (3.12.9-1) ... 89s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 90s Removing libnsl2:s390x (1.3.0-3build3) ... 90s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 90s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 90s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 90s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 90s Processing triggers for libc-bin (2.40-4ubuntu1) ... 90s (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.) 90s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 90s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 91s + grep -q trusty /etc/lsb-release 91s + [ ! -d /usr/share/doc/unattended-upgrades ] 91s + [ ! -d /usr/share/doc/lxd ] 91s + [ ! -d /usr/share/doc/lxd-client ] 91s + [ ! -d /usr/share/doc/snapd ] 91s + type iptables 91s + cat 91s + chmod 755 /etc/rc.local 91s + . /etc/rc.local 91s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 91s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 91s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 91s + uname -m 91s + [ s390x = ppc64le ] 91s + [ -d /run/systemd/system ] 91s + systemd-detect-virt --quiet --vm 91s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 91s + cat 91s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 91s + echo COMPRESS=lz4 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest [21:46:16]: upgrading testbed (apt dist-upgrade and autopurge) 91s 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'] 91s Reading package lists... 91s Building dependency tree... 91s Reading state information... 91s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 91s Starting 2 pkgProblemResolver with broken count: 0 91s Done 91s Entering ResolveByKeep 92s 92s The following packages will be upgraded: 92s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 92s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 92s Need to get 10.7 MB of archives. 92s After this operation, 305 kB of additional disk space will be used. 92s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 92s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 92s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 92s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 93s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 93s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 93s Preconfiguring packages ... 93s Fetched 10.7 MB in 1s (10.7 MB/s) 93s (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.) 93s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 93s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 93s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 93s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 93s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 93s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 93s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 93s Checking for services that may need to be restarted... 93s Checking init scripts... 93s Checking for services that may need to be restarted... 93s Checking init scripts... 93s Stopping some services possibly affected by the upgrade (will be restarted later): 93s cron: stopping...done. 93s 93s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 93s Setting up libc6:s390x (2.41-1ubuntu1) ... 93s Checking for services that may need to be restarted... 93s Checking init scripts... 93s Restarting services possibly affected by the upgrade: 93s cron: restarting...done. 93s 93s Services restarted successfully. 93s (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.) 93s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 93s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 94s Setting up libc-bin (2.41-1ubuntu1) ... 94s (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.) 94s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 94s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 94s Setting up iproute2 (6.13.0-1ubuntu1) ... 94s Setting up locales (2.41-1ubuntu1) ... 94s Installing new version of config file /etc/locale.alias ... 94s Generating locales (this might take a while)... 95s en_US.UTF-8... done 95s Generation complete. 95s Setting up libc-dev-bin (2.41-1ubuntu1) ... 95s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 95s Processing triggers for man-db (2.13.0-1) ... 96s Processing triggers for systemd (257.2-3ubuntu1) ... 97s autopkgtest: DBG: testbed command exited with code 0 97s 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'] 97s Reading package lists... 97s Building dependency tree... 97s Reading state information... 97s Starting pkgProblemResolver with broken count: 0 97s Starting 2 pkgProblemResolver with broken count: 0 97s Done 97s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 97s autopkgtest: DBG: testbed command exited with code 0 97s 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.yAF5NI/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 1 97s autopkgtest [21:46:22]: rebooting testbed after setup commands that affected boot 97s autopkgtest: DBG: sending command to testbed: reboot 114s autopkgtest: DBG: got reply from testbed: ok 114s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.yAF5NI'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.yAF5NI/autopkgtest-reboot 114s autopkgtest: DBG: got reply from testbed: ok 114s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.yAF5NI'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.yAF5NI/autopkgtest-reboot-prepare 115s autopkgtest: DBG: got reply from testbed: ok 115s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [21:46:41]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 116s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.yAF5NI/testbed-packages"], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/testbed-packages /tmp/autopkgtest-work.locoq12a/out/testbed-packages 117s autopkgtest: DBG: got reply from testbed: ok 117s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 117s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.yAF5NI'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.yAF5NI/autopkgtest-reboot 117s autopkgtest: DBG: got reply from testbed: ok 117s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.yAF5NI'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.yAF5NI/autopkgtest-reboot-prepare 118s autopkgtest: DBG: got reply from testbed: ok 118s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.yAF5NI/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: Binaries: initialising 119s autopkgtest [21:46:44]: @@@@@@@@@@@@@@@@@@@@ apt-source cgreen 119s autopkgtest: DBG: blame += cgreen 119s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 119s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'cgreen'], kind short, sout pipe, serr pipe, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cgreen1$'], kind short, sout pipe, serr raw, env [] 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cgreen1=1.6.3-1build1'], kind short, sout pipe, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcgreen1$'], kind short, sout pipe, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcgreen1=1.6.3-1build1'], kind short, sout pipe, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcgreen1-doc$'], kind short, sout pipe, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcgreen1-doc=1.6.3-1build1'], kind short, sout pipe, serr raw, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcgreen1-dev$'], kind short, sout pipe, serr raw, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcgreen1-dev=1.6.3-1build1'], kind short, sout pipe, serr raw, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: install_deps: deps_new=[] 121s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s 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.yAF5NI/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source cgreen=1.6.3-1build1 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 cgreen_*.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'] 121s + cd / 121s + mktemp -d /tmp/autopkgtest.yAF5NI/build.XXX 121s + builddir=/tmp/autopkgtest.yAF5NI/build.pot 121s + cd /tmp/autopkgtest.yAF5NI/build.pot 121s + apt-get source -d -q --only-source cgreen=1.6.3-1build1 122s + OUT=Reading package lists... 122s NOTICE: 'cgreen' packaging is maintained in the 'Git' version control system at: 122s https://salsa.debian.org/debian/cgreen.git 122s Please use: 122s git clone https://salsa.debian.org/debian/cgreen.git 122s to retrieve the latest (possibly unreleased) updates to the package. 122s Need to get 470 kB of source archives. 122s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (dsc) [2235 B] 122s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (tar) [462 kB] 122s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (diff) [6012 B] 122s Fetched 470 kB in 1s (857 kB/s) 122s Download complete and in download only mode 122s + [ -n ] 122s + + echo Reading package lists... 122s NOTICE: 'cgreen' packaging is maintained in the 'Git' version control system at: 122s https://salsa.debian.org/debian/cgreen.git 122s Please use: 122s git clone https://salsa.debian.org/debian/cgreen.git 122s to retrieve the latest (possibly unreleased) updates to the package. 122s Need to get 470 kB of source archives. 122s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (dsc) [2235 B] 122s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (tar) [462 kB] 122s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (diff) [6012 B] 122s Fetched 470 kB in 1s (857 kB/s) 122s Download complete and in download only mode 122s grep ^Get: 122s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (dsc) [2235 B] 122s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (tar) [462 kB] 122s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cgreen 1.6.3-1build1 (diff) [6012 B] 122s + dpkg-source -x cgreen_1.6.3-1build1.dsc src 122s gpgv: Signature made Mon Apr 22 09:41:44 2024 UTC 122s gpgv: using RSA key 4FB588A84C2DDE79A74C77876FA458DD1DB03F71 122s gpgv: issuer "juliank@ubuntu.com" 122s gpgv: Can't check signature: No public key 122s dpkg-source: warning: cannot verify inline signature for ./cgreen_1.6.3-1build1.dsc: no acceptable signature found 122s + chmod -R a+rX . 122s + cd src/. 122s + pwd 122s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [21:46:47]: testing package cgreen version 1.6.3-1build1 122s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/build.pot/src/debian/ /tmp/autopkgtest-work.locoq12a/out/pkg/debian/ 122s autopkgtest: DBG: got reply from testbed: ok 123s autopkgtest: DBG: processing dependency @ 123s autopkgtest: DBG: synthesised dependency libcgreen1-dev 123s autopkgtest: DBG: synthesised dependency libcgreen1 123s autopkgtest: DBG: synthesised dependency libcgreen1-doc 123s autopkgtest: DBG: synthesised dependency cgreen1 123s autopkgtest: DBG: Test defined: name testsuite path debian/tests/testsuite command "None" restrictions ['allow-stderr', 'superficial'] features [] depends ['libcgreen1-dev', 'libcgreen1', 'libcgreen1-doc', 'cgreen1'] 123s autopkgtest [21:46:48]: build not needed 123s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/build.pot/src/ /tmp/autopkgtest-work.locoq12a/out/tests-tree/ 123s autopkgtest: DBG: got reply from testbed: ok 123s autopkgtest: DBG: processing dependency @ 123s autopkgtest: DBG: synthesised dependency libcgreen1-dev 123s autopkgtest: DBG: synthesised dependency libcgreen1 123s autopkgtest: DBG: synthesised dependency libcgreen1-doc 123s autopkgtest: DBG: synthesised dependency cgreen1 123s autopkgtest: DBG: Test defined: name testsuite path debian/tests/testsuite command "None" restrictions ['allow-stderr', 'superficial'] features [] depends ['libcgreen1-dev', 'libcgreen1', 'libcgreen1-doc', 'cgreen1'] 123s autopkgtest [21:46:48]: test testsuite: preparing testbed 123s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libcgreen1-dev', 'libcgreen1', 'libcgreen1-doc', 'cgreen1'] 123s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 123s autopkgtest: DBG: install_deps: deps_new=['libcgreen1-dev', 'libcgreen1', 'libcgreen1-doc', 'cgreen1'] 123s autopkgtest: DBG: install-deps: satisfying libcgreen1-dev, libcgreen1, libcgreen1-doc, cgreen1 123s autopkgtest: DBG: can use apt-get on testbed: True 123s 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', 'libcgreen1-dev, libcgreen1, libcgreen1-doc, cgreen1'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 124s Reading package lists... 124s Building dependency tree... 124s Reading state information... 124s Starting pkgProblemResolver with broken count: 0 124s Starting 2 pkgProblemResolver with broken count: 0 124s Done 124s The following NEW packages will be installed: 124s cgreen1 libcgreen1 libcgreen1-dev libcgreen1-doc 124s 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. 124s Need to get 396 kB of archives. 124s After this operation, 677 kB of additional disk space will be used. 124s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libcgreen1 s390x 1.6.3-1build1 [37.5 kB] 124s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x cgreen1 s390x 1.6.3-1build1 [16.2 kB] 124s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libcgreen1-dev s390x 1.6.3-1build1 [14.9 kB] 124s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libcgreen1-doc all 1.6.3-1build1 [327 kB] 125s Fetched 396 kB in 0s (938 kB/s) 125s Selecting previously unselected package libcgreen1. 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 125s Preparing to unpack .../libcgreen1_1.6.3-1build1_s390x.deb ... 125s Unpacking libcgreen1 (1.6.3-1build1) ... 125s Selecting previously unselected package cgreen1. 125s Preparing to unpack .../cgreen1_1.6.3-1build1_s390x.deb ... 125s Unpacking cgreen1 (1.6.3-1build1) ... 125s Selecting previously unselected package libcgreen1-dev. 125s Preparing to unpack .../libcgreen1-dev_1.6.3-1build1_s390x.deb ... 125s Unpacking libcgreen1-dev (1.6.3-1build1) ... 125s Selecting previously unselected package libcgreen1-doc. 125s Preparing to unpack .../libcgreen1-doc_1.6.3-1build1_all.deb ... 125s Unpacking libcgreen1-doc (1.6.3-1build1) ... 125s Setting up libcgreen1-doc (1.6.3-1build1) ... 125s Setting up libcgreen1 (1.6.3-1build1) ... 125s Setting up libcgreen1-dev (1.6.3-1build1) ... 125s Setting up cgreen1 (1.6.3-1build1) ... 125s Processing triggers for man-db (2.13.0-1) ... 125s Processing triggers for libc-bin (2.41-1ubuntu1) ... 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libcgreen1-dev'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libcgreen1'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libcgreen1-doc'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cgreen1'], kind short, sout pipe, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.yAF5NI/testsuite-packages.all"], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/testsuite-packages.all /tmp/autopkgtest-work.locoq12a/out/testsuite-packages.all 127s autopkgtest: DBG: got reply from testbed: ok 127s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.yAF5NI/build.pot/src'], kind short, sout raw, serr raw, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.yAF5NI/build.pot/src already exists 127s autopkgtest [21:46:52]: test testsuite: [----------------------- 127s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.yAF5NI/wrapper.sh --debug --artifacts=/tmp/autopkgtest.yAF5NI/testsuite-artifacts --chdir=/tmp/autopkgtest.yAF5NI/build.pot/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.yAF5NI/testsuite-stderr --stdout=/tmp/autopkgtest.yAF5NI/testsuite-stdout --tmp=/tmp/autopkgtest.yAF5NI/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.yAF5NI/build.pot/src/debian/tests/testsuite -- /tmp/autopkgtest.yAF5NI/build.pot/src/debian/tests/testsuite"], kind test, sout raw, serr raw, env [] 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.yAF5NI/testsuite-artifacts 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: changing to directory: /tmp/autopkgtest.yAF5NI/build.pot/src 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: setting environment: LANG=C.UTF-8 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LANGUAGE 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_ADDRESS 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_ALL 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_COLLATE 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_CTYPE 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_IDENTIFICATION 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_MEASUREMENT 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_MESSAGES 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_MONETARY 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_NAME 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_NUMERIC 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_PAPER 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_TELEPHONE 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: unsetting environment: LC_TIME 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: pretending to be a login shell 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: will write standard error to /tmp/autopkgtest.yAF5NI/testsuite-stderr 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: will write stdout to /tmp/autopkgtest.yAF5NI/testsuite-stdout 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.yAF5NI/autopkgtest_tmp 127s /tmp/autopkgtest.yAF5NI/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 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: marking as executable: /tmp/autopkgtest.yAF5NI/build.pot/src/debian/tests/testsuite 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: command to run: /tmp/autopkgtest.yAF5NI/build.pot/src/debian/tests/testsuite 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: copying /tmp/tmp.fJw4yjsAJR/out to stdout and file: /tmp/autopkgtest.yAF5NI/testsuite-stdout 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: copying /tmp/tmp.fJw4yjsAJR/err to standard error and file: /tmp/autopkgtest.yAF5NI/testsuite-stdout 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: writing script pid 1455 to /tmp/autopkgtest_script_pid 127s cgreen-runner for Cgreen unittest and mocking framework v1.6.3 127s 127s Usage: 127s /usr/bin/cgreen-runner [--suite ] [--verbose] [--quiet] [--no-run] [--xml ] [--libxml2 ] [--help] ( [])+ 127s 127s Discover and run all or named cgreen test(s) from one or multiple 127s dynamically loadable libraries. 127s 127s A single test can be run using the form [:] where can 127s be omitted if there is no context. 127s 127s -c --colours/colors Use colours to emphasis result (requires ANSI-capable terminal) 127s -C --no-colours/no-colors Don't use colours 127s -x --xml Instead of messages on stdout, write results into one XML-file 127s per suite, compatible with Hudson/Jenkins CI. The filename(s) 127s will be '-.xml' 127s -X --libxml2 Format the test results using libxml2 127s -s --suite Name the top level suite 127s -n --no-run Don't run the tests 127s -v --verbose Show progress information 127s -q --quiet Just output dots for each test 127s --version Show version information 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: checking for leaked background processes... 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: waiting for tee/cat subprocesses... 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: cleaning up... 127s /tmp/autopkgtest.yAF5NI/wrapper.sh: Exit status: 0 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest [21:46:52]: test testsuite: -----------------------] 127s autopkgtest: DBG: testbed executing test finished with exit status 0 127s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/testsuite-stdout /tmp/autopkgtest-work.locoq12a/out/testsuite-stdout 128s autopkgtest: DBG: got reply from testbed: ok 128s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/testsuite-stderr /tmp/autopkgtest-work.locoq12a/out/testsuite-stderr 128s autopkgtest: DBG: got reply from testbed: ok 128s autopkgtest [21:46:53]: test testsuite: - - - - - - - - - - results - - - - - - - - - - 128s testsuite PASS (superficial) 128s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.yAF5NI/testsuite-artifacts/ /tmp/autopkgtest-work.locoq12a/out/artifacts/ 128s autopkgtest: DBG: got reply from testbed: ok 128s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.yAF5NI/testsuite-artifacts', '/tmp/autopkgtest.yAF5NI/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 128s autopkgtest [21:46:53]: @@@@@@@@@@@@@@@@@@@@ summary 128s testsuite PASS (superficial) 128s autopkgtest: DBG: testbed stop 128s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.yAF5NI 128s autopkgtest: DBG: sending command to testbed: close 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: sending command to testbed: quit 146s nova [W] Using flock in prodstack6-s390x 146s Creating nova instance adt-plucky-s390x-cgreen-20250215-214445-juju-7f2275-prod-proposed-migration-environment-15-8fa1838f-bfd3-466a-b331-8dc91ae62419 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 146s nova [W] Timed out waiting for f8bf4ecb-3001-428d-9d2c-991cfe03c6a8 to get deleted.