0s autopkgtest: DBG: testbed init 0s autopkgtest [22:15:40]: starting date and time: 2025-02-15 22:15:40+0000 0s autopkgtest [22:15:40]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [22:15:40]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.kitlfant/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 entr --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-entr-20250215-221540-juju-7f2275-prod-proposed-migration-environment-15-7668c5f3-85fe-4372-92a9-47637ec708b9 --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 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.eAbthR 110s autopkgtest: DBG: sending command to testbed: print-execute-command 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.quu0ppdb/runcmd 110s autopkgtest: DBG: sending command to testbed: capabilities 110s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu isolation-machine revert-full-system revert reboot root-on-testbed 110s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'revert', 'reboot', 'root-on-testbed', 'has_internet'] 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.eAbthR'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.eAbthR/wrapper.sh 111s autopkgtest: DBG: got reply from testbed: ok 111s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.eAbthR/wrapper.sh'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [22:17:31]: testbed dpkg architecture: s390x 111s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [22:17:31]: testbed apt version: 2.9.28 111s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed has eatmydata 112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [22:17:32]: @@@@@@@@@@@@@@@@@@@@ test bed setup 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [22:17:32]: testbed release detected to be: None 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT source: Types: deb deb-src 112s URIs: http://ftpmaster.internal/ubuntu/ 112s Suites: plucky-proposed 112s Components: main restricted universe multiverse 112s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 112s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 113s Package: * 113s Pin: release plucky-proposed 113s Pin-Priority: 500 113s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [22:17:33]: updating testbed package index (apt update) 113s 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'] 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 113s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 113s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 113s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 114s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 114s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 114s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 114s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 114s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 114s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 114s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 114s Fetched 2073 kB in 1s (1652 kB/s) 115s Reading package lists... 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 115s Package: * 115s Pin: release plucky-proposed 115s Pin-Priority: 100 115s 115s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 115s Pin: release plucky-proposed 115s Pin-Priority: 995 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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.eAbthR/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s + lsb_release --codename --short 115s + RELEASE=plucky 115s + cat 115s + [ plucky != trusty ] 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 116s Calculating upgrade... 116s The following packages were automatically installed and are no longer required: 116s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 116s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 116s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 116s linux-tools-6.11.0-8-generic 116s Use 'sudo apt autoremove' to remove them. 116s The following packages will be upgraded: 116s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 116s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s Need to get 1155 kB of archives. 116s After this operation, 16.4 kB of additional disk space will be used. 116s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 116s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 116s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 116s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 117s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 117s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 117s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 117s Preconfiguring packages ... 117s Fetched 1155 kB in 1s (1296 kB/s) 117s (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.) 117s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 117s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 117s Setting up dash (0.5.12-12ubuntu1) ... 117s (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.) 117s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 117s (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.) 117s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 117s (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.) 117s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 117s (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.) 117s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 117s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 117s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 117s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 117s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 117s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 117s Setting up libtasn1-6:s390x (4.20.0-2) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s Processing triggers for man-db (2.13.0-1) ... 118s Processing triggers for debianutils (5.21) ... 118s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 118s + /usr/lib/apt/apt-helper analyze-pattern ?true 118s + + sed s/\./\\./g 118s uname -r 118s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 118s + apt list ?obsolete 118s + tail -n+2 118s + + grep -v ^linux-.*6\.12\.0-15-generic.* 118s cut -d/ -f1 118s + true 118s + obsolete_pkgs= 118s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 119s The following packages will be REMOVED: 119s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 119s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 119s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 119s linux-tools-6.11.0-8-generic* 119s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 119s After this operation, 167 MB disk space will be freed. 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 ... 80969 files and directories currently installed.) 119s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 119s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 119s Removing libpython3.12t64:s390x (3.12.9-1) ... 119s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 119s Removing libnsl2:s390x (1.3.0-3build3) ... 119s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 119s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 119s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 120s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 120s Processing triggers for libc-bin (2.40-4ubuntu1) ... 120s (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.) 120s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 120s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 120s + grep -q trusty /etc/lsb-release 120s + [ ! -d /usr/share/doc/unattended-upgrades ] 120s + [ ! -d /usr/share/doc/lxd ] 120s + [ ! -d /usr/share/doc/lxd-client ] 120s + [ ! -d /usr/share/doc/snapd ] 120s + type iptables 120s + cat 120s + chmod 755 /etc/rc.local 120s + . /etc/rc.local 120s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 120s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 120s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 120s + uname -m 120s + [ s390x = ppc64le ] 120s + [ -d /run/systemd/system ] 120s + systemd-detect-virt --quiet --vm 120s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 120s + cat 120s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 120s + echo COMPRESS=lz4 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [22:17:40]: upgrading testbed (apt dist-upgrade and autopurge) 120s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 121s Starting 2 pkgProblemResolver with broken count: 0 121s Done 121s Entering ResolveByKeep 121s 121s The following packages will be upgraded: 121s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 122s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s Need to get 10.7 MB of archives. 122s After this operation, 305 kB of additional disk space will be used. 122s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 122s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 123s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 125s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 127s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 127s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 128s Preconfiguring packages ... 128s Fetched 10.7 MB in 6s (1674 kB/s) 128s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 128s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 128s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 128s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 128s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 128s Checking for services that may need to be restarted... 128s Checking init scripts... 128s Checking for services that may need to be restarted... 128s Checking init scripts... 128s Stopping some services possibly affected by the upgrade (will be restarted later): 129s cron: stopping...done. 129s 129s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 129s Setting up libc6:s390x (2.41-1ubuntu1) ... 129s Checking for services that may need to be restarted... 129s Checking init scripts... 129s Restarting services possibly affected by the upgrade: 129s cron: restarting...done. 129s 129s Services restarted successfully. 129s (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.) 129s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 129s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 129s Setting up libc-bin (2.41-1ubuntu1) ... 129s (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.) 129s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 129s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 129s Setting up iproute2 (6.13.0-1ubuntu1) ... 129s Setting up locales (2.41-1ubuntu1) ... 129s Installing new version of config file /etc/locale.alias ... 130s Generating locales (this might take a while)... 131s en_US.UTF-8... done 131s Generation complete. 131s Setting up libc-dev-bin (2.41-1ubuntu1) ... 131s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 131s Processing triggers for man-db (2.13.0-1) ... 131s Processing triggers for systemd (257.2-3ubuntu1) ... 132s autopkgtest: DBG: testbed command exited with code 0 132s 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'] 132s Reading package lists... 132s Building dependency tree... 132s Reading state information... 132s Starting pkgProblemResolver with broken count: 0 132s Starting 2 pkgProblemResolver with broken count: 0 132s Done 132s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 132s autopkgtest: DBG: testbed command exited with code 0 132s 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.eAbthR/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 1 133s autopkgtest [22:17:53]: rebooting testbed after setup commands that affected boot 133s autopkgtest: DBG: sending command to testbed: reboot 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.eAbthR'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.eAbthR/autopkgtest-reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.eAbthR'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.eAbthR/autopkgtest-reboot-prepare 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [22:18:14]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 154s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.eAbthR/testbed-packages"], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/testbed-packages /tmp/autopkgtest-work.kitlfant/out/testbed-packages 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.eAbthR'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.eAbthR/autopkgtest-reboot 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.eAbthR'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.eAbthR/autopkgtest-reboot-prepare 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.eAbthR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: Binaries: initialising 156s autopkgtest [22:18:16]: @@@@@@@@@@@@@@@@@@@@ apt-source entr 156s autopkgtest: DBG: blame += entr 156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 156s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'entr'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^entr$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'entr=5.6-1'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: install_deps: deps_new=[] 157s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.eAbthR/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source entr=5.6-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x entr_*.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'] 158s + cd / 158s + mktemp -d /tmp/autopkgtest.eAbthR/build.XXX 158s + builddir=/tmp/autopkgtest.eAbthR/build.WGp 158s + cd /tmp/autopkgtest.eAbthR/build.WGp 158s + apt-get source -d -q --only-source entr=5.6-1 158s + OUT=Reading package lists... 158s NOTICE: 'entr' packaging is maintained in the 'Git' version control system at: 158s https://salsa.debian.org/debian/entr.git 158s Please use: 158s git clone https://salsa.debian.org/debian/entr.git 158s to retrieve the latest (possibly unreleased) updates to the package. 158s Need to get 42.2 kB of source archives. 158s Get:1 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (dsc) [2136 B] 158s Get:2 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (tar) [23.4 kB] 158s Get:3 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (asc) [833 B] 158s Get:4 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (diff) [15.8 kB] 158s Fetched 42.2 kB in 0s (139 kB/s) 158s Download complete and in download only mode 158s + [ -n ] 158s + grep ^Get: 158s + echo Reading package lists... 158s NOTICE: 'entr' packaging is maintained in the 'Git' version control system at: 158s https://salsa.debian.org/debian/entr.git 158s Please use: 158s git clone https://salsa.debian.org/debian/entr.git 158s to retrieve the latest (possibly unreleased) updates to the package. 158s Need to get 42.2 kB of source archives. 158s Get:1 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (dsc) [2136 B] 158s Get:2 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (tar) [23.4 kB] 158s Get:3 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (asc) [833 B] 158s Get:4 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (diff) [15.8 kB] 158s Fetched 42.2 kB in 0s (139 kB/s) 158s Download complete and in download only mode 158s Get:1 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (dsc) [2136 B] 158s Get:2 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (tar) [23.4 kB] 158s Get:3 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (asc) [833 B] 158s Get:4 http://ftpmaster.internal/ubuntu plucky/universe entr 5.6-1 (diff) [15.8 kB] 158s + dpkg-source -x entr_5.6-1.dsc src 158s gpgv: Signature made Mon Sep 2 19:42:49 2024 UTC 158s gpgv: using RSA key 99B452B11F3C74C3B453E46FBED8449FCEE8DA88 158s gpgv: Can't check signature: No public key 158s dpkg-source: warning: cannot verify inline signature for ./entr_5.6-1.dsc: no acceptable signature found 158s + chmod -R a+rX . 158s + cd src/. 158s + pwd 158s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [22:18:19]: testing package entr version 5.6-1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/build.WGp/src/debian/ /tmp/autopkgtest-work.kitlfant/out/pkg/debian/ 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: processing dependency @ 159s autopkgtest: DBG: synthesised dependency entr 159s autopkgtest: DBG: Test defined: name print-help-message path None command "entr -h 2>&1 | grep usage" restrictions [] features ['test-name=print-help-message'] depends ['entr'] 159s autopkgtest: DBG: processing dependency entr 159s autopkgtest: DBG: marked alternatives ['entr'] as a synthesised dependency 159s autopkgtest: DBG: processing dependency file 159s autopkgtest: DBG: processing dependency gawk 159s autopkgtest: DBG: processing dependency git 159s autopkgtest: DBG: processing dependency procps 159s autopkgtest: DBG: processing dependency tmux 159s autopkgtest: DBG: processing dependency vim 159s autopkgtest: DBG: Test defined: name upstream-system-test path None command "./system_test.sh" restrictions ['allow-stderr'] features ['test-name=upstream-system-test'] depends ['entr', 'file', 'gawk', 'git', 'procps', 'tmux', 'vim'] 159s autopkgtest [22:18:19]: build not needed 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/build.WGp/src/ /tmp/autopkgtest-work.kitlfant/out/tests-tree/ 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: processing dependency @ 159s autopkgtest: DBG: synthesised dependency entr 159s autopkgtest: DBG: Test defined: name print-help-message path None command "entr -h 2>&1 | grep usage" restrictions [] features ['test-name=print-help-message'] depends ['entr'] 159s autopkgtest: DBG: processing dependency entr 159s autopkgtest: DBG: marked alternatives ['entr'] as a synthesised dependency 159s autopkgtest: DBG: processing dependency file 159s autopkgtest: DBG: processing dependency gawk 159s autopkgtest: DBG: processing dependency git 159s autopkgtest: DBG: processing dependency procps 159s autopkgtest: DBG: processing dependency tmux 159s autopkgtest: DBG: processing dependency vim 159s autopkgtest: DBG: Test defined: name upstream-system-test path None command "./system_test.sh" restrictions ['allow-stderr'] features ['test-name=upstream-system-test'] depends ['entr', 'file', 'gawk', 'git', 'procps', 'tmux', 'vim'] 159s autopkgtest [22:18:19]: test print-help-message: preparing testbed 159s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['entr'] 159s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 159s autopkgtest: DBG: install_deps: deps_new=['entr'] 159s autopkgtest: DBG: install-deps: satisfying entr 159s autopkgtest: DBG: can use apt-get on testbed: True 159s 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', 'entr'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 159s Reading package lists... 160s Building dependency tree... 160s Reading state information... 160s Starting pkgProblemResolver with broken count: 0 160s Starting 2 pkgProblemResolver with broken count: 0 160s Done 160s The following NEW packages will be installed: 160s entr 160s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 160s Need to get 23.2 kB of archives. 160s After this operation, 53.2 kB of additional disk space will be used. 160s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x entr s390x 5.6-1 [23.2 kB] 161s Fetched 23.2 kB in 0s (102 kB/s) 161s Selecting previously unselected package entr. 161s (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.) 161s Preparing to unpack .../archives/entr_5.6-1_s390x.deb ... 161s Unpacking entr (5.6-1) ... 161s Setting up entr (5.6-1) ... 161s Processing triggers for man-db (2.13.0-1) ... 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'entr'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.eAbthR/print-help-message-packages.all"], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/print-help-message-packages.all /tmp/autopkgtest-work.kitlfant/out/print-help-message-packages.all 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.eAbthR/build.WGp/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.eAbthR/build.WGp/src already exists 162s autopkgtest [22:18:22]: test print-help-message: entr -h 2>&1 | grep usage 162s autopkgtest [22:18:22]: test print-help-message: [----------------------- 162s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.eAbthR/wrapper.sh --debug --artifacts=/tmp/autopkgtest.eAbthR/print-help-message-artifacts --chdir=/tmp/autopkgtest.eAbthR/build.WGp/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.eAbthR/print-help-message-stderr --stdout=/tmp/autopkgtest.eAbthR/print-help-message-stdout --tmp=/tmp/autopkgtest.eAbthR/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' -- bash -ec 'entr -h 2>&1 | grep usage'"], kind test, sout raw, serr raw, env [] 162s /tmp/autopkgtest.eAbthR/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.eAbthR/print-help-message-artifacts 162s /tmp/autopkgtest.eAbthR/wrapper.sh: changing to directory: /tmp/autopkgtest.eAbthR/build.WGp/src 162s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 162s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 162s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 162s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 162s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: LANG=C.UTF-8 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LANGUAGE 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_ADDRESS 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_ALL 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_COLLATE 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_CTYPE 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_IDENTIFICATION 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_MEASUREMENT 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_MESSAGES 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_MONETARY 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_NAME 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_NUMERIC 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_PAPER 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_TELEPHONE 162s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_TIME 162s /tmp/autopkgtest.eAbthR/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 162s /tmp/autopkgtest.eAbthR/wrapper.sh: pretending to be a login shell 162s /tmp/autopkgtest.eAbthR/wrapper.sh: will write standard error to /tmp/autopkgtest.eAbthR/print-help-message-stderr 162s /tmp/autopkgtest.eAbthR/wrapper.sh: will write stdout to /tmp/autopkgtest.eAbthR/print-help-message-stdout 162s /tmp/autopkgtest.eAbthR/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.eAbthR/autopkgtest_tmp 162s /tmp/autopkgtest.eAbthR/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.eAbthR/wrapper.sh: command to run: bash -ec entr -h 2>&1 | grep usage 162s /tmp/autopkgtest.eAbthR/wrapper.sh: copying /tmp/tmp.T0PMPhQw6Z/out to stdout and file: /tmp/autopkgtest.eAbthR/print-help-message-stdout 162s /tmp/autopkgtest.eAbthR/wrapper.sh: copying /tmp/tmp.T0PMPhQw6Z/err to standard error and file: /tmp/autopkgtest.eAbthR/print-help-message-stdout 162s /tmp/autopkgtest.eAbthR/wrapper.sh: writing script pid 1321 to /tmp/autopkgtest_script_pid 162s usage: entr [-acdnprsxz] utility [argument [/_] ...] < filenames 162s /tmp/autopkgtest.eAbthR/wrapper.sh: checking for leaked background processes... 162s /tmp/autopkgtest.eAbthR/wrapper.sh: waiting for tee/cat subprocesses... 162s /tmp/autopkgtest.eAbthR/wrapper.sh: cleaning up... 162s /tmp/autopkgtest.eAbthR/wrapper.sh: Exit status: 0 162s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [22:18:23]: test print-help-message: -----------------------] 163s autopkgtest: DBG: testbed executing test finished with exit status 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/print-help-message-stdout /tmp/autopkgtest-work.kitlfant/out/print-help-message-stdout 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/print-help-message-stderr /tmp/autopkgtest-work.kitlfant/out/print-help-message-stderr 163s autopkgtest: DBG: got reply from testbed: ok 163s print-help-message PASS 163s autopkgtest [22:18:23]: test print-help-message: - - - - - - - - - - results - - - - - - - - - - 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/print-help-message-artifacts/ /tmp/autopkgtest-work.kitlfant/out/artifacts/ 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.eAbthR/print-help-message-artifacts', '/tmp/autopkgtest.eAbthR/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [22:18:23]: test upstream-system-test: preparing testbed 163s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['entr'], deps_new=['entr', 'file', 'gawk', 'git', 'procps', 'tmux', 'vim'] 163s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 163s autopkgtest: DBG: install_deps: deps_new=['entr', 'file', 'gawk', 'git', 'procps', 'tmux', 'vim'] 163s autopkgtest: DBG: install-deps: satisfying entr, file, gawk, git, procps, tmux, vim 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', 'entr, file, gawk, git, procps, tmux, vim'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 164s Reading package lists... 164s Building dependency tree... 164s Reading state information... 164s Starting pkgProblemResolver with broken count: 0 164s Starting 2 pkgProblemResolver with broken count: 0 164s Done 164s The following NEW packages will be installed: 164s git git-man liberror-perl libnsl2 libpython3.12-minimal libpython3.12-stdlib 164s libpython3.12t64 libsodium23 vim vim-runtime 164s 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded. 164s Need to get 20.0 MB of archives. 164s After this operation, 95.7 MB of additional disk space will be used. 164s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 165s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 165s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 166s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liberror-perl all 0.17029-2 [25.6 kB] 166s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x git-man all 1:2.47.1-1ubuntu1 [1142 kB] 167s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x git s390x 1:2.47.1-1ubuntu1 [4260 kB] 168s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 169s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 169s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x vim-runtime all 2:9.1.0861-1ubuntu1 [7455 kB] 170s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x vim s390x 2:9.1.0861-1ubuntu1 [1503 kB] 170s Fetched 20.0 MB in 6s (3380 kB/s) 170s Selecting previously unselected package libnsl2:s390x. 170s (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 ... 55876 files and directories currently installed.) 170s Preparing to unpack .../0-libnsl2_1.3.0-3build3_s390x.deb ... 170s Unpacking libnsl2:s390x (1.3.0-3build3) ... 170s Selecting previously unselected package libpython3.12-minimal:s390x. 170s Preparing to unpack .../1-libpython3.12-minimal_3.12.9-1_s390x.deb ... 170s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 170s Selecting previously unselected package libpython3.12-stdlib:s390x. 170s Preparing to unpack .../2-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 170s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 170s Selecting previously unselected package liberror-perl. 170s Preparing to unpack .../3-liberror-perl_0.17029-2_all.deb ... 170s Unpacking liberror-perl (0.17029-2) ... 171s Selecting previously unselected package git-man. 171s Preparing to unpack .../4-git-man_1%3a2.47.1-1ubuntu1_all.deb ... 171s Unpacking git-man (1:2.47.1-1ubuntu1) ... 171s Selecting previously unselected package git. 171s Preparing to unpack .../5-git_1%3a2.47.1-1ubuntu1_s390x.deb ... 171s Unpacking git (1:2.47.1-1ubuntu1) ... 171s Selecting previously unselected package libpython3.12t64:s390x. 171s Preparing to unpack .../6-libpython3.12t64_3.12.9-1_s390x.deb ... 171s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 171s Selecting previously unselected package libsodium23:s390x. 171s Preparing to unpack .../7-libsodium23_1.0.18-1build3_s390x.deb ... 171s Unpacking libsodium23:s390x (1.0.18-1build3) ... 171s Selecting previously unselected package vim-runtime. 171s Preparing to unpack .../8-vim-runtime_2%3a9.1.0861-1ubuntu1_all.deb ... 171s Adding 'diversion of /usr/share/vim/vim91/doc/help.txt to /usr/share/vim/vim91/doc/help.txt.vim-tiny by vim-runtime' 171s Adding 'diversion of /usr/share/vim/vim91/doc/tags to /usr/share/vim/vim91/doc/tags.vim-tiny by vim-runtime' 171s Unpacking vim-runtime (2:9.1.0861-1ubuntu1) ... 171s Selecting previously unselected package vim. 171s Preparing to unpack .../9-vim_2%3a9.1.0861-1ubuntu1_s390x.deb ... 171s Unpacking vim (2:9.1.0861-1ubuntu1) ... 171s Setting up libsodium23:s390x (1.0.18-1build3) ... 171s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 171s Setting up liberror-perl (0.17029-2) ... 171s Setting up libnsl2:s390x (1.3.0-3build3) ... 171s Setting up git-man (1:2.47.1-1ubuntu1) ... 171s Setting up vim-runtime (2:9.1.0861-1ubuntu1) ... 171s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 171s Setting up libpython3.12t64:s390x (3.12.9-1) ... 171s Setting up git (1:2.47.1-1ubuntu1) ... 171s Setting up vim (2:9.1.0861-1ubuntu1) ... 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode 171s update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode 171s Processing triggers for man-db (2.13.0-1) ... 172s Processing triggers for libc-bin (2.41-1ubuntu1) ... 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'entr'], kind short, sout pipe, serr pipe, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.eAbthR/upstream-system-test-packages.all"], kind short, sout raw, serr pipe, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/upstream-system-test-packages.all /tmp/autopkgtest-work.kitlfant/out/upstream-system-test-packages.all 172s autopkgtest: DBG: got reply from testbed: ok 172s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.eAbthR/build.WGp/src'], kind short, sout raw, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.eAbthR/build.WGp/src already exists 173s autopkgtest [22:18:33]: test upstream-system-test: ./system_test.sh 173s autopkgtest [22:18:33]: test upstream-system-test: [----------------------- 173s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.eAbthR/wrapper.sh --debug --artifacts=/tmp/autopkgtest.eAbthR/upstream-system-test-artifacts --chdir=/tmp/autopkgtest.eAbthR/build.WGp/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.eAbthR/upstream-system-test-stderr --stdout=/tmp/autopkgtest.eAbthR/upstream-system-test-stdout --tmp=/tmp/autopkgtest.eAbthR/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' -- bash -ec ./system_test.sh"], kind test, sout raw, serr raw, env [] 173s /tmp/autopkgtest.eAbthR/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.eAbthR/upstream-system-test-artifacts 173s /tmp/autopkgtest.eAbthR/wrapper.sh: changing to directory: /tmp/autopkgtest.eAbthR/build.WGp/src 173s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 173s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 173s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 173s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 173s /tmp/autopkgtest.eAbthR/wrapper.sh: setting environment: LANG=C.UTF-8 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LANGUAGE 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_ADDRESS 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_ALL 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_COLLATE 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_CTYPE 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_IDENTIFICATION 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_MEASUREMENT 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_MESSAGES 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_MONETARY 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_NAME 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_NUMERIC 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_PAPER 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_TELEPHONE 173s /tmp/autopkgtest.eAbthR/wrapper.sh: unsetting environment: LC_TIME 173s /tmp/autopkgtest.eAbthR/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 173s /tmp/autopkgtest.eAbthR/wrapper.sh: pretending to be a login shell 173s /tmp/autopkgtest.eAbthR/wrapper.sh: will write standard error to /tmp/autopkgtest.eAbthR/upstream-system-test-stderr 173s /tmp/autopkgtest.eAbthR/wrapper.sh: will write stdout to /tmp/autopkgtest.eAbthR/upstream-system-test-stdout 173s /tmp/autopkgtest.eAbthR/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.eAbthR/autopkgtest_tmp 173s /tmp/autopkgtest.eAbthR/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 173s /tmp/autopkgtest.eAbthR/wrapper.sh: command to run: bash -ec ./system_test.sh 173s /tmp/autopkgtest.eAbthR/wrapper.sh: copying /tmp/tmp.QvNYrSO6Rz/out to stdout and file: /tmp/autopkgtest.eAbthR/upstream-system-test-stdout 173s /tmp/autopkgtest.eAbthR/wrapper.sh: copying /tmp/tmp.QvNYrSO6Rz/err to standard error and file: /tmp/autopkgtest.eAbthR/upstream-system-test-stdout 173s /tmp/autopkgtest.eAbthR/wrapper.sh: writing script pid 1603 to /tmp/autopkgtest_script_pid 173s INFO: No ./entr binary found. Testing the system binary /usr/bin/entr instead. 173s INFO: Using entr version: 173s .release: 5.6 173s usage: entr [-acdnprsxz] utility [argument [/_] ...] < filenames 194s .............................s........................................................s......... 194s 49 tests PASSED 194s /tmp/autopkgtest.eAbthR/wrapper.sh: checking for leaked background processes... 194s /tmp/autopkgtest.eAbthR/wrapper.sh: waiting for tee/cat subprocesses... 194s /tmp/autopkgtest.eAbthR/wrapper.sh: cleaning up... 194s /tmp/autopkgtest.eAbthR/wrapper.sh: Exit status: 0 194s autopkgtest: DBG: testbed command exited with code 0 195s autopkgtest [22:18:55]: test upstream-system-test: -----------------------] 195s autopkgtest: DBG: testbed executing test finished with exit status 0 195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/upstream-system-test-stdout /tmp/autopkgtest-work.kitlfant/out/upstream-system-test-stdout 195s autopkgtest: DBG: got reply from testbed: ok 195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/upstream-system-test-stderr /tmp/autopkgtest-work.kitlfant/out/upstream-system-test-stderr 195s autopkgtest: DBG: got reply from testbed: ok 195s autopkgtest [22:18:55]: test upstream-system-test: - - - - - - - - - - results - - - - - - - - - - 195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.eAbthR/upstream-system-test-artifacts/ /tmp/autopkgtest-work.kitlfant/out/artifacts/ 195s upstream-system-test PASS 195s autopkgtest: DBG: got reply from testbed: ok 195s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.eAbthR/upstream-system-test-artifacts', '/tmp/autopkgtest.eAbthR/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 195s autopkgtest: DBG: testbed command exited with code 0 195s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 195s autopkgtest [22:18:55]: @@@@@@@@@@@@@@@@@@@@ summary 195s print-help-message PASS 195s upstream-system-test PASS 195s autopkgtest: DBG: testbed stop 195s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.eAbthR 195s autopkgtest: DBG: sending command to testbed: close 213s autopkgtest: DBG: got reply from testbed: ok 213s autopkgtest: DBG: sending command to testbed: quit 213s nova [W] Using flock in prodstack6-s390x 213s Creating nova instance adt-plucky-s390x-entr-20250215-221540-juju-7f2275-prod-proposed-migration-environment-15-7668c5f3-85fe-4372-92a9-47637ec708b9 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 213s nova [W] Timed out waiting for 5f6a1fb6-749a-4c87-bf7a-53db0e997e8b to get deleted.