0s autopkgtest: DBG: testbed init 0s autopkgtest [00:47:34]: starting date and time: 2025-02-16 00:47:34+0000 0s autopkgtest [00:47:34]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [00:47:34]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.err0s3uc/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 libxs-parse-sublike-perl --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-13.secgroup --name adt-plucky-s390x-libxs-parse-sublike-perl-20250216-004734-juju-7f2275-prod-proposed-migration-environment-15-2dd19e82-1c1f-4913-90c3-c35b68f45b92 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.AnLbng 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.tdpkevi0/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok revert-full-system reboot suggested-normal-user=ubuntu isolation-machine revert root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.AnLbng/wrapper.sh 106s autopkgtest: DBG: got reply from testbed: ok 106s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [00:49:21]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [00:49:21]: testbed apt version: 2.9.28 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [00:49:21]: @@@@@@@@@@@@@@@@@@@@ test bed setup 107s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [00:49:21]: testbed release detected to be: None 107s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 500 108s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [00:49:22]: updating testbed package index (apt update) 108s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 108s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 109s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 109s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 109s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 109s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 109s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 109s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 109s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 109s Fetched 2062 kB in 1s (2022 kB/s) 110s Reading package lists... 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 100 110s 110s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 110s Pin: release plucky-proposed 110s Pin-Priority: 995 110s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.AnLbng/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 111s + lsb_release --codename --short 111s + RELEASE=plucky 111s + cat 111s + [ plucky != trusty ] 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade... 111s The following packages were automatically installed and are no longer required: 111s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 111s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 111s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 111s linux-tools-6.11.0-8-generic 111s Use 'sudo apt autoremove' to remove them. 111s The following packages will be upgraded: 111s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 111s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 111s Need to get 1155 kB of archives. 111s After this operation, 16.4 kB of additional disk space will be used. 111s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 112s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 112s Preconfiguring packages ... 112s Fetched 1155 kB in 1s (1876 kB/s) 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 112s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 112s Setting up dash (0.5.12-12ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 112s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 112s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 112s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 112s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 112s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 112s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 112s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 112s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 112s Setting up libtasn1-6:s390x (4.20.0-2) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for debianutils (5.21) ... 113s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 113s + /usr/lib/apt/apt-helper analyze-pattern ?true 113s + uname -r 113s + sed s/\./\\./g 113s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 113s + apt list ?obsolete+ 113s + tail -n+2 113s + grep -v ^linux-.*6\.12\.0-15-generic.* 113s cut -d/ -f1 113s + true 113s + obsolete_pkgs= 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 114s The following packages will be REMOVED: 114s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 114s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 114s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 114s linux-tools-6.11.0-8-generic* 114s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 114s After this operation, 167 MB disk space will be freed. 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 114s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 114s Removing libpython3.12t64:s390x (3.12.9-1) ... 114s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 114s Removing libnsl2:s390x (1.3.0-3build3) ... 114s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 114s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 114s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 115s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 115s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 115s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 115s + grep -q trusty /etc/lsb-release 115s + [ ! -d /usr/share/doc/unattended-upgrades ] 115s + [ ! -d /usr/share/doc/lxd ] 115s + [ ! -d /usr/share/doc/lxd-client ] 115s + [ ! -d /usr/share/doc/snapd ] 115s + type iptables 115s + cat 115s + chmod 755 /etc/rc.local 115s + . /etc/rc.local 115s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 115s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 115s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 115s + uname -m 116s + [ s390x = ppc64le ] 116s + [ -d /run/systemd/system ] 116s + systemd-detect-virt --quiet --vm 116s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 116s + cat 116s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 116s + echo COMPRESS=lz4 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [00:49:30]: upgrading testbed (apt dist-upgrade and autopurge) 116s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s Entering ResolveByKeep 116s 117s The following packages will be upgraded: 117s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 117s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s Need to get 10.7 MB of archives. 117s After this operation, 305 kB of additional disk space will be used. 117s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 117s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 117s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 117s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 118s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 118s Preconfiguring packages ... 118s Fetched 10.7 MB in 1s (9885 kB/s) 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 118s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 118s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 118s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 118s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Checking for services that may need to be restarted... 118s Checking init scripts... 118s Stopping some services possibly affected by the upgrade (will be restarted later): 118s cron: stopping...done. 118s 118s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 119s Setting up libc6:s390x (2.41-1ubuntu1) ... 119s Checking for services that may need to be restarted... 119s Checking init scripts... 119s Restarting services possibly affected by the upgrade: 119s cron: restarting...done. 119s 119s Services restarted successfully. 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 119s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 119s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 119s Setting up libc-bin (2.41-1ubuntu1) ... 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 119s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 119s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 119s Setting up iproute2 (6.13.0-1ubuntu1) ... 119s Setting up locales (2.41-1ubuntu1) ... 119s Installing new version of config file /etc/locale.alias ... 119s Generating locales (this might take a while)... 121s en_US.UTF-8... done 121s Generation complete. 121s Setting up libc-dev-bin (2.41-1ubuntu1) ... 121s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 121s Processing triggers for man-db (2.13.0-1) ... 122s Processing triggers for systemd (257.2-3ubuntu1) ... 123s autopkgtest: DBG: testbed command exited with code 0 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', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.AnLbng/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 1 124s autopkgtest [00:49:38]: rebooting testbed after setup commands that affected boot 124s autopkgtest: DBG: sending command to testbed: reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [00:49:57]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 143s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AnLbng/testbed-packages"], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/testbed-packages /tmp/autopkgtest-work.err0s3uc/out/testbed-packages 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: Binaries: initialising 146s autopkgtest [00:50:00]: @@@@@@@@@@@@@@@@@@@@ apt-source libxs-parse-sublike-perl 146s autopkgtest: DBG: blame += libxs-parse-sublike-perl 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 146s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'libxs-parse-sublike-perl'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libxs-parse-sublike-perl$'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libxs-parse-sublike-perl=0.36-1'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: install_deps: deps_new=[] 146s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s 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.AnLbng/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source libxs-parse-sublike-perl=0.36-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 libxs-parse-sublike-perl_*.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'] 147s + cd / 147s + mktemp -d /tmp/autopkgtest.AnLbng/build.XXX 147s + builddir=/tmp/autopkgtest.AnLbng/build.mFi 147s + cd /tmp/autopkgtest.AnLbng/build.mFi 147s + apt-get source -d -q --only-source libxs-parse-sublike-perl=0.36-1 147s + OUT=Reading package lists... 147s NOTICE: 'libxs-parse-sublike-perl' packaging is maintained in the 'Git' version control system at: 147s https://salsa.debian.org/perl-team/modules/packages/libxs-parse-sublike-perl.git 147s Please use: 147s git clone https://salsa.debian.org/perl-team/modules/packages/libxs-parse-sublike-perl.git 147s to retrieve the latest (possibly unreleased) updates to the package. 147s Need to get 78.3 kB of source archives. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (dsc) [2548 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (tar) [72.0 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (diff) [3772 B] 147s Fetched 78.3 kB in 0s (218 kB/s) 147s Download complete and in download only mode 147s + [ -n ] 147s + echo Reading package lists... 147s NOTICE: 'libxs-parse-sublike-perl' packaging is maintained in the 'Git' version control system at: 147s https://salsa.debian.org/perl-team/modules/packages/libxs-parse-sublike-perl.git 147s Please use: 147s git clone https://salsa.debian.org/perl-team/modules/packages/libxs-parse-sublike-perl.git 147s to retrieve the latest (possibly unreleased) updates to the package. 147s Need to get 78.3 kB of source archives. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (dsc) [2548 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (tar) [72.0 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (diff) [3772 B] 147s Fetched 78.3 kB in 0s (218 kB/s) 147s Download complete and in download only mode 147s + grep ^Get: 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (dsc) [2548 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (tar) [72.0 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/main libxs-parse-sublike-perl 0.36-1 (diff) [3772 B] 147s + dpkg-source -x libxs-parse-sublike-perl_0.36-1.dsc src 147s gpgv: Signature made Sun Jan 26 01:04:38 2025 UTC 147s gpgv: using RSA key D1E1316E93A760A8104D85FABB3A68018649AA06 147s gpgv: Can't check signature: No public key 147s dpkg-source: warning: cannot verify inline signature for ./libxs-parse-sublike-perl_0.36-1.dsc: no acceptable signature found 147s + chmod -R a+rX . 147s + cd src/. 147s + pwd 147s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest [00:50:01]: testing package libxs-parse-sublike-perl version 0.36-1 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/build.mFi/src/debian/ /tmp/autopkgtest-work.err0s3uc/out/pkg/debian/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: autodep8 generated control: ----- 148s Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps 148s Depends: @, @builddeps@, pkg-perl-autopkgtest, 148s Restrictions: skippable, 148s Features: test-name=autodep8-perl-build-deps 148s 148s 148s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 148s Depends: @, pkg-perl-autopkgtest, 148s Restrictions: skippable, superficial, 148s Features: test-name=autodep8-perl 148s 148s 148s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 148s Depends: @, pkg-perl-autopkgtest, 148s Restrictions: needs-recommends, skippable, superficial, 148s Features: test-name=autodep8-perl-recommends 148s 148s 148s ------- 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency libxs-parse-sublike-perl 148s autopkgtest: DBG: processing dependency @builddeps@ 148s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 148s autopkgtest: DBG: synthesised dependency libextutils-cbuilder-perl 148s autopkgtest: DBG: synthesised dependency libfile-sharedir-perl 148s autopkgtest: DBG: synthesised dependency libmodule-build-perl 148s autopkgtest: DBG: synthesised dependency libtest2-suite-perl 148s autopkgtest: DBG: synthesised dependency perl-xs-dev 148s autopkgtest: DBG: synthesised dependency perl:native 148s autopkgtest: DBG: synthesised dependency build-essential 148s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 148s autopkgtest: DBG: Test defined: name autodep8-perl-build-deps path None command "/usr/share/pkg-perl-autopkgtest/runner build-deps" restrictions ['skippable'] features ['test-name=autodep8-perl-build-deps'] depends ['libxs-parse-sublike-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libfile-sharedir-perl ', 'libmodule-build-perl', 'libtest2-suite-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency libxs-parse-sublike-perl 148s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 148s autopkgtest: DBG: Test defined: name autodep8-perl path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps" restrictions ['skippable', 'superficial'] features ['test-name=autodep8-perl'] depends ['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency libxs-parse-sublike-perl 148s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 148s autopkgtest: DBG: processing dependency @recommends@ 148s autopkgtest: DBG: Test defined: name autodep8-perl-recommends path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends" restrictions ['needs-recommends', 'skippable', 'superficial'] features ['test-name=autodep8-perl-recommends'] depends ['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 148s autopkgtest [00:50:02]: build not needed 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/build.mFi/src/ /tmp/autopkgtest-work.err0s3uc/out/tests-tree/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: autodep8 generated control: ----- 148s Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps 148s Depends: @, @builddeps@, pkg-perl-autopkgtest, 148s Restrictions: skippable, 148s Features: test-name=autodep8-perl-build-deps 148s 148s 148s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 148s Depends: @, pkg-perl-autopkgtest, 148s Restrictions: skippable, superficial, 148s Features: test-name=autodep8-perl 148s 148s 148s Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 148s Depends: @, pkg-perl-autopkgtest, 148s Restrictions: needs-recommends, skippable, superficial, 148s Features: test-name=autodep8-perl-recommends 148s 148s 148s ------- 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency libxs-parse-sublike-perl 148s autopkgtest: DBG: processing dependency @builddeps@ 148s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 148s autopkgtest: DBG: synthesised dependency libextutils-cbuilder-perl 148s autopkgtest: DBG: synthesised dependency libfile-sharedir-perl 148s autopkgtest: DBG: synthesised dependency libmodule-build-perl 148s autopkgtest: DBG: synthesised dependency libtest2-suite-perl 148s autopkgtest: DBG: synthesised dependency perl-xs-dev 148s autopkgtest: DBG: synthesised dependency perl:native 148s autopkgtest: DBG: synthesised dependency build-essential 148s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 148s autopkgtest: DBG: Test defined: name autodep8-perl-build-deps path None command "/usr/share/pkg-perl-autopkgtest/runner build-deps" restrictions ['skippable'] features ['test-name=autodep8-perl-build-deps'] depends ['libxs-parse-sublike-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libfile-sharedir-perl ', 'libmodule-build-perl', 'libtest2-suite-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency libxs-parse-sublike-perl 148s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 148s autopkgtest: DBG: Test defined: name autodep8-perl path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps" restrictions ['skippable', 'superficial'] features ['test-name=autodep8-perl'] depends ['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency libxs-parse-sublike-perl 148s autopkgtest: DBG: processing dependency pkg-perl-autopkgtest 148s autopkgtest: DBG: processing dependency @recommends@ 148s autopkgtest: DBG: Test defined: name autodep8-perl-recommends path None command "/usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends" restrictions ['needs-recommends', 'skippable', 'superficial'] features ['test-name=autodep8-perl-recommends'] depends ['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 148s autopkgtest [00:50:02]: test autodep8-perl-build-deps: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libxs-parse-sublike-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libfile-sharedir-perl ', 'libmodule-build-perl', 'libtest2-suite-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 148s autopkgtest: DBG: install_deps: deps_new=['libxs-parse-sublike-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libfile-sharedir-perl ', 'libmodule-build-perl', 'libtest2-suite-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'] 148s autopkgtest: DBG: install-deps: satisfying libxs-parse-sublike-perl, debhelper-compat (= 13), libextutils-cbuilder-perl, libfile-sharedir-perl , libmodule-build-perl, libtest2-suite-perl , perl-xs-dev, perl:native, build-essential, pkg-perl-autopkgtest 148s autopkgtest: DBG: can use apt-get on testbed: True 148s 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', 'libxs-parse-sublike-perl, debhelper-compat (= 13), libextutils-cbuilder-perl, libfile-sharedir-perl , libmodule-build-perl, libtest2-suite-perl , perl-xs-dev, perl:native, build-essential, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 149s Reading package lists... 149s Building dependency tree... 149s Reading state information... 149s Starting pkgProblemResolver with broken count: 0 149s Starting 2 pkgProblemResolver with broken count: 0 149s Done 149s The following NEW packages will be installed: 149s autoconf autodep8 automake autopoint autotools-dev build-essential cpp 149s cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dctrl-tools debhelper 149s debugedit dh-autoreconf dh-strip-nondeterminism dwz g++ g++-14 149s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 149s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 149s libcc1-0 libclass-inspector-perl libdebhelper-perl libfile-sharedir-perl 149s libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 libisl23 libitm1 149s libmodule-build-perl libmpc3 libperl-dev libstdc++-14-dev 149s libtest2-suite-perl libtool libubsan1 libxs-parse-sublike-perl m4 149s pkg-perl-autopkgtest po-debconf 149s 0 upgraded, 48 newly installed, 0 to remove and 0 not upgraded. 149s Need to get 55.5 MB of archives. 149s After this operation, 176 MB of additional disk space will be used. 149s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 150s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 150s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x autodep8 all 0.28+nmu1ubuntu1 [13.7 kB] 150s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 150s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 150s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 150s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 150s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 150s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 150s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 150s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 150s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 150s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 150s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 150s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 150s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 150s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 150s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 150s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 151s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 151s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 151s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 151s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 151s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 151s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 151s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 151s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 151s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 151s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 151s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 151s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 151s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 151s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 151s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 151s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 151s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 151s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 151s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 151s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 151s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 151s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-inspector-perl all 1.36-3 [15.4 kB] 151s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-sharedir-perl all 1.118-3 [14.0 kB] 151s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x libmodule-build-perl all 0.423400-2 [200 kB] 151s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libperl-dev s390x 5.40.0-8 [1310 kB] 151s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libtest2-suite-perl all 0.000163-1 [377 kB] 151s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libxs-parse-sublike-perl s390x 0.36-1 [43.7 kB] 151s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-perl-autopkgtest all 0.80 [18.7 kB] 152s Fetched 55.5 MB in 2s (24.9 MB/s) 152s Selecting previously unselected package m4. 152s (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.) 152s Preparing to unpack .../00-m4_1.4.19-5_s390x.deb ... 152s Unpacking m4 (1.4.19-5) ... 152s Selecting previously unselected package autoconf. 152s Preparing to unpack .../01-autoconf_2.72-3_all.deb ... 152s Unpacking autoconf (2.72-3) ... 152s Selecting previously unselected package dctrl-tools. 152s Preparing to unpack .../02-dctrl-tools_2.24-3build3_s390x.deb ... 152s Unpacking dctrl-tools (2.24-3build3) ... 152s Selecting previously unselected package autodep8. 152s Preparing to unpack .../03-autodep8_0.28+nmu1ubuntu1_all.deb ... 152s Unpacking autodep8 (0.28+nmu1ubuntu1) ... 152s Selecting previously unselected package autotools-dev. 152s Preparing to unpack .../04-autotools-dev_20220109.1_all.deb ... 152s Unpacking autotools-dev (20220109.1) ... 152s Selecting previously unselected package automake. 152s Preparing to unpack .../05-automake_1%3a1.17-3_all.deb ... 152s Unpacking automake (1:1.17-3) ... 152s Selecting previously unselected package autopoint. 152s Preparing to unpack .../06-autopoint_0.23.1-1_all.deb ... 152s Unpacking autopoint (0.23.1-1) ... 152s Selecting previously unselected package libisl23:s390x. 152s Preparing to unpack .../07-libisl23_0.27-1_s390x.deb ... 152s Unpacking libisl23:s390x (0.27-1) ... 152s Selecting previously unselected package libmpc3:s390x. 152s Preparing to unpack .../08-libmpc3_1.3.1-1build2_s390x.deb ... 152s Unpacking libmpc3:s390x (1.3.1-1build2) ... 152s Selecting previously unselected package cpp-14-s390x-linux-gnu. 152s Preparing to unpack .../09-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package cpp-14. 152s Preparing to unpack .../10-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package cpp-s390x-linux-gnu. 152s Preparing to unpack .../11-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package cpp. 152s Preparing to unpack .../12-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking cpp (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package libcc1-0:s390x. 152s Preparing to unpack .../13-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libgomp1:s390x. 152s Preparing to unpack .../14-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libitm1:s390x. 152s Preparing to unpack .../15-libitm1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libasan8:s390x. 152s Preparing to unpack .../16-libasan8_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libubsan1:s390x. 152s Preparing to unpack .../17-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libgcc-14-dev:s390x. 152s Preparing to unpack .../18-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package gcc-14-s390x-linux-gnu. 152s Preparing to unpack .../19-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14. 153s Preparing to unpack .../20-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-s390x-linux-gnu. 153s Preparing to unpack .../21-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package gcc. 153s Preparing to unpack .../22-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package libstdc++-14-dev:s390x. 153s Preparing to unpack .../23-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-14-s390x-linux-gnu. 153s Preparing to unpack .../24-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-14. 153s Preparing to unpack .../25-g++-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking g++-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package g++-s390x-linux-gnu. 153s Preparing to unpack .../26-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package g++. 153s Preparing to unpack .../27-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking g++ (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package build-essential. 153s Preparing to unpack .../28-build-essential_12.10ubuntu1_s390x.deb ... 153s Unpacking build-essential (12.10ubuntu1) ... 153s Selecting previously unselected package libdebhelper-perl. 153s Preparing to unpack .../29-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 153s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 153s Selecting previously unselected package libtool. 153s Preparing to unpack .../30-libtool_2.5.4-3build1_all.deb ... 153s Unpacking libtool (2.5.4-3build1) ... 153s Selecting previously unselected package dh-autoreconf. 153s Preparing to unpack .../31-dh-autoreconf_20_all.deb ... 153s Unpacking dh-autoreconf (20) ... 153s Selecting previously unselected package libarchive-zip-perl. 153s Preparing to unpack .../32-libarchive-zip-perl_1.68-1_all.deb ... 153s Unpacking libarchive-zip-perl (1.68-1) ... 153s Selecting previously unselected package libfile-stripnondeterminism-perl. 153s Preparing to unpack .../33-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 153s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 153s Selecting previously unselected package dh-strip-nondeterminism. 153s Preparing to unpack .../34-dh-strip-nondeterminism_1.14.1-2_all.deb ... 153s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 153s Selecting previously unselected package debugedit. 153s Preparing to unpack .../35-debugedit_1%3a5.1-2_s390x.deb ... 153s Unpacking debugedit (1:5.1-2) ... 153s Selecting previously unselected package dwz. 153s Preparing to unpack .../36-dwz_0.15-1build6_s390x.deb ... 153s Unpacking dwz (0.15-1build6) ... 153s Selecting previously unselected package gettext. 153s Preparing to unpack .../37-gettext_0.23.1-1_s390x.deb ... 153s Unpacking gettext (0.23.1-1) ... 153s Selecting previously unselected package intltool-debian. 153s Preparing to unpack .../38-intltool-debian_0.35.0+20060710.6_all.deb ... 153s Unpacking intltool-debian (0.35.0+20060710.6) ... 153s Selecting previously unselected package po-debconf. 153s Preparing to unpack .../39-po-debconf_1.0.21+nmu1_all.deb ... 153s Unpacking po-debconf (1.0.21+nmu1) ... 153s Selecting previously unselected package debhelper. 153s Preparing to unpack .../40-debhelper_13.24.1ubuntu2_all.deb ... 153s Unpacking debhelper (13.24.1ubuntu2) ... 153s Selecting previously unselected package libclass-inspector-perl. 153s Preparing to unpack .../41-libclass-inspector-perl_1.36-3_all.deb ... 153s Unpacking libclass-inspector-perl (1.36-3) ... 153s Selecting previously unselected package libfile-sharedir-perl. 153s Preparing to unpack .../42-libfile-sharedir-perl_1.118-3_all.deb ... 153s Unpacking libfile-sharedir-perl (1.118-3) ... 153s Selecting previously unselected package libmodule-build-perl. 153s Preparing to unpack .../43-libmodule-build-perl_0.423400-2_all.deb ... 153s Adding 'diversion of /usr/bin/config_data to /usr/bin/config_data.diverted by libmodule-build-perl' 153s Adding 'diversion of /usr/share/man/man1/config_data.1.gz to /usr/share/man/man1/config_data.diverted.1.gz by libmodule-build-perl' 153s Unpacking libmodule-build-perl (0.423400-2) ... 153s Selecting previously unselected package libperl-dev:s390x. 153s Preparing to unpack .../44-libperl-dev_5.40.0-8_s390x.deb ... 153s Unpacking libperl-dev:s390x (5.40.0-8) ... 153s Selecting previously unselected package libtest2-suite-perl. 153s Preparing to unpack .../45-libtest2-suite-perl_0.000163-1_all.deb ... 153s Unpacking libtest2-suite-perl (0.000163-1) ... 153s Selecting previously unselected package libxs-parse-sublike-perl:s390x. 153s Preparing to unpack .../46-libxs-parse-sublike-perl_0.36-1_s390x.deb ... 153s Unpacking libxs-parse-sublike-perl:s390x (0.36-1) ... 153s Selecting previously unselected package pkg-perl-autopkgtest. 153s Preparing to unpack .../47-pkg-perl-autopkgtest_0.80_all.deb ... 153s Unpacking pkg-perl-autopkgtest (0.80) ... 153s Setting up libclass-inspector-perl (1.36-3) ... 153s Setting up libarchive-zip-perl (1.68-1) ... 153s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 153s Setting up m4 (1.4.19-5) ... 153s Setting up libperl-dev:s390x (5.40.0-8) ... 153s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 153s Setting up libtest2-suite-perl (0.000163-1) ... 153s Setting up libmodule-build-perl (0.423400-2) ... 153s Setting up autotools-dev (20220109.1) ... 153s Setting up libmpc3:s390x (1.3.1-1build2) ... 153s Setting up autopoint (0.23.1-1) ... 153s Setting up autoconf (2.72-3) ... 153s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 153s Setting up dwz (0.15-1build6) ... 153s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 153s Setting up debugedit (1:5.1-2) ... 153s Setting up libfile-sharedir-perl (1.118-3) ... 153s Setting up libisl23:s390x (0.27-1) ... 153s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 153s Setting up dctrl-tools (2.24-3build3) ... 153s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 153s Setting up autodep8 (0.28+nmu1ubuntu1) ... 153s Setting up automake (1:1.17-3) ... 153s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 153s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 153s Setting up gettext (0.23.1-1) ... 153s Setting up libxs-parse-sublike-perl:s390x (0.36-1) ... 153s Setting up intltool-debian (0.35.0+20060710.6) ... 153s Setting up pkg-perl-autopkgtest (0.80) ... 153s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Setting up cpp-14 (14.2.0-17ubuntu1) ... 153s Setting up dh-strip-nondeterminism (1.14.1-2) ... 153s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Setting up po-debconf (1.0.21+nmu1) ... 153s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Setting up cpp (4:14.2.0-1ubuntu1) ... 153s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Setting up gcc-14 (14.2.0-17ubuntu1) ... 153s Setting up g++-14 (14.2.0-17ubuntu1) ... 153s Setting up libtool (2.5.4-3build1) ... 153s Setting up gcc (4:14.2.0-1ubuntu1) ... 153s Setting up dh-autoreconf (20) ... 153s Setting up g++ (4:14.2.0-1ubuntu1) ... 153s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 153s Setting up build-essential (12.10ubuntu1) ... 153s Setting up debhelper (13.24.1ubuntu2) ... 153s Processing triggers for install-info (7.1.1-1) ... 153s Processing triggers for libc-bin (2.41-1ubuntu1) ... 154s Processing triggers for man-db (2.13.0-1) ... 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libxs-parse-sublike-perl'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-packages.all"], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-packages.all /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-build-deps-packages.all 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.AnLbng/build.mFi/src'], kind short, sout raw, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.AnLbng/build.mFi/src already exists 156s autopkgtest [00:50:10]: test autodep8-perl-build-deps: /usr/share/pkg-perl-autopkgtest/runner build-deps 156s autopkgtest [00:50:10]: test autodep8-perl-build-deps: [----------------------- 156s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.AnLbng/wrapper.sh --debug --artifacts=/tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-artifacts --chdir=/tmp/autopkgtest.AnLbng/build.mFi/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.AnLbng/autodep8-perl-build-deps-stderr --stdout=/tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stdout --tmp=/tmp/autopkgtest.AnLbng/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 '/usr/share/pkg-perl-autopkgtest/runner build-deps'"], kind test, sout raw, serr raw, env [] 156s /tmp/autopkgtest.AnLbng/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-artifacts 156s /tmp/autopkgtest.AnLbng/wrapper.sh: changing to directory: /tmp/autopkgtest.AnLbng/build.mFi/src 156s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 156s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 156s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 156s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 156s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: LANG=C.UTF-8 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LANGUAGE 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_ADDRESS 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_ALL 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_COLLATE 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_CTYPE 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_IDENTIFICATION 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MEASUREMENT 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MESSAGES 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MONETARY 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_NAME 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_NUMERIC 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_PAPER 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_TELEPHONE 156s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_TIME 156s /tmp/autopkgtest.AnLbng/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 156s /tmp/autopkgtest.AnLbng/wrapper.sh: pretending to be a login shell 156s /tmp/autopkgtest.AnLbng/wrapper.sh: will write standard error to /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stderr 156s /tmp/autopkgtest.AnLbng/wrapper.sh: will write stdout to /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stdout 156s /tmp/autopkgtest.AnLbng/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.AnLbng/autopkgtest_tmp 156s /tmp/autopkgtest.AnLbng/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 156s /tmp/autopkgtest.AnLbng/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner build-deps 156s /tmp/autopkgtest.AnLbng/wrapper.sh: copying /tmp/tmp.6LPCvUD9IX/out to stdout and file: /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stdout 156s /tmp/autopkgtest.AnLbng/wrapper.sh: copying /tmp/tmp.6LPCvUD9IX/err to standard error and file: /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stdout 156s /tmp/autopkgtest.AnLbng/wrapper.sh: writing script pid 1866 to /tmp/autopkgtest_script_pid 156s Created MYMETA.yml and MYMETA.json 156s Creating new 'Build' script for 'XS-Parse-Sublike' version '0.36' 156s Building XS-Parse-Sublike 156s s390x-linux-gnu-gcc -Isrc/ -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o src/parse_subsignature_ex.o src/parse_subsignature_ex.c 157s s390x-linux-gnu-gcc -Isrc/ -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o lib/XS/Parse/Sublike.o lib/XS/Parse/Sublike.c 158s ExtUtils::Mkbootstrap::Mkbootstrap('blib/arch/auto/XS/Parse/Sublike/Sublike.bs') 158s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o blib/arch/auto/XS/Parse/Sublike/Sublike.so lib/XS/Parse/Sublike.o src/parse_subsignature_ex.o 158s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/actions.o t/actions.c 159s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/actions/actions.bs') 159s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/actions/actions.so t/actions.o 159s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/any.o t/any.c 159s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/any/any.bs') 159s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/any/any.so t/any.o 159s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/flags.o t/flags.c 160s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/flags/flags.bs') 160s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/flags/flags.so t/flags.o 160s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/func.o t/func.c 160s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/func/func.bs') 160s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/func/func.so t/func.o 160s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/parts.o t/parts.c 161s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/parts/parts.bs') 161s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/parts/parts.so t/parts.o 161s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/prefix.o t/prefix.c 161s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/prefix/prefix.bs') 161s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/prefix/prefix.so t/prefix.o 161s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/registrations.o t/registrations.c 162s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/registrations/registrations.bs') 162s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/registrations/registrations.so t/registrations.o 162s s390x-linux-gnu-gcc -I/usr/lib/s390x-linux-gnu/perl/5.40/CORE '-DVERSION="0.36"' '-DXS_VERSION="0.36"' -fPIC -Ishare/include -Iinclude -Ihax -Wall -Wno-unused-function -Wno-unused-value -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE '-D_FILE_OFFSET_BITS=64' -O2 -g -o t/stages.o t/stages.c 162s ExtUtils::Mkbootstrap::Mkbootstrap('t/blib/arch/auto/t/stages/stages.bs') 162s s390x-linux-gnu-gcc -shared -L/usr/local/lib -fstack-protector-strong -o t/blib/arch/auto/t/stages/stages.so t/stages.o 162s t/00use.t ....................... ok 162s t/01func.t ...................... ok 163s t/02func-signatures.t ........... ok 163s t/03func-deparse.t .............. ok 163s t/04func-named-params.t ......... ok 163s t/05func-sig-attributes.t ....... ok 163s t/06func-conditional-default.t .. ok 163s t/07func-lexical.t .............. ok 163s t/10stages-permit.t ............. ok 163s t/11stages-pre_subparse.t ....... ok 163s t/12stages-post_blockstart.t .... ok 163s t/13stages-pre_blockend.t ....... ok 163s t/14stages-post_newcv.t ......... ok 163s t/15stages-filter_attr.t ........ ok 163s t/16stages-signature.t .......... ok 163s t/20registrations.t ............. ok 163s t/30any.t ....................... ok 163s t/31prefix.t .................... ok 164s t/40parts-name.t ................ ok 164s t/41parts-attrs.t ............... ok 164s t/42parts-signature.t ........... ok 164s t/50flags-no-body.t ............. ok 164s t/60actions.t ................... ok 164s t/70extended.t .................. ok 164s t/80extended+Object-Pad.t ....... skipped: Module 'Object::Pad' is not installed 164s t/80extended+async.t ............ skipped: Module 'Future::AsyncAwait' is not installed 164s t/80extended+feature-class.t .... ok 164s All tests successful. 164s Files=27, Tests=101, -84 wallclock secs ( 0.05 usr 0.02 sys + 1.44 cusr 0.20 csys = 1.71 CPU) 164s Result: PASS 164s t/00use.t ....................... 164s # Seeded srand with seed '20250216' from local date. 164s ok 1 - Modules loaded 164s 1..1 164s ok 164s t/01func.t ...................... 164s # Seeded srand with seed '20250216' from local date. 164s ok 1 - MODIFY_CODE_ATTRIBUTES takes attribute 164s ok 2 - MODIFY_CODE_ATTRIBUTES takes attribute 164s ok 3 - named func 164s ok 4 - anon func 164s ok 5 - MODIFY_CODE_ATTRIBUTES invoked 164s ok 6 - named func in another package 164s ok 7 - nopkgfunc does not permit other package name 164s 1..7 164s ok 164s t/02func-signatures.t ........... 164s # Seeded srand with seed '20250216' from local date. 164s ok 1 - func with param 164s ok 2 - func with slurpy parameter 164s ok 3 - func with unnamed parameter 164s ok 4 - func with optional param missing 164s ok 5 - func with optional param present 164s ok 6 - func with whitespace in signature 164s ok 7 - func with no params 164s ok 8 - Exception thrown from empty signature validation failure 164s ok 9 - func with attr and signture does not collide 164s ok 10 - variable in defaulting expression is not shadowed by its own parameter 164s ok 11 - variable in later defaulting expression can see earlier params 164s 1..11 164s ok 164s t/03func-deparse.t .............. 164s # Seeded srand with seed '20250216' from local date. 164s ok 1 - Deparsed func with signature identical to deparsed code 164s ok 2 - Deparsed func with empty signature identical to deparsed code 164s ok 3 - Deparsed func with empty body identical to deparsed code 164s 1..3 164s ok 164s t/04func-named-params.t ......... 164s # Seeded srand with seed '20250216' from local date. 164s ok 1 - named param extracts value 164s ok 2 - named param not visible in %rest 164s ok 3 - other params still visible in %rest 164s ok 4 - complaint from missing named param 164s ok 5 - supports multiple named params 164s ok 6 - complaint from missing two named params includes both 164s ok 7 - named param with default 164s ok 8 - named param applies default 164s ok 9 - named param defaults can see earlier default params 164s ok 10 - param default expression was invoked 164s ok 11 - named param with defined-or 164s ok 12 - named param with defined-or defaulting 164s ok 13 - named param with true-or 164s ok 14 - named param with true-or defaulting 164s ok 15 - named param without slurpy 164s ok 16 - complaint from unknown param 164s ok 17 - supports mixed positional + named 164s ok 18 - mixed still applies defaults 164s ok 19 - supports multiple positional + named 164s ok 20 - supports slurpy array that preserves duplicates/order 164s ok 21 - slurpy array does not gain phantom undef 164s ok 22 - warning from duplicated parameter name 164s ok 23 - code with unnamed slurpies compiles OK 164s ok 24 - result of invoking function with unnamed slurpy array 164s ok 25 - result of invoking function with unnamed slurpy hash 164s 1..25 164s ok 165s t/05func-sig-attributes.t ....... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - :Attribute applied to subroutine parameters 165s ok 2 - :Attribute saw some optrees 165s ok 3 - :Attribute modified optree got invoked 165s ok 4 - :Attribute applied to named subroutine parameters 165s ok 5 - :Attribute saw some optrees 165s ok 6 - :Attribute modified optree got invoked for named 165s 1..6 165s ok 165s t/06func-conditional-default.t .. 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - param with defined-or 165s ok 2 - param with defined-or defaulting 165s ok 3 - param with true-or 165s ok 4 - param with true-or defaulting 165s 1..4 165s ok 165s t/07func-lexical.t .............. 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - lexical named func is callable 165s ok 2 - lexical func is not visible in package 165s ok 3 - lexical named funcs are closures 165s ok 4 - Successfully parsed `my TYPE $SCALAR` 165s 1..4 165s ok 165s t/10stages-permit.t ............. 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - not permitted keyword falls through to regular symbol lookup 165s ok 2 - permitted keyword becomes a CODE ref 165s 1..2 165s ok 165s t/11stages-pre_subparse.t ....... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - captured value of $VAR before block 165s 1..1 165s ok 165s t/12stages-post_blockstart.t .... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - captured value of $VAR before block 165s 1..1 165s ok 165s t/13stages-pre_blockend.t ....... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - captured value of $VAR inside block 165s 1..1 165s ok 165s t/14stages-post_newcv.t ......... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - captured value of new CV 165s 1..1 165s ok 165s t/15stages-filter_attr.t ........ 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - captured an attribute by attr filter 165s 1..1 165s ok 165s t/16stages-signature.t .......... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - captured signature start + finish before body 165s ok 2 - captured signature start + finish from empty signature 165s ok 3 - signature start can add $first param 165s ok 4 - signature finish can add @rest param 165s 1..4 165s ok 165s t/20registrations.t ............. 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - returns red 165s ok 2 - returns blue 165s 1..2 165s ok 165s t/30any.t ....................... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - stages run in correct order 165s 1..1 165s ok 165s t/31prefix.t .................... 165s # Seeded srand with seed '20250216' from local date. 165s ok 1 - stages run in correct order 165s 1..1 165s ok 166s t/40parts-name.t ................ 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - $code is CODEref 166s ok 2 - anon func fails to parse when name required 166s ok 3 - named func fails to parse when name skipped 166s 1..3 166s ok 166s t/41parts-attrs.t ............... 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - Optional attributes permitted but not required 166s ok 2 - func with attrs to parse when attrs skipped 166s 1..2 166s ok 166s t/42parts-signature.t ........... 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - Optional attributes permitted but not required 166s ok 2 - func with signature to parse when signature skipped 166s 1..2 166s ok 166s t/50flags-no-body.t ............. 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - no_body saw just the function name 166s 1..1 166s ok 166s t/60actions.t ................... 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - default actions parses like named sub 166s ok 2 - &name is on symbol table 166s ok 3 - &name has subname 166s ok 4 - RET_EXRP + REFGEN_ANONCODE behaves as anon sub 166s ok 5 - &nameER is on symbol table 166s ok 6 - $code has subname 166s ok 7 - Unininstalled CV is still invokable 166s ok 8 - &nameiER not on symbol table 166s ok 9 - $code still has a subname anyway 166s 1..9 166s ok 166s t/70extended.t .................. 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - extended sub can make basic named 166s ok 2 - extended sub can make basic anon 166s ok 3 - extended sub can make named param subs 166s ok 4 - extended sub can make named param anon subs 166s ok 5 - :Attribute applied to subroutine parameters 166s ok 6 - :Attribute applied to subroutine parameters of `sub` directly 166s 1..6 166s ok 166s t/80extended+Object-Pad.t ....... skipped: Module 'Object::Pad' is not installed 166s t/80extended+async.t ............ skipped: Module 'Future::AsyncAwait' is not installed 166s t/80extended+feature-class.t .... 166s # Seeded srand with seed '20250216' from local date. 166s ok 1 - extended method 166s ok 2 - method with extended keyword 166s 1..2 166s ok 166s All tests successful. 166s Files=27, Tests=101, 2 wallclock secs ( 0.05 usr 0.03 sys + 1.45 cusr 0.23 csys = 1.76 CPU) 166s Result: PASS 166s /tmp/autopkgtest.AnLbng/wrapper.sh: checking for leaked background processes... 166s /tmp/autopkgtest.AnLbng/wrapper.sh: waiting for tee/cat subprocesses... 166s /tmp/autopkgtest.AnLbng/wrapper.sh: cleaning up... 166s /tmp/autopkgtest.AnLbng/wrapper.sh: Exit status: 0 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [00:50:20]: test autodep8-perl-build-deps: -----------------------] 166s autopkgtest: DBG: testbed executing test finished with exit status 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stdout /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-build-deps-stdout 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-stderr /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-build-deps-stderr 167s autopkgtest: DBG: got reply from testbed: ok 167s autodep8-perl-build-deps PASS 167s autopkgtest [00:50:21]: test autodep8-perl-build-deps: - - - - - - - - - - results - - - - - - - - - - 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-artifacts/ /tmp/autopkgtest-work.err0s3uc/out/artifacts/ 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.AnLbng/autodep8-perl-build-deps-artifacts', '/tmp/autopkgtest.AnLbng/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [00:50:21]: test autodep8-perl: preparing testbed 167s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libxs-parse-sublike-perl', 'debhelper-compat (= 13)', 'libextutils-cbuilder-perl', 'libfile-sharedir-perl ', 'libmodule-build-perl', 'libtest2-suite-perl ', 'perl-xs-dev', 'perl:native', 'build-essential', 'pkg-perl-autopkgtest'], deps_new=['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 167s autopkgtest: DBG: testbed reset 167s autopkgtest: DBG: sending command to testbed: revert 305s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.AnLbng 305s autopkgtest: DBG: sending command to testbed: print-execute-command 305s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.tdpkevi0/runcmd 305s autopkgtest: DBG: sending command to testbed: capabilities 305s autopkgtest: DBG: got reply from testbed: ok revert-full-system ok reboot root-on-testbed suggested-normal-user=ubuntu isolation-machine revert 305s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'ok', 'reboot', 'root-on-testbed', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert', 'has_internet'] 305s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 305s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.AnLbng/wrapper.sh 305s autopkgtest: DBG: got reply from testbed: ok 305s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/wrapper.sh'], kind short, sout raw, serr pipe, env [] 305s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest [00:52:40]: testbed dpkg architecture: s390x 306s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest [00:52:40]: testbed apt version: 2.9.28 306s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest: DBG: testbed has eatmydata 306s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest [00:52:40]: @@@@@@@@@@@@@@@@@@@@ test bed setup 306s 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 [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest [00:52:40]: testbed release detected to be: plucky 306s 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 [] 306s autopkgtest: DBG: testbed command exited with code 0 306s 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 [] 307s autopkgtest: DBG: testbed command exited with code 0 307s autopkgtest: DBG: adding APT source: Types: deb deb-src 307s URIs: http://ftpmaster.internal/ubuntu/ 307s Suites: plucky-proposed 307s Components: main restricted universe multiverse 307s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 307s 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 [] 307s autopkgtest: DBG: testbed command exited with code 0 307s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 307s Package: * 307s Pin: release plucky-proposed 307s Pin-Priority: 500 307s 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 [] 307s autopkgtest: DBG: testbed command exited with code 0 307s autopkgtest [00:52:41]: updating testbed package index (apt update) 307s 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'] 307s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 307s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 308s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 308s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 308s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 308s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 308s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 308s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 308s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 308s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 308s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 308s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 308s Fetched 2062 kB in 1s (2125 kB/s) 309s Reading package lists... 309s autopkgtest: DBG: testbed command exited with code 0 309s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 309s Package: * 309s Pin: release plucky-proposed 309s Pin-Priority: 100 309s 309s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 309s Pin: release plucky-proposed 309s Pin-Priority: 995 309s 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 [] 309s autopkgtest: DBG: testbed command exited with code 0 309s 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.AnLbng/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 309s autopkgtest: DBG: testbed command exited with code 0 309s 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'] 309s + lsb_release --codename --short 309s + RELEASE=plucky 309s + cat 309s + [ plucky != trusty ] 309s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 309s Reading package lists... 309s Building dependency tree... 309s Reading state information... 310s Calculating upgrade... 310s The following packages were automatically installed and are no longer required: 310s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 310s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 310s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 310s linux-tools-6.11.0-8-generic 310s Use 'sudo apt autoremove' to remove them. 310s The following packages will be upgraded: 310s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 310s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 310s Need to get 1155 kB of archives. 310s After this operation, 16.4 kB of additional disk space will be used. 310s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 310s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 310s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 310s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 310s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 310s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 310s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 311s Preconfiguring packages ... 311s Fetched 1155 kB in 1s (1912 kB/s) 311s (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.) 311s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 311s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 311s Setting up dash (0.5.12-12ubuntu1) ... 311s (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.) 311s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 311s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 311s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 311s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 311s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 311s (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.) 311s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 311s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 311s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 311s (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.) 311s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 311s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 311s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 311s (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.) 311s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 311s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 311s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 311s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 311s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 311s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 311s Setting up libtasn1-6:s390x (4.20.0-2) ... 311s Processing triggers for libc-bin (2.40-4ubuntu1) ... 311s Processing triggers for man-db (2.13.0-1) ... 311s Processing triggers for debianutils (5.21) ... 312s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 312s + /usr/lib/apt/apt-helper analyze-pattern ?true 312s + uname -r 312s + sed s/\./\\./g 312s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 312s + apt list ?obsolete 312s + cut -d/ -f1 312s + tail -n+2 312s + grep -v ^linux-.*6\.12\.0-15-generic.* 312s + true 312s + obsolete_pkgs= 312s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 312s Reading package lists... 312s Building dependency tree... 312s Reading state information... 312s The following packages will be REMOVED: 312s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 312s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 312s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 312s linux-tools-6.11.0-8-generic* 312s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 312s After this operation, 167 MB disk space will be freed. 312s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 312s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 312s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 312s Removing libpython3.12t64:s390x (3.12.9-1) ... 312s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 312s Removing libnsl2:s390x (1.3.0-3build3) ... 312s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 312s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 313s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 313s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 314s Processing triggers for libc-bin (2.40-4ubuntu1) ... 314s (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.) 314s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 314s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 314s + grep -q trusty /etc/lsb-release 314s + [ ! -d /usr/share/doc/unattended-upgrades ] 314s + [ ! -d /usr/share/doc/lxd ] 314s + [ ! -d /usr/share/doc/lxd-client ] 314s + [ ! -d /usr/share/doc/snapd ] 314s + type iptables 314s + cat 314s + chmod 755 /etc/rc.local 314s + . /etc/rc.local 314s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 314s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 314s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 314s + uname -m 314s + [ s390x = ppc64le ] 314s + [ -d /run/systemd/system ] 314s + systemd-detect-virt --quiet --vm 314s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 314s + cat 314s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 314s + echo COMPRESS=lz4 314s autopkgtest: DBG: testbed command exited with code 0 314s autopkgtest [00:52:48]: upgrading testbed (apt dist-upgrade and autopurge) 314s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 314s Reading package lists... 314s Building dependency tree... 314s Reading state information... 314s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 314s Starting 2 pkgProblemResolver with broken count: 0 314s Done 315s Entering ResolveByKeep 315s 315s The following packages will be upgraded: 315s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 315s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 315s Need to get 10.7 MB of archives. 315s After this operation, 305 kB of additional disk space will be used. 315s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 315s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 315s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 316s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 316s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 316s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 316s Preconfiguring packages ... 316s Fetched 10.7 MB in 1s (10.3 MB/s) 316s (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.) 316s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 316s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 316s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 316s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 316s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 316s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 316s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 316s Checking for services that may need to be restarted... 316s Checking init scripts... 316s Checking for services that may need to be restarted... 316s Checking init scripts... 316s Stopping some services possibly affected by the upgrade (will be restarted later): 317s cron: stopping...done. 317s 317s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Setting up libc6:s390x (2.41-1ubuntu1) ... 317s Checking for services that may need to be restarted... 317s Checking init scripts... 317s Restarting services possibly affected by the upgrade: 317s cron: restarting...done. 317s 317s Services restarted successfully. 317s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 317s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 317s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 317s Setting up libc-bin (2.41-1ubuntu1) ... 317s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 317s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 317s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 317s Setting up iproute2 (6.13.0-1ubuntu1) ... 317s Setting up locales (2.41-1ubuntu1) ... 317s Installing new version of config file /etc/locale.alias ... 318s Generating locales (this might take a while)... 319s en_US.UTF-8... done 319s Generation complete. 319s Setting up libc-dev-bin (2.41-1ubuntu1) ... 319s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 319s Processing triggers for man-db (2.13.0-1) ... 320s Processing triggers for systemd (257.2-3ubuntu1) ... 321s autopkgtest: DBG: testbed command exited with code 0 321s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 321s Reading package lists... 321s Building dependency tree... 321s Reading state information... 321s Starting pkgProblemResolver with broken count: 0 321s Starting 2 pkgProblemResolver with broken count: 0 321s Done 321s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 321s autopkgtest: DBG: testbed command exited with code 0 321s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.AnLbng/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 322s autopkgtest: DBG: testbed command exited with code 1 322s autopkgtest [00:52:56]: rebooting testbed after setup commands that affected boot 322s autopkgtest: DBG: sending command to testbed: reboot 326s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 338s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare 339s autopkgtest: DBG: got reply from testbed: ok 339s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AnLbng/testbed-packages"], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/testbed-packages /tmp/autopkgtest-work.err0s3uc/out/testbed-packages 340s autopkgtest: DBG: got reply from testbed: ok 340s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 340s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot 340s autopkgtest: DBG: got reply from testbed: ok 340s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare 341s autopkgtest: DBG: got reply from testbed: ok 341s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AnLbng/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 341s autopkgtest: DBG: install_deps: deps_new=['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 341s autopkgtest: DBG: install-deps: satisfying libxs-parse-sublike-perl, pkg-perl-autopkgtest 341s autopkgtest: DBG: can use apt-get on testbed: True 341s 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', 'libxs-parse-sublike-perl, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 342s Reading package lists... 342s Building dependency tree... 342s Reading state information... 342s Starting pkgProblemResolver with broken count: 0 342s Starting 2 pkgProblemResolver with broken count: 0 342s Done 342s The following NEW packages will be installed: 342s autodep8 dctrl-tools libclass-inspector-perl libfile-sharedir-perl 342s libxs-parse-sublike-perl pkg-perl-autopkgtest 342s 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. 342s Need to get 211 kB of archives. 342s After this operation, 675 kB of additional disk space will be used. 342s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 343s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autodep8 all 0.28+nmu1ubuntu1 [13.7 kB] 343s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-inspector-perl all 1.36-3 [15.4 kB] 343s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-sharedir-perl all 1.118-3 [14.0 kB] 343s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libxs-parse-sublike-perl s390x 0.36-1 [43.7 kB] 343s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-perl-autopkgtest all 0.80 [18.7 kB] 343s Fetched 211 kB in 0s (503 kB/s) 343s Selecting previously unselected package dctrl-tools. 343s (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.) 343s Preparing to unpack .../0-dctrl-tools_2.24-3build3_s390x.deb ... 343s Unpacking dctrl-tools (2.24-3build3) ... 343s Selecting previously unselected package autodep8. 343s Preparing to unpack .../1-autodep8_0.28+nmu1ubuntu1_all.deb ... 343s Unpacking autodep8 (0.28+nmu1ubuntu1) ... 343s Selecting previously unselected package libclass-inspector-perl. 343s Preparing to unpack .../2-libclass-inspector-perl_1.36-3_all.deb ... 343s Unpacking libclass-inspector-perl (1.36-3) ... 343s Selecting previously unselected package libfile-sharedir-perl. 343s Preparing to unpack .../3-libfile-sharedir-perl_1.118-3_all.deb ... 343s Unpacking libfile-sharedir-perl (1.118-3) ... 343s Selecting previously unselected package libxs-parse-sublike-perl:s390x. 343s Preparing to unpack .../4-libxs-parse-sublike-perl_0.36-1_s390x.deb ... 343s Unpacking libxs-parse-sublike-perl:s390x (0.36-1) ... 343s Selecting previously unselected package pkg-perl-autopkgtest. 343s Preparing to unpack .../5-pkg-perl-autopkgtest_0.80_all.deb ... 343s Unpacking pkg-perl-autopkgtest (0.80) ... 343s Setting up libclass-inspector-perl (1.36-3) ... 343s Setting up libfile-sharedir-perl (1.118-3) ... 343s Setting up dctrl-tools (2.24-3build3) ... 343s Setting up autodep8 (0.28+nmu1ubuntu1) ... 343s Setting up libxs-parse-sublike-perl:s390x (0.36-1) ... 343s Setting up pkg-perl-autopkgtest (0.80) ... 343s Processing triggers for man-db (2.13.0-1) ... 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libxs-parse-sublike-perl'], kind short, sout pipe, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AnLbng/autodep8-perl-packages.all"], kind short, sout raw, serr pipe, env [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-packages.all /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-packages.all 345s autopkgtest: DBG: got reply from testbed: ok 345s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.AnLbng/build.mFi/src'], kind short, sout raw, serr raw, env [] 345s autopkgtest: DBG: testbed command exited with code 1 345s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AnLbng/build.mFi'], kind short, sout raw, serr pipe, env [] 345s autopkgtest: DBG: testbed command exited with code 0 345s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.err0s3uc/out/tests-tree/ /tmp/autopkgtest.AnLbng/build.mFi/src/ 345s autopkgtest: DBG: got reply from testbed: ok 345s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.AnLbng/build.mFi/src'], kind short, sout raw, serr pipe, env [] 346s autopkgtest: DBG: testbed command exited with code 0 346s autopkgtest [00:53:20]: test autodep8-perl: /usr/share/pkg-perl-autopkgtest/runner runtime-deps 346s autopkgtest [00:53:20]: test autodep8-perl: [----------------------- 346s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.AnLbng/wrapper.sh --debug --artifacts=/tmp/autopkgtest.AnLbng/autodep8-perl-artifacts --chdir=/tmp/autopkgtest.AnLbng/build.mFi/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.AnLbng/autodep8-perl-stderr --stdout=/tmp/autopkgtest.AnLbng/autodep8-perl-stdout --tmp=/tmp/autopkgtest.AnLbng/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 '/usr/share/pkg-perl-autopkgtest/runner runtime-deps'"], kind test, sout raw, serr raw, env [] 346s /tmp/autopkgtest.AnLbng/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.AnLbng/autodep8-perl-artifacts 346s /tmp/autopkgtest.AnLbng/wrapper.sh: changing to directory: /tmp/autopkgtest.AnLbng/build.mFi/src 346s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 346s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 346s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 346s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 346s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: LANG=C.UTF-8 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LANGUAGE 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_ADDRESS 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_ALL 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_COLLATE 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_CTYPE 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_IDENTIFICATION 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MEASUREMENT 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MESSAGES 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MONETARY 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_NAME 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_NUMERIC 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_PAPER 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_TELEPHONE 346s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_TIME 346s /tmp/autopkgtest.AnLbng/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 346s /tmp/autopkgtest.AnLbng/wrapper.sh: pretending to be a login shell 346s /tmp/autopkgtest.AnLbng/wrapper.sh: will write standard error to /tmp/autopkgtest.AnLbng/autodep8-perl-stderr 346s /tmp/autopkgtest.AnLbng/wrapper.sh: will write stdout to /tmp/autopkgtest.AnLbng/autodep8-perl-stdout 346s /tmp/autopkgtest.AnLbng/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.AnLbng/autopkgtest_tmp 346s /tmp/autopkgtest.AnLbng/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 346s /tmp/autopkgtest.AnLbng/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner runtime-deps 346s /tmp/autopkgtest.AnLbng/wrapper.sh: copying /tmp/tmp.OLTibAxdNX/out to stdout and file: /tmp/autopkgtest.AnLbng/autodep8-perl-stdout 346s /tmp/autopkgtest.AnLbng/wrapper.sh: copying /tmp/tmp.OLTibAxdNX/err to standard error and file: /tmp/autopkgtest.AnLbng/autodep8-perl-stdout 346s /tmp/autopkgtest.AnLbng/wrapper.sh: writing script pid 1291 to /tmp/autopkgtest_script_pid 346s /usr/share/pkg-perl-autopkgtest/runtime-deps.d/use.t .. 346s 1..4 346s ok 1 - /usr/bin/perl -w -M"XS::Parse::Sublike" -e 1 2>&1 exited successfully 346s ok 2 - /usr/bin/perl -w -M"XS::Parse::Sublike" -e 1 2>&1 produced no (non-whitelisted) output 346s ok 3 - env PERL_DL_NONLAZY=1 /usr/bin/perl -w -M"XS::Parse::Sublike" -e 1 2>&1 exited successfully 346s ok 4 - env PERL_DL_NONLAZY=1 /usr/bin/perl -w -M"XS::Parse::Sublike" -e 1 2>&1 produced no (non-whitelisted) output 346s ok 346s All tests successful. 346s Files=1, Tests=4, 1 wallclock secs ( 0.01 usr 0.00 sys + 0.07 cusr 0.01 csys = 0.09 CPU) 346s Result: PASS 346s /tmp/autopkgtest.AnLbng/wrapper.sh: checking for leaked background processes... 346s /tmp/autopkgtest.AnLbng/wrapper.sh: waiting for tee/cat subprocesses... 346s /tmp/autopkgtest.AnLbng/wrapper.sh: cleaning up... 346s /tmp/autopkgtest.AnLbng/wrapper.sh: Exit status: 0 346s autopkgtest: DBG: testbed command exited with code 0 346s autopkgtest [00:53:20]: test autodep8-perl: -----------------------] 346s autopkgtest: DBG: testbed executing test finished with exit status 0 346s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-stdout /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-stdout 346s autopkgtest: DBG: got reply from testbed: ok 346s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-stderr /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-stderr 347s autopkgtest: DBG: got reply from testbed: ok 347s autodep8-perl PASS (superficial) 347s autopkgtest [00:53:21]: test autodep8-perl: - - - - - - - - - - results - - - - - - - - - - 347s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-artifacts/ /tmp/autopkgtest-work.err0s3uc/out/artifacts/ 347s autopkgtest: DBG: got reply from testbed: ok 347s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.AnLbng/autodep8-perl-artifacts', '/tmp/autopkgtest.AnLbng/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 347s autopkgtest: DBG: testbed command exited with code 0 347s autopkgtest [00:53:21]: test autodep8-perl-recommends: preparing testbed 347s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'], deps_new=['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 347s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 347s autopkgtest: DBG: install_deps: deps_new=['libxs-parse-sublike-perl', 'pkg-perl-autopkgtest'] 347s autopkgtest: DBG: install-deps: satisfying libxs-parse-sublike-perl, pkg-perl-autopkgtest 347s autopkgtest: DBG: can use apt-get on testbed: True 347s 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', 'libxs-parse-sublike-perl, pkg-perl-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 347s Reading package lists... 347s Building dependency tree... 347s Reading state information... 347s Starting pkgProblemResolver with broken count: 0 348s Starting 2 pkgProblemResolver with broken count: 0 348s Done 348s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libxs-parse-sublike-perl'], kind short, sout pipe, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-packages.all"], kind short, sout raw, serr pipe, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-packages.all /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-recommends-packages.all 348s autopkgtest: DBG: got reply from testbed: ok 348s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.AnLbng/build.mFi/src'], kind short, sout raw, serr raw, env [] 348s autopkgtest: DBG: testbed command exited with code 0 348s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.AnLbng/build.mFi/src already exists 348s autopkgtest [00:53:22]: test autodep8-perl-recommends: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 348s autopkgtest [00:53:22]: test autodep8-perl-recommends: [----------------------- 348s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.AnLbng/wrapper.sh --debug --artifacts=/tmp/autopkgtest.AnLbng/autodep8-perl-recommends-artifacts --chdir=/tmp/autopkgtest.AnLbng/build.mFi/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.AnLbng/autodep8-perl-recommends-stderr --stdout=/tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stdout --tmp=/tmp/autopkgtest.AnLbng/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 '/usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends'"], kind test, sout raw, serr raw, env [] 349s /tmp/autopkgtest.AnLbng/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-artifacts 349s /tmp/autopkgtest.AnLbng/wrapper.sh: changing to directory: /tmp/autopkgtest.AnLbng/build.mFi/src 349s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 349s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 349s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 349s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 349s /tmp/autopkgtest.AnLbng/wrapper.sh: setting environment: LANG=C.UTF-8 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LANGUAGE 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_ADDRESS 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_ALL 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_COLLATE 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_CTYPE 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_IDENTIFICATION 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MEASUREMENT 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MESSAGES 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_MONETARY 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_NAME 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_NUMERIC 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_PAPER 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_TELEPHONE 349s /tmp/autopkgtest.AnLbng/wrapper.sh: unsetting environment: LC_TIME 349s /tmp/autopkgtest.AnLbng/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 349s /tmp/autopkgtest.AnLbng/wrapper.sh: pretending to be a login shell 349s /tmp/autopkgtest.AnLbng/wrapper.sh: will write standard error to /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stderr 349s /tmp/autopkgtest.AnLbng/wrapper.sh: will write stdout to /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stdout 349s /tmp/autopkgtest.AnLbng/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.AnLbng/autopkgtest_tmp 349s /tmp/autopkgtest.AnLbng/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 349s /tmp/autopkgtest.AnLbng/wrapper.sh: command to run: bash -ec /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends 349s /tmp/autopkgtest.AnLbng/wrapper.sh: copying /tmp/tmp.36ABZsyYk7/out to stdout and file: /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stdout 349s /tmp/autopkgtest.AnLbng/wrapper.sh: copying /tmp/tmp.36ABZsyYk7/err to standard error and file: /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stdout 349s /tmp/autopkgtest.AnLbng/wrapper.sh: writing script pid 1447 to /tmp/autopkgtest_script_pid 349s /usr/share/pkg-perl-autopkgtest/runtime-deps-and-recommends.d/syntax.t .. 349s 1..4 349s ok 1 - Package libxs-parse-sublike-perl is known to dpkg 349s ok 2 - Got status information for package libxs-parse-sublike-perl 349s ok 3 - Got file list for package libxs-parse-sublike-perl 349s # Subtest: all modules in libxs-parse-sublike-perl pass the syntax check 349s 1..3 349s # Useless use of a constant (21930) in void context at /usr/lib/s390x-linux-gnu/perl5/5.40/Sublike/Extended.pm line 201. 349s ok 1 - /usr/bin/perl -wc /usr/lib/s390x-linux-gnu/perl5/5.40/Sublike/Extended.pm exited successfully 349s # Useless use of a constant (21930) in void context at /usr/lib/s390x-linux-gnu/perl5/5.40/XS/Parse/Sublike/Builder.pm line 104. 349s ok 2 - /usr/bin/perl -wc /usr/lib/s390x-linux-gnu/perl5/5.40/XS/Parse/Sublike/Builder.pm exited successfully 349s # Useless use of a constant (21930) in void context at /usr/lib/s390x-linux-gnu/perl5/5.40/XS/Parse/Sublike.pm line 439. 349s ok 3 - /usr/bin/perl -wc /usr/lib/s390x-linux-gnu/perl5/5.40/XS/Parse/Sublike.pm exited successfully 349s ok 4 - all modules in libxs-parse-sublike-perl pass the syntax check 349s ok 349s All tests successful. 349s Files=1, Tests=4, 0 wallclock secs ( 0.01 usr 0.00 sys + 0.05 cusr 0.01 csys = 0.07 CPU) 349s Result: PASS 349s /tmp/autopkgtest.AnLbng/wrapper.sh: checking for leaked background processes... 349s /tmp/autopkgtest.AnLbng/wrapper.sh: waiting for tee/cat subprocesses... 349s /tmp/autopkgtest.AnLbng/wrapper.sh: cleaning up... 349s /tmp/autopkgtest.AnLbng/wrapper.sh: Exit status: 0 349s autopkgtest: DBG: testbed command exited with code 0 349s autopkgtest [00:53:23]: test autodep8-perl-recommends: -----------------------] 349s autopkgtest: DBG: testbed executing test finished with exit status 0 349s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stdout /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-recommends-stdout 349s autopkgtest: DBG: got reply from testbed: ok 349s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-stderr /tmp/autopkgtest-work.err0s3uc/out/autodep8-perl-recommends-stderr 349s autopkgtest: DBG: got reply from testbed: ok 349s autopkgtest [00:53:23]: test autodep8-perl-recommends: - - - - - - - - - - results - - - - - - - - - - 349s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AnLbng/autodep8-perl-recommends-artifacts/ /tmp/autopkgtest-work.err0s3uc/out/artifacts/ 349s autodep8-perl-recommends PASS (superficial) 350s autopkgtest: DBG: got reply from testbed: ok 350s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.AnLbng/autodep8-perl-recommends-artifacts', '/tmp/autopkgtest.AnLbng/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 350s autopkgtest: DBG: testbed command exited with code 0 350s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 350s autopkgtest [00:53:24]: @@@@@@@@@@@@@@@@@@@@ summary 350s autodep8-perl-build-deps PASS 350s autodep8-perl PASS (superficial) 350s autodep8-perl-recommends PASS (superficial) 350s autopkgtest: DBG: testbed stop 350s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.AnLbng 350s autopkgtest: DBG: sending command to testbed: close 367s autopkgtest: DBG: got reply from testbed: ok 367s autopkgtest: DBG: sending command to testbed: quit 367s nova [W] Using flock in prodstack6-s390x 367s Creating nova instance adt-plucky-s390x-libxs-parse-sublike-perl-20250216-004734-juju-7f2275-prod-proposed-migration-environment-15-2dd19e82-1c1f-4913-90c3-c35b68f45b92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 367s nova [W] Timed out waiting for 88be5edf-189b-49d1-8df9-ae75355ea286 to get deleted. 367s nova [W] Using flock in prodstack6-s390x 367s Creating nova instance adt-plucky-s390x-libxs-parse-sublike-perl-20250216-004734-juju-7f2275-prod-proposed-migration-environment-15-2dd19e82-1c1f-4913-90c3-c35b68f45b92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 367s nova [W] Timed out waiting for d64efaea-34b1-4d1d-ae09-f8cff9a9a3c8 to get deleted.