0s autopkgtest: DBG: testbed init 0s autopkgtest [02:47:00]: starting date and time: 2025-02-16 02:47:00+0000 0s autopkgtest [02:47:00]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [02:47:00]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.fpim2hdx/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 ruby-posix-spawn --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-32.secgroup --name adt-plucky-s390x-ruby-posix-spawn-20250216-024700-juju-7f2275-prod-proposed-migration-environment-15-f74f2ba0-324a-4f5f-8452-853aa7476d7f --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 245s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.XqOfyf 245s autopkgtest: DBG: sending command to testbed: print-execute-command 245s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.dyojltuf/runcmd 245s autopkgtest: DBG: sending command to testbed: capabilities 245s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu revert-full-system revert isolation-machine root-on-testbed 245s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'revert-full-system', 'revert', 'isolation-machine', 'root-on-testbed', 'has_internet'] 245s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqOfyf'], kind short, sout raw, serr pipe, env [] 245s autopkgtest: DBG: testbed command exited with code 0 245s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.XqOfyf/wrapper.sh 246s autopkgtest: DBG: got reply from testbed: ok 246s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqOfyf/wrapper.sh'], kind short, sout raw, serr pipe, env [] 246s autopkgtest: DBG: testbed command exited with code 0 246s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 246s autopkgtest: DBG: testbed command exited with code 0 246s autopkgtest [02:51:06]: testbed dpkg architecture: s390x 246s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 246s autopkgtest: DBG: testbed command exited with code 0 246s autopkgtest [02:51:06]: testbed apt version: 2.9.28 246s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 246s autopkgtest: DBG: testbed command exited with code 0 246s autopkgtest: DBG: testbed has eatmydata 246s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 246s autopkgtest: DBG: testbed command exited with code 0 246s autopkgtest [02:51:06]: @@@@@@@@@@@@@@@@@@@@ test bed setup 246s 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 [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest [02:51:07]: testbed release detected to be: None 247s 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 [] 247s autopkgtest: DBG: testbed command exited with code 0 247s 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 [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest: DBG: adding APT source: Types: deb deb-src 247s URIs: http://ftpmaster.internal/ubuntu/ 247s Suites: plucky-proposed 247s Components: main restricted universe multiverse 247s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 247s 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 [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 247s Package: * 247s Pin: release plucky-proposed 247s Pin-Priority: 500 247s 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 [] 247s autopkgtest: DBG: testbed command exited with code 0 247s autopkgtest [02:51:07]: updating testbed package index (apt update) 247s 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'] 248s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 248s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 248s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 248s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 248s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 248s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 249s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 249s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 249s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 249s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 249s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 249s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 249s Fetched 2083 kB in 2s (1341 kB/s) 250s Reading package lists... 250s autopkgtest: DBG: testbed command exited with code 0 250s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 250s Package: * 250s Pin: release plucky-proposed 250s Pin-Priority: 100 250s 250s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 250s Pin: release plucky-proposed 250s Pin-Priority: 995 250s 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 [] 250s autopkgtest: DBG: testbed command exited with code 0 250s 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.XqOfyf/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 250s autopkgtest: DBG: testbed command exited with code 0 250s 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'] 250s + lsb_release --codename --short 250s + RELEASE=plucky 250s + cat 250s + [ plucky != trusty ] 250s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 250s Reading package lists... 250s Building dependency tree... 250s Reading state information... 251s Calculating upgrade... 251s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 251s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 251s + /usr/lib/apt/apt-helper analyze-pattern ?true 251s + uname -r 251s + sed s/\./\\./g 251s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 251s + apt list ?obsolete 251s + + cut -d/ -f1 251s tail -n+2 251s + grep -v ^linux-.*6\.12\.0-15-generic.* 251s + obsolete_pkgs=linux-image-6.11.0-8-generic 251s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 251s Reading package lists... 251s Building dependency tree... 251s Reading state information... 251s The following packages will be REMOVED: 251s linux-image-6.11.0-8-generic* 251s 0 upgraded, 0 newly installed, 1 to remove and 6 not upgraded. 251s After this operation, 10.5 MB disk space will be freed. 251s (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 ... 80973 files and directories currently installed.) 251s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 252s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-15-generic 252s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-15-generic 252s /etc/kernel/postrm.d/initramfs-tools: 252s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 252s /etc/kernel/postrm.d/zz-zipl: 252s Using config file '/etc/zipl.conf' 252s Building bootmap in '/boot' 252s Adding IPL section 'ubuntu' (default) 252s Preparing boot device for LD-IPL: vda (0000). 252s Done. 252s (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.) 252s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 252s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 252s + grep -q trusty /etc/lsb-release 252s + [ ! -d /usr/share/doc/unattended-upgrades ] 252s + [ ! -d /usr/share/doc/lxd ] 252s + [ ! -d /usr/share/doc/lxd-client ] 252s + [ ! -d /usr/share/doc/snapd ] 252s + type iptables 252s + cat 252s + chmod 755 /etc/rc.local 252s + . /etc/rc.local 252s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 252s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 252s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 252s + uname -m 252s + [ s390x = ppc64le ] 252s + [ -d /run/systemd/system ] 252s + systemd-detect-virt --quiet --vm 252s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 252s + cat 252s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 252s + echo COMPRESS=lz4 252s autopkgtest: DBG: testbed command exited with code 0 252s autopkgtest [02:51:12]: upgrading testbed (apt dist-upgrade and autopurge) 252s 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'] 252s Reading package lists... 252s Building dependency tree... 252s Reading state information... 252s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 252s Starting 2 pkgProblemResolver with broken count: 0 252s Done 253s Entering ResolveByKeep 253s 253s The following packages were automatically installed and are no longer required: 253s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 253s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 253s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 253s linux-tools-6.11.0-8-generic 253s Use 'sudo apt autoremove' to remove them. 253s The following packages will be upgraded: 253s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 253s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 253s Need to get 10.7 MB of archives. 253s After this operation, 305 kB of additional disk space will be used. 253s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 253s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 254s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 255s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 255s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 255s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 256s Preconfiguring packages ... 256s Fetched 10.7 MB in 3s (3894 kB/s) 256s (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.) 256s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 256s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 256s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 256s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 256s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 256s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 256s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 256s Checking for services that may need to be restarted... 256s Checking init scripts... 256s Checking for services that may need to be restarted... 256s Checking init scripts... 256s Stopping some services possibly affected by the upgrade (will be restarted later): 256s cron: stopping...done. 256s 256s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 256s Setting up libc6:s390x (2.41-1ubuntu1) ... 256s Checking for services that may need to be restarted... 256s Checking init scripts... 256s Restarting services possibly affected by the upgrade: 256s cron: restarting...done. 256s 256s Services restarted successfully. 257s (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 ... 80970 files and directories currently installed.) 257s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 257s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 257s Setting up libc-bin (2.41-1ubuntu1) ... 257s (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 ... 80970 files and directories currently installed.) 257s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 257s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 257s Setting up iproute2 (6.13.0-1ubuntu1) ... 257s Setting up locales (2.41-1ubuntu1) ... 257s Installing new version of config file /etc/locale.alias ... 257s Generating locales (this might take a while)... 258s en_US.UTF-8... done 258s Generation complete. 258s Setting up libc-dev-bin (2.41-1ubuntu1) ... 258s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 258s Processing triggers for man-db (2.13.0-1) ... 259s Processing triggers for systemd (257.2-3ubuntu1) ... 260s autopkgtest: DBG: testbed command exited with code 0 260s 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'] 260s Reading package lists... 260s Building dependency tree... 260s Reading state information... 260s Starting pkgProblemResolver with broken count: 0 260s Starting 2 pkgProblemResolver with broken count: 0 260s Done 260s The following packages will be REMOVED: 260s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 260s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 260s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 260s linux-tools-6.11.0-8-generic* 261s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 261s After this operation, 167 MB disk space will be freed. 261s (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 ... 80971 files and directories currently installed.) 261s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 261s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 261s Removing libpython3.12t64:s390x (3.12.9-1) ... 261s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 261s Removing libnsl2:s390x (1.3.0-3build3) ... 261s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 261s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 261s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 261s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 262s Processing triggers for libc-bin (2.41-1ubuntu1) ... 262s (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 ... 55871 files and directories currently installed.) 262s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 262s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 262s autopkgtest: DBG: testbed command exited with code 0 262s 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.XqOfyf/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 262s autopkgtest: DBG: testbed command exited with code 1 262s autopkgtest [02:51:22]: rebooting testbed after setup commands that affected boot 262s autopkgtest: DBG: sending command to testbed: reboot 281s autopkgtest: DBG: got reply from testbed: ok 281s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 281s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqOfyf'], kind short, sout raw, serr pipe, env [] 281s autopkgtest: DBG: testbed command exited with code 0 281s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.XqOfyf/autopkgtest-reboot 282s autopkgtest: DBG: got reply from testbed: ok 282s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqOfyf'], kind short, sout raw, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.XqOfyf/autopkgtest-reboot-prepare 282s autopkgtest: DBG: got reply from testbed: ok 282s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest [02:51:43]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 283s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqOfyf/testbed-packages"], kind short, sout raw, serr pipe, env [] 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/testbed-packages /tmp/autopkgtest-work.fpim2hdx/out/testbed-packages 283s autopkgtest: DBG: got reply from testbed: ok 283s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 283s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqOfyf'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.XqOfyf/autopkgtest-reboot 284s autopkgtest: DBG: got reply from testbed: ok 284s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.XqOfyf'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.XqOfyf/autopkgtest-reboot-prepare 285s autopkgtest: DBG: got reply from testbed: ok 285s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 285s autopkgtest: DBG: testbed command exited with code 0 285s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.XqOfyf/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 285s autopkgtest: DBG: testbed command exited with code 0 285s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 285s autopkgtest: DBG: testbed command exited with code 0 285s autopkgtest: DBG: Binaries: initialising 285s autopkgtest [02:51:45]: @@@@@@@@@@@@@@@@@@@@ apt-source ruby-posix-spawn 285s autopkgtest: DBG: blame += ruby-posix-spawn 285s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 285s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'ruby-posix-spawn'], kind short, sout pipe, serr pipe, env [] 286s autopkgtest: DBG: testbed command exited with code 0 286s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^ruby-posix-spawn$'], kind short, sout pipe, serr raw, env [] 286s autopkgtest: DBG: testbed command exited with code 0 286s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'ruby-posix-spawn=0.3.15-1ubuntu1'], kind short, sout pipe, serr raw, env [] 286s autopkgtest: DBG: testbed command exited with code 0 286s autopkgtest: DBG: install_deps: deps_new=[] 286s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 286s autopkgtest: DBG: testbed command exited with code 0 286s 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.XqOfyf/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source ruby-posix-spawn=0.3.15-1ubuntu1 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 ruby-posix-spawn_*.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'] 286s + cd / 286s + mktemp -d /tmp/autopkgtest.XqOfyf/build.XXX 286s + builddir=/tmp/autopkgtest.XqOfyf/build.Ecx 286s + cd /tmp/autopkgtest.XqOfyf/build.Ecx 286s + apt-get source -d -q --only-source ruby-posix-spawn=0.3.15-1ubuntu1 287s + OUT=Reading package lists... 287s NOTICE: 'ruby-posix-spawn' packaging is maintained in the 'Git' version control system at: 287s https://salsa.debian.org/ruby-team/ruby-posix-spawn.git 287s Please use: 287s git clone https://salsa.debian.org/ruby-team/ruby-posix-spawn.git 287s to retrieve the latest (possibly unreleased) updates to the package. 287s Need to get 33.0 kB of source archives. 287s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (dsc) [2223 B] 287s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (tar) [25.6 kB] 287s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (diff) [5092 B] 287s Fetched 33.0 kB in 0s (110 kB/s) 287s Download complete and in download only mode 287s + [ -n ] 287s + echo Reading package lists... 287s NOTICE: 'ruby-posix-spawn' packaging is maintained in the 'Git' version control system at: 287s https://salsa.debian.org/ruby-team/ruby-posix-spawn.git 287s Please use: 287s git clone https://salsa.debian.org/ruby-team/ruby-posix-spawn.git 287s to retrieve the latest (possibly unreleased) updates to the package. 287s Need to get 33.0 kB of source archives. 287s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (dsc) [2223 B] 287s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (tar) [25.6 kB] 287s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (diff) [5092 B] 287s Fetched 33.0 kB in 0s (110 kB/s) 287s Download complete and in download only mode 287s + grep ^Get: 287s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (dsc) [2223 B] 287s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (tar) [25.6 kB] 287s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ruby-posix-spawn 0.3.15-1ubuntu1 (diff) [5092 B] 287s + dpkg-source -x ruby-posix-spawn_0.3.15-1ubuntu1.dsc src 287s gpgv: Signature made Wed Aug 21 20:58:45 2024 UTC 287s gpgv: using RSA key 8ED6C3F8BAC9DB7FC130A870F823A2729883C97C 287s gpgv: issuer "kanashiro@ubuntu.com" 287s gpgv: Can't check signature: No public key 287s dpkg-source: warning: cannot verify inline signature for ./ruby-posix-spawn_0.3.15-1ubuntu1.dsc: no acceptable signature found 287s + chmod -R a+rX . 287s + cd src/. 287s + pwd 287s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 287s autopkgtest: DBG: testbed command exited with code 0 287s autopkgtest [02:51:47]: testing package ruby-posix-spawn version 0.3.15-1ubuntu1 287s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/build.Ecx/src/debian/ /tmp/autopkgtest-work.fpim2hdx/out/pkg/debian/ 287s autopkgtest: DBG: got reply from testbed: ok 287s autopkgtest: DBG: autodep8 generated control: ----- 287s Test-Command: gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 287s Depends: @, rake, gem2deb-test-runner, 287s Features: test-name=gem2deb-test-runner 287s Restrictions: skippable, 287s 287s ------- 287s autopkgtest: DBG: processing dependency @ 287s autopkgtest: DBG: synthesised dependency ruby-posix-spawn 287s autopkgtest: DBG: processing dependency rake 287s autopkgtest: DBG: processing dependency gem2deb-test-runner 287s autopkgtest: DBG: Test defined: name gem2deb-test-runner path None command "gem2deb-test-runner --autopkgtest --check-dependencies 2>&1" restrictions ['skippable'] features ['test-name=gem2deb-test-runner'] depends ['ruby-posix-spawn', 'rake', 'gem2deb-test-runner'] 287s autopkgtest [02:51:47]: build not needed 287s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/build.Ecx/src/ /tmp/autopkgtest-work.fpim2hdx/out/tests-tree/ 288s autopkgtest: DBG: got reply from testbed: ok 288s autopkgtest: DBG: autodep8 generated control: ----- 288s Test-Command: gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 288s Depends: @, rake, gem2deb-test-runner, 288s Features: test-name=gem2deb-test-runner 288s Restrictions: skippable, 288s 288s ------- 288s autopkgtest: DBG: processing dependency @ 288s autopkgtest: DBG: synthesised dependency ruby-posix-spawn 288s autopkgtest: DBG: processing dependency rake 288s autopkgtest: DBG: processing dependency gem2deb-test-runner 288s autopkgtest: DBG: Test defined: name gem2deb-test-runner path None command "gem2deb-test-runner --autopkgtest --check-dependencies 2>&1" restrictions ['skippable'] features ['test-name=gem2deb-test-runner'] depends ['ruby-posix-spawn', 'rake', 'gem2deb-test-runner'] 288s autopkgtest [02:51:48]: test gem2deb-test-runner: preparing testbed 288s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['ruby-posix-spawn', 'rake', 'gem2deb-test-runner'] 288s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 288s autopkgtest: DBG: install_deps: deps_new=['ruby-posix-spawn', 'rake', 'gem2deb-test-runner'] 288s autopkgtest: DBG: install-deps: satisfying ruby-posix-spawn, rake, gem2deb-test-runner 288s autopkgtest: DBG: can use apt-get on testbed: True 288s 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', 'ruby-posix-spawn, rake, gem2deb-test-runner'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 288s Reading package lists... 288s Building dependency tree... 288s Reading state information... 289s Starting pkgProblemResolver with broken count: 0 289s Starting 2 pkgProblemResolver with broken count: 0 289s Done 289s The following NEW packages will be installed: 289s gem2deb-test-runner libruby libruby3.3 rake ruby ruby-did-you-mean 289s ruby-minitest ruby-net-telnet ruby-posix-spawn ruby-power-assert 289s ruby-rubygems ruby-sdbm ruby-test-unit ruby-webrick ruby-xmlrpc ruby3.3 289s rubygems-integration 289s 0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded. 289s Need to get 6509 kB of archives. 289s After this operation, 32.6 MB of additional disk space will be used. 289s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x rubygems-integration all 1.18ubuntu1 [5528 B] 289s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-did-you-mean all 1.6.3-2 [14.8 kB] 289s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-minitest all 5.22.3-1ubuntu1 [48.0 kB] 289s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-net-telnet all 0.2.0-1 [13.3 kB] 289s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-power-assert all 2.0.3-1 [12.0 kB] 289s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-test-unit all 3.6.2-1 [67.0 kB] 289s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-webrick all 1.8.1-1ubuntu1 [52.6 kB] 289s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-xmlrpc all 0.3.3-2 [24.8 kB] 289s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libruby s390x 1:3.3~ubuntu3 [5038 B] 289s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-sdbm s390x 1.0.0-5build5 [16.3 kB] 289s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libruby3.3 s390x 3.3.6-1.1ubuntu1 [5869 kB] 290s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x ruby3.3 s390x 3.3.6-1.1ubuntu1 [49.1 kB] 290s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-rubygems all 3.4.20-1 [238 kB] 290s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x ruby s390x 1:3.3~ubuntu3 [3618 B] 290s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x rake all 13.2.1-1 [45.8 kB] 290s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x gem2deb-test-runner s390x 2.2.5 [18.3 kB] 290s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-posix-spawn s390x 0.3.15-1ubuntu1 [25.3 kB] 290s Fetched 6509 kB in 1s (4498 kB/s) 290s Selecting previously unselected package rubygems-integration. 291s (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.) 291s Preparing to unpack .../00-rubygems-integration_1.18ubuntu1_all.deb ... 291s Unpacking rubygems-integration (1.18ubuntu1) ... 291s Selecting previously unselected package ruby-did-you-mean. 291s Preparing to unpack .../01-ruby-did-you-mean_1.6.3-2_all.deb ... 291s Unpacking ruby-did-you-mean (1.6.3-2) ... 291s Selecting previously unselected package ruby-minitest. 291s Preparing to unpack .../02-ruby-minitest_5.22.3-1ubuntu1_all.deb ... 291s Unpacking ruby-minitest (5.22.3-1ubuntu1) ... 291s Selecting previously unselected package ruby-net-telnet. 291s Preparing to unpack .../03-ruby-net-telnet_0.2.0-1_all.deb ... 291s Unpacking ruby-net-telnet (0.2.0-1) ... 291s Selecting previously unselected package ruby-power-assert. 291s Preparing to unpack .../04-ruby-power-assert_2.0.3-1_all.deb ... 291s Unpacking ruby-power-assert (2.0.3-1) ... 291s Selecting previously unselected package ruby-test-unit. 291s Preparing to unpack .../05-ruby-test-unit_3.6.2-1_all.deb ... 291s Unpacking ruby-test-unit (3.6.2-1) ... 291s Selecting previously unselected package ruby-webrick. 291s Preparing to unpack .../06-ruby-webrick_1.8.1-1ubuntu1_all.deb ... 291s Unpacking ruby-webrick (1.8.1-1ubuntu1) ... 291s Selecting previously unselected package ruby-xmlrpc. 291s Preparing to unpack .../07-ruby-xmlrpc_0.3.3-2_all.deb ... 291s Unpacking ruby-xmlrpc (0.3.3-2) ... 291s Selecting previously unselected package libruby:s390x. 291s Preparing to unpack .../08-libruby_1%3a3.3~ubuntu3_s390x.deb ... 291s Unpacking libruby:s390x (1:3.3~ubuntu3) ... 291s Selecting previously unselected package ruby-sdbm:s390x. 291s Preparing to unpack .../09-ruby-sdbm_1.0.0-5build5_s390x.deb ... 291s Unpacking ruby-sdbm:s390x (1.0.0-5build5) ... 291s Selecting previously unselected package libruby3.3:s390x. 291s Preparing to unpack .../10-libruby3.3_3.3.6-1.1ubuntu1_s390x.deb ... 291s Unpacking libruby3.3:s390x (3.3.6-1.1ubuntu1) ... 291s Selecting previously unselected package ruby3.3. 291s Preparing to unpack .../11-ruby3.3_3.3.6-1.1ubuntu1_s390x.deb ... 291s Unpacking ruby3.3 (3.3.6-1.1ubuntu1) ... 291s Selecting previously unselected package ruby-rubygems. 291s Preparing to unpack .../12-ruby-rubygems_3.4.20-1_all.deb ... 291s Unpacking ruby-rubygems (3.4.20-1) ... 291s Selecting previously unselected package ruby. 291s Preparing to unpack .../13-ruby_1%3a3.3~ubuntu3_s390x.deb ... 291s Unpacking ruby (1:3.3~ubuntu3) ... 291s Selecting previously unselected package rake. 291s Preparing to unpack .../14-rake_13.2.1-1_all.deb ... 291s Unpacking rake (13.2.1-1) ... 291s Selecting previously unselected package gem2deb-test-runner. 291s Preparing to unpack .../15-gem2deb-test-runner_2.2.5_s390x.deb ... 291s Unpacking gem2deb-test-runner (2.2.5) ... 291s Selecting previously unselected package ruby-posix-spawn. 291s Preparing to unpack .../16-ruby-posix-spawn_0.3.15-1ubuntu1_s390x.deb ... 291s Unpacking ruby-posix-spawn (0.3.15-1ubuntu1) ... 291s Setting up ruby-power-assert (2.0.3-1) ... 291s Setting up rubygems-integration (1.18ubuntu1) ... 291s Setting up ruby-minitest (5.22.3-1ubuntu1) ... 291s Setting up ruby-test-unit (3.6.2-1) ... 291s Setting up ruby-net-telnet (0.2.0-1) ... 291s Setting up ruby-webrick (1.8.1-1ubuntu1) ... 291s Setting up ruby-did-you-mean (1.6.3-2) ... 291s Setting up ruby-xmlrpc (0.3.3-2) ... 291s Setting up rake (13.2.1-1) ... 291s Setting up ruby3.3 (3.3.6-1.1ubuntu1) ... 291s Setting up ruby-sdbm:s390x (1.0.0-5build5) ... 291s Setting up libruby3.3:s390x (3.3.6-1.1ubuntu1) ... 291s Setting up libruby:s390x (1:3.3~ubuntu3) ... 291s Setting up ruby (1:3.3~ubuntu3) ... 291s Setting up ruby-posix-spawn (0.3.15-1ubuntu1) ... 291s Setting up ruby-rubygems (3.4.20-1) ... 291s Setting up gem2deb-test-runner (2.2.5) ... 291s Processing triggers for man-db (2.13.0-1) ... 291s Processing triggers for libc-bin (2.41-1ubuntu1) ... 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'ruby-posix-spawn'], kind short, sout pipe, serr pipe, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-packages.all"], kind short, sout raw, serr pipe, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-packages.all /tmp/autopkgtest-work.fpim2hdx/out/gem2deb-test-runner-packages.all 292s autopkgtest: DBG: got reply from testbed: ok 292s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.XqOfyf/build.Ecx/src'], kind short, sout raw, serr raw, env [] 292s autopkgtest: DBG: testbed command exited with code 0 292s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.XqOfyf/build.Ecx/src already exists 292s autopkgtest [02:51:52]: test gem2deb-test-runner: gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 292s autopkgtest [02:51:52]: test gem2deb-test-runner: [----------------------- 292s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.XqOfyf/wrapper.sh --debug --artifacts=/tmp/autopkgtest.XqOfyf/gem2deb-test-runner-artifacts --chdir=/tmp/autopkgtest.XqOfyf/build.Ecx/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.XqOfyf/gem2deb-test-runner-stderr --stdout=/tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stdout --tmp=/tmp/autopkgtest.XqOfyf/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 'gem2deb-test-runner --autopkgtest --check-dependencies 2>&1'"], kind test, sout raw, serr raw, env [] 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-artifacts 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: changing to directory: /tmp/autopkgtest.XqOfyf/build.Ecx/src 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: setting environment: LANG=C.UTF-8 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LANGUAGE 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_ADDRESS 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_ALL 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_COLLATE 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_CTYPE 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_IDENTIFICATION 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_MEASUREMENT 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_MESSAGES 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_MONETARY 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_NAME 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_NUMERIC 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_PAPER 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_TELEPHONE 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: unsetting environment: LC_TIME 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: pretending to be a login shell 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: will write standard error to /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stderr 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: will write stdout to /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stdout 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.XqOfyf/autopkgtest_tmp 292s /tmp/autopkgtest.XqOfyf/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 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: command to run: bash -ec gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: copying /tmp/tmp.xnYr4nD6A9/out to stdout and file: /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stdout 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: copying /tmp/tmp.xnYr4nD6A9/err to standard error and file: /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stdout 292s /tmp/autopkgtest.XqOfyf/wrapper.sh: writing script pid 1474 to /tmp/autopkgtest_script_pid 293s 293s ┌──────────────────────────────────────────────────────────────────────────────┐ 293s │ Checking Rubygems dependency resolution on ruby3.3 │ 293s └──────────────────────────────────────────────────────────────────────────────┘ 293s 293s RUBYLIB=. GEM_PATH= ruby3.3 -e gem\ \"posix-spawn\" 293s mv lib ./.gem2deb.lib 293s mv ext ./.gem2deb.ext 293s mv ./.gem2deb.lib lib 293s mv ./.gem2deb.ext ext 293s 293s ┌──────────────────────────────────────────────────────────────────────────────┐ 293s │ Run tests for ruby3.3 from debian/ruby-tests.rb │ 293s └──────────────────────────────────────────────────────────────────────────────┘ 293s 293s RUBYLIB=. GEM_PATH= ruby3.3 debian/ruby-tests.rb 293s mv lib ./.gem2deb.lib 293s mv ext ./.gem2deb.ext 293s mv ./.gem2deb.lib lib 293s mv ./.gem2deb.ext ext 293s /tmp/autopkgtest.XqOfyf/wrapper.sh: checking for leaked background processes... 293s /tmp/autopkgtest.XqOfyf/wrapper.sh: waiting for tee/cat subprocesses... 293s /tmp/autopkgtest.XqOfyf/wrapper.sh: cleaning up... 293s /tmp/autopkgtest.XqOfyf/wrapper.sh: Exit status: 0 293s autopkgtest: DBG: testbed command exited with code 0 294s autopkgtest [02:51:53]: test gem2deb-test-runner: -----------------------] 294s autopkgtest: DBG: testbed executing test finished with exit status 0 294s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stdout /tmp/autopkgtest-work.fpim2hdx/out/gem2deb-test-runner-stdout 295s autopkgtest: DBG: got reply from testbed: ok 295s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-stderr /tmp/autopkgtest-work.fpim2hdx/out/gem2deb-test-runner-stderr 295s autopkgtest: DBG: got reply from testbed: ok 295s autopkgtest [02:51:55]: test gem2deb-test-runner: - - - - - - - - - - results - - - - - - - - - - 295s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.XqOfyf/gem2deb-test-runner-artifacts/ /tmp/autopkgtest-work.fpim2hdx/out/artifacts/ 295s gem2deb-test-runner PASS 295s autopkgtest: DBG: got reply from testbed: ok 295s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.XqOfyf/gem2deb-test-runner-artifacts', '/tmp/autopkgtest.XqOfyf/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 295s autopkgtest: DBG: testbed command exited with code 0 295s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 295s autopkgtest [02:51:55]: @@@@@@@@@@@@@@@@@@@@ summary 295s gem2deb-test-runner PASS 295s autopkgtest: DBG: testbed stop 295s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.XqOfyf 295s autopkgtest: DBG: sending command to testbed: close 315s autopkgtest: DBG: got reply from testbed: ok 315s autopkgtest: DBG: sending command to testbed: quit 315s nova [W] Using flock in prodstack6-s390x 315s Creating nova instance adt-plucky-s390x-ruby-posix-spawn-20250216-024700-juju-7f2275-prod-proposed-migration-environment-15-f74f2ba0-324a-4f5f-8452-853aa7476d7f from image adt/ubuntu-plucky-s390x-server-20250216.img (UUID 67327349-c50d-4fb2-aab8-abef6582e685)... 315s nova [W] Timed out waiting for b4e3c8b1-5b55-4c90-89f7-a53a498d477a to get deleted.