0s autopkgtest: DBG: testbed init 0s autopkgtest [11:31:57]: starting date and time: 2025-02-10 11:31:57+0000 0s autopkgtest [11:31:57]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [11:31:57]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.d87a0xy6/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:qemu,src:systemd --apt-upgrade vagrant-mutate --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=qemu/1:6.2+dfsg-2ubuntu6.25 systemd/249.11-0ubuntu3.14' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-23.secgroup --name adt-jammy-s390x-vagrant-mutate-20250210-113156-juju-7f2275-prod-proposed-migration-environment-15-c7580e35-63c2-4871-8dec-d04c44a96228 --image adt/ubuntu-jammy-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 63s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.8g4Oyi 63s autopkgtest: DBG: sending command to testbed: print-execute-command 63s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.naxnq4la/runcmd 63s autopkgtest: DBG: sending command to testbed: capabilities 63s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu reboot revert-full-system isolation-machine root-on-testbed 63s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'reboot', 'revert-full-system', 'isolation-machine', 'root-on-testbed', 'has_internet'] 63s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.8g4Oyi'], kind short, sout raw, serr pipe, env [] 63s autopkgtest: DBG: testbed command exited with code 0 63s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.8g4Oyi/wrapper.sh 63s autopkgtest: DBG: got reply from testbed: ok 63s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.8g4Oyi/wrapper.sh'], kind short, sout raw, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest [11:33:01]: testbed dpkg architecture: s390x 64s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest [11:33:01]: testbed apt version: 2.4.13 64s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest: DBG: testbed has eatmydata 64s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest [11:33:01]: @@@@@@@@@@@@@@@@@@@@ test bed setup 64s 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 [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest [11:33:01]: testbed release detected to be: None 64s 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 [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: adding APT source: deb http://ftpmaster.internal/ubuntu/ jammy-proposed main restricted universe multiverse 65s deb-src http://ftpmaster.internal/ubuntu/ jammy-proposed main restricted universe multiverse 65s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-jammy-proposed.list"', 'add_apt_source', 'printf', '%s\\n', 'deb http://ftpmaster.internal/ubuntu/ jammy-proposed main restricted universe multiverse\ndeb-src http://ftpmaster.internal/ubuntu/ jammy-proposed main restricted universe multiverse'], kind short, sout raw, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s 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 [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: adding APT preference to autopkgtest-zz-jammy-proposed-baseline.pref: 65s Package: * 65s Pin: release jammy-proposed 65s Pin-Priority: 500 65s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-jammy-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release jammy-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [11:33:02]: updating testbed package index (apt update) 65s 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'] 65s Hit:1 http://ftpmaster.internal/ubuntu jammy InRelease 66s Hit:2 http://ftpmaster.internal/ubuntu jammy-updates InRelease 66s Hit:3 http://ftpmaster.internal/ubuntu jammy-security InRelease 66s Get:4 http://ftpmaster.internal/ubuntu jammy-proposed InRelease [279 kB] 66s Get:5 http://ftpmaster.internal/ubuntu jammy-proposed/restricted Sources [23.1 kB] 66s Get:6 http://ftpmaster.internal/ubuntu jammy-proposed/universe Sources [24.4 kB] 66s Get:7 http://ftpmaster.internal/ubuntu jammy-proposed/main Sources [113 kB] 66s Get:8 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x Packages [151 kB] 66s Get:9 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x c-n-f Metadata [1724 B] 66s Get:10 http://ftpmaster.internal/ubuntu jammy-proposed/restricted s390x Packages [1704 B] 66s Get:11 http://ftpmaster.internal/ubuntu jammy-proposed/restricted s390x c-n-f Metadata [116 B] 66s Get:12 http://ftpmaster.internal/ubuntu jammy-proposed/universe s390x Packages [48.7 kB] 66s Get:13 http://ftpmaster.internal/ubuntu jammy-proposed/universe s390x c-n-f Metadata [1312 B] 66s Get:14 http://ftpmaster.internal/ubuntu jammy-proposed/multiverse s390x c-n-f Metadata [116 B] 67s Fetched 645 kB in 1s (695 kB/s) 68s Reading package lists... 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: adding APT preference to autopkgtest-jammy-proposed.pref: 68s Package: * 68s Pin: release jammy-proposed 68s Pin-Priority: 100 68s 68s Package: src:qemu:any src:systemd:any 68s Pin: release jammy-proposed 68s Pin-Priority: 995 68s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-jammy-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release jammy-proposed\nPin-Priority: 100\n\nPackage: src:qemu:any src:systemd:any\nPin: release jammy-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s 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.8g4Oyi/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s 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'] 68s + lsb_release --codename --short 68s + RELEASE=jammy 68s + cat 68s + [ jammy != trusty ] 68s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 69s Reading package lists... 69s Building dependency tree... 69s Reading state information... 69s Calculating upgrade... 69s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 69s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 69s + /usr/lib/apt/apt-helper analyze-pattern ?true 69s + + unamesed s/\./\\./g 69s -r 69s + running_kernel_pattern=^linux-.*5\.15\.0-131-generic.* 69s + apt list ?obsolete 69s + + cut -d/ -f1 69s grep -v ^linux-.*5\.15\.0-131-generic.* 69s + tail -n+2 69s + true 69s + obsolete_pkgs= 69s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 69s Reading package lists... 69s Building dependency tree... 69s Reading state information... 69s + grep -q trusty /etc/lsb-release 69s + [ ! -d /usr/share/doc/unattended-upgrades ] 69s 0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded. 69s + [ ! -d /usr/share/doc/lxd ] 69s + [ ! -d /usr/share/doc/lxd-client ] 69s + [ ! -d /usr/share/doc/snapd ] 69s + type iptables 69s + cat 69s + chmod 755 /etc/rc.local 69s + . /etc/rc.local 69s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 69s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 69s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 69s + uname -m 69s + [ s390x = ppc64le ] 69s + [ -d /run/systemd/system ] 69s + systemd-detect-virt --quiet --vm 69s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 69s + cat 69s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 69s + echo COMPRESS=lz4 69s autopkgtest: DBG: testbed command exited with code 0 69s autopkgtest [11:33:06]: upgrading testbed (apt dist-upgrade and autopurge) 69s 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'] 70s Reading package lists... 70s Building dependency tree... 70s Reading state information... 70s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 70s Starting 2 pkgProblemResolver with broken count: 0 70s Done 70s Entering ResolveByKeep 70s 70s The following packages will be upgraded: 70s libnss-systemd libpam-systemd libsystemd0 libudev1 systemd systemd-sysv 70s systemd-timesyncd udev 71s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 71s Need to get 6600 kB of archives. 71s After this operation, 0 B of additional disk space will be used. 71s Get:1 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x libnss-systemd s390x 249.11-0ubuntu3.14 [128 kB] 71s Get:2 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x libsystemd0 s390x 249.11-0ubuntu3.14 [309 kB] 71s Get:3 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x systemd-timesyncd s390x 249.11-0ubuntu3.14 [29.5 kB] 71s Get:4 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x systemd-sysv s390x 249.11-0ubuntu3.14 [10.5 kB] 71s Get:5 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x libpam-systemd s390x 249.11-0ubuntu3.14 [196 kB] 71s Get:6 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x systemd s390x 249.11-0ubuntu3.14 [4336 kB] 71s Get:7 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x udev s390x 249.11-0ubuntu3.14 [1516 kB] 71s Get:8 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x libudev1 s390x 249.11-0ubuntu3.14 [76.2 kB] 72s Fetched 6600 kB in 1s (5556 kB/s) 72s (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 ... 50346 files and directories currently installed.) 72s Preparing to unpack .../libnss-systemd_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking libnss-systemd:s390x (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Preparing to unpack .../libsystemd0_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking libsystemd0:s390x (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Setting up libsystemd0:s390x (249.11-0ubuntu3.14) ... 72s (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 ... 50346 files and directories currently installed.) 72s Preparing to unpack .../0-systemd-timesyncd_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking systemd-timesyncd (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Preparing to unpack .../1-systemd-sysv_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking systemd-sysv (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Preparing to unpack .../2-libpam-systemd_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking libpam-systemd:s390x (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Preparing to unpack .../3-systemd_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking systemd (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Preparing to unpack .../4-udev_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking udev (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Preparing to unpack .../5-libudev1_249.11-0ubuntu3.14_s390x.deb ... 72s Unpacking libudev1:s390x (249.11-0ubuntu3.14) over (249.11-0ubuntu3.12) ... 72s Setting up libudev1:s390x (249.11-0ubuntu3.14) ... 72s Setting up systemd (249.11-0ubuntu3.14) ... 73s Setting up systemd-timesyncd (249.11-0ubuntu3.14) ... 73s Setting up udev (249.11-0ubuntu3.14) ... 74s Setting up systemd-sysv (249.11-0ubuntu3.14) ... 74s Setting up libnss-systemd:s390x (249.11-0ubuntu3.14) ... 74s Setting up libpam-systemd:s390x (249.11-0ubuntu3.14) ... 74s Processing triggers for libc-bin (2.35-0ubuntu3.9) ... 74s Processing triggers for man-db (2.10.2-1) ... 74s Processing triggers for dbus (1.12.20-2ubuntu4.1) ... 74s Processing triggers for initramfs-tools (0.140ubuntu13.4) ... 74s update-initramfs: Generating /boot/initrd.img-5.15.0-131-generic 74s No lz4 in /usr/bin:/sbin:/bin, using gzip 77s Using config file '/etc/zipl.conf' 77s Building bootmap in '/boot' 77s Adding IPL section 'ubuntu' (default) 77s Preparing boot device: vda (0000). 77s Done. 77s autopkgtest: DBG: testbed command exited with code 0 77s 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'] 77s Reading package lists... 78s Building dependency tree... 78s Reading state information... 78s Starting pkgProblemResolver with broken count: 0 78s Starting 2 pkgProblemResolver with broken count: 0 78s Done 78s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 78s autopkgtest: DBG: testbed command exited with code 0 78s 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.8g4Oyi/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 78s autopkgtest: DBG: testbed command exited with code 1 78s autopkgtest [11:33:15]: rebooting testbed after setup commands that affected boot 78s autopkgtest: DBG: sending command to testbed: reboot 92s autopkgtest: DBG: got reply from testbed: ok 92s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 92s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.8g4Oyi'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.8g4Oyi/autopkgtest-reboot 93s autopkgtest: DBG: got reply from testbed: ok 93s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.8g4Oyi'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.8g4Oyi/autopkgtest-reboot-prepare 94s autopkgtest: DBG: got reply from testbed: ok 94s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest [11:33:31]: testbed running kernel: Linux 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:22:03 UTC 2025 94s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.8g4Oyi/testbed-packages"], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/testbed-packages /tmp/autopkgtest-work.d87a0xy6/out/testbed-packages 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 95s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.8g4Oyi'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.8g4Oyi/autopkgtest-reboot 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.8g4Oyi'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.8g4Oyi/autopkgtest-reboot-prepare 96s autopkgtest: DBG: got reply from testbed: ok 96s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.8g4Oyi/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: Binaries: initialising 96s autopkgtest [11:33:33]: @@@@@@@@@@@@@@@@@@@@ apt-source vagrant-mutate 96s autopkgtest: DBG: blame += vagrant-mutate 96s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 96s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'vagrant-mutate'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^vagrant-mutate$'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'vagrant-mutate=1.2.0-4.1'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: install_deps: deps_new=[] 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s 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.8g4Oyi/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source vagrant-mutate=1.2.0-4.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 vagrant-mutate_*.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=qemu/1:6.2+dfsg-2ubuntu6.25 systemd/249.11-0ubuntu3.14'] 98s + cd / 98s + mktemp -d /tmp/autopkgtest.8g4Oyi/build.XXX 98s + builddir=/tmp/autopkgtest.8g4Oyi/build.zJY 98s + cd /tmp/autopkgtest.8g4Oyi/build.zJY 98s + apt-get source -d -q --only-source vagrant-mutate=1.2.0-4.1 98s + OUT=Reading package lists... 98s NOTICE: 'vagrant-mutate' packaging is maintained in the 'Git' version control system at: 98s https://salsa.debian.org/ruby-team/vagrant-mutate.git 98s Please use: 98s git clone https://salsa.debian.org/ruby-team/vagrant-mutate.git 98s to retrieve the latest (possibly unreleased) updates to the package. 98s Need to get 36.1 kB of source archives. 98s Get:1 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (dsc) [2108 B] 98s Get:2 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (tar) [31.4 kB] 98s Get:3 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (diff) [2600 B] 98s Fetched 36.1 kB in 0s (128 kB/s) 98s Download complete and in download only mode 98s + [ -n ] 98s + echo+ grep ^Get: 98s Reading package lists... 98s NOTICE: 'vagrant-mutate' packaging is maintained in the 'Git' version control system at: 98s https://salsa.debian.org/ruby-team/vagrant-mutate.git 98s Please use: 98s git clone https://salsa.debian.org/ruby-team/vagrant-mutate.git 98s to retrieve the latest (possibly unreleased) updates to the package. 98s Need to get 36.1 kB of source archives. 98s Get:1 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (dsc) [2108 B] 98s Get:2 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (tar) [31.4 kB] 98s Get:3 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (diff) [2600 B] 98s Fetched 36.1 kB in 0s (128 kB/s) 98s Download complete and in download only mode 98s Get:1 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (dsc) [2108 B] 98s Get:2 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (tar) [31.4 kB] 98s Get:3 http://ftpmaster.internal/ubuntu jammy/universe vagrant-mutate 1.2.0-4.1 (diff) [2600 B] 98s + dpkg-source -x vagrant-mutate_1.2.0-4.1.dsc src 98s gpgv: Signature made Mon Jan 4 14:21:31 2021 UTC 98s gpgv: using RSA key B8BF54137B09D35CF026FE9D091AB856069AAA1C 98s gpgv: Can't check signature: No public key 98s dpkg-source: warning: cannot verify signature ./vagrant-mutate_1.2.0-4.1.dsc 98s + chmod -R a+rX . 98s + cd src/. 98s + pwd 98s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [11:33:35]: testing package vagrant-mutate version 1.2.0-4.1 98s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/build.zJY/src/debian/ /tmp/autopkgtest-work.d87a0xy6/out/pkg/debian/ 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: processing dependency @ 98s autopkgtest: DBG: synthesised dependency vagrant-mutate 98s autopkgtest: DBG: processing dependency distro-info 98s autopkgtest: DBG: Test defined: name virtualbox2libvirt path debian/tests/virtualbox2libvirt command "None" restrictions [] features [] depends ['vagrant-mutate', 'distro-info'] 98s autopkgtest [11:33:35]: build not needed 98s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/build.zJY/src/ /tmp/autopkgtest-work.d87a0xy6/out/tests-tree/ 99s autopkgtest: DBG: got reply from testbed: ok 99s autopkgtest: DBG: processing dependency @ 99s autopkgtest: DBG: synthesised dependency vagrant-mutate 99s autopkgtest: DBG: processing dependency distro-info 99s autopkgtest: DBG: Test defined: name virtualbox2libvirt path debian/tests/virtualbox2libvirt command "None" restrictions [] features [] depends ['vagrant-mutate', 'distro-info'] 99s autopkgtest [11:33:36]: test virtualbox2libvirt: preparing testbed 99s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['vagrant-mutate', 'distro-info'] 99s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 99s autopkgtest: DBG: install_deps: deps_new=['vagrant-mutate', 'distro-info'] 99s autopkgtest: DBG: install-deps: satisfying vagrant-mutate, distro-info 99s autopkgtest: DBG: can use apt-get on testbed: True 99s 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', 'vagrant-mutate, distro-info'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 99s Reading package lists... 99s Building dependency tree... 99s Reading state information... 99s Starting pkgProblemResolver with broken count: 0 99s Starting 2 pkgProblemResolver with broken count: 0 99s Done 100s The following NEW packages will be installed: 100s libarchive-tools libruby3.0 liburing2 qemu-utils rake ruby ruby-bcrypt-pbkdf 100s ruby-childprocess ruby-concurrent ruby-ed25519 ruby-erubi ruby-excon 100s ruby-ffi ruby-i18n ruby-listen ruby-log4r ruby-mime-types 100s ruby-mime-types-data ruby-net-scp ruby-net-sftp ruby-net-ssh ruby-net-telnet 100s ruby-rb-inotify ruby-rubygems ruby-vagrant-cloud ruby-webrick ruby-xmlrpc 100s ruby-zip ruby3.0 rubygems-integration unzip vagrant vagrant-mutate zip 100s 0 upgraded, 34 newly installed, 0 to remove and 0 not upgraded. 100s Need to get 8805 kB of archives. 100s After this operation, 42.6 MB of additional disk space will be used. 100s Get:1 http://ftpmaster.internal/ubuntu jammy-updates/universe s390x libarchive-tools s390x 3.6.0-1ubuntu1.3 [61.0 kB] 100s Get:2 http://ftpmaster.internal/ubuntu jammy/main s390x rubygems-integration all 1.18 [5336 B] 100s Get:3 http://ftpmaster.internal/ubuntu jammy-updates/main s390x ruby3.0 s390x 3.0.2-7ubuntu2.8 [50.1 kB] 100s Get:4 http://ftpmaster.internal/ubuntu jammy/main s390x ruby-rubygems all 3.3.5-2 [228 kB] 100s Get:5 http://ftpmaster.internal/ubuntu jammy/main s390x ruby s390x 1:3.0~exp1 [5100 B] 100s Get:6 http://ftpmaster.internal/ubuntu jammy/main s390x rake all 13.0.6-2 [61.7 kB] 100s Get:7 http://ftpmaster.internal/ubuntu jammy/main s390x ruby-net-telnet all 0.1.1-2 [12.6 kB] 100s Get:8 http://ftpmaster.internal/ubuntu jammy-updates/main s390x ruby-webrick all 1.7.0-3ubuntu0.1 [52.1 kB] 100s Get:9 http://ftpmaster.internal/ubuntu jammy-updates/main s390x ruby-xmlrpc all 0.3.2-1ubuntu0.1 [24.9 kB] 100s Get:10 http://ftpmaster.internal/ubuntu jammy-updates/main s390x libruby3.0 s390x 3.0.2-7ubuntu2.8 [5028 kB] 101s Get:11 http://ftpmaster.internal/ubuntu jammy/main s390x liburing2 s390x 2.1-2build1 [10.1 kB] 101s Get:12 http://ftpmaster.internal/ubuntu jammy-proposed/main s390x qemu-utils s390x 1:6.2+dfsg-2ubuntu6.25 [1329 kB] 101s Get:13 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-bcrypt-pbkdf s390x 1.1.0-2 [19.4 kB] 101s Get:14 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-ffi s390x 1.15.4+dfsg-2 [91.9 kB] 101s Get:15 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-childprocess all 4.1.0-1 [23.5 kB] 101s Get:16 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-concurrent all 1.1.6+dfsg-4 [212 kB] 101s Get:17 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-ed25519 s390x 1.3.0+ds-1 [101 kB] 101s Get:18 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-erubi all 1.9.0-2 [8060 B] 101s Get:19 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-excon all 0.88.0-1 [160 kB] 101s Get:20 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-i18n all 1.8.11-1 [39.4 kB] 101s Get:21 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-rb-inotify all 0.9.10-2 [12.5 kB] 101s Get:22 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-listen all 3.7.0-1 [30.7 kB] 101s Get:23 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-log4r all 1.1.10-4.1 [102 kB] 101s Get:24 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-mime-types-data all 3.2015.1120-2 [73.1 kB] 101s Get:25 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-mime-types all 3.3.1-1 [20.9 kB] 101s Get:26 http://ftpmaster.internal/ubuntu jammy-updates/universe s390x ruby-net-ssh all 1:6.1.0-2ubuntu0.1 [98.1 kB] 101s Get:27 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-net-scp all 3.0.0-1 [16.3 kB] 101s Get:28 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-net-sftp all 1:3.0.0-1 [36.2 kB] 101s Get:29 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-vagrant-cloud all 3.0.5-1 [18.9 kB] 101s Get:30 http://ftpmaster.internal/ubuntu jammy-updates/main s390x unzip s390x 6.0-26ubuntu3.2 [170 kB] 101s Get:31 http://ftpmaster.internal/ubuntu jammy/main s390x zip s390x 3.0-12build2 [176 kB] 101s Get:32 http://ftpmaster.internal/ubuntu jammy/universe s390x ruby-zip all 2.3.0-2 [40.4 kB] 101s Get:33 http://ftpmaster.internal/ubuntu jammy/universe s390x vagrant all 2.2.19+dfsg-1ubuntu1 [473 kB] 101s Get:34 http://ftpmaster.internal/ubuntu jammy/universe s390x vagrant-mutate all 1.2.0-4.1 [13.8 kB] 101s Fetched 8805 kB in 1s (6155 kB/s) 102s Selecting previously unselected package libarchive-tools. 102s (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 ... 50346 files and directories currently installed.) 102s Preparing to unpack .../00-libarchive-tools_3.6.0-1ubuntu1.3_s390x.deb ... 102s Unpacking libarchive-tools (3.6.0-1ubuntu1.3) ... 102s Selecting previously unselected package rubygems-integration. 102s Preparing to unpack .../01-rubygems-integration_1.18_all.deb ... 102s Unpacking rubygems-integration (1.18) ... 102s Selecting previously unselected package ruby3.0. 102s Preparing to unpack .../02-ruby3.0_3.0.2-7ubuntu2.8_s390x.deb ... 102s Unpacking ruby3.0 (3.0.2-7ubuntu2.8) ... 102s Selecting previously unselected package ruby-rubygems. 102s Preparing to unpack .../03-ruby-rubygems_3.3.5-2_all.deb ... 102s Unpacking ruby-rubygems (3.3.5-2) ... 102s Selecting previously unselected package ruby. 102s Preparing to unpack .../04-ruby_1%3a3.0~exp1_s390x.deb ... 102s Unpacking ruby (1:3.0~exp1) ... 102s Selecting previously unselected package rake. 102s Preparing to unpack .../05-rake_13.0.6-2_all.deb ... 102s Unpacking rake (13.0.6-2) ... 102s Selecting previously unselected package ruby-net-telnet. 102s Preparing to unpack .../06-ruby-net-telnet_0.1.1-2_all.deb ... 102s Unpacking ruby-net-telnet (0.1.1-2) ... 102s Selecting previously unselected package ruby-webrick. 102s Preparing to unpack .../07-ruby-webrick_1.7.0-3ubuntu0.1_all.deb ... 102s Unpacking ruby-webrick (1.7.0-3ubuntu0.1) ... 102s Selecting previously unselected package ruby-xmlrpc. 102s Preparing to unpack .../08-ruby-xmlrpc_0.3.2-1ubuntu0.1_all.deb ... 102s Unpacking ruby-xmlrpc (0.3.2-1ubuntu0.1) ... 102s Selecting previously unselected package libruby3.0:s390x. 102s Preparing to unpack .../09-libruby3.0_3.0.2-7ubuntu2.8_s390x.deb ... 102s Unpacking libruby3.0:s390x (3.0.2-7ubuntu2.8) ... 102s Selecting previously unselected package liburing2:s390x. 102s Preparing to unpack .../10-liburing2_2.1-2build1_s390x.deb ... 102s Unpacking liburing2:s390x (2.1-2build1) ... 102s Selecting previously unselected package qemu-utils. 102s Preparing to unpack .../11-qemu-utils_1%3a6.2+dfsg-2ubuntu6.25_s390x.deb ... 102s Unpacking qemu-utils (1:6.2+dfsg-2ubuntu6.25) ... 102s Selecting previously unselected package ruby-bcrypt-pbkdf:s390x. 102s Preparing to unpack .../12-ruby-bcrypt-pbkdf_1.1.0-2_s390x.deb ... 102s Unpacking ruby-bcrypt-pbkdf:s390x (1.1.0-2) ... 102s Selecting previously unselected package ruby-ffi:s390x. 102s Preparing to unpack .../13-ruby-ffi_1.15.4+dfsg-2_s390x.deb ... 102s Unpacking ruby-ffi:s390x (1.15.4+dfsg-2) ... 102s Selecting previously unselected package ruby-childprocess. 102s Preparing to unpack .../14-ruby-childprocess_4.1.0-1_all.deb ... 102s Unpacking ruby-childprocess (4.1.0-1) ... 102s Selecting previously unselected package ruby-concurrent. 102s Preparing to unpack .../15-ruby-concurrent_1.1.6+dfsg-4_all.deb ... 102s Unpacking ruby-concurrent (1.1.6+dfsg-4) ... 102s Selecting previously unselected package ruby-ed25519:s390x. 102s Preparing to unpack .../16-ruby-ed25519_1.3.0+ds-1_s390x.deb ... 102s Unpacking ruby-ed25519:s390x (1.3.0+ds-1) ... 102s Selecting previously unselected package ruby-erubi. 102s Preparing to unpack .../17-ruby-erubi_1.9.0-2_all.deb ... 102s Unpacking ruby-erubi (1.9.0-2) ... 102s Selecting previously unselected package ruby-excon. 102s Preparing to unpack .../18-ruby-excon_0.88.0-1_all.deb ... 102s Unpacking ruby-excon (0.88.0-1) ... 102s Selecting previously unselected package ruby-i18n. 102s Preparing to unpack .../19-ruby-i18n_1.8.11-1_all.deb ... 102s Unpacking ruby-i18n (1.8.11-1) ... 102s Selecting previously unselected package ruby-rb-inotify. 102s Preparing to unpack .../20-ruby-rb-inotify_0.9.10-2_all.deb ... 102s Unpacking ruby-rb-inotify (0.9.10-2) ... 102s Selecting previously unselected package ruby-listen. 102s Preparing to unpack .../21-ruby-listen_3.7.0-1_all.deb ... 102s Unpacking ruby-listen (3.7.0-1) ... 102s Selecting previously unselected package ruby-log4r. 102s Preparing to unpack .../22-ruby-log4r_1.1.10-4.1_all.deb ... 102s Unpacking ruby-log4r (1.1.10-4.1) ... 102s Selecting previously unselected package ruby-mime-types-data. 102s Preparing to unpack .../23-ruby-mime-types-data_3.2015.1120-2_all.deb ... 102s Unpacking ruby-mime-types-data (3.2015.1120-2) ... 102s Selecting previously unselected package ruby-mime-types. 102s Preparing to unpack .../24-ruby-mime-types_3.3.1-1_all.deb ... 102s Unpacking ruby-mime-types (3.3.1-1) ... 102s Selecting previously unselected package ruby-net-ssh. 102s Preparing to unpack .../25-ruby-net-ssh_1%3a6.1.0-2ubuntu0.1_all.deb ... 102s Unpacking ruby-net-ssh (1:6.1.0-2ubuntu0.1) ... 102s Selecting previously unselected package ruby-net-scp. 102s Preparing to unpack .../26-ruby-net-scp_3.0.0-1_all.deb ... 102s Unpacking ruby-net-scp (3.0.0-1) ... 102s Selecting previously unselected package ruby-net-sftp. 102s Preparing to unpack .../27-ruby-net-sftp_1%3a3.0.0-1_all.deb ... 102s Unpacking ruby-net-sftp (1:3.0.0-1) ... 102s Selecting previously unselected package ruby-vagrant-cloud. 102s Preparing to unpack .../28-ruby-vagrant-cloud_3.0.5-1_all.deb ... 102s Unpacking ruby-vagrant-cloud (3.0.5-1) ... 102s Selecting previously unselected package unzip. 102s Preparing to unpack .../29-unzip_6.0-26ubuntu3.2_s390x.deb ... 102s Unpacking unzip (6.0-26ubuntu3.2) ... 102s Selecting previously unselected package zip. 102s Preparing to unpack .../30-zip_3.0-12build2_s390x.deb ... 102s Unpacking zip (3.0-12build2) ... 102s Selecting previously unselected package ruby-zip. 102s Preparing to unpack .../31-ruby-zip_2.3.0-2_all.deb ... 102s Unpacking ruby-zip (2.3.0-2) ... 102s Selecting previously unselected package vagrant. 102s Preparing to unpack .../32-vagrant_2.2.19+dfsg-1ubuntu1_all.deb ... 102s Unpacking vagrant (2.2.19+dfsg-1ubuntu1) ... 102s Selecting previously unselected package vagrant-mutate. 102s Preparing to unpack .../33-vagrant-mutate_1.2.0-4.1_all.deb ... 102s Unpacking vagrant-mutate (1.2.0-4.1) ... 102s Setting up libarchive-tools (3.6.0-1ubuntu1.3) ... 102s Setting up ruby-excon (0.88.0-1) ... 102s Setting up unzip (6.0-26ubuntu3.2) ... 102s Setting up rubygems-integration (1.18) ... 102s Setting up ruby-concurrent (1.1.6+dfsg-4) ... 102s Setting up zip (3.0-12build2) ... 102s Setting up ruby-net-telnet (0.1.1-2) ... 102s Setting up ruby-i18n (1.8.11-1) ... 102s Setting up ruby-webrick (1.7.0-3ubuntu0.1) ... 102s Setting up ruby-zip (2.3.0-2) ... 102s Setting up liburing2:s390x (2.1-2build1) ... 102s Setting up ruby-xmlrpc (0.3.2-1ubuntu0.1) ... 102s Setting up qemu-utils (1:6.2+dfsg-2ubuntu6.25) ... 102s Setting up ruby-rubygems (3.3.5-2) ... 102s Setting up ruby3.0 (3.0.2-7ubuntu2.8) ... 102s Setting up ruby (1:3.0~exp1) ... 102s Setting up rake (13.0.6-2) ... 102s Setting up ruby-mime-types-data (3.2015.1120-2) ... 102s Setting up libruby3.0:s390x (3.0.2-7ubuntu2.8) ... 102s Setting up ruby-bcrypt-pbkdf:s390x (1.1.0-2) ... 102s Setting up ruby-ed25519:s390x (1.3.0+ds-1) ... 102s Setting up ruby-erubi (1.9.0-2) ... 102s Setting up ruby-log4r (1.1.10-4.1) ... 102s Setting up ruby-mime-types (3.3.1-1) ... 102s Setting up ruby-ffi:s390x (1.15.4+dfsg-2) ... 102s Setting up ruby-rb-inotify (0.9.10-2) ... 102s Setting up ruby-net-ssh (1:6.1.0-2ubuntu0.1) ... 102s Setting up ruby-vagrant-cloud (3.0.5-1) ... 102s Setting up ruby-childprocess (4.1.0-1) ... 102s Setting up ruby-net-scp (3.0.0-1) ... 102s Setting up ruby-net-sftp (1:3.0.0-1) ... 102s Setting up ruby-listen (3.7.0-1) ... 102s Setting up vagrant (2.2.19+dfsg-1ubuntu1) ... 102s Setting up vagrant-mutate (1.2.0-4.1) ... 102s Processing triggers for libc-bin (2.35-0ubuntu3.9) ... 102s Processing triggers for man-db (2.10.2-1) ... 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'vagrant-mutate'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-packages.all"], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-packages.all /tmp/autopkgtest-work.d87a0xy6/out/virtualbox2libvirt-packages.all 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.8g4Oyi/build.zJY/src'], kind short, sout raw, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.8g4Oyi/build.zJY/src already exists 103s autopkgtest [11:33:40]: test virtualbox2libvirt: [----------------------- 103s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.8g4Oyi/wrapper.sh --debug --artifacts=/tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-artifacts --chdir=/tmp/autopkgtest.8g4Oyi/build.zJY/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.8g4Oyi/virtualbox2libvirt-stderr --stdout=/tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stdout --tmp=/tmp/autopkgtest.8g4Oyi/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=qemu/1:6.2+dfsg-2ubuntu6.25 systemd/249.11-0ubuntu3.14' --make-executable=/tmp/autopkgtest.8g4Oyi/build.zJY/src/debian/tests/virtualbox2libvirt -- /tmp/autopkgtest.8g4Oyi/build.zJY/src/debian/tests/virtualbox2libvirt"], kind test, sout raw, serr raw, env [] 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-artifacts 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: changing to directory: /tmp/autopkgtest.8g4Oyi/build.zJY/src 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: setting environment: LANG=C.UTF-8 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LANGUAGE 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_ADDRESS 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_ALL 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_COLLATE 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_CTYPE 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_IDENTIFICATION 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_MEASUREMENT 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_MESSAGES 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_MONETARY 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_NAME 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_NUMERIC 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_PAPER 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_TELEPHONE 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: unsetting environment: LC_TIME 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: pretending to be a login shell 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: will write standard error to /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stderr 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: will write stdout to /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stdout 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.8g4Oyi/autopkgtest_tmp 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=qemu/1:6.2+dfsg-2ubuntu6.25 systemd/249.11-0ubuntu3.14 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: marking as executable: /tmp/autopkgtest.8g4Oyi/build.zJY/src/debian/tests/virtualbox2libvirt 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: command to run: /tmp/autopkgtest.8g4Oyi/build.zJY/src/debian/tests/virtualbox2libvirt 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: copying /tmp/tmp.yiNLet66P7/out to stdout and file: /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stdout 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: copying /tmp/tmp.yiNLet66P7/err to standard error and file: /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stdout 103s /tmp/autopkgtest.8g4Oyi/wrapper.sh: writing script pid 1442 to /tmp/autopkgtest_script_pid 103s + debian-distro-info --stable 103s + release=bookworm 103s + box=debian/bookworm64 103s + [ -z /tmp/autopkgtest.8g4Oyi/autopkgtest_tmp ] 103s + vagrant plugin list 104s vagrant-mutate (1.2.0, system) 104s + vagrant global-status 104s id name provider state directory 104s -------------------------------------------------------------------- 104s There are no active Vagrant environments on this computer! Or, 104s you haven't destroyed and recreated Vagrant environments that were 104s started with an older version of Vagrant. 104s + vagrant box add --force --provider virtualbox debian/bookworm64 107s ==> box: Box file was not detected as metadata. Adding it directly... 107s A name is required when adding a box file directly. Please pass 107s the `--name` parameter to `vagrant box add`. See 107s `vagrant box add -h` for more help. 107s /tmp/autopkgtest.8g4Oyi/wrapper.sh: checking for leaked background processes... 107s /tmp/autopkgtest.8g4Oyi/wrapper.sh: waiting for tee/cat subprocesses... 107s /tmp/autopkgtest.8g4Oyi/wrapper.sh: cleaning up... 107s /tmp/autopkgtest.8g4Oyi/wrapper.sh: Exit status: 1 107s autopkgtest: DBG: testbed command exited with code 1 107s autopkgtest [11:33:44]: test virtualbox2libvirt: -----------------------] 107s autopkgtest: DBG: testbed executing test finished with exit status 1 107s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stdout /tmp/autopkgtest-work.d87a0xy6/out/virtualbox2libvirt-stdout 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-stderr /tmp/autopkgtest-work.d87a0xy6/out/virtualbox2libvirt-stderr 107s autopkgtest: DBG: got reply from testbed: ok 107s virtualbox2libvirt FAIL non-zero exit status 1 107s autopkgtest [11:33:44]: test virtualbox2libvirt: - - - - - - - - - - results - - - - - - - - - - 107s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-artifacts/ /tmp/autopkgtest-work.d87a0xy6/out/artifacts/ 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.8g4Oyi/virtualbox2libvirt-artifacts', '/tmp/autopkgtest.8g4Oyi/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 108s autopkgtest [11:33:45]: @@@@@@@@@@@@@@@@@@@@ summary 108s virtualbox2libvirt FAIL non-zero exit status 1 108s autopkgtest: DBG: testbed stop 108s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.8g4Oyi 108s autopkgtest: DBG: sending command to testbed: close 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: sending command to testbed: quit 124s nova [W] Using flock in prodstack6-s390x 124s Creating nova instance adt-jammy-s390x-vagrant-mutate-20250210-113156-juju-7f2275-prod-proposed-migration-environment-15-c7580e35-63c2-4871-8dec-d04c44a96228 from image adt/ubuntu-jammy-s390x-server-20250210.img (UUID a52f2df6-6fe2-467b-a8c7-e02aa535f76c)... 124s nova [W] Timed out waiting for 730c02bd-f907-40fc-aec1-83123d2a7430 to get deleted.