0s autopkgtest: DBG: testbed init 0s autopkgtest [04:39:23]: starting date and time: 2025-02-19 04:39:23+0000 0s autopkgtest [04:39:23]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:39:23]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.x100nr3h/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:varnish --apt-upgrade libvmod-redis --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=varnish/7.6.1-2 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-14.secgroup --name adt-plucky-s390x-libvmod-redis-20250219-043923-juju-7f2275-prod-proposed-migration-environment-15-5cf71a58-3c11-4172-a324-19d975f29361 --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 131s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ZbdyzF 131s autopkgtest: DBG: sending command to testbed: print-execute-command 131s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.7q2_deql/runcmd 131s autopkgtest: DBG: sending command to testbed: capabilities 131s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system suggested-normal-user=ubuntu revert root-on-testbed 131s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZbdyzF'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ZbdyzF/wrapper.sh 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZbdyzF/wrapper.sh'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest [04:41:35]: testbed dpkg architecture: s390x 132s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [04:41:36]: testbed apt version: 2.9.29 133s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed has eatmydata 133s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [04:41:36]: @@@@@@@@@@@@@@@@@@@@ test bed setup 133s 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 [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [04:41:36]: testbed release detected to be: None 133s 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 [] 133s autopkgtest: DBG: testbed command exited with code 0 133s 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 [] 133s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: adding APT source: Types: deb deb-src 134s URIs: http://ftpmaster.internal/ubuntu/ 134s Suites: plucky-proposed 134s Components: main restricted universe multiverse 134s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 134s 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 [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 134s Package: * 134s Pin: release plucky-proposed 134s Pin-Priority: 500 134s 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 [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest [04:41:37]: updating testbed package index (apt update) 134s 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'] 134s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 135s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 135s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 135s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 135s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 135s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 135s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 135s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 135s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 135s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 135s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 135s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 135s Fetched 1723 kB in 1s (1338 kB/s) 136s Reading package lists... 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 136s Package: * 136s Pin: release plucky-proposed 136s Pin-Priority: 100 136s 136s Package: src:varnish:any 136s Pin: release plucky-proposed 136s Pin-Priority: 995 136s 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:varnish:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s 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.ZbdyzF/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s 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'] 137s + lsb_release --codename --short 137s + RELEASE=plucky 137s + cat 137s + [ plucky != trusty ] 137s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 137s Reading package lists... 137s Building dependency tree... 137s Reading state information... 137s Calculating upgrade... 137s The following packages were automatically installed and are no longer required: 137s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 137s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 137s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 137s linux-tools-6.11.0-8-generic 137s Use 'sudo apt autoremove' to remove them. 137s The following NEW packages will be installed: 137s libapt-pkg7.0 137s The following packages will be upgraded: 137s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 137s s390-tools-signed 137s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 137s Need to get 8909 kB of archives. 137s After this operation, 3624 kB of additional disk space will be used. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 138s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 138s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 138s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 139s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 139s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 140s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 141s Fetched 8909 kB in 3s (2720 kB/s) 141s Selecting previously unselected package libapt-pkg7.0:s390x. 141s (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 ... 80980 files and directories currently installed.) 141s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 141s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 141s Setting up libapt-pkg7.0:s390x (2.9.30) ... 141s (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 ... 81029 files and directories currently installed.) 141s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 141s Unpacking apt (2.9.30) over (2.9.29) ... 141s Setting up apt (2.9.30) ... 141s (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 ... 81029 files and directories currently installed.) 141s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 141s Unpacking apt-utils (2.9.30) over (2.9.29) ... 141s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 141s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 141s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 141s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 142s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 142s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 142s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 142s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 142s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 142s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 142s Setting up apt-utils (2.9.30) ... 142s Setting up rsyslog (8.2412.0-2ubuntu1) ... 142s info: The user `syslog' is already a member of `adm'. 143s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 143s Setting up dhcpcd-base (1:10.1.0-7) ... 143s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 143s Setting up s390-tools (2.37.0-0ubuntu2) ... 143s Processing triggers for libc-bin (2.40-4ubuntu1) ... 143s Processing triggers for man-db (2.13.0-1) ... 145s Processing triggers for initramfs-tools (0.145ubuntu2) ... 145s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 145s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 149s Using config file '/etc/zipl.conf' 149s Building bootmap in '/boot' 149s Adding IPL section 'ubuntu' (default) 149s Preparing boot device for LD-IPL: vda (0000). 149s Done. 150s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 150s + /usr/lib/apt/apt-helper analyze-pattern ?true 150s + uname -r 150s + sed s/\./\\./g 150s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 150s + apt list ?obsolete 150s + tail -n+2 150s + cut -d/ -f1 150s + grep -v ^linux-.*6\.12\.0-15-generic.* 150s + true 150s + obsolete_pkgs= 150s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 150s Reading package lists... 150s Building dependency tree... 150s Reading state information... 151s The following packages will be REMOVED: 151s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 151s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 151s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 151s linux-tools-6.11.0-8-generic* 151s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 151s After this operation, 167 MB disk space will be freed. 151s (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 ... 81030 files and directories currently installed.) 151s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 151s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 151s Removing libpython3.12t64:s390x (3.12.9-1) ... 151s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 151s Removing libnsl2:s390x (1.3.0-3build3) ... 151s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 151s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 151s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 152s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 152s Processing triggers for libc-bin (2.40-4ubuntu1) ... 152s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 152s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 152s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 152s + grep -q trusty /etc/lsb-release 152s + [ ! -d /usr/share/doc/unattended-upgrades ] 152s + [ ! -d /usr/share/doc/lxd ] 152s + [ ! -d /usr/share/doc/lxd-client ] 152s + [ ! -d /usr/share/doc/snapd ] 152s + type iptables 152s + cat 152s + chmod 755 /etc/rc.local 152s + . /etc/rc.local 152s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 152s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 152s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 152s + uname -m 152s + [ s390x = ppc64le ] 152s + [ -d /run/systemd/system ] 152s + systemd-detect-virt --quiet --vm 152s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 152s + cat 152s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 152s + echo COMPRESS=lz4 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [04:41:55]: upgrading testbed (apt dist-upgrade and autopurge) 152s 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'] 153s Reading package lists... 153s Building dependency tree... 153s Reading state information... 153s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 153s Starting 2 pkgProblemResolver with broken count: 0 153s Done 153s Entering ResolveByKeep 153s 153s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 153s autopkgtest: DBG: testbed command exited with code 0 153s 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'] 154s Reading package lists... 154s Building dependency tree... 154s Reading state information... 154s Starting pkgProblemResolver with broken count: 0 154s Starting 2 pkgProblemResolver with broken count: 0 154s Done 155s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 155s autopkgtest: DBG: testbed command exited with code 0 155s 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.ZbdyzF/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 1 155s autopkgtest [04:41:58]: rebooting testbed after setup commands that affected boot 155s autopkgtest: DBG: sending command to testbed: reboot 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 174s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZbdyzF'], kind short, sout raw, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ZbdyzF/autopkgtest-reboot 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZbdyzF'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ZbdyzF/autopkgtest-reboot-prepare 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest [04:42:18]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 175s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ZbdyzF/testbed-packages"], kind short, sout raw, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/testbed-packages /tmp/autopkgtest-work.x100nr3h/out/testbed-packages 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 176s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZbdyzF'], kind short, sout raw, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ZbdyzF/autopkgtest-reboot 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZbdyzF'], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ZbdyzF/autopkgtest-reboot-prepare 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZbdyzF/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest: DBG: Binaries: initialising 178s autopkgtest [04:42:21]: @@@@@@@@@@@@@@@@@@@@ apt-source libvmod-redis 178s autopkgtest: DBG: blame += libvmod-redis 178s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 178s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'libvmod-redis'], kind short, sout pipe, serr pipe, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^varnish-redis$'], kind short, sout pipe, serr raw, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'varnish-redis=19.0-1'], kind short, sout pipe, serr raw, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: install_deps: deps_new=[] 179s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s 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.ZbdyzF/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source libvmod-redis=19.0-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 libvmod-redis_*.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=varnish/7.6.1-2'] 179s + cd / 179s + mktemp -d /tmp/autopkgtest.ZbdyzF/build.XXX 179s + builddir=/tmp/autopkgtest.ZbdyzF/build.SOT 179s + cd /tmp/autopkgtest.ZbdyzF/build.SOT 179s + apt-get source -d -q --only-source libvmod-redis=19.0-1 180s + OUT=Reading package lists... 180s NOTICE: 'libvmod-redis' packaging is maintained in the 'Git' version control system at: 180s https://salsa.debian.org/varnish-team/libvmod-redis.git 180s Please use: 180s git clone https://salsa.debian.org/varnish-team/libvmod-redis.git 180s to retrieve the latest (possibly unreleased) updates to the package. 180s Need to get 228 kB of source archives. 180s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (dsc) [1800 B] 180s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (tar) [222 kB] 180s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (diff) [4924 B] 180s Fetched 228 kB in 1s (358 kB/s) 180s Download complete and in download only mode 180s + [ -n ] 180s + grep ^Get: 180s + echo Reading package lists... 180s NOTICE: 'libvmod-redis' packaging is maintained in the 'Git' version control system at: 180s https://salsa.debian.org/varnish-team/libvmod-redis.git 180s Please use: 180s git clone https://salsa.debian.org/varnish-team/libvmod-redis.git 180s to retrieve the latest (possibly unreleased) updates to the package. 180s Need to get 228 kB of source archives. 180s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (dsc) [1800 B] 180s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (tar) [222 kB] 180s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (diff) [4924 B] 180s Fetched 228 kB in 1s (358 kB/s) 180s Download complete and in download only mode 180s Get:1 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (dsc) [1800 B] 180s Get:2 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (tar) [222 kB] 180s Get:3 http://ftpmaster.internal/ubuntu plucky/universe libvmod-redis 19.0-1 (diff) [4924 B] 180s + dpkg-source -x libvmod-redis_19.0-1.dsc src 180s gpgv: Signature made Mon Jul 8 09:19:13 2024 UTC 180s gpgv: using RSA key A954A54575BCED49240A725CFFD3C88B997DD16A 180s gpgv: Can't check signature: No public key 180s dpkg-source: warning: cannot verify inline signature for ./libvmod-redis_19.0-1.dsc: no acceptable signature found 180s + chmod -R a+rX . 180s + cd src/. 180s + pwd 180s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest [04:42:23]: testing package libvmod-redis version 19.0-1 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/build.SOT/src/debian/ /tmp/autopkgtest-work.x100nr3h/out/pkg/debian/ 180s autopkgtest: DBG: got reply from testbed: ok 180s autopkgtest: DBG: processing dependency ruby-serverspec 180s autopkgtest: DBG: processing dependency varnish 180s autopkgtest: DBG: processing dependency @ 180s autopkgtest: DBG: synthesised dependency varnish-redis 180s autopkgtest: DBG: Test defined: name serverspec path debian/tests/serverspec command "None" restrictions ['isolation-container', 'needs-root'] features [] depends ['ruby-serverspec', 'varnish', 'varnish-redis'] 180s autopkgtest [04:42:23]: build not needed 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/build.SOT/src/ /tmp/autopkgtest-work.x100nr3h/out/tests-tree/ 180s autopkgtest: DBG: got reply from testbed: ok 180s autopkgtest: DBG: processing dependency ruby-serverspec 180s autopkgtest: DBG: processing dependency varnish 180s autopkgtest: DBG: processing dependency @ 180s autopkgtest: DBG: synthesised dependency varnish-redis 180s autopkgtest: DBG: Test defined: name serverspec path debian/tests/serverspec command "None" restrictions ['isolation-container', 'needs-root'] features [] depends ['ruby-serverspec', 'varnish', 'varnish-redis'] 180s autopkgtest [04:42:23]: test serverspec: preparing testbed 180s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['ruby-serverspec', 'varnish', 'varnish-redis'] 180s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 180s autopkgtest: DBG: install_deps: deps_new=['ruby-serverspec', 'varnish', 'varnish-redis'] 180s autopkgtest: DBG: install-deps: satisfying ruby-serverspec, varnish, varnish-redis 180s autopkgtest: DBG: can use apt-get on testbed: True 180s 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-serverspec, varnish, varnish-redis'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 181s Reading package lists... 181s Building dependency tree... 181s Reading state information... 181s Starting pkgProblemResolver with broken count: 0 181s Starting 2 pkgProblemResolver with broken count: 0 181s Done 181s The following NEW packages will be installed: 181s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu gcc-14-s390x-linux-gnu 181s gcc-s390x-linux-gnu libasan8 libcc1-0 libev4t64 libgcc-14-dev libgomp1 181s libhiredis1.1.0 libisl23 libitm1 libjemalloc2 libmpc3 libruby libruby3.3 181s libubsan1 libvarnishapi3 rake ruby ruby-bcrypt-pbkdf ruby-did-you-mean 181s ruby-diff-lcs ruby-ed25519 ruby-minitest ruby-multi-json ruby-net-scp 181s ruby-net-ssh ruby-net-telnet ruby-power-assert ruby-rspec ruby-rspec-core 181s ruby-rspec-expectations ruby-rspec-its ruby-rspec-mocks ruby-rspec-support 181s ruby-rubygems ruby-sdbm ruby-serverspec ruby-specinfra ruby-test-unit 181s ruby-webrick ruby-xmlrpc ruby3.3 rubygems-integration varnish varnish-redis 181s 0 upgraded, 47 newly installed, 0 to remove and 0 not upgraded. 181s Need to get 43.3 MB of archives. 181s After this operation, 143 MB of additional disk space will be used. 181s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 182s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 182s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 184s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 184s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 184s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 184s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 184s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 185s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 185s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 186s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 189s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 189s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x libev4t64 s390x 1:4.33-2.1build1 [32.0 kB] 189s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x libhiredis1.1.0 s390x 1.2.0-6ubuntu3 [42.7 kB] 189s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x libjemalloc2 s390x 5.3.0-2build1 [204 kB] 189s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x rubygems-integration all 1.18ubuntu1 [5528 B] 189s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x ruby3.3 s390x 3.3.6-1.1ubuntu1 [49.1 kB] 189s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-rubygems all 3.4.20-1 [238 kB] 190s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x ruby s390x 1:3.3~ubuntu3 [3618 B] 190s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x rake all 13.2.1-1 [45.8 kB] 190s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-did-you-mean all 1.6.3-2 [14.8 kB] 190s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-minitest all 5.22.3-1ubuntu1 [48.0 kB] 190s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-net-telnet all 0.2.0-1 [13.3 kB] 190s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-power-assert all 2.0.3-1 [12.0 kB] 190s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-test-unit all 3.6.2-1 [67.0 kB] 190s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-webrick all 1.8.1-1ubuntu1 [52.6 kB] 190s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-xmlrpc all 0.3.3-2 [24.8 kB] 190s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-sdbm s390x 1.0.0-5build5 [16.3 kB] 190s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libruby3.3 s390x 3.3.6-1.1ubuntu1 [5869 kB] 191s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libruby s390x 1:3.3~ubuntu3 [5038 B] 191s Get:31 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libvarnishapi3 s390x 7.6.1-2 [106 kB] 191s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-bcrypt-pbkdf s390x 1.1.1-1build1 [20.2 kB] 191s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-diff-lcs all 1.5.1-1 [22.8 kB] 191s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-ed25519 s390x 1.3.0+ds-1build5 [102 kB] 191s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-multi-json all 1.14.1-2 [15.7 kB] 191s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-net-ssh all 1:7.3.0-1 [102 kB] 191s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-net-scp all 4.1.0-1 [16.3 kB] 191s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-rspec-support all 3.13.0c0e0m0s1-2 [29.2 kB] 191s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-rspec-core all 3.13.0c0e0m0s1-2 [164 kB] 191s Get:40 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-rspec-expectations all 3.13.0c0e0m0s1-2 [89.8 kB] 191s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-rspec-mocks all 3.13.0c0e0m0s1-2 [81.0 kB] 191s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-rspec all 3.13.0c0e0m0s1-2 [3500 B] 191s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-rspec-its all 1.3.0-1 [6212 B] 191s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-specinfra all 2.89.0-1 [63.0 kB] 191s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-serverspec all 2.42.3-2 [20.4 kB] 191s Get:46 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x varnish s390x 7.6.1-2 [1093 kB] 191s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x varnish-redis s390x 19.0-1 [65.3 kB] 191s Fetched 43.3 MB in 10s (4398 kB/s) 191s Selecting previously unselected package libisl23:s390x. 191s (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 ... 55928 files and directories currently installed.) 191s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 191s Unpacking libisl23:s390x (0.27-1) ... 191s Selecting previously unselected package libmpc3:s390x. 191s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 191s Unpacking libmpc3:s390x (1.3.1-1build2) ... 191s Selecting previously unselected package cpp-14-s390x-linux-gnu. 191s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 191s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 192s Selecting previously unselected package cpp-s390x-linux-gnu. 192s Preparing to unpack .../03-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 192s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 192s Selecting previously unselected package libcc1-0:s390x. 192s Preparing to unpack .../04-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 192s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 192s Selecting previously unselected package libgomp1:s390x. 192s Preparing to unpack .../05-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 192s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 192s Selecting previously unselected package libitm1:s390x. 192s Preparing to unpack .../06-libitm1_15-20250213-1ubuntu1_s390x.deb ... 192s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 192s Selecting previously unselected package libasan8:s390x. 192s Preparing to unpack .../07-libasan8_15-20250213-1ubuntu1_s390x.deb ... 192s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 192s Selecting previously unselected package libubsan1:s390x. 192s Preparing to unpack .../08-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 192s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 192s Selecting previously unselected package libgcc-14-dev:s390x. 192s Preparing to unpack .../09-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 192s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 192s Selecting previously unselected package gcc-14-s390x-linux-gnu. 192s Preparing to unpack .../10-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 192s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 192s Selecting previously unselected package gcc-s390x-linux-gnu. 192s Preparing to unpack .../11-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 192s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 192s Selecting previously unselected package libev4t64:s390x. 192s Preparing to unpack .../12-libev4t64_1%3a4.33-2.1build1_s390x.deb ... 192s Unpacking libev4t64:s390x (1:4.33-2.1build1) ... 192s Selecting previously unselected package libhiredis1.1.0:s390x. 192s Preparing to unpack .../13-libhiredis1.1.0_1.2.0-6ubuntu3_s390x.deb ... 192s Unpacking libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 192s Selecting previously unselected package libjemalloc2:s390x. 192s Preparing to unpack .../14-libjemalloc2_5.3.0-2build1_s390x.deb ... 192s Unpacking libjemalloc2:s390x (5.3.0-2build1) ... 192s Selecting previously unselected package rubygems-integration. 192s Preparing to unpack .../15-rubygems-integration_1.18ubuntu1_all.deb ... 192s Unpacking rubygems-integration (1.18ubuntu1) ... 192s Selecting previously unselected package ruby3.3. 192s Preparing to unpack .../16-ruby3.3_3.3.6-1.1ubuntu1_s390x.deb ... 192s Unpacking ruby3.3 (3.3.6-1.1ubuntu1) ... 192s Selecting previously unselected package ruby-rubygems. 192s Preparing to unpack .../17-ruby-rubygems_3.4.20-1_all.deb ... 192s Unpacking ruby-rubygems (3.4.20-1) ... 192s Selecting previously unselected package ruby. 192s Preparing to unpack .../18-ruby_1%3a3.3~ubuntu3_s390x.deb ... 192s Unpacking ruby (1:3.3~ubuntu3) ... 192s Selecting previously unselected package rake. 192s Preparing to unpack .../19-rake_13.2.1-1_all.deb ... 192s Unpacking rake (13.2.1-1) ... 192s Selecting previously unselected package ruby-did-you-mean. 192s Preparing to unpack .../20-ruby-did-you-mean_1.6.3-2_all.deb ... 192s Unpacking ruby-did-you-mean (1.6.3-2) ... 192s Selecting previously unselected package ruby-minitest. 192s Preparing to unpack .../21-ruby-minitest_5.22.3-1ubuntu1_all.deb ... 192s Unpacking ruby-minitest (5.22.3-1ubuntu1) ... 192s Selecting previously unselected package ruby-net-telnet. 192s Preparing to unpack .../22-ruby-net-telnet_0.2.0-1_all.deb ... 192s Unpacking ruby-net-telnet (0.2.0-1) ... 192s Selecting previously unselected package ruby-power-assert. 192s Preparing to unpack .../23-ruby-power-assert_2.0.3-1_all.deb ... 192s Unpacking ruby-power-assert (2.0.3-1) ... 192s Selecting previously unselected package ruby-test-unit. 192s Preparing to unpack .../24-ruby-test-unit_3.6.2-1_all.deb ... 192s Unpacking ruby-test-unit (3.6.2-1) ... 192s Selecting previously unselected package ruby-webrick. 192s Preparing to unpack .../25-ruby-webrick_1.8.1-1ubuntu1_all.deb ... 192s Unpacking ruby-webrick (1.8.1-1ubuntu1) ... 192s Selecting previously unselected package ruby-xmlrpc. 192s Preparing to unpack .../26-ruby-xmlrpc_0.3.3-2_all.deb ... 192s Unpacking ruby-xmlrpc (0.3.3-2) ... 192s Selecting previously unselected package ruby-sdbm:s390x. 192s Preparing to unpack .../27-ruby-sdbm_1.0.0-5build5_s390x.deb ... 192s Unpacking ruby-sdbm:s390x (1.0.0-5build5) ... 192s Selecting previously unselected package libruby3.3:s390x. 192s Preparing to unpack .../28-libruby3.3_3.3.6-1.1ubuntu1_s390x.deb ... 192s Unpacking libruby3.3:s390x (3.3.6-1.1ubuntu1) ... 192s Selecting previously unselected package libruby:s390x. 192s Preparing to unpack .../29-libruby_1%3a3.3~ubuntu3_s390x.deb ... 192s Unpacking libruby:s390x (1:3.3~ubuntu3) ... 192s Selecting previously unselected package libvarnishapi3:s390x. 192s Preparing to unpack .../30-libvarnishapi3_7.6.1-2_s390x.deb ... 192s Unpacking libvarnishapi3:s390x (7.6.1-2) ... 192s Selecting previously unselected package ruby-bcrypt-pbkdf:s390x. 192s Preparing to unpack .../31-ruby-bcrypt-pbkdf_1.1.1-1build1_s390x.deb ... 192s Unpacking ruby-bcrypt-pbkdf:s390x (1.1.1-1build1) ... 192s Selecting previously unselected package ruby-diff-lcs. 192s Preparing to unpack .../32-ruby-diff-lcs_1.5.1-1_all.deb ... 192s Unpacking ruby-diff-lcs (1.5.1-1) ... 192s Selecting previously unselected package ruby-ed25519:s390x. 192s Preparing to unpack .../33-ruby-ed25519_1.3.0+ds-1build5_s390x.deb ... 192s Unpacking ruby-ed25519:s390x (1.3.0+ds-1build5) ... 192s Selecting previously unselected package ruby-multi-json. 192s Preparing to unpack .../34-ruby-multi-json_1.14.1-2_all.deb ... 192s Unpacking ruby-multi-json (1.14.1-2) ... 193s Selecting previously unselected package ruby-net-ssh. 193s Preparing to unpack .../35-ruby-net-ssh_1%3a7.3.0-1_all.deb ... 193s Unpacking ruby-net-ssh (1:7.3.0-1) ... 193s Selecting previously unselected package ruby-net-scp. 193s Preparing to unpack .../36-ruby-net-scp_4.1.0-1_all.deb ... 193s Unpacking ruby-net-scp (4.1.0-1) ... 193s Selecting previously unselected package ruby-rspec-support. 193s Preparing to unpack .../37-ruby-rspec-support_3.13.0c0e0m0s1-2_all.deb ... 193s Unpacking ruby-rspec-support (3.13.0c0e0m0s1-2) ... 193s Selecting previously unselected package ruby-rspec-core. 193s Preparing to unpack .../38-ruby-rspec-core_3.13.0c0e0m0s1-2_all.deb ... 193s Unpacking ruby-rspec-core (3.13.0c0e0m0s1-2) ... 193s Selecting previously unselected package ruby-rspec-expectations. 193s Preparing to unpack .../39-ruby-rspec-expectations_3.13.0c0e0m0s1-2_all.deb ... 193s Unpacking ruby-rspec-expectations (3.13.0c0e0m0s1-2) ... 193s Selecting previously unselected package ruby-rspec-mocks. 193s Preparing to unpack .../40-ruby-rspec-mocks_3.13.0c0e0m0s1-2_all.deb ... 193s Unpacking ruby-rspec-mocks (3.13.0c0e0m0s1-2) ... 193s Selecting previously unselected package ruby-rspec. 193s Preparing to unpack .../41-ruby-rspec_3.13.0c0e0m0s1-2_all.deb ... 193s Unpacking ruby-rspec (3.13.0c0e0m0s1-2) ... 193s Selecting previously unselected package ruby-rspec-its. 193s Preparing to unpack .../42-ruby-rspec-its_1.3.0-1_all.deb ... 193s Unpacking ruby-rspec-its (1.3.0-1) ... 193s Selecting previously unselected package ruby-specinfra. 193s Preparing to unpack .../43-ruby-specinfra_2.89.0-1_all.deb ... 193s Unpacking ruby-specinfra (2.89.0-1) ... 193s Selecting previously unselected package ruby-serverspec. 193s Preparing to unpack .../44-ruby-serverspec_2.42.3-2_all.deb ... 193s Unpacking ruby-serverspec (2.42.3-2) ... 193s Selecting previously unselected package varnish. 193s Preparing to unpack .../45-varnish_7.6.1-2_s390x.deb ... 193s Unpacking varnish (7.6.1-2) ... 193s Selecting previously unselected package varnish-redis:s390x. 193s Preparing to unpack .../46-varnish-redis_19.0-1_s390x.deb ... 193s Unpacking varnish-redis:s390x (19.0-1) ... 193s Setting up libev4t64:s390x (1:4.33-2.1build1) ... 193s Setting up ruby-power-assert (2.0.3-1) ... 193s Setting up libvarnishapi3:s390x (7.6.1-2) ... 193s Setting up rubygems-integration (1.18ubuntu1) ... 193s Setting up libjemalloc2:s390x (5.3.0-2build1) ... 193s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 193s Setting up ruby-minitest (5.22.3-1ubuntu1) ... 193s Setting up ruby-test-unit (3.6.2-1) ... 193s Setting up ruby-net-telnet (0.2.0-1) ... 193s Setting up libmpc3:s390x (1.3.1-1build2) ... 193s Setting up ruby-rspec-support (3.13.0c0e0m0s1-2) ... 193s Setting up ruby-webrick (1.8.1-1ubuntu1) ... 193s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 193s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 193s Setting up ruby-did-you-mean (1.6.3-2) ... 193s Setting up libisl23:s390x (0.27-1) ... 193s Setting up libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 193s Setting up ruby-xmlrpc (0.3.3-2) ... 193s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 193s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 193s Setting up varnish-redis:s390x (19.0-1) ... 193s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 193s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 193s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 193s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 193s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 193s Setting up varnish (7.6.1-2) ... 193s Creating group 'varnish' with GID 988. 193s Creating user 'varnish' (Varnish Cache) with UID 988 and GID 988. 193s Creating user 'vcache' (Varnish Cache daemon) with UID 987 and GID 988. 193s Creating user 'varnishlog' (Varnish Cache logs) with UID 986 and GID 988. 193s Created symlink '/etc/systemd/system/multi-user.target.wants/varnish.service' → '/usr/lib/systemd/system/varnish.service'. 193s varnishncsa.service is a disabled or a static unit, not starting it. 193s Setting up libruby:s390x (1:3.3~ubuntu3) ... 193s Setting up ruby-rubygems (3.4.20-1) ... 193s Setting up rake (13.2.1-1) ... 193s Setting up ruby-sdbm:s390x (1.0.0-5build5) ... 193s Setting up libruby3.3:s390x (3.3.6-1.1ubuntu1) ... 193s Setting up ruby-ed25519:s390x (1.3.0+ds-1build5) ... 193s Setting up ruby3.3 (3.3.6-1.1ubuntu1) ... 194s Setting up ruby-bcrypt-pbkdf:s390x (1.1.1-1build1) ... 194s Setting up ruby-net-ssh (1:7.3.0-1) ... 194s Setting up ruby (1:3.3~ubuntu3) ... 194s Setting up ruby-rspec-core (3.13.0c0e0m0s1-2) ... 194s Setting up ruby-net-scp (4.1.0-1) ... 194s Setting up ruby-diff-lcs (1.5.1-1) ... 194s Setting up ruby-multi-json (1.14.1-2) ... 194s Setting up ruby-specinfra (2.89.0-1) ... 194s Setting up ruby-rspec-expectations (3.13.0c0e0m0s1-2) ... 194s Setting up ruby-rspec-mocks (3.13.0c0e0m0s1-2) ... 194s Setting up ruby-rspec-its (1.3.0-1) ... 194s Setting up ruby-rspec (3.13.0c0e0m0s1-2) ... 194s Setting up ruby-serverspec (2.42.3-2) ... 194s Processing triggers for libc-bin (2.40-4ubuntu1) ... 194s Processing triggers for man-db (2.13.0-1) ... 194s autopkgtest: DBG: testbed command exited with code 0 194s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'varnish-redis'], kind short, sout pipe, serr pipe, env [] 194s autopkgtest: DBG: testbed command exited with code 0 194s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ZbdyzF/serverspec-packages.all"], kind short, sout raw, serr pipe, env [] 195s autopkgtest: DBG: testbed command exited with code 0 195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/serverspec-packages.all /tmp/autopkgtest-work.x100nr3h/out/serverspec-packages.all 195s autopkgtest: DBG: got reply from testbed: ok 195s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ZbdyzF/build.SOT/src'], kind short, sout raw, serr raw, env [] 195s autopkgtest: DBG: testbed command exited with code 0 195s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ZbdyzF/build.SOT/src already exists 195s autopkgtest [04:42:38]: test serverspec: [----------------------- 195s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.ZbdyzF/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ZbdyzF/serverspec-artifacts --chdir=/tmp/autopkgtest.ZbdyzF/build.SOT/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.ZbdyzF/serverspec-stderr --stdout=/tmp/autopkgtest.ZbdyzF/serverspec-stdout --tmp=/tmp/autopkgtest.ZbdyzF/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=varnish/7.6.1-2 --make-executable=/tmp/autopkgtest.ZbdyzF/build.SOT/src/debian/tests/serverspec -- /tmp/autopkgtest.ZbdyzF/build.SOT/src/debian/tests/serverspec'], kind test, sout raw, serr raw, env [] 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ZbdyzF/serverspec-artifacts 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: changing to directory: /tmp/autopkgtest.ZbdyzF/build.SOT/src 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: LANG=C.UTF-8 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LANGUAGE 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_ADDRESS 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_ALL 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_COLLATE 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_CTYPE 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_IDENTIFICATION 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_MEASUREMENT 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_MESSAGES 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_MONETARY 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_NAME 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_NUMERIC 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_PAPER 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_TELEPHONE 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: unsetting environment: LC_TIME 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: pretending to be a login shell 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: will write standard error to /tmp/autopkgtest.ZbdyzF/serverspec-stderr 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: will write stdout to /tmp/autopkgtest.ZbdyzF/serverspec-stdout 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ZbdyzF/autopkgtest_tmp 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=varnish/7.6.1-2 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: marking as executable: /tmp/autopkgtest.ZbdyzF/build.SOT/src/debian/tests/serverspec 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: command to run: /tmp/autopkgtest.ZbdyzF/build.SOT/src/debian/tests/serverspec 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: copying /tmp/tmp.jX15rr8cMl/out to stdout and file: /tmp/autopkgtest.ZbdyzF/serverspec-stdout 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: copying /tmp/tmp.jX15rr8cMl/err to standard error and file: /tmp/autopkgtest.ZbdyzF/serverspec-stdout 195s /tmp/autopkgtest.ZbdyzF/wrapper.sh: writing script pid 2083 to /tmp/autopkgtest_script_pid 196s ........FFFFFF 196s 196s Failures: 196s 196s 1) Command "varnishadm vcl.load test /etc/varnish/test.vcl" exit_status is expected to eq 0 196s Failure/Error: its(:exit_status) { should eq 0 } 196s 196s expected: 0 196s got: 1 196s 196s (compared using ==) 196s /bin/sh -c varnishadm\ vcl.load\ test\ /etc/varnish/test.vcl 196s Message from VCC-compiler: 196s Incompatible VMOD redis 196s File name: /usr/lib/s390x-linux-gnu/varnish/vmods/libvmod_redis.so 196s ABI mismatch, expected , got 196s ('/etc/varnish/test.vcl' Line 4 Pos 8) 196s import redis; 196s -------#####- 196s 196s Running VCC-compiler failed, exited with 2 196s VCL compilation failed 196s 196s # ./spec/varnish-redis/use_spec.rb:8:in `block (2 levels) in ' 196s 196s 2) Command "varnishadm vcl.load test /etc/varnish/test.vcl" stdout is expected to eq "\n" 196s Failure/Error: its(:stdout) { should eq "\n" } 196s 196s expected: "\n" 196s got: "Message from VCC-compiler:\nIncompatible VMOD redis\n\tFile name: /usr/lib/s390x-linux-gnu/varnish/v...mport redis;\n-------#####-\n\nRunning VCC-compiler failed, exited with 2\nVCL compilation failed\n" 196s 196s (compared using ==) 196s 196s Diff: 196s @@ -1,10 +1,20 @@ 196s +Message from VCC-compiler: 196s +Incompatible VMOD redis 196s + File name: /usr/lib/s390x-linux-gnu/varnish/vmods/libvmod_redis.so 196s + ABI mismatch, expected , got 196s +('/etc/varnish/test.vcl' Line 4 Pos 8) 196s +import redis; 196s +-------#####- 196s + 196s +Running VCC-compiler failed, exited with 2 196s +VCL compilation failed 196s 196s # ./spec/varnish-redis/use_spec.rb:9:in `block (2 levels) in ' 196s 196s 3) Command "varnishadm vcl.load test /etc/varnish/test.vcl" stderr is expected to eq "" 196s Failure/Error: its(:stderr) { should eq "" } 196s 196s expected: "" 196s got: "Command failed with error code 106\n" 196s 196s (compared using ==) 196s 196s Diff: 196s @@ -1 +1,2 @@ 196s +Command failed with error code 106 196s 196s # ./spec/varnish-redis/use_spec.rb:10:in `block (2 levels) in ' 196s 196s 4) Command "varnishadm vcl.use test" exit_status is expected to eq 0 196s Failure/Error: its(:exit_status) { should eq 0 } 196s 196s expected: 0 196s got: 1 196s 196s (compared using ==) 196s /bin/sh -c varnishadm\ vcl.use\ test 196s No VCL named test known 196s 196s 196s # ./spec/varnish-redis/use_spec.rb:14:in `block (2 levels) in ' 196s 196s 5) Command "varnishadm vcl.use test" stdout is expected to match /VCL 'test' now active/ 196s Failure/Error: its(:stdout) { should match(/VCL 'test' now active/) } 196s expected "No VCL named test known\n\n" to match /VCL 'test' now active/ 196s Diff: 196s @@ -1 +1 @@ 196s -/VCL 'test' now active/ 196s +No VCL named test known 196s 196s # ./spec/varnish-redis/use_spec.rb:15:in `block (2 levels) in ' 196s 196s 6) Command "varnishadm vcl.use test" stderr is expected to eq "" 196s Failure/Error: its(:stderr) { should eq "" } 196s 196s expected: "" 196s got: "Command failed with error code 106\n" 196s 196s (compared using ==) 196s 196s Diff: 196s @@ -1 +1,2 @@ 196s +Command failed with error code 106 196s 196s # ./spec/varnish-redis/use_spec.rb:16:in `block (2 levels) in ' 196s 196s Finished in 0.16845 seconds (files took 0.25485 seconds to load) 196s 14 examples, 6 failures 196s 196s Failed examples: 196s 196s rspec ./spec/varnish-redis/use_spec.rb:8 # Command "varnishadm vcl.load test /etc/varnish/test.vcl" exit_status is expected to eq 0 196s rspec ./spec/varnish-redis/use_spec.rb:9 # Command "varnishadm vcl.load test /etc/varnish/test.vcl" stdout is expected to eq "\n" 196s rspec ./spec/varnish-redis/use_spec.rb:10 # Command "varnishadm vcl.load test /etc/varnish/test.vcl" stderr is expected to eq "" 196s rspec ./spec/varnish-redis/use_spec.rb:14 # Command "varnishadm vcl.use test" exit_status is expected to eq 0 196s rspec ./spec/varnish-redis/use_spec.rb:15 # Command "varnishadm vcl.use test" stdout is expected to match /VCL 'test' now active/ 196s rspec ./spec/varnish-redis/use_spec.rb:16 # Command "varnishadm vcl.use test" stderr is expected to eq "" 196s 196s /tmp/autopkgtest.ZbdyzF/wrapper.sh: checking for leaked background processes... 196s /tmp/autopkgtest.ZbdyzF/wrapper.sh: waiting for tee/cat subprocesses... 196s /tmp/autopkgtest.ZbdyzF/wrapper.sh: cleaning up... 196s /tmp/autopkgtest.ZbdyzF/wrapper.sh: Exit status: 1 196s autopkgtest: DBG: testbed command exited with code 1 196s autopkgtest [04:42:39]: test serverspec: -----------------------] 196s autopkgtest: DBG: testbed executing test finished with exit status 1 196s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/serverspec-stdout /tmp/autopkgtest-work.x100nr3h/out/serverspec-stdout 196s autopkgtest: DBG: got reply from testbed: ok 196s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/serverspec-stderr /tmp/autopkgtest-work.x100nr3h/out/serverspec-stderr 196s autopkgtest: DBG: got reply from testbed: ok 196s serverspec FAIL non-zero exit status 1 196s autopkgtest [04:42:39]: test serverspec: - - - - - - - - - - results - - - - - - - - - - 196s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZbdyzF/serverspec-artifacts/ /tmp/autopkgtest-work.x100nr3h/out/artifacts/ 197s autopkgtest: DBG: got reply from testbed: ok 197s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ZbdyzF/serverspec-artifacts', '/tmp/autopkgtest.ZbdyzF/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 197s autopkgtest [04:42:40]: @@@@@@@@@@@@@@@@@@@@ summary 197s serverspec FAIL non-zero exit status 1 197s autopkgtest: DBG: testbed stop 197s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ZbdyzF 197s autopkgtest: DBG: sending command to testbed: close 213s autopkgtest: DBG: got reply from testbed: ok 213s autopkgtest: DBG: sending command to testbed: quit 213s nova [W] Using flock in prodstack6-s390x 213s Creating nova instance adt-plucky-s390x-libvmod-redis-20250219-043923-juju-7f2275-prod-proposed-migration-environment-15-5cf71a58-3c11-4172-a324-19d975f29361 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 213s nova [W] Timed out waiting for 68e9003a-4461-4a65-a520-0574fe50f356 to get deleted.