0s autopkgtest: DBG: testbed init 0s autopkgtest [21:58:40]: starting date and time: 2025-02-15 21:58:40+0000 0s autopkgtest [21:58:40]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:58:40]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.melsflw_/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade cudf --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-13.secgroup --name adt-plucky-s390x-cudf-20250215-215840-juju-7f2275-prod-proposed-migration-environment-15-ff2b6198-0ed1-4753-be72-ddf2f4512a88 --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/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 116s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.I3gNTX 116s autopkgtest: DBG: sending command to testbed: print-execute-command 116s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.f9fzmrnk/runcmd 116s autopkgtest: DBG: sending command to testbed: capabilities 116s autopkgtest: DBG: got reply from testbed: ok revert reboot isolation-machine revert-full-system suggested-normal-user=ubuntu root-on-testbed 116s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 116s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.I3gNTX/wrapper.sh 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/wrapper.sh'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:00:37]: testbed dpkg architecture: s390x 117s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:00:37]: testbed apt version: 2.9.28 117s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed has eatmydata 117s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:00:37]: @@@@@@@@@@@@@@@@@@@@ test bed setup 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [22:00:37]: testbed release detected to be: None 117s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT source: Types: deb deb-src 118s URIs: http://ftpmaster.internal/ubuntu/ 118s Suites: plucky-proposed 118s Components: main restricted universe multiverse 118s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 118s Package: * 118s Pin: release plucky-proposed 118s Pin-Priority: 500 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [22:00:38]: updating testbed package index (apt update) 118s 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'] 118s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 119s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 119s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 119s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 119s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 119s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 119s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 119s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 119s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 119s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 119s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 119s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 119s Fetched 2073 kB in 1s (2094 kB/s) 120s Reading package lists... 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 120s Package: * 120s Pin: release plucky-proposed 120s Pin-Priority: 100 120s 120s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 120s Pin: release plucky-proposed 120s Pin-Priority: 995 120s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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.I3gNTX/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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'] 121s + lsb_release --codename --short 121s + RELEASE=plucky 121s + cat 121s + [ plucky != trusty ] 121s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s Calculating upgrade... 121s The following packages were automatically installed and are no longer required: 121s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 121s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 121s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 121s linux-tools-6.11.0-8-generic 121s Use 'sudo apt autoremove' to remove them. 121s The following packages will be upgraded: 121s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 121s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 121s Need to get 1155 kB of archives. 121s After this operation, 16.4 kB of additional disk space will be used. 121s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 121s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 121s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 121s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 122s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 122s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 122s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 122s Preconfiguring packages ... 122s Fetched 1155 kB in 1s (1821 kB/s) 122s (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.) 122s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 122s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 122s Setting up dash (0.5.12-12ubuntu1) ... 122s (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.) 122s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 122s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 122s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 122s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 122s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 122s (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.) 122s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 122s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 122s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 122s (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.) 122s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 122s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 122s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 122s (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.) 122s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 122s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 122s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 122s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 122s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 122s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 122s Setting up libtasn1-6:s390x (4.20.0-2) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s Processing triggers for man-db (2.13.0-1) ... 123s Processing triggers for debianutils (5.21) ... 123s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 123s + /usr/lib/apt/apt-helper analyze-pattern ?true 123s + uname -r 123s + sed s/\./\\./g 123s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 123s + apt list ?obsolete 123s + + grep -v ^linux-.*6\.12\.0-15-generic.* 123s tail -n+2 123s + cut -d/ -f1 123s + true 123s + obsolete_pkgs= 123s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s The following packages will be REMOVED: 123s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 123s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 123s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 123s linux-tools-6.11.0-8-generic* 123s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 123s After this operation, 167 MB disk space will be freed. 123s (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.) 123s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 123s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 123s Removing libpython3.12t64:s390x (3.12.9-1) ... 123s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 123s Removing libnsl2:s390x (1.3.0-3build3) ... 123s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 123s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 124s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 124s Processing triggers for libc-bin (2.40-4ubuntu1) ... 125s (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.) 125s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 125s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s + grep -q trusty /etc/lsb-release 125s + [ ! -d /usr/share/doc/unattended-upgrades ] 125s + [ ! -d /usr/share/doc/lxd ] 125s + [ ! -d /usr/share/doc/lxd-client ] 125s + [ ! -d /usr/share/doc/snapd ] 125s + type iptables 125s + cat 125s + chmod 755 /etc/rc.local 125s + . /etc/rc.local 125s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 125s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 125s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 125s + uname -m 125s + [ s390x = ppc64le ] 125s + [ -d /run/systemd/system ] 125s + systemd-detect-virt --quiet --vm 125s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 125s + cat 125s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 125s + echo COMPRESS=lz4 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [22:00:45]: upgrading testbed (apt dist-upgrade and autopurge) 125s 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'] 125s Reading package lists... 125s Building dependency tree... 125s Reading state information... 125s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 125s Starting 2 pkgProblemResolver with broken count: 0 125s Done 125s Entering ResolveByKeep 126s 126s The following packages will be upgraded: 126s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 126s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s Need to get 10.7 MB of archives. 126s After this operation, 305 kB of additional disk space will be used. 126s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 126s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 126s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 126s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 126s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 127s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 127s Preconfiguring packages ... 127s Fetched 10.7 MB in 1s (12.2 MB/s) 127s (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.) 127s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 127s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 127s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 127s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 127s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 127s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 127s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 127s Checking for services that may need to be restarted... 127s Checking init scripts... 127s Checking for services that may need to be restarted... 127s Checking init scripts... 127s Stopping some services possibly affected by the upgrade (will be restarted later): 127s cron: stopping...done. 127s 127s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 127s Setting up libc6:s390x (2.41-1ubuntu1) ... 127s Checking for services that may need to be restarted... 127s Checking init scripts... 127s Restarting services possibly affected by the upgrade: 127s cron: restarting...done. 127s 127s Services restarted successfully. 127s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 127s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 127s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 127s Setting up libc-bin (2.41-1ubuntu1) ... 128s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 128s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 128s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 128s Setting up iproute2 (6.13.0-1ubuntu1) ... 128s Setting up locales (2.41-1ubuntu1) ... 128s Installing new version of config file /etc/locale.alias ... 128s Generating locales (this might take a while)... 129s en_US.UTF-8... done 129s Generation complete. 129s Setting up libc-dev-bin (2.41-1ubuntu1) ... 129s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 129s Processing triggers for man-db (2.13.0-1) ... 130s Processing triggers for systemd (257.2-3ubuntu1) ... 131s autopkgtest: DBG: testbed command exited with code 0 131s 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'] 131s Reading package lists... 131s Building dependency tree... 131s Reading state information... 131s Starting pkgProblemResolver with broken count: 0 131s Starting 2 pkgProblemResolver with broken count: 0 131s Done 131s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 131s autopkgtest: DBG: testbed command exited with code 0 131s 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.I3gNTX/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 1 131s autopkgtest [22:00:51]: rebooting testbed after setup commands that affected boot 131s autopkgtest: DBG: sending command to testbed: reboot 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [22:01:14]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 154s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.I3gNTX/testbed-packages"], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/testbed-packages /tmp/autopkgtest-work.melsflw_/out/testbed-packages 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 155s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: Binaries: initialising 157s autopkgtest [22:01:17]: @@@@@@@@@@@@@@@@@@@@ apt-source cudf 157s autopkgtest: DBG: blame += cudf 157s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 157s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'cudf'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^cudf-tools$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'cudf-tools=0.10-5build1'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcudf-dev$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcudf-dev=0.10-5build1'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libcudf-ocaml-dev$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libcudf-ocaml-dev=0.10-5build1'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: install_deps: deps_new=[] 158s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s 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.I3gNTX/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source cudf=0.10-5build1 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 cudf_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 159s + cd / 159s + mktemp -d /tmp/autopkgtest.I3gNTX/build.XXX 159s + builddir=/tmp/autopkgtest.I3gNTX/build.2ju 159s + cd /tmp/autopkgtest.I3gNTX/build.2ju 159s + apt-get source -d -q --only-source cudf=0.10-5build1 159s + OUT=Reading package lists... 159s NOTICE: 'cudf' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/ocaml-team/cudf.git 159s Please use: 159s git clone https://salsa.debian.org/ocaml-team/cudf.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 63.7 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (dsc) [2209 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (tar) [54.9 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (diff) [6544 B] 159s Fetched 63.7 kB in 0s (180 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + grep ^Get: 159s + echo Reading package lists... 159s NOTICE: 'cudf' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/ocaml-team/cudf.git 159s Please use: 159s git clone https://salsa.debian.org/ocaml-team/cudf.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 63.7 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (dsc) [2209 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (tar) [54.9 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (diff) [6544 B] 159s Fetched 63.7 kB in 0s (180 kB/s) 159s Download complete and in download only mode 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (dsc) [2209 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (tar) [54.9 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe cudf 0.10-5build1 (diff) [6544 B] 159s + dpkg-source -x cudf_0.10-5build1.dsc src 159s gpgv: Signature made Tue Sep 24 21:48:52 2024 UTC 159s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./cudf_0.10-5build1.dsc: no acceptable signature found 159s + chmod -R a+rX . 159s + cd src/. 159s + pwd 159s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [22:01:19]: testing package cudf version 0.10-5build1 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/ /tmp/autopkgtest-work.melsflw_/out/pkg/debian/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency cudf-tools 160s autopkgtest: DBG: marked alternatives ['cudf-tools'] as a synthesised dependency 160s autopkgtest: DBG: Test defined: name cudf-check-universe path debian/tests/cudf-check-universe command "None" restrictions [] features [] depends ['cudf-tools'] 160s autopkgtest: DBG: processing dependency libcudf-ocaml-dev 160s autopkgtest: DBG: marked alternatives ['libcudf-ocaml-dev'] as a synthesised dependency 160s autopkgtest: DBG: processing dependency ocaml 160s autopkgtest: DBG: processing dependency ocaml-findlib 160s autopkgtest: DBG: processing dependency ocamlbuild 160s autopkgtest: DBG: Test defined: name api-ocaml path debian/tests/api-ocaml command "None" restrictions [] features [] depends ['libcudf-ocaml-dev', 'ocaml', 'ocaml-findlib', 'ocamlbuild'] 161s autopkgtest [22:01:21]: build not needed 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/build.2ju/src/ /tmp/autopkgtest-work.melsflw_/out/tests-tree/ 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: processing dependency cudf-tools 162s autopkgtest: DBG: marked alternatives ['cudf-tools'] as a synthesised dependency 162s autopkgtest: DBG: Test defined: name cudf-check-universe path debian/tests/cudf-check-universe command "None" restrictions [] features [] depends ['cudf-tools'] 162s autopkgtest: DBG: processing dependency libcudf-ocaml-dev 162s autopkgtest: DBG: marked alternatives ['libcudf-ocaml-dev'] as a synthesised dependency 162s autopkgtest: DBG: processing dependency ocaml 162s autopkgtest: DBG: processing dependency ocaml-findlib 162s autopkgtest: DBG: processing dependency ocamlbuild 162s autopkgtest: DBG: Test defined: name api-ocaml path debian/tests/api-ocaml command "None" restrictions [] features [] depends ['libcudf-ocaml-dev', 'ocaml', 'ocaml-findlib', 'ocamlbuild'] 162s autopkgtest [22:01:22]: test cudf-check-universe: preparing testbed 162s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['cudf-tools'] 162s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 162s autopkgtest: DBG: install_deps: deps_new=['cudf-tools'] 162s autopkgtest: DBG: install-deps: satisfying cudf-tools 162s autopkgtest: DBG: can use apt-get on testbed: True 162s 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', 'cudf-tools'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 162s Reading package lists... 162s Building dependency tree... 162s Reading state information... 162s Starting pkgProblemResolver with broken count: 0 162s Starting 2 pkgProblemResolver with broken count: 0 162s Done 163s The following NEW packages will be installed: 163s cudf-tools libstdlib-ocaml ocaml-base 163s 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. 163s Need to get 1472 kB of archives. 163s After this operation, 6674 kB of additional disk space will be used. 163s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdlib-ocaml s390x 5.2.0-3 [426 kB] 163s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-base s390x 5.2.0-3 [300 kB] 163s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x cudf-tools s390x 0.10-5build1 [747 kB] 164s Fetched 1472 kB in 1s (2174 kB/s) 164s Selecting previously unselected package libstdlib-ocaml. 164s (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.) 164s Preparing to unpack .../libstdlib-ocaml_5.2.0-3_s390x.deb ... 164s Unpacking libstdlib-ocaml (5.2.0-3) ... 164s Selecting previously unselected package ocaml-base. 164s Preparing to unpack .../ocaml-base_5.2.0-3_s390x.deb ... 164s Unpacking ocaml-base (5.2.0-3) ... 164s Selecting previously unselected package cudf-tools. 164s Preparing to unpack .../cudf-tools_0.10-5build1_s390x.deb ... 164s Unpacking cudf-tools (0.10-5build1) ... 164s Setting up libstdlib-ocaml (5.2.0-3) ... 164s Setting up ocaml-base (5.2.0-3) ... 164s Setting up cudf-tools (0.10-5build1) ... 164s Processing triggers for man-db (2.13.0-1) ... 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'cudf-tools'], kind short, sout pipe, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.I3gNTX/cudf-check-universe-packages.all"], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/cudf-check-universe-packages.all /tmp/autopkgtest-work.melsflw_/out/cudf-check-universe-packages.all 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.I3gNTX/build.2ju/src'], kind short, sout raw, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.I3gNTX/build.2ju/src already exists 165s autopkgtest [22:01:25]: test cudf-check-universe: [----------------------- 165s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.I3gNTX/wrapper.sh --debug --artifacts=/tmp/autopkgtest.I3gNTX/cudf-check-universe-artifacts --chdir=/tmp/autopkgtest.I3gNTX/build.2ju/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.I3gNTX/cudf-check-universe-stderr --stdout=/tmp/autopkgtest.I3gNTX/cudf-check-universe-stdout --tmp=/tmp/autopkgtest.I3gNTX/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/cudf-check-universe -- /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/cudf-check-universe"], kind test, sout raw, serr raw, env [] 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.I3gNTX/cudf-check-universe-artifacts 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: changing to directory: /tmp/autopkgtest.I3gNTX/build.2ju/src 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: LANG=C.UTF-8 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LANGUAGE 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_ADDRESS 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_ALL 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_COLLATE 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_CTYPE 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_IDENTIFICATION 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_MEASUREMENT 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_MESSAGES 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_MONETARY 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_NAME 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_NUMERIC 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_PAPER 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_TELEPHONE 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_TIME 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: pretending to be a login shell 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: will write standard error to /tmp/autopkgtest.I3gNTX/cudf-check-universe-stderr 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: will write stdout to /tmp/autopkgtest.I3gNTX/cudf-check-universe-stdout 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.I3gNTX/autopkgtest_tmp 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: marking as executable: /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/cudf-check-universe 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: command to run: /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/cudf-check-universe 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: copying /tmp/tmp.4ieCBpnJ3A/out to stdout and file: /tmp/autopkgtest.I3gNTX/cudf-check-universe-stdout 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: copying /tmp/tmp.4ieCBpnJ3A/err to standard error and file: /tmp/autopkgtest.I3gNTX/cudf-check-universe-stdout 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: writing script pid 1395 to /tmp/autopkgtest_script_pid 165s original installation status consistent 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: checking for leaked background processes... 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: waiting for tee/cat subprocesses... 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: cleaning up... 165s /tmp/autopkgtest.I3gNTX/wrapper.sh: Exit status: 0 165s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [22:01:26]: test cudf-check-universe: -----------------------] 166s autopkgtest: DBG: testbed executing test finished with exit status 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/cudf-check-universe-stdout /tmp/autopkgtest-work.melsflw_/out/cudf-check-universe-stdout 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/cudf-check-universe-stderr /tmp/autopkgtest-work.melsflw_/out/cudf-check-universe-stderr 166s autopkgtest: DBG: got reply from testbed: ok 166s cudf-check-universe PASS 166s autopkgtest [22:01:26]: test cudf-check-universe: - - - - - - - - - - results - - - - - - - - - - 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/cudf-check-universe-artifacts/ /tmp/autopkgtest-work.melsflw_/out/artifacts/ 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.I3gNTX/cudf-check-universe-artifacts', '/tmp/autopkgtest.I3gNTX/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [22:01:26]: test api-ocaml: preparing testbed 166s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['cudf-tools'], deps_new=['libcudf-ocaml-dev', 'ocaml', 'ocaml-findlib', 'ocamlbuild'] 166s autopkgtest: DBG: testbed reset 166s autopkgtest: DBG: sending command to testbed: revert 289s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.I3gNTX 289s autopkgtest: DBG: sending command to testbed: print-execute-command 289s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.f9fzmrnk/runcmd 289s autopkgtest: DBG: sending command to testbed: capabilities 289s autopkgtest: DBG: got reply from testbed: ok revert reboot root-on-testbed isolation-machine revert-full-system ok suggested-normal-user=ubuntu 289s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'root-on-testbed', 'isolation-machine', 'revert-full-system', 'ok', 'suggested-normal-user=ubuntu', 'has_internet'] 289s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 289s autopkgtest: DBG: testbed command exited with code 0 289s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.I3gNTX/wrapper.sh 289s autopkgtest: DBG: got reply from testbed: ok 289s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/wrapper.sh'], kind short, sout raw, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [22:03:30]: testbed dpkg architecture: s390x 290s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [22:03:30]: testbed apt version: 2.9.28 290s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest: DBG: testbed has eatmydata 290s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [22:03:30]: @@@@@@@@@@@@@@@@@@@@ test bed setup 290s 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 [] 290s autopkgtest: DBG: testbed command exited with code 0 290s autopkgtest [22:03:30]: testbed release detected to be: plucky 290s 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 [] 291s autopkgtest: DBG: testbed command exited with code 0 291s 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 [] 291s autopkgtest: DBG: testbed command exited with code 0 291s autopkgtest: DBG: adding APT source: Types: deb deb-src 291s URIs: http://ftpmaster.internal/ubuntu/ 291s Suites: plucky-proposed 291s Components: main restricted universe multiverse 291s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 291s 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 [] 291s autopkgtest: DBG: testbed command exited with code 0 291s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 291s Package: * 291s Pin: release plucky-proposed 291s Pin-Priority: 500 291s 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 [] 291s autopkgtest: DBG: testbed command exited with code 0 291s autopkgtest [22:03:31]: updating testbed package index (apt update) 291s 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'] 291s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 292s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 292s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 292s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 292s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 292s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 292s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 292s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 292s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 292s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 292s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 292s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 292s Fetched 2073 kB in 1s (2031 kB/s) 293s Reading package lists... 293s autopkgtest: DBG: testbed command exited with code 0 293s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 293s Package: * 293s Pin: release plucky-proposed 293s Pin-Priority: 100 293s 293s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 293s Pin: release plucky-proposed 293s Pin-Priority: 995 293s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s 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.I3gNTX/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 293s autopkgtest: DBG: testbed command exited with code 0 293s 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'] 293s + lsb_release --codename --short 294s + RELEASE=plucky 294s + cat 294s + [ plucky != trusty ] 294s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 294s Reading package lists... 294s Building dependency tree... 294s Reading state information... 294s Calculating upgrade... 294s The following packages were automatically installed and are no longer required: 294s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 294s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 294s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 294s linux-tools-6.11.0-8-generic 294s Use 'sudo apt autoremove' to remove them. 294s The following packages will be upgraded: 294s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 294s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 294s Need to get 1155 kB of archives. 294s After this operation, 16.4 kB of additional disk space will be used. 294s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 294s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 294s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 294s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 295s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 295s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 295s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 295s Preconfiguring packages ... 295s Fetched 1155 kB in 1s (1814 kB/s) 295s (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.) 295s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 295s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 295s Setting up dash (0.5.12-12ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 295s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 295s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 295s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 295s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 295s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 295s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 295s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 295s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 295s (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.) 295s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 295s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 295s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 295s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 295s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 295s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 295s Setting up libtasn1-6:s390x (4.20.0-2) ... 295s Processing triggers for libc-bin (2.40-4ubuntu1) ... 295s Processing triggers for man-db (2.13.0-1) ... 296s Processing triggers for debianutils (5.21) ... 296s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 296s + /usr/lib/apt/apt-helper analyze-pattern ?true 296s + + sed s/\./\\./g 296s uname -r 296s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 296s + apt list ?obsolete 296s + tail -n+2 296s + + grep -v ^linux-.*6\.12\.0-15-generic.* 296s cut -d/ -f1 296s + true 296s + obsolete_pkgs= 296s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 296s Reading package lists... 296s Building dependency tree... 296s Reading state information... 296s The following packages will be REMOVED: 296s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 296s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 296s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 296s linux-tools-6.11.0-8-generic* 296s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 296s After this operation, 167 MB disk space will be freed. 296s (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.) 296s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 296s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 296s Removing libpython3.12t64:s390x (3.12.9-1) ... 296s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 297s Removing libnsl2:s390x (1.3.0-3build3) ... 297s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 297s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 297s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 297s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 297s Processing triggers for libc-bin (2.40-4ubuntu1) ... 297s (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.) 297s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 297s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 298s + grep -q trusty /etc/lsb-release 298s + [ ! -d /usr/share/doc/unattended-upgrades ] 298s + [ ! -d /usr/share/doc/lxd ] 298s + [ ! -d /usr/share/doc/lxd-client ] 298s + [ ! -d /usr/share/doc/snapd ] 298s + type iptables 298s + cat 298s + chmod 755 /etc/rc.local 298s + . /etc/rc.local 298s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 298s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 298s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 298s + uname -m 298s + [ s390x = ppc64le ] 298s + [ -d /run/systemd/system ] 298s + systemd-detect-virt --quiet --vm 298s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 298s + cat 298s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 298s + echo COMPRESS=lz4 298s autopkgtest: DBG: testbed command exited with code 0 298s autopkgtest [22:03:38]: upgrading testbed (apt dist-upgrade and autopurge) 298s 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'] 298s Reading package lists... 298s Building dependency tree... 298s Reading state information... 298s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 298s Starting 2 pkgProblemResolver with broken count: 0 298s Done 298s Entering ResolveByKeep 298s 299s The following packages will be upgraded: 299s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 299s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 299s Need to get 10.7 MB of archives. 299s After this operation, 305 kB of additional disk space will be used. 299s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 299s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 299s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 299s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 299s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 299s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 300s Preconfiguring packages ... 300s Fetched 10.7 MB in 1s (12.3 MB/s) 300s (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.) 300s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 300s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 300s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 300s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 300s Checking for services that may need to be restarted... 300s Checking init scripts... 300s Checking for services that may need to be restarted... 300s Checking init scripts... 300s Stopping some services possibly affected by the upgrade (will be restarted later): 300s cron: stopping...done. 300s 300s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Setting up libc6:s390x (2.41-1ubuntu1) ... 300s Checking for services that may need to be restarted... 300s Checking init scripts... 300s Restarting services possibly affected by the upgrade: 300s cron: restarting...done. 300s 300s Services restarted successfully. 300s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 300s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 300s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 300s Setting up libc-bin (2.41-1ubuntu1) ... 300s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 300s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 300s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 300s Setting up iproute2 (6.13.0-1ubuntu1) ... 301s Setting up locales (2.41-1ubuntu1) ... 301s Installing new version of config file /etc/locale.alias ... 301s Generating locales (this might take a while)... 302s en_US.UTF-8... done 302s Generation complete. 302s Setting up libc-dev-bin (2.41-1ubuntu1) ... 302s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 302s Processing triggers for man-db (2.13.0-1) ... 303s Processing triggers for systemd (257.2-3ubuntu1) ... 303s autopkgtest: DBG: testbed command exited with code 0 303s 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'] 303s Reading package lists... 304s Building dependency tree... 304s Reading state information... 304s Starting pkgProblemResolver with broken count: 0 304s Starting 2 pkgProblemResolver with broken count: 0 304s Done 304s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 304s autopkgtest: DBG: testbed command exited with code 0 304s 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.I3gNTX/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 304s autopkgtest: DBG: testbed command exited with code 1 304s autopkgtest [22:03:44]: rebooting testbed after setup commands that affected boot 304s autopkgtest: DBG: sending command to testbed: reboot 324s autopkgtest: DBG: got reply from testbed: ok 324s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 324s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 324s autopkgtest: DBG: testbed command exited with code 0 324s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot 324s autopkgtest: DBG: got reply from testbed: ok 324s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare 325s autopkgtest: DBG: got reply from testbed: ok 325s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 325s autopkgtest: DBG: testbed command exited with code 0 325s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.I3gNTX/testbed-packages"], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/testbed-packages /tmp/autopkgtest-work.melsflw_/out/testbed-packages 326s autopkgtest: DBG: got reply from testbed: ok 326s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 326s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 326s autopkgtest: DBG: testbed command exited with code 0 326s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot 327s autopkgtest: DBG: got reply from testbed: ok 327s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX'], kind short, sout raw, serr pipe, env [] 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare 327s autopkgtest: DBG: got reply from testbed: ok 327s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 328s autopkgtest: DBG: testbed command exited with code 0 328s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.I3gNTX/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 328s autopkgtest: DBG: testbed command exited with code 0 328s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 328s autopkgtest: DBG: testbed command exited with code 0 328s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 328s autopkgtest: DBG: install_deps: deps_new=['libcudf-ocaml-dev', 'ocaml', 'ocaml-findlib', 'ocamlbuild'] 328s autopkgtest: DBG: install-deps: satisfying libcudf-ocaml-dev, ocaml, ocaml-findlib, ocamlbuild 328s autopkgtest: DBG: can use apt-get on testbed: True 328s 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', 'libcudf-ocaml-dev, ocaml, ocaml-findlib, ocamlbuild'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 328s Reading package lists... 328s Building dependency tree... 328s Reading state information... 328s Starting pkgProblemResolver with broken count: 0 328s Starting 2 pkgProblemResolver with broken count: 0 328s Done 329s The following NEW packages will be installed: 329s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu gcc gcc-14 329s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libcc1-0 329s libcompiler-libs-ocaml-dev libcudf-ocaml-dev libextlib-ocaml 329s libextlib-ocaml-dev libfindlib-ocaml libgcc-14-dev libgomp1 libisl23 libitm1 329s libmpc3 libncurses-dev libstdlib-ocaml libstdlib-ocaml-dev libubsan1 329s libzstd-dev ocaml ocaml-base ocaml-findlib ocaml-interp ocamlbuild 329s 0 upgraded, 30 newly installed, 0 to remove and 0 not upgraded. 329s Need to get 125 MB of archives. 329s After this operation, 358 MB of additional disk space will be used. 329s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 329s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 329s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 330s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 330s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 330s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 330s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 330s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 330s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 330s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 330s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 330s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 330s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 330s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 330s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 330s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 330s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdlib-ocaml s390x 5.2.0-3 [426 kB] 330s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdlib-ocaml-dev s390x 5.2.0-3 [10.9 MB] 331s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x libcompiler-libs-ocaml-dev s390x 5.2.0-3 [45.1 MB] 333s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-base s390x 5.2.0-3 [300 kB] 333s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libfindlib-ocaml s390x 1.9.6-3build1 [189 kB] 333s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-findlib s390x 1.9.6-3build1 [658 kB] 333s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libextlib-ocaml s390x 1.8.0-2build1 [417 kB] 333s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-interp s390x 5.2.0-3 [8077 kB] 334s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 334s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 334s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml s390x 5.2.0-3 [20.0 MB] 335s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libextlib-ocaml-dev s390x 1.8.0-2build1 [1202 kB] 335s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libcudf-ocaml-dev s390x 0.10-5build1 [710 kB] 335s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x ocamlbuild s390x 0.15.0-2build1 [1259 kB] 335s Fetched 125 MB in 6s (20.7 MB/s) 335s Selecting previously unselected package libisl23:s390x. 335s (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.) 335s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 335s Unpacking libisl23:s390x (0.27-1) ... 335s Selecting previously unselected package libmpc3:s390x. 335s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 335s Unpacking libmpc3:s390x (1.3.1-1build2) ... 335s Selecting previously unselected package cpp-14-s390x-linux-gnu. 335s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package cpp-14. 335s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package cpp-s390x-linux-gnu. 335s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 335s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 335s Selecting previously unselected package cpp. 335s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 335s Unpacking cpp (4:14.2.0-1ubuntu1) ... 335s Selecting previously unselected package libcc1-0:s390x. 335s Preparing to unpack .../06-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libgomp1:s390x. 335s Preparing to unpack .../07-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libitm1:s390x. 335s Preparing to unpack .../08-libitm1_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libasan8:s390x. 335s Preparing to unpack .../09-libasan8_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libubsan1:s390x. 335s Preparing to unpack .../10-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package libgcc-14-dev:s390x. 335s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 335s Selecting previously unselected package gcc-14-s390x-linux-gnu. 335s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 335s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 336s Selecting previously unselected package gcc-14. 336s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 336s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 336s Selecting previously unselected package gcc-s390x-linux-gnu. 336s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 336s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 336s Selecting previously unselected package gcc. 336s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 336s Unpacking gcc (4:14.2.0-1ubuntu1) ... 336s Selecting previously unselected package libstdlib-ocaml. 336s Preparing to unpack .../16-libstdlib-ocaml_5.2.0-3_s390x.deb ... 336s Unpacking libstdlib-ocaml (5.2.0-3) ... 336s Selecting previously unselected package libstdlib-ocaml-dev. 336s Preparing to unpack .../17-libstdlib-ocaml-dev_5.2.0-3_s390x.deb ... 336s Unpacking libstdlib-ocaml-dev (5.2.0-3) ... 336s Selecting previously unselected package libcompiler-libs-ocaml-dev. 336s Preparing to unpack .../18-libcompiler-libs-ocaml-dev_5.2.0-3_s390x.deb ... 336s Unpacking libcompiler-libs-ocaml-dev (5.2.0-3) ... 336s Selecting previously unselected package ocaml-base. 336s Preparing to unpack .../19-ocaml-base_5.2.0-3_s390x.deb ... 336s Unpacking ocaml-base (5.2.0-3) ... 336s Selecting previously unselected package libfindlib-ocaml. 336s Preparing to unpack .../20-libfindlib-ocaml_1.9.6-3build1_s390x.deb ... 336s Unpacking libfindlib-ocaml (1.9.6-3build1) ... 336s Selecting previously unselected package ocaml-findlib. 336s Preparing to unpack .../21-ocaml-findlib_1.9.6-3build1_s390x.deb ... 336s Unpacking ocaml-findlib (1.9.6-3build1) ... 336s Selecting previously unselected package libextlib-ocaml. 336s Preparing to unpack .../22-libextlib-ocaml_1.8.0-2build1_s390x.deb ... 336s Unpacking libextlib-ocaml (1.8.0-2build1) ... 336s Selecting previously unselected package ocaml-interp. 336s Preparing to unpack .../23-ocaml-interp_5.2.0-3_s390x.deb ... 336s Unpacking ocaml-interp (5.2.0-3) ... 336s Selecting previously unselected package libncurses-dev:s390x. 336s Preparing to unpack .../24-libncurses-dev_6.5+20250125-2_s390x.deb ... 336s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 336s Selecting previously unselected package libzstd-dev:s390x. 336s Preparing to unpack .../25-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 336s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 336s Selecting previously unselected package ocaml. 336s Preparing to unpack .../26-ocaml_5.2.0-3_s390x.deb ... 336s Unpacking ocaml (5.2.0-3) ... 337s Selecting previously unselected package libextlib-ocaml-dev. 337s Preparing to unpack .../27-libextlib-ocaml-dev_1.8.0-2build1_s390x.deb ... 337s Unpacking libextlib-ocaml-dev (1.8.0-2build1) ... 337s Selecting previously unselected package libcudf-ocaml-dev. 337s Preparing to unpack .../28-libcudf-ocaml-dev_0.10-5build1_s390x.deb ... 337s Unpacking libcudf-ocaml-dev (0.10-5build1) ... 337s Selecting previously unselected package ocamlbuild. 337s Preparing to unpack .../29-ocamlbuild_0.15.0-2build1_s390x.deb ... 337s Unpacking ocamlbuild (0.15.0-2build1) ... 337s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 337s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 337s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 337s Setting up libstdlib-ocaml (5.2.0-3) ... 337s Setting up libmpc3:s390x (1.3.1-1build2) ... 337s Setting up ocaml-base (5.2.0-3) ... 337s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 337s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 337s Setting up libisl23:s390x (0.27-1) ... 337s Setting up libextlib-ocaml (1.8.0-2build1) ... 337s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 337s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 337s Setting up libstdlib-ocaml-dev (5.2.0-3) ... 337s Setting up libfindlib-ocaml (1.9.6-3build1) ... 337s Setting up libcompiler-libs-ocaml-dev (5.2.0-3) ... 337s Setting up ocaml-interp (5.2.0-3) ... 337s Setting up ocaml-findlib (1.9.6-3build1) ... 337s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 337s Setting up cpp-14 (14.2.0-17ubuntu1) ... 337s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 337s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 337s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 337s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 337s Setting up cpp (4:14.2.0-1ubuntu1) ... 337s Setting up gcc-14 (14.2.0-17ubuntu1) ... 337s Setting up gcc (4:14.2.0-1ubuntu1) ... 337s Setting up ocaml (5.2.0-3) ... 337s Setting up libextlib-ocaml-dev (1.8.0-2build1) ... 337s Setting up libcudf-ocaml-dev (0.10-5build1) ... 337s Setting up ocamlbuild (0.15.0-2build1) ... 337s Processing triggers for libc-bin (2.41-1ubuntu1) ... 337s Processing triggers for man-db (2.13.0-1) ... 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libcudf-ocaml-dev'], kind short, sout pipe, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.I3gNTX/api-ocaml-packages.all"], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/api-ocaml-packages.all /tmp/autopkgtest-work.melsflw_/out/api-ocaml-packages.all 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.I3gNTX/build.2ju/src'], kind short, sout raw, serr raw, env [] 338s autopkgtest: DBG: testbed command exited with code 1 338s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.I3gNTX/build.2ju'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.melsflw_/out/tests-tree/ /tmp/autopkgtest.I3gNTX/build.2ju/src/ 339s autopkgtest: DBG: got reply from testbed: ok 339s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.I3gNTX/build.2ju/src'], kind short, sout raw, serr pipe, env [] 339s autopkgtest: DBG: testbed command exited with code 0 339s autopkgtest [22:04:19]: test api-ocaml: [----------------------- 339s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.I3gNTX/wrapper.sh --debug --artifacts=/tmp/autopkgtest.I3gNTX/api-ocaml-artifacts --chdir=/tmp/autopkgtest.I3gNTX/build.2ju/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.I3gNTX/api-ocaml-stderr --stdout=/tmp/autopkgtest.I3gNTX/api-ocaml-stdout --tmp=/tmp/autopkgtest.I3gNTX/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/api-ocaml -- /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/api-ocaml"], kind test, sout raw, serr raw, env [] 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.I3gNTX/api-ocaml-artifacts 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: changing to directory: /tmp/autopkgtest.I3gNTX/build.2ju/src 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: LANG=C.UTF-8 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LANGUAGE 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_ADDRESS 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_ALL 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_COLLATE 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_CTYPE 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_IDENTIFICATION 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_MEASUREMENT 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_MESSAGES 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_MONETARY 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_NAME 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_NUMERIC 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_PAPER 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_TELEPHONE 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: unsetting environment: LC_TIME 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: pretending to be a login shell 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: will write standard error to /tmp/autopkgtest.I3gNTX/api-ocaml-stderr 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: will write stdout to /tmp/autopkgtest.I3gNTX/api-ocaml-stdout 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.I3gNTX/autopkgtest_tmp 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: marking as executable: /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/api-ocaml 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: command to run: /tmp/autopkgtest.I3gNTX/build.2ju/src/debian/tests/api-ocaml 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: copying /tmp/tmp.WQMMBph3M1/out to stdout and file: /tmp/autopkgtest.I3gNTX/api-ocaml-stdout 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: copying /tmp/tmp.WQMMBph3M1/err to standard error and file: /tmp/autopkgtest.I3gNTX/api-ocaml-stdout 339s /tmp/autopkgtest.I3gNTX/wrapper.sh: writing script pid 1532 to /tmp/autopkgtest_script_pid 339s * Compile to bytecode 339s + ocamlfind ocamldep -package cudf -modules parse.ml > parse.ml.depends 339s + ocamlfind ocamlc -c -I +unix -package cudf -o parse.cmo parse.ml 339s + ocamlfind ocamlc -linkpkg -I +unix unix.cma -package cudf parse.cmo -o parse.byte 339s * Run the bytecode 339s wheel 339s battery 339s window 339s tire 339s tire 339s door 339s electric-engine 339s gasoline-engine 339s electric-engine 339s window 339s glass 339s solar-collector 339s glass 339s wheel 339s turbo 339s window 339s car 339s bicycle 339s door 339s gasoline-engine 339s * Compile to native code 339s + ocamlfind ocamlopt -c -I +unix -package cudf -o parse.cmx parse.ml 339s + ocamlfind ocamlopt -linkpkg -I +unix unix.cmxa -package cudf parse.cmx -o parse.native 340s * Run the native code 340s wheel 340s battery 340s window 340s tire 340s tire 340s door 340s electric-engine 340s gasoline-engine 340s electric-engine 340s window 340s glass 340s solar-collector 340s glass 340s wheel 340s turbo 340s window 340s car 340s bicycle 340s door 340s gasoline-engine 340s /tmp/autopkgtest.I3gNTX/wrapper.sh: checking for leaked background processes... 340s /tmp/autopkgtest.I3gNTX/wrapper.sh: waiting for tee/cat subprocesses... 340s /tmp/autopkgtest.I3gNTX/wrapper.sh: cleaning up... 340s /tmp/autopkgtest.I3gNTX/wrapper.sh: Exit status: 0 340s autopkgtest: DBG: testbed command exited with code 0 340s autopkgtest [22:04:20]: test api-ocaml: -----------------------] 340s autopkgtest: DBG: testbed executing test finished with exit status 0 340s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/api-ocaml-stdout /tmp/autopkgtest-work.melsflw_/out/api-ocaml-stdout 340s autopkgtest: DBG: got reply from testbed: ok 340s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/api-ocaml-stderr /tmp/autopkgtest-work.melsflw_/out/api-ocaml-stderr 340s autopkgtest: DBG: got reply from testbed: ok 340s autopkgtest [22:04:20]: test api-ocaml: - - - - - - - - - - results - - - - - - - - - - 340s api-ocaml PASS 340s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.I3gNTX/api-ocaml-artifacts/ /tmp/autopkgtest-work.melsflw_/out/artifacts/ 341s autopkgtest: DBG: got reply from testbed: ok 341s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.I3gNTX/api-ocaml-artifacts', '/tmp/autopkgtest.I3gNTX/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 341s autopkgtest: DBG: testbed command exited with code 0 341s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 341s autopkgtest [22:04:21]: @@@@@@@@@@@@@@@@@@@@ summary 341s cudf-check-universe PASS 341s api-ocaml PASS 341s autopkgtest: DBG: testbed stop 341s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.I3gNTX 341s autopkgtest: DBG: sending command to testbed: close 348s autopkgtest: DBG: got reply from testbed: ok 348s autopkgtest: DBG: sending command to testbed: quit 348s nova [W] Using flock in prodstack6-s390x 348s Creating nova instance adt-plucky-s390x-cudf-20250215-215840-juju-7f2275-prod-proposed-migration-environment-15-ff2b6198-0ed1-4753-be72-ddf2f4512a88 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 348s nova [W] Timed out waiting for 75672caf-d5fe-45dc-b88b-131f9f3c0547 to get deleted. 348s nova [W] Using flock in prodstack6-s390x 348s Creating nova instance adt-plucky-s390x-cudf-20250215-215840-juju-7f2275-prod-proposed-migration-environment-15-ff2b6198-0ed1-4753-be72-ddf2f4512a88 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 348s nova [W] Timed out waiting for 234d410f-cc45-44ea-b747-caa0ff345a57 to get deleted.