0s autopkgtest: DBG: testbed init 0s autopkgtest [19:40:26]: starting date and time: 2025-02-11 19:40:26+0000 0s autopkgtest [19:40:26]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [19:40:26]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.7j0_9464/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:dpkg --apt-upgrade seqan3 --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=dpkg/1.22.15ubuntu1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-31.secgroup --name adt-plucky-s390x-seqan3-20250211-194025-juju-7f2275-prod-proposed-migration-environment-15-ac0413c5-01ee-4a7f-a035-d94d2cc2e321 --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 64s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.lvVpuD 64s autopkgtest: DBG: sending command to testbed: print-execute-command 64s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.1krmbmxi/runcmd 64s autopkgtest: DBG: sending command to testbed: capabilities 64s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert isolation-machine reboot suggested-normal-user=ubuntu root-on-testbed 64s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'isolation-machine', 'reboot', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 64s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.lvVpuD'], kind short, sout raw, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.lvVpuD/wrapper.sh 64s autopkgtest: DBG: got reply from testbed: ok 64s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.lvVpuD/wrapper.sh'], kind short, sout raw, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest [19:41:30]: testbed dpkg architecture: s390x 64s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest [19:41:30]: testbed apt version: 2.9.28 64s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: testbed has eatmydata 65s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [19:41:31]: @@@@@@@@@@@@@@@@@@@@ test bed setup 65s 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 [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [19:41:31]: testbed release detected to be: None 65s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: adding APT source: Types: deb deb-src 65s URIs: http://ftpmaster.internal/ubuntu/ 65s Suites: plucky-proposed 65s Components: main restricted universe multiverse 65s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 65s 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 [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 65s Package: * 65s Pin: release plucky-proposed 65s Pin-Priority: 500 65s 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 [] 66s autopkgtest: DBG: testbed command exited with code 0 66s autopkgtest [19:41:32]: updating testbed package index (apt update) 66s 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'] 66s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 66s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 66s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 66s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 66s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [862 kB] 67s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.7 kB] 67s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [67.1 kB] 67s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [83.4 kB] 67s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [782 kB] 67s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [6852 B] 67s Fetched 1926 kB in 1s (1938 kB/s) 67s Reading package lists... 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 67s Package: * 67s Pin: release plucky-proposed 67s Pin-Priority: 100 67s 67s Package: src:dpkg:any 67s Pin: release plucky-proposed 67s Pin-Priority: 995 67s 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:dpkg:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.lvVpuD/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 68s + lsb_release --codename --short 68s Reading package lists...+ RELEASE=plucky 68s + cat 68s + [ plucky != trusty ] 68s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 68s 68s Building dependency tree... 68s Reading state information... 68s Calculating upgrade... 68s The following packages were automatically installed and are no longer required: 68s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 68s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 68s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 68s linux-tools-6.11.0-8-generic 68s Use 'sudo apt autoremove' to remove them. 68s The following packages will be upgraded: 68s libpcap0.8t64 68s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 68s Need to get 155 kB of archives. 68s After this operation, 0 B of additional disk space will be used. 68s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpcap0.8t64 s390x 1.10.5-2ubuntu1 [155 kB] 69s Fetched 155 kB in 0s (437 kB/s) 69s (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.) 69s Preparing to unpack .../libpcap0.8t64_1.10.5-2ubuntu1_s390x.deb ... 69s Unpacking libpcap0.8t64:s390x (1.10.5-2ubuntu1) over (1.10.5-1ubuntu1) ... 69s Setting up libpcap0.8t64:s390x (1.10.5-2ubuntu1) ... 69s Processing triggers for man-db (2.13.0-1) ... 69s Processing triggers for libc-bin (2.40-4ubuntu1) ... 69s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 69s + /usr/lib/apt/apt-helper analyze-pattern ?true 69s + uname -r 69s + sed s/\./\\./g 69s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 69s + apt list ?obsolete 69s + tail+ cut -d/ -f1 69s -n+2 69s + grep -v ^linux-.*6\.12\.0-15-generic.* 70s + true 70s + obsolete_pkgs= 70s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 70s Reading package lists... 70s Building dependency tree... 70s Reading state information... 70s The following packages will be REMOVED: 70s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 70s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 70s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 70s linux-tools-6.11.0-8-generic* 70s 0 upgraded, 0 newly installed, 9 to remove and 3 not upgraded. 70s After this operation, 167 MB disk space will be freed. 70s (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.) 70s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 70s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 70s Removing libpython3.12t64:s390x (3.12.9-1) ... 70s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 70s Removing libnsl2:s390x (1.3.0-3build3) ... 70s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 70s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 70s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 71s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 71s Processing triggers for libc-bin (2.40-4ubuntu1) ... 71s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 71s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 71s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 71s + grep -q trusty /etc/lsb-release 71s + [ ! -d /usr/share/doc/unattended-upgrades ] 71s + [ ! -d /usr/share/doc/lxd ] 71s + [ ! -d /usr/share/doc/lxd-client ] 71s + [ ! -d /usr/share/doc/snapd ] 71s + type iptables 71s + cat 71s + chmod 755 /etc/rc.local 71s + . /etc/rc.local 71s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 71s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 71s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 71s + uname -m 71s + [ s390x = ppc64le ] 71s + [ -d /run/systemd/system ] 71s + systemd-detect-virt --quiet --vm 71s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 71s + cat 71s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 71s + echo COMPRESS=lz4 71s autopkgtest: DBG: testbed command exited with code 0 71s autopkgtest [19:41:37]: upgrading testbed (apt dist-upgrade and autopurge) 71s 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'] 72s Reading package lists... 72s Building dependency tree... 72s Reading state information... 72s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 72s Starting 2 pkgProblemResolver with broken count: 0 72s Done 72s Entering ResolveByKeep 72s 72s The following packages will be upgraded: 72s dpkg dpkg-dev libdpkg-perl 72s 3 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 72s Need to get 2664 kB of archives. 72s After this operation, 151 kB of additional disk space will be used. 72s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x dpkg s390x 1.22.15ubuntu1 [1296 kB] 73s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x dpkg-dev all 1.22.15ubuntu1 [1089 kB] 73s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libdpkg-perl all 1.22.15ubuntu1 [280 kB] 73s Fetched 2664 kB in 1s (3616 kB/s) 73s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 73s Preparing to unpack .../dpkg_1.22.15ubuntu1_s390x.deb ... 73s Unpacking dpkg (1.22.15ubuntu1) over (1.22.11ubuntu4) ... 73s Setting up dpkg (1.22.15ubuntu1) ... 74s (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 ... 55866 files and directories currently installed.) 74s Preparing to unpack .../dpkg-dev_1.22.15ubuntu1_all.deb ... 74s Unpacking dpkg-dev (1.22.15ubuntu1) over (1.22.11ubuntu4) ... 74s Preparing to unpack .../libdpkg-perl_1.22.15ubuntu1_all.deb ... 74s Unpacking libdpkg-perl (1.22.15ubuntu1) over (1.22.11ubuntu4) ... 74s Setting up libdpkg-perl (1.22.15ubuntu1) ... 74s Setting up dpkg-dev (1.22.15ubuntu1) ... 74s Processing triggers for man-db (2.13.0-1) ... 75s autopkgtest: DBG: testbed command exited with code 0 75s 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'] 75s Reading package lists... 75s Building dependency tree... 75s Reading state information... 75s Starting pkgProblemResolver with broken count: 0 75s Starting 2 pkgProblemResolver with broken count: 0 75s Done 76s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 76s autopkgtest: DBG: testbed command exited with code 0 76s 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.lvVpuD/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 76s autopkgtest: DBG: testbed command exited with code 1 76s autopkgtest [19:41:42]: rebooting testbed after setup commands that affected boot 76s autopkgtest: DBG: sending command to testbed: reboot 91s autopkgtest: DBG: got reply from testbed: ok 91s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 91s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.lvVpuD'], kind short, sout raw, serr pipe, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.lvVpuD/autopkgtest-reboot 91s autopkgtest: DBG: got reply from testbed: ok 91s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.lvVpuD'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.lvVpuD/autopkgtest-reboot-prepare 92s autopkgtest: DBG: got reply from testbed: ok 92s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest [19:41:59]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 93s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.lvVpuD/testbed-packages"], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/testbed-packages /tmp/autopkgtest-work.7j0_9464/out/testbed-packages 93s autopkgtest: DBG: got reply from testbed: ok 93s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 93s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.lvVpuD'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.lvVpuD/autopkgtest-reboot 94s autopkgtest: DBG: got reply from testbed: ok 94s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.lvVpuD'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.lvVpuD/autopkgtest-reboot-prepare 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.lvVpuD/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: Binaries: initialising 95s autopkgtest [19:42:01]: @@@@@@@@@@@@@@@@@@@@ apt-source seqan3 95s autopkgtest: DBG: blame += seqan3 95s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 95s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'seqan3'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libseqan3-dev$'], kind short, sout pipe, serr raw, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libseqan3-dev=3.3.0+ds-3'], kind short, sout pipe, serr raw, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^seqan3-doc$'], kind short, sout pipe, serr raw, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'seqan3-doc=3.3.0+ds-3'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: install_deps: deps_new=[] 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.lvVpuD/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source seqan3=3.3.0+ds-3 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 seqan3_*.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=dpkg/1.22.15ubuntu1'] 97s + cd / 97s + mktemp -d /tmp/autopkgtest.lvVpuD/build.XXX 97s + builddir=/tmp/autopkgtest.lvVpuD/build.Ktz 97s + cd /tmp/autopkgtest.lvVpuD/build.Ktz 97s + apt-get source -d -q --only-source seqan3=3.3.0+ds-3 98s + OUT=Reading package lists... 98s NOTICE: 'seqan3' packaging is maintained in the 'Git' version control system at: 98s https://salsa.debian.org/med-team/seqan3.git 98s Please use: 98s git clone https://salsa.debian.org/med-team/seqan3.git 98s to retrieve the latest (possibly unreleased) updates to the package. 98s Need to get 2038 kB of source archives. 98s Get:1 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (dsc) [2181 B] 98s Get:2 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (tar) [2024 kB] 98s Get:3 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (diff) [11.8 kB] 98s Fetched 2038 kB in 1s (1870 kB/s) 98s Download complete and in download only mode 98s + [ -n ] 98s + echo Reading package lists... 98s NOTICE: 'seqan3' packaging is maintained in the 'Git' version control system at: 98s https://salsa.debian.org/med-team/seqan3.git 98s Please use: 98s git clone https://salsa.debian.org/med-team/seqan3.git 98s to retrieve the latest (possibly unreleased) updates to the package. 98s Need to get 2038 kB of source archives. 98s Get:1 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (dsc) [2181 B] 98s Get:2 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (tar) [2024 kB] 98s Get:3 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (diff) [11.8 kB] 98s Fetched 2038 kB in 1s (1870 kB/s) 98s Download complete and in download only mode 98s + grep ^Get: 98s Get:1 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (dsc) [2181 B] 98s Get:2 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (tar) [2024 kB] 98s Get:3 http://ftpmaster.internal/ubuntu plucky/universe seqan3 3.3.0+ds-3 (diff) [11.8 kB] 98s + dpkg-source -x seqan3_3.3.0+ds-3.dsc src 98s gpgv: Signature made Wed Nov 13 23:07:49 2024 UTC 98s gpgv: using RSA key D54C3BFAFFB042DE382DA5D741CE7F0B9F1B8B32 98s gpgv: Can't check signature: No public key 98s dpkg-source: warning: cannot verify inline signature for ./seqan3_3.3.0+ds-3.dsc: no acceptable signature found 98s + chmod -R a+rX . 98s + cd src/. 98s + pwd 98s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [19:42:04]: testing package seqan3 version 3.3.0+ds-3 98s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/build.Ktz/src/debian/ /tmp/autopkgtest-work.7j0_9464/out/pkg/debian/ 99s autopkgtest: DBG: got reply from testbed: ok 99s autopkgtest: DBG: processing dependency @ 99s autopkgtest: DBG: synthesised dependency libseqan3-dev 99s autopkgtest: DBG: synthesised dependency seqan3-doc 99s autopkgtest: DBG: processing dependency gcc 99s autopkgtest: DBG: processing dependency g++ 99s autopkgtest: DBG: processing dependency cmake 99s autopkgtest: DBG: processing dependency libboost-dev 99s autopkgtest: DBG: processing dependency libgtest-dev 99s autopkgtest: DBG: processing dependency liblemon-dev 99s autopkgtest: DBG: processing dependency quilt 99s autopkgtest: DBG: processing dependency zlib1g-dev 99s autopkgtest: DBG: processing dependency libbz2-dev 99s autopkgtest: DBG: processing dependency libbenchmark-dev 99s autopkgtest: DBG: processing dependency dpkg-dev 99s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions ['allow-stderr', 'skippable'] features [] depends ['libseqan3-dev', 'seqan3-doc', 'gcc', 'g++', 'cmake', 'libboost-dev', 'libgtest-dev', 'liblemon-dev', 'quilt', 'zlib1g-dev', 'libbz2-dev', 'libbenchmark-dev', 'dpkg-dev'] 99s autopkgtest [19:42:05]: build not needed 99s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/build.Ktz/src/ /tmp/autopkgtest-work.7j0_9464/out/tests-tree/ 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency libseqan3-dev 100s autopkgtest: DBG: synthesised dependency seqan3-doc 100s autopkgtest: DBG: processing dependency gcc 100s autopkgtest: DBG: processing dependency g++ 100s autopkgtest: DBG: processing dependency cmake 100s autopkgtest: DBG: processing dependency libboost-dev 100s autopkgtest: DBG: processing dependency libgtest-dev 100s autopkgtest: DBG: processing dependency liblemon-dev 100s autopkgtest: DBG: processing dependency quilt 100s autopkgtest: DBG: processing dependency zlib1g-dev 100s autopkgtest: DBG: processing dependency libbz2-dev 100s autopkgtest: DBG: processing dependency libbenchmark-dev 100s autopkgtest: DBG: processing dependency dpkg-dev 100s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions ['allow-stderr', 'skippable'] features [] depends ['libseqan3-dev', 'seqan3-doc', 'gcc', 'g++', 'cmake', 'libboost-dev', 'libgtest-dev', 'liblemon-dev', 'quilt', 'zlib1g-dev', 'libbz2-dev', 'libbenchmark-dev', 'dpkg-dev'] 100s autopkgtest [19:42:06]: test run-tests: preparing testbed 100s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libseqan3-dev', 'seqan3-doc', 'gcc', 'g++', 'cmake', 'libboost-dev', 'libgtest-dev', 'liblemon-dev', 'quilt', 'zlib1g-dev', 'libbz2-dev', 'libbenchmark-dev', 'dpkg-dev'] 100s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 100s autopkgtest: DBG: install_deps: deps_new=['libseqan3-dev', 'seqan3-doc', 'gcc', 'g++', 'cmake', 'libboost-dev', 'libgtest-dev', 'liblemon-dev', 'quilt', 'zlib1g-dev', 'libbz2-dev', 'libbenchmark-dev', 'dpkg-dev'] 100s autopkgtest: DBG: install-deps: satisfying libseqan3-dev, seqan3-doc, gcc, g++, cmake, libboost-dev, libgtest-dev, liblemon-dev, quilt, zlib1g-dev, libbz2-dev, libbenchmark-dev, dpkg-dev 100s autopkgtest: DBG: can use apt-get on testbed: True 100s 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', 'libseqan3-dev, seqan3-doc, gcc, g++, cmake, libboost-dev, libgtest-dev, liblemon-dev, quilt, zlib1g-dev, libbz2-dev, libbenchmark-dev, dpkg-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 100s Reading package lists... 100s Building dependency tree... 100s Reading state information... 100s Starting pkgProblemResolver with broken count: 0 100s Starting 2 pkgProblemResolver with broken count: 0 100s Done 100s The following NEW packages will be installed: 100s cmake cmake-data cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 100s diffstat doxygen-awesome-css g++ g++-14 g++-14-s390x-linux-gnu 100s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 100s gettext googletest libamd3 libasan8 libbenchmark-dev libbenchmark1.9.1 100s libboost-dev libboost1.83-dev libbz2-dev libcc1-0 libcereal-dev libcolamd3 100s libgcc-14-dev libglpk40 libgomp1 libgtest-dev libisl23 libitm1 libjsoncpp26 100s liblemon-dev liblemon1.3.1 libltdl7 libmpc3 librhash1 libseqan3-dev 100s libstdc++-14-dev libsuitesparseconfig7 libubsan1 quilt rapidjson-dev 100s seqan3-doc zlib1g-dev 101s 0 upgraded, 48 newly installed, 0 to remove and 0 not upgraded. 101s Need to get 82.2 MB of archives. 101s After this operation, 435 MB of additional disk space will be used. 101s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x cmake-data all 3.31.5-2ubuntu3 [2293 kB] 101s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libjsoncpp26 s390x 1.9.6-3 [80.8 kB] 102s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x librhash1 s390x 1.4.5-1 [132 kB] 102s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cmake s390x 3.31.5-2ubuntu3 [12.9 MB] 104s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 104s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 104s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 104s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 104s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 104s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 104s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x diffstat s390x 1.67-1 [33.1 kB] 104s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x doxygen-awesome-css all 2.3.4-1 [17.5 kB] 104s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 104s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 104s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 104s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 105s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 105s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 105s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 106s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 106s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 106s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 106s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-16ubuntu1 [2611 kB] 106s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [11.0 MB] 106s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-16ubuntu1 [21.5 kB] 106s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 106s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 106s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 106s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x googletest all 1.15.2-1 [523 kB] 106s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libsuitesparseconfig7 s390x 1:7.8.3+dfsg-3 [13.2 kB] 106s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x libamd3 s390x 1:7.8.3+dfsg-3 [35.1 kB] 106s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x libbenchmark1.9.1 s390x 1.9.1-1 [143 kB] 106s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x libbenchmark-dev s390x 1.9.1-1 [82.2 kB] 106s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libboost1.83-dev s390x 1.83.0-4ubuntu2 [10.7 MB] 107s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-dev s390x 1.83.0.2ubuntu1 [4470 B] 107s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 107s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x rapidjson-dev all 1.1.0+dfsg2-7.3ubuntu1 [97.3 kB] 107s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libcereal-dev s390x 1.3.2+dfsg-5 [222 kB] 107s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libcolamd3 s390x 1:7.8.3+dfsg-3 [23.4 kB] 107s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 107s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libglpk40 s390x 5.0-1build2 [406 kB] 107s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x libgtest-dev s390x 1.15.2-1 [273 kB] 107s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x liblemon1.3.1 s390x 1.3.1+dfsg-6build1 [52.4 kB] 107s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x liblemon-dev s390x 1.3.1+dfsg-6build1 [328 kB] 107s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 107s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x libseqan3-dev all 3.3.0+ds-3 [747 kB] 107s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x quilt all 0.68-1 [439 kB] 107s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x seqan3-doc all 3.3.0+ds-3 [1814 kB] 108s Fetched 82.2 MB in 7s (12.0 MB/s) 108s Selecting previously unselected package cmake-data. 108s (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 ... 55863 files and directories currently installed.) 108s Preparing to unpack .../00-cmake-data_3.31.5-2ubuntu3_all.deb ... 108s Unpacking cmake-data (3.31.5-2ubuntu3) ... 108s Selecting previously unselected package libjsoncpp26:s390x. 108s Preparing to unpack .../01-libjsoncpp26_1.9.6-3_s390x.deb ... 108s Unpacking libjsoncpp26:s390x (1.9.6-3) ... 108s Selecting previously unselected package librhash1:s390x. 108s Preparing to unpack .../02-librhash1_1.4.5-1_s390x.deb ... 108s Unpacking librhash1:s390x (1.4.5-1) ... 108s Selecting previously unselected package cmake. 108s Preparing to unpack .../03-cmake_3.31.5-2ubuntu3_s390x.deb ... 108s Unpacking cmake (3.31.5-2ubuntu3) ... 108s Selecting previously unselected package libisl23:s390x. 108s Preparing to unpack .../04-libisl23_0.27-1_s390x.deb ... 108s Unpacking libisl23:s390x (0.27-1) ... 108s Selecting previously unselected package libmpc3:s390x. 108s Preparing to unpack .../05-libmpc3_1.3.1-1build2_s390x.deb ... 108s Unpacking libmpc3:s390x (1.3.1-1build2) ... 108s Selecting previously unselected package cpp-14-s390x-linux-gnu. 108s Preparing to unpack .../06-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package cpp-14. 108s Preparing to unpack .../07-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package cpp-s390x-linux-gnu. 108s Preparing to unpack .../08-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 108s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 108s Selecting previously unselected package cpp. 108s Preparing to unpack .../09-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 108s Unpacking cpp (4:14.2.0-1ubuntu1) ... 108s Selecting previously unselected package diffstat. 108s Preparing to unpack .../10-diffstat_1.67-1_s390x.deb ... 108s Unpacking diffstat (1.67-1) ... 108s Selecting previously unselected package doxygen-awesome-css. 108s Preparing to unpack .../11-doxygen-awesome-css_2.3.4-1_all.deb ... 108s Unpacking doxygen-awesome-css (2.3.4-1) ... 108s Selecting previously unselected package libcc1-0:s390x. 108s Preparing to unpack .../12-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package libgomp1:s390x. 108s Preparing to unpack .../13-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package libitm1:s390x. 108s Preparing to unpack .../14-libitm1_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package libasan8:s390x. 108s Preparing to unpack .../15-libasan8_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package libubsan1:s390x. 108s Preparing to unpack .../16-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 108s Selecting previously unselected package libgcc-14-dev:s390x. 108s Preparing to unpack .../17-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 108s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 109s Selecting previously unselected package gcc-14-s390x-linux-gnu. 109s Preparing to unpack .../18-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 109s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 109s Selecting previously unselected package gcc-14. 109s Preparing to unpack .../19-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 109s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 109s Selecting previously unselected package gcc-s390x-linux-gnu. 109s Preparing to unpack .../20-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 109s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 109s Selecting previously unselected package gcc. 109s Preparing to unpack .../21-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 109s Unpacking gcc (4:14.2.0-1ubuntu1) ... 109s Selecting previously unselected package libstdc++-14-dev:s390x. 109s Preparing to unpack .../22-libstdc++-14-dev_14.2.0-16ubuntu1_s390x.deb ... 109s Unpacking libstdc++-14-dev:s390x (14.2.0-16ubuntu1) ... 109s Selecting previously unselected package g++-14-s390x-linux-gnu. 109s Preparing to unpack .../23-g++-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 109s Unpacking g++-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 109s Selecting previously unselected package g++-14. 109s Preparing to unpack .../24-g++-14_14.2.0-16ubuntu1_s390x.deb ... 109s Unpacking g++-14 (14.2.0-16ubuntu1) ... 109s Selecting previously unselected package g++-s390x-linux-gnu. 109s Preparing to unpack .../25-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 109s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 109s Selecting previously unselected package g++. 109s Preparing to unpack .../26-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 109s Unpacking g++ (4:14.2.0-1ubuntu1) ... 109s Selecting previously unselected package gettext. 109s Preparing to unpack .../27-gettext_0.23.1-1_s390x.deb ... 109s Unpacking gettext (0.23.1-1) ... 109s Selecting previously unselected package googletest. 109s Preparing to unpack .../28-googletest_1.15.2-1_all.deb ... 109s Unpacking googletest (1.15.2-1) ... 109s Selecting previously unselected package libsuitesparseconfig7:s390x. 109s Preparing to unpack .../29-libsuitesparseconfig7_1%3a7.8.3+dfsg-3_s390x.deb ... 109s Unpacking libsuitesparseconfig7:s390x (1:7.8.3+dfsg-3) ... 109s Selecting previously unselected package libamd3:s390x. 109s Preparing to unpack .../30-libamd3_1%3a7.8.3+dfsg-3_s390x.deb ... 109s Unpacking libamd3:s390x (1:7.8.3+dfsg-3) ... 109s Selecting previously unselected package libbenchmark1.9.1:s390x. 109s Preparing to unpack .../31-libbenchmark1.9.1_1.9.1-1_s390x.deb ... 109s Unpacking libbenchmark1.9.1:s390x (1.9.1-1) ... 109s Selecting previously unselected package libbenchmark-dev:s390x. 109s Preparing to unpack .../32-libbenchmark-dev_1.9.1-1_s390x.deb ... 109s Unpacking libbenchmark-dev:s390x (1.9.1-1) ... 109s Selecting previously unselected package libboost1.83-dev:s390x. 109s Preparing to unpack .../33-libboost1.83-dev_1.83.0-4ubuntu2_s390x.deb ... 109s Unpacking libboost1.83-dev:s390x (1.83.0-4ubuntu2) ... 110s Selecting previously unselected package libboost-dev:s390x. 110s Preparing to unpack .../34-libboost-dev_1.83.0.2ubuntu1_s390x.deb ... 110s Unpacking libboost-dev:s390x (1.83.0.2ubuntu1) ... 110s Selecting previously unselected package libbz2-dev:s390x. 110s Preparing to unpack .../35-libbz2-dev_1.0.8-6_s390x.deb ... 110s Unpacking libbz2-dev:s390x (1.0.8-6) ... 110s Selecting previously unselected package rapidjson-dev. 110s Preparing to unpack .../36-rapidjson-dev_1.1.0+dfsg2-7.3ubuntu1_all.deb ... 110s Unpacking rapidjson-dev (1.1.0+dfsg2-7.3ubuntu1) ... 110s Selecting previously unselected package libcereal-dev. 110s Preparing to unpack .../37-libcereal-dev_1.3.2+dfsg-5_s390x.deb ... 110s Unpacking libcereal-dev (1.3.2+dfsg-5) ... 110s Selecting previously unselected package libcolamd3:s390x. 110s Preparing to unpack .../38-libcolamd3_1%3a7.8.3+dfsg-3_s390x.deb ... 110s Unpacking libcolamd3:s390x (1:7.8.3+dfsg-3) ... 110s Selecting previously unselected package libltdl7:s390x. 110s Preparing to unpack .../39-libltdl7_2.5.4-3build1_s390x.deb ... 110s Unpacking libltdl7:s390x (2.5.4-3build1) ... 110s Selecting previously unselected package libglpk40:s390x. 110s Preparing to unpack .../40-libglpk40_5.0-1build2_s390x.deb ... 110s Unpacking libglpk40:s390x (5.0-1build2) ... 110s Selecting previously unselected package libgtest-dev:s390x. 110s Preparing to unpack .../41-libgtest-dev_1.15.2-1_s390x.deb ... 110s Unpacking libgtest-dev:s390x (1.15.2-1) ... 110s Selecting previously unselected package liblemon1.3.1:s390x. 110s Preparing to unpack .../42-liblemon1.3.1_1.3.1+dfsg-6build1_s390x.deb ... 110s Unpacking liblemon1.3.1:s390x (1.3.1+dfsg-6build1) ... 110s Selecting previously unselected package liblemon-dev. 110s Preparing to unpack .../43-liblemon-dev_1.3.1+dfsg-6build1_s390x.deb ... 110s Unpacking liblemon-dev (1.3.1+dfsg-6build1) ... 110s Selecting previously unselected package zlib1g-dev:s390x. 110s Preparing to unpack .../44-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 110s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 110s Selecting previously unselected package libseqan3-dev. 110s Preparing to unpack .../45-libseqan3-dev_3.3.0+ds-3_all.deb ... 110s Unpacking libseqan3-dev (3.3.0+ds-3) ... 111s Selecting previously unselected package quilt. 111s Preparing to unpack .../46-quilt_0.68-1_all.deb ... 111s Unpacking quilt (0.68-1) ... 111s Selecting previously unselected package seqan3-doc. 111s Preparing to unpack .../47-seqan3-doc_3.3.0+ds-3_all.deb ... 111s Unpacking seqan3-doc (3.3.0+ds-3) ... 111s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 111s Setting up googletest (1.15.2-1) ... 111s Setting up doxygen-awesome-css (2.3.4-1) ... 111s Setting up rapidjson-dev (1.1.0+dfsg2-7.3ubuntu1) ... 111s Setting up libjsoncpp26:s390x (1.9.6-3) ... 111s Setting up diffstat (1.67-1) ... 111s Setting up libmpc3:s390x (1.3.1-1build2) ... 111s Setting up libltdl7:s390x (2.5.4-3build1) ... 111s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 111s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 111s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 111s Setting up libbenchmark1.9.1:s390x (1.9.1-1) ... 111s Setting up libsuitesparseconfig7:s390x (1:7.8.3+dfsg-3) ... 111s Setting up cmake-data (3.31.5-2ubuntu3) ... 111s Setting up librhash1:s390x (1.4.5-1) ... 111s Setting up libisl23:s390x (0.27-1) ... 111s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 111s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 111s Setting up libbz2-dev:s390x (1.0.8-6) ... 111s Setting up gettext (0.23.1-1) ... 111s Setting up libamd3:s390x (1:7.8.3+dfsg-3) ... 111s Setting up libgtest-dev:s390x (1.15.2-1) ... 111s Setting up seqan3-doc (3.3.0+ds-3) ... 111s Setting up libcolamd3:s390x (1:7.8.3+dfsg-3) ... 111s Setting up libbenchmark-dev:s390x (1.9.1-1) ... 111s Setting up libcereal-dev (1.3.2+dfsg-5) ... 111s Setting up quilt (0.68-1) ... 111s Setting up libglpk40:s390x (5.0-1build2) ... 111s Setting up liblemon1.3.1:s390x (1.3.1+dfsg-6build1) ... 111s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 111s Setting up cpp-14 (14.2.0-16ubuntu1) ... 111s Setting up cmake (3.31.5-2ubuntu3) ... 111s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 111s Setting up libstdc++-14-dev:s390x (14.2.0-16ubuntu1) ... 111s Setting up libboost1.83-dev:s390x (1.83.0-4ubuntu2) ... 111s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 111s Setting up libseqan3-dev (3.3.0+ds-3) ... 111s Setting up liblemon-dev (1.3.1+dfsg-6build1) ... 111s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 111s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 111s Setting up g++-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 111s Setting up cpp (4:14.2.0-1ubuntu1) ... 111s Setting up libboost-dev:s390x (1.83.0.2ubuntu1) ... 111s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 111s Setting up gcc-14 (14.2.0-16ubuntu1) ... 111s Setting up g++-14 (14.2.0-16ubuntu1) ... 111s Setting up gcc (4:14.2.0-1ubuntu1) ... 111s Setting up g++ (4:14.2.0-1ubuntu1) ... 111s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 111s Processing triggers for libc-bin (2.40-4ubuntu1) ... 111s Processing triggers for man-db (2.13.0-1) ... 112s Processing triggers for install-info (7.1.1-1) ... 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libseqan3-dev'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'seqan3-doc'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.lvVpuD/run-tests-packages.all"], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/run-tests-packages.all /tmp/autopkgtest-work.7j0_9464/out/run-tests-packages.all 112s autopkgtest: DBG: got reply from testbed: ok 112s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.lvVpuD/build.Ktz/src'], kind short, sout raw, serr raw, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.lvVpuD/build.Ktz/src already exists 113s autopkgtest [19:42:19]: test run-tests: [----------------------- 113s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.lvVpuD/wrapper.sh --debug --artifacts=/tmp/autopkgtest.lvVpuD/run-tests-artifacts --chdir=/tmp/autopkgtest.lvVpuD/build.Ktz/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.lvVpuD/run-tests-stderr --stdout=/tmp/autopkgtest.lvVpuD/run-tests-stdout --tmp=/tmp/autopkgtest.lvVpuD/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=dpkg/1.22.15ubuntu1 --make-executable=/tmp/autopkgtest.lvVpuD/build.Ktz/src/debian/tests/run-tests -- /tmp/autopkgtest.lvVpuD/build.Ktz/src/debian/tests/run-tests'], kind test, sout raw, serr raw, env [] 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.lvVpuD/run-tests-artifacts 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: changing to directory: /tmp/autopkgtest.lvVpuD/build.Ktz/src 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: setting environment: LANG=C.UTF-8 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LANGUAGE 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_ADDRESS 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_ALL 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_COLLATE 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_CTYPE 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_IDENTIFICATION 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_MEASUREMENT 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_MESSAGES 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_MONETARY 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_NAME 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_NUMERIC 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_PAPER 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_TELEPHONE 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: unsetting environment: LC_TIME 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: pretending to be a login shell 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: will write standard error to /tmp/autopkgtest.lvVpuD/run-tests-stderr 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: will write stdout to /tmp/autopkgtest.lvVpuD/run-tests-stdout 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.lvVpuD/autopkgtest_tmp 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=dpkg/1.22.15ubuntu1 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: marking as executable: /tmp/autopkgtest.lvVpuD/build.Ktz/src/debian/tests/run-tests 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: command to run: /tmp/autopkgtest.lvVpuD/build.Ktz/src/debian/tests/run-tests 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: copying /tmp/tmp.dRSprw8jdH/out to stdout and file: /tmp/autopkgtest.lvVpuD/run-tests-stdout 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: copying /tmp/tmp.dRSprw8jdH/err to standard error and file: /tmp/autopkgtest.lvVpuD/run-tests-stdout 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: writing script pid 1848 to /tmp/autopkgtest_script_pid 113s + pkg=seqan3 113s + uname -m 113s + [ s390x != x86_64 ] 113s + echo Tests are too big to compile on non-AMD64 ci.debian.net systems at this time. 113s + exit 77 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: checking for leaked background processes... 113s Tests are too big to compile on non-AMD64 ci.debian.net systems at this time. 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: waiting for tee/cat subprocesses... 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: cleaning up... 113s /tmp/autopkgtest.lvVpuD/wrapper.sh: Exit status: 77 113s autopkgtest: DBG: testbed command exited with code 77 113s autopkgtest [19:42:19]: test run-tests: -----------------------] 113s autopkgtest: DBG: testbed executing test finished with exit status 77 113s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/run-tests-stdout /tmp/autopkgtest-work.7j0_9464/out/run-tests-stdout 113s autopkgtest: DBG: got reply from testbed: ok 113s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/run-tests-stderr /tmp/autopkgtest-work.7j0_9464/out/run-tests-stderr 113s autopkgtest: DBG: got reply from testbed: ok 114s run-tests SKIP exit status 77 and marked as skippable 114s autopkgtest [19:42:20]: test run-tests: - - - - - - - - - - results - - - - - - - - - - 114s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.lvVpuD/run-tests-artifacts/ /tmp/autopkgtest-work.7j0_9464/out/artifacts/ 114s autopkgtest: DBG: got reply from testbed: ok 114s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.lvVpuD/run-tests-artifacts', '/tmp/autopkgtest.lvVpuD/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 114s autopkgtest [19:42:20]: @@@@@@@@@@@@@@@@@@@@ summary 114s run-tests SKIP exit status 77 and marked as skippable 114s autopkgtest: DBG: testbed stop 114s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.lvVpuD 114s autopkgtest: DBG: sending command to testbed: close 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: sending command to testbed: quit 133s nova [W] Using flock in prodstack6-s390x 133s Creating nova instance adt-plucky-s390x-seqan3-20250211-194025-juju-7f2275-prod-proposed-migration-environment-15-ac0413c5-01ee-4a7f-a035-d94d2cc2e321 from image adt/ubuntu-plucky-s390x-server-20250211.img (UUID 66c3edab-d329-48ef-b4f4-4fc082c07041)... 133s nova [W] Timed out waiting for 5ab74a7d-e9b9-4e23-83bb-02ecd3ad4f1c to get deleted.