0s autopkgtest: DBG: testbed init 0s autopkgtest [03:38:25]: starting date and time: 2025-02-16 03:38:25+0000 0s autopkgtest [03:38:25]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [03:38:25]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.leklsu3_/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc --apt-upgrade proxytunnel --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-18.secgroup --name adt-plucky-s390x-proxytunnel-20250216-033825-juju-7f2275-prod-proposed-migration-environment-15-544834da-5609-4fad-8afd-6733b1b76fc5 --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 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.zA9YxX 108s autopkgtest: DBG: sending command to testbed: print-execute-command 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.5dja9tk6/runcmd 108s autopkgtest: DBG: sending command to testbed: capabilities 108s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine revert-full-system suggested-normal-user=ubuntu reboot root-on-testbed 108s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 108s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zA9YxX'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.zA9YxX/wrapper.sh 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zA9YxX/wrapper.sh'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [03:40:13]: testbed dpkg architecture: s390x 108s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [03:40:13]: testbed apt version: 2.9.28 108s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed has eatmydata 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [03:40:14]: @@@@@@@@@@@@@@@@@@@@ test bed setup 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [03:40:14]: testbed release detected to be: None 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: adding APT source: Types: deb deb-src 109s URIs: http://ftpmaster.internal/ubuntu/ 109s Suites: plucky-proposed 109s Components: main restricted universe multiverse 109s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 109s Package: * 109s Pin: release plucky-proposed 109s Pin-Priority: 500 109s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [03:40:15]: updating testbed package index (apt update) 110s 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'] 110s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 110s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 110s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 110s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 110s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 110s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [810 kB] 111s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 111s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 111s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 111s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 111s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [855 kB] 111s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 111s Fetched 2035 kB in 1s (2017 kB/s) 111s Reading package lists... 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 111s Package: * 111s Pin: release plucky-proposed 111s Pin-Priority: 100 111s 111s Package: src:glibc:any 111s Pin: release plucky-proposed 111s Pin-Priority: 995 111s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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.zA9YxX/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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'] 112s + lsb_release --codename --short 112s + RELEASE=plucky 112s + cat 112s + [ plucky != trusty ] 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s Calculating upgrade... 112s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 112s + /usr/lib/apt/apt-helper analyze-pattern ?true 112s + uname -r 112s + sed s/\./\\./g 112s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 112s + apt list ?obsolete 112s + + grep -v ^linux-.*6\.12\.0-15-generic.* 112s tail -n+2 112s + cut -d/ -f1 113s + obsolete_pkgs=linux-image-6.11.0-8-generic 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s The following packages will be REMOVED: 113s linux-image-6.11.0-8-generic* 113s 0 upgraded, 0 newly installed, 1 to remove and 5 not upgraded. 113s After this operation, 10.5 MB disk space will be freed. 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80973 files and directories currently installed.) 113s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 113s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-15-generic 113s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-15-generic 113s /etc/kernel/postrm.d/initramfs-tools: 113s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 113s /etc/kernel/postrm.d/zz-zipl: 113s Using config file '/etc/zipl.conf' 113s Building bootmap in '/boot' 113s Adding IPL section 'ubuntu' (default) 113s Preparing boot device for LD-IPL: vda (0000). 113s Done. 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 113s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 113s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 114s + grep -q trusty /etc/lsb-release 114s + [ ! -d /usr/share/doc/unattended-upgrades ] 114s + [ ! -d /usr/share/doc/lxd ] 114s + [ ! -d /usr/share/doc/lxd-client ] 114s + [ ! -d /usr/share/doc/snapd ] 114s + type iptables 114s + cat 114s + chmod 755 /etc/rc.local 114s + . /etc/rc.local 114s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 114s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 114s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 114s + uname -m 114s + [ s390x = ppc64le ] 114s + [ -d /run/systemd/system ] 114s + systemd-detect-virt --quiet --vm 114s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 114s + cat 114s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 114s + echo COMPRESS=lz4 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [03:40:19]: upgrading testbed (apt dist-upgrade and autopurge) 114s 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'] 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 114s Starting 2 pkgProblemResolver with broken count: 0 114s Done 114s Entering ResolveByKeep 115s 115s The following packages were automatically installed and are no longer required: 115s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 115s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 115s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 115s linux-tools-6.11.0-8-generic 115s Use 'sudo apt autoremove' to remove them. 115s The following packages will be upgraded: 115s libc-bin libc-dev-bin libc6 libc6-dev locales 115s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s Need to get 9512 kB of archives. 115s After this operation, 288 kB of additional disk space will be used. 115s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 115s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 115s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 116s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 116s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 116s Preconfiguring packages ... 116s Fetched 9512 kB in 1s (9210 kB/s) 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 116s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 116s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 116s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 116s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 116s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 116s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 116s Checking for services that may need to be restarted... 116s Checking init scripts... 116s Checking for services that may need to be restarted... 116s Checking init scripts... 116s Stopping some services possibly affected by the upgrade (will be restarted later): 116s cron: stopping...done. 116s 116s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 116s Setting up libc6:s390x (2.41-1ubuntu1) ... 117s Checking for services that may need to be restarted... 117s Checking init scripts... 117s Restarting services possibly affected by the upgrade: 117s cron: restarting...done. 117s 117s Services restarted successfully. 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80970 files and directories currently installed.) 117s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 117s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 117s Setting up libc-bin (2.41-1ubuntu1) ... 117s Setting up locales (2.41-1ubuntu1) ... 117s Installing new version of config file /etc/locale.alias ... 117s Generating locales (this might take a while)... 118s en_US.UTF-8... done 118s Generation complete. 118s Setting up libc-dev-bin (2.41-1ubuntu1) ... 118s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 118s Processing triggers for man-db (2.13.0-1) ... 119s Processing triggers for systemd (257.2-3ubuntu1) ... 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 120s Reading package lists... 120s Building dependency tree... 120s Reading state information... 120s Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 120s The following packages will be REMOVED: 120s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 120s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 120s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 120s linux-tools-6.11.0-8-generic* 120s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 120s After this operation, 167 MB disk space will be freed. 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80970 files and directories currently installed.) 120s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 120s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 120s Removing libpython3.12t64:s390x (3.12.9-1) ... 120s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 120s Removing libnsl2:s390x (1.3.0-3build3) ... 120s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 120s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 121s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 121s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 121s Processing triggers for libc-bin (2.41-1ubuntu1) ... 121s (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 ... 55870 files and directories currently installed.) 121s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 121s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s autopkgtest: DBG: testbed command exited with code 0 122s 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.zA9YxX/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 122s autopkgtest: DBG: testbed command exited with code 1 122s autopkgtest [03:40:27]: rebooting testbed after setup commands that affected boot 122s autopkgtest: DBG: sending command to testbed: reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zA9YxX'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.zA9YxX/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zA9YxX'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.zA9YxX/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [03:40:44]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 139s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zA9YxX/testbed-packages"], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/testbed-packages /tmp/autopkgtest-work.leklsu3_/out/testbed-packages 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zA9YxX'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.zA9YxX/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zA9YxX'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.zA9YxX/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zA9YxX/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: Binaries: initialising 142s autopkgtest [03:40:47]: @@@@@@@@@@@@@@@@@@@@ apt-source proxytunnel 142s autopkgtest: DBG: blame += proxytunnel 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 142s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'proxytunnel'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^proxytunnel$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'proxytunnel=1.12.1-1build2'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: install_deps: deps_new=[] 142s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s 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.zA9YxX/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source proxytunnel=1.12.1-1build2 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 proxytunnel_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1'] 143s + cd / 143s + mktemp -d /tmp/autopkgtest.zA9YxX/build.XXX 143s + builddir=/tmp/autopkgtest.zA9YxX/build.e3C 143s + cd /tmp/autopkgtest.zA9YxX/build.e3C 143s + apt-get source -d -q --only-source proxytunnel=1.12.1-1build2 143s + OUT=Reading package lists... 143s NOTICE: 'proxytunnel' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/pkg-security-team/proxytunnel.git 143s Please use: 143s git clone https://salsa.debian.org/pkg-security-team/proxytunnel.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 76.3 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (dsc) [2196 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (tar) [58.5 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (diff) [15.7 kB] 143s Fetched 76.3 kB in 0s (200 kB/s) 143s Download complete and in download only mode 143s + [ -n ] 143s + echo Reading package lists... 143s NOTICE: 'proxytunnel' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/pkg-security-team/proxytunnel.git 143s Please use: 143s git clone https://salsa.debian.org/pkg-security-team/proxytunnel.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 76.3 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (dsc) [2196 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (tar) [58.5 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (diff) [15.7 kB] 143s Fetched 76.3 kB in 0s (200 kB/s) 143s Download complete and in download only mode 143s + grep ^Get: 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (dsc) [2196 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (tar) [58.5 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe proxytunnel 1.12.1-1build2 (diff) [15.7 kB] 143s + dpkg-source -x proxytunnel_1.12.1-1build2.dsc src 143s gpgv: Signature made Mon Apr 1 07:24:21 2024 UTC 143s gpgv: using RSA key A089FB36AAFBDAD5ACC1325069F790171A210984 143s gpgv: Can't check signature: No public key 143s dpkg-source: warning: cannot verify inline signature for ./proxytunnel_1.12.1-1build2.dsc: no acceptable signature found 143s + chmod -R a+rX . 143s + cd src/. 143s + pwd 143s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [03:40:48]: testing package proxytunnel version 1.12.1-1build2 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/build.e3C/src/debian/ /tmp/autopkgtest-work.leklsu3_/out/pkg/debian/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency @ 144s autopkgtest: DBG: synthesised dependency proxytunnel 144s autopkgtest: DBG: processing dependency apache2 144s autopkgtest: DBG: processing dependency ssl-cert 144s autopkgtest: DBG: processing dependency openssh-server 144s autopkgtest: DBG: processing dependency openssh-client 144s autopkgtest: DBG: processing dependency lsof 144s autopkgtest: DBG: Test defined: name test-tunneled-ssh path debian/tests/test-tunneled-ssh command "None" restrictions ['isolation-container', 'needs-root'] features [] depends ['proxytunnel', 'apache2', 'ssl-cert', 'openssh-server', 'openssh-client', 'lsof'] 144s autopkgtest [03:40:49]: build not needed 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/build.e3C/src/ /tmp/autopkgtest-work.leklsu3_/out/tests-tree/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency @ 144s autopkgtest: DBG: synthesised dependency proxytunnel 144s autopkgtest: DBG: processing dependency apache2 144s autopkgtest: DBG: processing dependency ssl-cert 144s autopkgtest: DBG: processing dependency openssh-server 144s autopkgtest: DBG: processing dependency openssh-client 144s autopkgtest: DBG: processing dependency lsof 144s autopkgtest: DBG: Test defined: name test-tunneled-ssh path debian/tests/test-tunneled-ssh command "None" restrictions ['isolation-container', 'needs-root'] features [] depends ['proxytunnel', 'apache2', 'ssl-cert', 'openssh-server', 'openssh-client', 'lsof'] 144s autopkgtest [03:40:49]: test test-tunneled-ssh: preparing testbed 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['proxytunnel', 'apache2', 'ssl-cert', 'openssh-server', 'openssh-client', 'lsof'] 144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 144s autopkgtest: DBG: install_deps: deps_new=['proxytunnel', 'apache2', 'ssl-cert', 'openssh-server', 'openssh-client', 'lsof'] 144s autopkgtest: DBG: install-deps: satisfying proxytunnel, apache2, ssl-cert, openssh-server, openssh-client, lsof 144s autopkgtest: DBG: can use apt-get on testbed: True 144s 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', 'proxytunnel, apache2, ssl-cert, openssh-server, openssh-client, lsof'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 144s Reading package lists... 144s Building dependency tree... 144s Reading state information... 145s Starting pkgProblemResolver with broken count: 0 145s Starting 2 pkgProblemResolver with broken count: 0 145s Done 145s The following NEW packages will be installed: 145s apache2 apache2-bin apache2-data apache2-utils libapr1t64 145s libaprutil1-dbd-sqlite3 libaprutil1-ldap libaprutil1t64 liblua5.4-0 145s proxytunnel ssl-cert 145s 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. 145s Need to get 2232 kB of archives. 145s After this operation, 8167 kB of additional disk space will be used. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapr1t64 s390x 1.7.5-1 [114 kB] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1t64 s390x 1.6.3-3ubuntu2 [98.4 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-dbd-sqlite3 s390x 1.6.3-3ubuntu2 [11.7 kB] 145s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-ldap s390x 1.6.3-3ubuntu2 [9064 B] 145s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 145s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-bin s390x 2.4.62-3ubuntu1 [1411 kB] 146s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-data all 2.4.62-3ubuntu1 [163 kB] 146s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-utils s390x 2.4.62-3ubuntu1 [102 kB] 146s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x apache2 s390x 2.4.62-3ubuntu1 [90.4 kB] 146s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x proxytunnel s390x 1.12.1-1build2 [40.4 kB] 146s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x ssl-cert all 1.1.3ubuntu1 [18.7 kB] 146s Preconfiguring packages ... 146s Fetched 2232 kB in 1s (3233 kB/s) 146s Selecting previously unselected package libapr1t64:s390x. 146s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 146s Preparing to unpack .../00-libapr1t64_1.7.5-1_s390x.deb ... 146s Unpacking libapr1t64:s390x (1.7.5-1) ... 146s Selecting previously unselected package libaprutil1t64:s390x. 146s Preparing to unpack .../01-libaprutil1t64_1.6.3-3ubuntu2_s390x.deb ... 146s Unpacking libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 146s Selecting previously unselected package libaprutil1-dbd-sqlite3:s390x. 146s Preparing to unpack .../02-libaprutil1-dbd-sqlite3_1.6.3-3ubuntu2_s390x.deb ... 146s Unpacking libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 146s Selecting previously unselected package libaprutil1-ldap:s390x. 146s Preparing to unpack .../03-libaprutil1-ldap_1.6.3-3ubuntu2_s390x.deb ... 146s Unpacking libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 146s Selecting previously unselected package liblua5.4-0:s390x. 146s Preparing to unpack .../04-liblua5.4-0_5.4.7-1_s390x.deb ... 146s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 146s Selecting previously unselected package apache2-bin. 146s Preparing to unpack .../05-apache2-bin_2.4.62-3ubuntu1_s390x.deb ... 146s Unpacking apache2-bin (2.4.62-3ubuntu1) ... 146s Selecting previously unselected package apache2-data. 146s Preparing to unpack .../06-apache2-data_2.4.62-3ubuntu1_all.deb ... 146s Unpacking apache2-data (2.4.62-3ubuntu1) ... 146s Selecting previously unselected package apache2-utils. 146s Preparing to unpack .../07-apache2-utils_2.4.62-3ubuntu1_s390x.deb ... 146s Unpacking apache2-utils (2.4.62-3ubuntu1) ... 146s Selecting previously unselected package apache2. 146s Preparing to unpack .../08-apache2_2.4.62-3ubuntu1_s390x.deb ... 146s Unpacking apache2 (2.4.62-3ubuntu1) ... 146s Selecting previously unselected package proxytunnel. 146s Preparing to unpack .../09-proxytunnel_1.12.1-1build2_s390x.deb ... 146s Unpacking proxytunnel (1.12.1-1build2) ... 146s Selecting previously unselected package ssl-cert. 146s Preparing to unpack .../10-ssl-cert_1.1.3ubuntu1_all.deb ... 146s Unpacking ssl-cert (1.1.3ubuntu1) ... 146s Setting up ssl-cert (1.1.3ubuntu1) ... 147s Created symlink '/etc/systemd/system/multi-user.target.wants/ssl-cert.service' → '/usr/lib/systemd/system/ssl-cert.service'. 147s Setting up libapr1t64:s390x (1.7.5-1) ... 147s Setting up liblua5.4-0:s390x (5.4.7-1) ... 147s Setting up apache2-data (2.4.62-3ubuntu1) ... 147s Setting up proxytunnel (1.12.1-1build2) ... 147s Setting up libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 147s Setting up libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 147s Setting up libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 147s Setting up apache2-utils (2.4.62-3ubuntu1) ... 147s Setting up apache2-bin (2.4.62-3ubuntu1) ... 147s Setting up apache2 (2.4.62-3ubuntu1) ... 147s Enabling module mpm_event. 147s Enabling module authz_core. 147s Enabling module authz_host. 147s Enabling module authn_core. 147s Enabling module auth_basic. 147s Enabling module access_compat. 147s Enabling module authn_file. 147s Enabling module authz_user. 147s Enabling module alias. 147s Enabling module dir. 147s Enabling module autoindex. 147s Enabling module env. 147s Enabling module mime. 147s Enabling module negotiation. 147s Enabling module setenvif. 147s Enabling module filter. 147s Enabling module deflate. 147s Enabling module status. 147s Enabling module reqtimeout. 147s Enabling conf charset. 147s Enabling conf localized-error-pages. 147s Enabling conf other-vhosts-access-log. 147s Enabling conf security. 147s Enabling conf serve-cgi-bin. 147s Enabling site 000-default. 148s Created symlink '/etc/systemd/system/multi-user.target.wants/apache2.service' → '/usr/lib/systemd/system/apache2.service'. 148s Created symlink '/etc/systemd/system/multi-user.target.wants/apache-htcacheclean.service' → '/usr/lib/systemd/system/apache-htcacheclean.service'. 149s Processing triggers for ufw (0.36.2-9) ... 149s Processing triggers for man-db (2.13.0-1) ... 150s Processing triggers for libc-bin (2.41-1ubuntu1) ... 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'proxytunnel'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-packages.all"], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-packages.all /tmp/autopkgtest-work.leklsu3_/out/test-tunneled-ssh-packages.all 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.zA9YxX/build.e3C/src'], kind short, sout raw, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.zA9YxX/build.e3C/src already exists 151s autopkgtest [03:40:56]: test test-tunneled-ssh: [----------------------- 151s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.zA9YxX/wrapper.sh --debug --artifacts=/tmp/autopkgtest.zA9YxX/test-tunneled-ssh-artifacts --chdir=/tmp/autopkgtest.zA9YxX/build.e3C/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.zA9YxX/test-tunneled-ssh-stderr --stdout=/tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stdout --tmp=/tmp/autopkgtest.zA9YxX/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 --make-executable=/tmp/autopkgtest.zA9YxX/build.e3C/src/debian/tests/test-tunneled-ssh -- /tmp/autopkgtest.zA9YxX/build.e3C/src/debian/tests/test-tunneled-ssh'], kind test, sout raw, serr raw, env [] 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-artifacts 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: changing to directory: /tmp/autopkgtest.zA9YxX/build.e3C/src 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: LANG=C.UTF-8 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LANGUAGE 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_ADDRESS 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_ALL 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_COLLATE 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_CTYPE 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_IDENTIFICATION 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_MEASUREMENT 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_MESSAGES 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_MONETARY 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_NAME 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_NUMERIC 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_PAPER 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_TELEPHONE 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: unsetting environment: LC_TIME 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: pretending to be a login shell 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: will write standard error to /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stderr 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: will write stdout to /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stdout 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.zA9YxX/autopkgtest_tmp 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: marking as executable: /tmp/autopkgtest.zA9YxX/build.e3C/src/debian/tests/test-tunneled-ssh 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: command to run: /tmp/autopkgtest.zA9YxX/build.e3C/src/debian/tests/test-tunneled-ssh 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: copying /tmp/tmp.mcvjeKZiSi/out to stdout and file: /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stdout 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: copying /tmp/tmp.mcvjeKZiSi/err to standard error and file: /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stdout 151s /tmp/autopkgtest.zA9YxX/wrapper.sh: writing script pid 2063 to /tmp/autopkgtest_script_pid 151s Enabling module socache_shmcb. 151s Enabling module ssl. 151s Enabling module proxy. 151s Enabling module proxy_connect. 151s Site 000-default disabled. 151s To activate the new configuration, you need to run: 151s systemctl reload apache2 151s Enabling site vhost443. 151s Adding password for user vhost443-user 151s Enabling site vhost80. 151s Adding password for user vhost80-user 151s Test user is _u480bb65e. 152s === Running test via vhost80 with no SSLProtocol === 152s stderr's diff 152s Via vhost80:80 -> localhost:22 Via vhost80:80 -> localhost:22 152s Connected to vhost80. Connected to vhost80. 152s stdout's diff 152s sftp> ls -l .ssh sftp> ls -l .ssh 152s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 152s -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . 152s -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . 152s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 152s -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . 152s Test succeeded for vhost80. 152s === Running test via vhost443 with SSLProtocol TLSv1.2 === 153s stderr's diff 153s Via vhost443:443 -> localhost:22 Via vhost443:443 -> localhost:22 153s Connected to vhost443. Connected to vhost443. 153s stdout's diff 153s sftp> ls -l .ssh sftp> ls -l .ssh 153s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 153s -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . 153s -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . 153s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 153s -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . 153s Test succeeded for vhost443. 154s === Running test via vhost443 with SSLProtocol TLSv1.3 === 154s stderr's diff 154s Via vhost443:443 -> localhost:22 Via vhost443:443 -> localhost:22 154s Connected to vhost443. Connected to vhost443. 154s stdout's diff 154s sftp> ls -l .ssh sftp> ls -l .ssh 154s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 154s -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . 154s -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . 154s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 154s -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . 154s Test succeeded for vhost443. 154s === Running test via vhost443 with SSLProtocol all === 155s stderr's diff 155s Via vhost443:443 -> localhost:22 Via vhost443:443 -> localhost:22 155s Connected to vhost443. Connected to vhost443. 155s stdout's diff 155s sftp> ls -l .ssh sftp> ls -l .ssh 155s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 155s -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . 155s -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . 155s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 155s -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . 155s Test succeeded for vhost443. 155s === Running test on 127.0.1.1, port 2222 via vhost443 with SSLProtocol all === 155s stderr's diff 155s Connected to 127.0.1.1. Connected to 127.0.1.1. 155s stdout's diff 155s sftp> ls -l .ssh sftp> ls -l .ssh 155s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 155s -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . 155s -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . 155s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 155s -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . 155s Test succeeded for 127.0.1.1. 155s === Running test on ::1, port 2222 via vhost443 with SSLProtocol all === 156s stderr's diff 156s Connected to ::1. Connected to ::1. 156s stdout's diff 156s sftp> ls -l .ssh sftp> ls -l .ssh 156s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 156s -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 334 Feb 16 03:42 . 156s -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . -rw------- ? _u480bb65e _u480bb65e 419 Feb 16 03:42 . 156s -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . -rw-r--r-- ? _u480bb65e _u480bb65e 104 Feb 16 03:42 . 156s -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . -rw-rw-r-- ? _u480bb65e _u480bb65e 1243 Feb 16 03:42 . 156s Test succeeded for ::1. 156s /tmp/autopkgtest.zA9YxX/wrapper.sh: checking for leaked background processes... 156s /tmp/autopkgtest.zA9YxX/wrapper.sh: waiting for tee/cat subprocesses... 156s /tmp/autopkgtest.zA9YxX/wrapper.sh: cleaning up... 156s /tmp/autopkgtest.zA9YxX/wrapper.sh: Exit status: 0 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest [03:41:01]: test test-tunneled-ssh: -----------------------] 156s autopkgtest: DBG: testbed executing test finished with exit status 0 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stdout /tmp/autopkgtest-work.leklsu3_/out/test-tunneled-ssh-stdout 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-stderr /tmp/autopkgtest-work.leklsu3_/out/test-tunneled-ssh-stderr 157s autopkgtest: DBG: got reply from testbed: ok 157s test-tunneled-ssh PASS 157s autopkgtest [03:41:02]: test test-tunneled-ssh: - - - - - - - - - - results - - - - - - - - - - 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zA9YxX/test-tunneled-ssh-artifacts/ /tmp/autopkgtest-work.leklsu3_/out/artifacts/ 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.zA9YxX/test-tunneled-ssh-artifacts', '/tmp/autopkgtest.zA9YxX/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 157s autopkgtest [03:41:02]: @@@@@@@@@@@@@@@@@@@@ summary 157s test-tunneled-ssh PASS 157s autopkgtest: DBG: testbed stop 157s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.zA9YxX 157s autopkgtest: DBG: sending command to testbed: close 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: sending command to testbed: quit 174s nova [W] Using flock in prodstack6-s390x 174s flock: timeout while waiting to get lock 174s Creating nova instance adt-plucky-s390x-proxytunnel-20250216-033825-juju-7f2275-prod-proposed-migration-environment-15-544834da-5609-4fad-8afd-6733b1b76fc5 from image adt/ubuntu-plucky-s390x-server-20250216.img (UUID 67327349-c50d-4fb2-aab8-abef6582e685)... 174s nova [W] Timed out waiting for b86d2ca1-b388-4e89-b19e-ab7504dca1d3 to get deleted.