0s autopkgtest: DBG: testbed init 0s autopkgtest [08:35:25]: starting date and time: 2025-02-15 08:35:25+0000 0s autopkgtest [08:35:25]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [08:35:25]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.mtvx7hs9/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:pcre2 --apt-upgrade rapiddisk --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=pcre2/10.45-1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-23.secgroup --name adt-plucky-s390x-rapiddisk-20250215-083524-juju-7f2275-prod-proposed-migration-environment-15-bbec1318-049c-4959-8aa7-e3caa7c36ce0 --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 109s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.KldOhh 110s autopkgtest: DBG: sending command to testbed: print-execute-command 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qi2h56bg/runcmd 110s autopkgtest: DBG: sending command to testbed: capabilities 110s autopkgtest: DBG: got reply from testbed: ok revert-full-system suggested-normal-user=ubuntu revert isolation-machine reboot root-on-testbed 110s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KldOhh'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.KldOhh/wrapper.sh 110s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KldOhh/wrapper.sh'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [08:37:16]: testbed dpkg architecture: s390x 111s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [08:37:16]: testbed apt version: 2.9.28 111s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed has eatmydata 111s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [08:37:16]: @@@@@@@@@@@@@@@@@@@@ test bed setup 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [08:37:17]: testbed release detected to be: None 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT source: Types: deb deb-src 113s URIs: http://ftpmaster.internal/ubuntu/ 113s Suites: plucky-proposed 113s Components: main restricted universe multiverse 113s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 113s Package: * 113s Pin: release plucky-proposed 113s Pin-Priority: 500 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [08:37:18]: updating testbed package index (apt update) 113s 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'] 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 113s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 113s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 114s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 114s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [66.4 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [864 kB] 114s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.5 kB] 114s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 114s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.4 kB] 114s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 114s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [806 kB] 114s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4016 B] 114s Fetched 1949 kB in 1s (1974 kB/s) 115s Reading package lists... 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 115s Package: * 115s Pin: release plucky-proposed 115s Pin-Priority: 100 115s 115s Package: src:pcre2:any 115s Pin: release plucky-proposed 115s Pin-Priority: 995 115s 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:pcre2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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.KldOhh/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s + lsb_release --codename --short 115s + RELEASE=plucky 115s + cat 115s + [ plucky != trusty ] 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Calculating upgrade... 116s The following packages were automatically installed and are no longer required: 116s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 116s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 116s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 116s linux-tools-6.11.0-8-generic 116s Use 'sudo apt autoremove' to remove them. 116s The following packages will be upgraded: 116s gcc-14-base libatomic1 libgcc-s1 libstdc++6 116s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s Need to get 995 kB of archives. 116s After this operation, 0 B of additional disk space will be used. 116s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 116s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 116s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 116s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 116s Fetched 995 kB in 1s (1640 kB/s) 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 ... 80969 files and directories currently installed.) 117s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 117s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 117s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 117s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 117s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 117s + /usr/lib/apt/apt-helper analyze-pattern ?true 117s + uname -r 117s + sed s/\./\\./g 117s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 117s + apt list ?obsolete 117s + tail -n+2 117s + cut+ -d/ -f1 117s grep -v ^linux-.*6\.12\.0-15-generic.* 117s + true 117s + obsolete_pkgs= 117s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s The following packages will be REMOVED: 118s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 118s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 118s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 118s linux-tools-6.11.0-8-generic* 118s 0 upgraded, 0 newly installed, 9 to remove and 1 not upgraded. 118s After this operation, 167 MB disk space will be freed. 118s (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.) 118s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 118s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 118s Removing libpython3.12t64:s390x (3.12.9-1) ... 118s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 118s Removing libnsl2:s390x (1.3.0-3build3) ... 118s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 118s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 118s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 119s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 119s Processing triggers for libc-bin (2.40-4ubuntu1) ... 119s (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.) 119s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 119s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 119s + grep -q trusty /etc/lsb-release 119s + [ ! -d /usr/share/doc/unattended-upgrades ] 119s + [ ! -d /usr/share/doc/lxd ] 119s + [ ! -d /usr/share/doc/lxd-client ] 119s + [ ! -d /usr/share/doc/snapd ] 119s + type iptables 119s + cat 119s + chmod 755 /etc/rc.local 119s + . /etc/rc.local 119s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 119s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 119s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 119s + uname -m 119s + [ s390x = ppc64le ] 119s + [ -d /run/systemd/system ] 119s + systemd-detect-virt --quiet --vm 119s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 119s + cat 119s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 119s + echo COMPRESS=lz4 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [08:37:24]: upgrading testbed (apt dist-upgrade and autopurge) 119s 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'] 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 120s Entering ResolveByKeep 120s 120s The following packages will be upgraded: 120s libpcre2-8-0 120s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s Need to get 276 kB of archives. 120s After this operation, 58.4 kB of additional disk space will be used. 120s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-8-0 s390x 10.45-1 [276 kB] 120s Fetched 276 kB in 0s (660 kB/s) 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 ... 55867 files and directories currently installed.) 121s Preparing to unpack .../libpcre2-8-0_10.45-1_s390x.deb ... 121s Unpacking libpcre2-8-0:s390x (10.45-1) over (10.42-4ubuntu3) ... 121s Setting up libpcre2-8-0:s390x (10.45-1) ... 121s Processing triggers for libc-bin (2.40-4ubuntu1) ... 121s autopkgtest: DBG: testbed command exited with code 0 121s 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'] 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s Starting pkgProblemResolver with broken count: 0 121s Starting 2 pkgProblemResolver with broken count: 0 121s Done 121s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 121s autopkgtest: DBG: testbed command exited with code 0 121s 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.KldOhh/${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 [08:37:27]: rebooting testbed after setup commands that affected boot 122s autopkgtest: DBG: sending command to testbed: reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KldOhh'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.KldOhh/autopkgtest-reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KldOhh'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.KldOhh/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [08:37:48]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 143s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.KldOhh/testbed-packages"], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/testbed-packages /tmp/autopkgtest-work.mtvx7hs9/out/testbed-packages 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KldOhh'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.KldOhh/autopkgtest-reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.KldOhh'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.KldOhh/autopkgtest-reboot-prepare 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.KldOhh/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: Binaries: initialising 145s autopkgtest [08:37:50]: @@@@@@@@@@@@@@@@@@@@ apt-source rapiddisk 145s autopkgtest: DBG: blame += rapiddisk 145s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 145s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rapiddisk'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^rapiddisk-dkms$'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'rapiddisk-dkms=9.1.0-4ubuntu1'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^rapiddisk$'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'rapiddisk=9.1.0-4ubuntu1'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: install_deps: deps_new=[] 147s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s 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.KldOhh/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rapiddisk=9.1.0-4ubuntu1 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 rapiddisk_*.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=pcre2/10.45-1'] 147s + cd / 147s + mktemp -d /tmp/autopkgtest.KldOhh/build.XXX 147s + builddir=/tmp/autopkgtest.KldOhh/build.8OY 147s + cd /tmp/autopkgtest.KldOhh/build.8OY 147s + apt-get source -d -q --only-source rapiddisk=9.1.0-4ubuntu1 148s + OUT=Reading package lists... 148s NOTICE: 'rapiddisk' packaging is maintained in the 'Git' version control system at: 148s https://salsa.debian.org/debian/rapiddisk.git 148s Please use: 148s git clone https://salsa.debian.org/debian/rapiddisk.git 148s to retrieve the latest (possibly unreleased) updates to the package. 148s Need to get 164 kB of source archives. 148s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (dsc) [2121 B] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (tar) [153 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (diff) [8184 B] 148s Fetched 164 kB in 0s (355 kB/s) 148s Download complete and in download only mode 148s + [ -n ] 148s + echo Reading package lists... 148s NOTICE: 'rapiddisk' packaging is maintained in the 'Git' version control system at: 148s https://salsa.debian.org/debian/rapiddisk.git 148s Please use: 148s git clone https://salsa.debian.org/debian/rapiddisk.git 148s to retrieve the latest (possibly unreleased) updates to the package. 148s Need to get 164 kB of source archives. 148s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (dsc) [2121 B] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (tar) [153 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (diff) [8184 B] 148s Fetched 164 kB in 0s (355 kB/s) 148s Download complete and in download only mode 148s + grep ^Get: 148s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (dsc) [2121 B] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (tar) [153 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rapiddisk 9.1.0-4ubuntu1 (diff) [8184 B] 148s + dpkg-source -x rapiddisk_9.1.0-4ubuntu1.dsc src 148s gpgv: Signature made Thu Jan 23 11:49:48 2025 UTC 148s gpgv: using RSA key A7EAF65FACCAB00B5F71E6CA976C71399FB906D0 148s gpgv: Can't check signature: No public key 148s dpkg-source: warning: cannot verify inline signature for ./rapiddisk_9.1.0-4ubuntu1.dsc: no acceptable signature found 148s + chmod -R a+rX . 148s + cd src/. 148s + pwd 148s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [08:37:53]: testing package rapiddisk version 9.1.0-4ubuntu1 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/build.8OY/src/debian/ /tmp/autopkgtest-work.mtvx7hs9/out/pkg/debian/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: autodep8 generated control: ----- 148s Test-Command: /usr/lib/dkms/dkms-autopkgtest 148s Restrictions: needs-root, breaks-testbed, allow-stderr, superficial, 148s Depends: dkms, openssl, linux-doc, 148s Features: test-name=dkms-autopkgtest 148s Architecture: !i386 148s 148s ------- 148s autopkgtest: DBG: processing dependency dkms 148s autopkgtest: DBG: processing dependency openssl 148s autopkgtest: DBG: processing dependency linux-doc 148s autopkgtest: DBG: Test defined: name dkms-autopkgtest path None command "/usr/lib/dkms/dkms-autopkgtest" restrictions ['allow-stderr', 'breaks-testbed', 'needs-root', 'superficial'] features ['test-name=dkms-autopkgtest'] depends ['dkms', 'openssl', 'linux-doc'] 148s autopkgtest [08:37:53]: build not needed 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/build.8OY/src/ /tmp/autopkgtest-work.mtvx7hs9/out/tests-tree/ 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: autodep8 generated control: ----- 149s Test-Command: /usr/lib/dkms/dkms-autopkgtest 149s Restrictions: needs-root, breaks-testbed, allow-stderr, superficial, 149s Depends: dkms, openssl, linux-doc, 149s Features: test-name=dkms-autopkgtest 149s Architecture: !i386 149s 149s ------- 149s autopkgtest: DBG: processing dependency dkms 149s autopkgtest: DBG: processing dependency openssl 149s autopkgtest: DBG: processing dependency linux-doc 149s autopkgtest: DBG: Test defined: name dkms-autopkgtest path None command "/usr/lib/dkms/dkms-autopkgtest" restrictions ['allow-stderr', 'breaks-testbed', 'needs-root', 'superficial'] features ['test-name=dkms-autopkgtest'] depends ['dkms', 'openssl', 'linux-doc'] 149s autopkgtest [08:37:54]: test dkms-autopkgtest: preparing testbed 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dkms', 'openssl', 'linux-doc'] 149s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 149s autopkgtest: DBG: install_deps: deps_new=['dkms', 'openssl', 'linux-doc'] 149s autopkgtest: DBG: install-deps: satisfying dkms, openssl, linux-doc 149s autopkgtest: DBG: can use apt-get on testbed: True 149s 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', 'dkms, openssl, linux-doc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 149s Reading package lists... 149s Building dependency tree... 149s Reading state information... 149s Starting pkgProblemResolver with broken count: 0 149s Starting 2 pkgProblemResolver with broken count: 0 149s Done 150s The following NEW packages will be installed: 150s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dkms gcc gcc-14 150s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libcc1-0 libgcc-14-dev 150s libgomp1 libisl23 libitm1 libmpc3 libubsan1 linux-doc 150s 0 upgraded, 18 newly installed, 0 to remove and 0 not upgraded. 150s Need to get 35.4 MB of archives. 150s After this operation, 103 MB of additional disk space will be used. 150s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 150s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 151s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 151s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 151s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 151s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 151s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 151s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 151s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 151s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 151s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 151s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 151s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 151s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 151s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 151s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x dkms all 3.0.11-1ubuntu14 [51.6 kB] 151s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x linux-doc all 6.12.0-15.15 [298 kB] 152s Fetched 35.4 MB in 2s (19.9 MB/s) 152s Selecting previously unselected package libisl23:s390x. 152s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 152s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 152s Unpacking libisl23:s390x (0.27-1) ... 152s Selecting previously unselected package libmpc3:s390x. 152s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 152s Unpacking libmpc3:s390x (1.3.1-1build2) ... 152s Selecting previously unselected package cpp-14-s390x-linux-gnu. 152s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package cpp-14. 152s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package cpp-s390x-linux-gnu. 152s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package cpp. 152s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking cpp (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package libcc1-0:s390x. 152s Preparing to unpack .../06-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libgomp1:s390x. 152s Preparing to unpack .../07-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libitm1:s390x. 152s Preparing to unpack .../08-libitm1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libasan8:s390x. 152s Preparing to unpack .../09-libasan8_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libubsan1:s390x. 152s Preparing to unpack .../10-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libgcc-14-dev:s390x. 152s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package gcc-14-s390x-linux-gnu. 152s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package gcc-14. 152s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package gcc-s390x-linux-gnu. 152s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package gcc. 152s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking gcc (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package dkms. 152s Preparing to unpack .../16-dkms_3.0.11-1ubuntu14_all.deb ... 152s Unpacking dkms (3.0.11-1ubuntu14) ... 152s Selecting previously unselected package linux-doc. 152s Preparing to unpack .../17-linux-doc_6.12.0-15.15_all.deb ... 152s Unpacking linux-doc (6.12.0-15.15) ... 152s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 152s Setting up libmpc3:s390x (1.3.1-1build2) ... 152s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 152s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 152s Setting up linux-doc (6.12.0-15.15) ... 152s Setting up libisl23:s390x (0.27-1) ... 152s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 152s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 152s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Setting up cpp-14 (14.2.0-17ubuntu1) ... 152s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 152s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Setting up cpp (4:14.2.0-1ubuntu1) ... 152s Setting up gcc-14 (14.2.0-17ubuntu1) ... 152s Setting up gcc (4:14.2.0-1ubuntu1) ... 152s Setting up dkms (3.0.11-1ubuntu14) ... 152s Processing triggers for man-db (2.13.0-1) ... 153s Processing triggers for libc-bin (2.40-4ubuntu1) ... 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.KldOhh/dkms-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/dkms-autopkgtest-packages.all /tmp/autopkgtest-work.mtvx7hs9/out/dkms-autopkgtest-packages.all 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.KldOhh/build.8OY/src'], kind short, sout raw, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.KldOhh/build.8OY/src already exists 154s autopkgtest [08:37:59]: test dkms-autopkgtest: /usr/lib/dkms/dkms-autopkgtest 154s autopkgtest [08:37:59]: test dkms-autopkgtest: [----------------------- 154s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.KldOhh/wrapper.sh --debug --artifacts=/tmp/autopkgtest.KldOhh/dkms-autopkgtest-artifacts --chdir=/tmp/autopkgtest.KldOhh/build.8OY/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.KldOhh/dkms-autopkgtest-stderr --stdout=/tmp/autopkgtest.KldOhh/dkms-autopkgtest-stdout --tmp=/tmp/autopkgtest.KldOhh/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=pcre2/10.45-1 -- bash -ec /usr/lib/dkms/dkms-autopkgtest'], kind test, sout raw, serr raw, env [] 154s /tmp/autopkgtest.KldOhh/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.KldOhh/dkms-autopkgtest-artifacts 154s /tmp/autopkgtest.KldOhh/wrapper.sh: changing to directory: /tmp/autopkgtest.KldOhh/build.8OY/src 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: LANG=C.UTF-8 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LANGUAGE 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_ADDRESS 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_ALL 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_COLLATE 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_CTYPE 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_IDENTIFICATION 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_MEASUREMENT 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_MESSAGES 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_MONETARY 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_NAME 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_NUMERIC 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_PAPER 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_TELEPHONE 154s /tmp/autopkgtest.KldOhh/wrapper.sh: unsetting environment: LC_TIME 154s /tmp/autopkgtest.KldOhh/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 154s /tmp/autopkgtest.KldOhh/wrapper.sh: pretending to be a login shell 154s /tmp/autopkgtest.KldOhh/wrapper.sh: will write standard error to /tmp/autopkgtest.KldOhh/dkms-autopkgtest-stderr 154s /tmp/autopkgtest.KldOhh/wrapper.sh: will write stdout to /tmp/autopkgtest.KldOhh/dkms-autopkgtest-stdout 154s /tmp/autopkgtest.KldOhh/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.KldOhh/autopkgtest_tmp 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 154s /tmp/autopkgtest.KldOhh/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=pcre2/10.45-1 154s /tmp/autopkgtest.KldOhh/wrapper.sh: command to run: bash -ec /usr/lib/dkms/dkms-autopkgtest 154s /tmp/autopkgtest.KldOhh/wrapper.sh: copying /tmp/tmp.2eWOMqCYqd/out to stdout and file: /tmp/autopkgtest.KldOhh/dkms-autopkgtest-stdout 154s /tmp/autopkgtest.KldOhh/wrapper.sh: copying /tmp/tmp.2eWOMqCYqd/err to standard error and file: /tmp/autopkgtest.KldOhh/dkms-autopkgtest-stdout 154s /tmp/autopkgtest.KldOhh/wrapper.sh: writing script pid 1614 to /tmp/autopkgtest_script_pid 154s Reading package lists... 154s Building dependency tree... 154s Reading state information... 154s Suggested packages: 154s debtags 154s The following NEW packages will be installed: 154s dctrl-tools 155s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 155s Need to get 106 kB of archives. 155s After this operation, 336 kB of additional disk space will be used. 155s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 155s Fetched 106 kB in 0s (303 kB/s) 155s Selecting previously unselected package dctrl-tools. 155s (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 ... 56108 files and directories currently installed.) 155s Preparing to unpack .../dctrl-tools_2.24-3build3_s390x.deb ... 155s Unpacking dctrl-tools (2.24-3build3) ... 155s Setting up dctrl-tools (2.24-3build3) ... 155s Processing triggers for man-db (2.13.0-1) ... 156s I: Removing binary package rapiddisk-dkms, to get clean state. 156s I: Installing binary package rapiddisk-dkms 156s Reading package lists... 156s Building dependency tree... 156s Reading state information... 156s The following NEW packages will be installed: 156s rapiddisk-dkms 157s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 157s Need to get 19.7 kB of archives. 157s After this operation, 89.1 kB of additional disk space will be used. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x rapiddisk-dkms all 9.1.0-4ubuntu1 [19.7 kB] 157s Fetched 19.7 kB in 0s (91.9 kB/s) 157s Selecting previously unselected package rapiddisk-dkms. 157s (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 ... 56149 files and directories currently installed.) 157s Preparing to unpack .../rapiddisk-dkms_9.1.0-4ubuntu1_all.deb ... 157s Unpacking rapiddisk-dkms (9.1.0-4ubuntu1) ... 157s Setting up rapiddisk-dkms (9.1.0-4ubuntu1) ... 157s autoinstall for dkms modules has been disabled. 157s I: Checking for missing dkms dependency by trying to deinstall dkms 157s dpkg: dependency problems prevent removal of dkms: 157s rapiddisk-dkms depends on dkms (>= 2.1.0.0). 157s 157s dpkg: error processing package dkms (--remove): 157s dependency problems - not removing 157s Errors were encountered while processing: 157s dkms 157s I: Using the following Linux header packages that were already installed: 157s I: linux-headers-6.12.0-15 157s I: linux-headers-6.12.0-15-generic 157s I: linux-headers-generic 157s I: linux-headers-virtual 157s I: Testing binary package rapiddisk-dkms 157s I: Trying to build rapiddisk/9.1.0 for 6.12.0-15-generic 157s Sign command: /usr/src/linux-headers-6.12.0-15-generic/scripts/sign-file 157s Binary update-secureboot-policy not found, modules won't be signed 157s Creating symlink /var/lib/dkms/rapiddisk/9.1.0/source -> /usr/src/rapiddisk-9.1.0 157s 157s Building module: 157s Cleaning build area... 159s make -j2 KERNELRELEASE=6.12.0-15-generic -C /lib/modules/6.12.0-15-generic/build M=/var/lib/dkms/rapiddisk/9.1.0/build... 159s Cleaning build area... 159s 159s rapiddisk.ko.zst: 159s Running module version sanity check. 160s - Original module 160s - No original module exists within this kernel 160s - Installation 160s - Installing to /lib/modules/6.12.0-15-generic/updates/dkms/ 160s 160s rapiddisk-cache.ko.zst: 160s Running module version sanity check. 160s - Original module 160s - No original module exists within this kernel 160s - Installation 160s - Installing to /lib/modules/6.12.0-15-generic/updates/dkms/ 160s depmod... 160s I: Testing if rapiddisk modules are correctly installed. 160s rapiddisk/9.1.0, 6.12.0-15-generic, s390x: installed 160s rapiddisk/9.1.0/6.12.0-15-generic/s390x/log/make.log 160s I: Summary: 160s I: PASS 6.12.0-15-generic 160s /tmp/autopkgtest.KldOhh/wrapper.sh: checking for leaked background processes... 160s /tmp/autopkgtest.KldOhh/wrapper.sh: waiting for tee/cat subprocesses... 160s /tmp/autopkgtest.KldOhh/wrapper.sh: cleaning up... 160s /tmp/autopkgtest.KldOhh/wrapper.sh: Exit status: 0 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest [08:38:05]: test dkms-autopkgtest: -----------------------] 160s autopkgtest: DBG: testbed executing test finished with exit status 0 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/dkms-autopkgtest-stdout /tmp/autopkgtest-work.mtvx7hs9/out/dkms-autopkgtest-stdout 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/dkms-autopkgtest-stderr /tmp/autopkgtest-work.mtvx7hs9/out/dkms-autopkgtest-stderr 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest [08:38:06]: test dkms-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 161s dkms-autopkgtest PASS (superficial) 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.KldOhh/dkms-autopkgtest-artifacts/ /tmp/autopkgtest-work.mtvx7hs9/out/artifacts/ 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.KldOhh/dkms-autopkgtest-artifacts', '/tmp/autopkgtest.KldOhh/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 223 161s autopkgtest: DBG: needs_reset, previously=True, requested by run_tests() line 230 161s autopkgtest [08:38:06]: @@@@@@@@@@@@@@@@@@@@ summary 161s dkms-autopkgtest PASS (superficial) 161s autopkgtest: DBG: testbed stop 161s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.KldOhh 161s autopkgtest: DBG: sending command to testbed: close 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: sending command to testbed: quit 166s nova [W] Using flock in prodstack6-s390x 166s flock: timeout while waiting to get lock 166s Creating nova instance adt-plucky-s390x-rapiddisk-20250215-083524-juju-7f2275-prod-proposed-migration-environment-15-bbec1318-049c-4959-8aa7-e3caa7c36ce0 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 166s nova [W] Timed out waiting for 61e7d94e-2e9f-4852-b766-db12fafce968 to get deleted.