0s autopkgtest: DBG: testbed init 0s autopkgtest [00:15:22]: starting date and time: 2025-02-16 00:15:22+0000 0s autopkgtest [00:15:22]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [00:15:22]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.f_1zcgiv/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 pyml --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-27.secgroup --name adt-plucky-s390x-pyml-20250216-001522-juju-7f2275-prod-proposed-migration-environment-15-a0558423-0818-4d2f-9da9-0baa184a6017 --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 102s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.IkPtVo 102s autopkgtest: DBG: sending command to testbed: print-execute-command 102s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.kjredoj3/runcmd 102s autopkgtest: DBG: sending command to testbed: capabilities 102s autopkgtest: DBG: got reply from testbed: ok revert reboot suggested-normal-user=ubuntu isolation-machine revert-full-system root-on-testbed 102s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'root-on-testbed', 'has_internet'] 102s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IkPtVo'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.IkPtVo/wrapper.sh 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IkPtVo/wrapper.sh'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [00:17:05]: testbed dpkg architecture: s390x 103s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [00:17:05]: testbed apt version: 2.9.28 103s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed has eatmydata 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [00:17:05]: @@@@@@@@@@@@@@@@@@@@ test bed setup 103s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [00:17:06]: testbed release detected to be: None 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT source: Types: deb deb-src 104s URIs: http://ftpmaster.internal/ubuntu/ 104s Suites: plucky-proposed 104s Components: main restricted universe multiverse 104s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 104s Package: * 104s Pin: release plucky-proposed 104s Pin-Priority: 500 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [00:17:06]: updating testbed package index (apt update) 104s 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'] 105s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 105s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 105s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 105s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 105s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 105s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 105s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 105s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 105s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 105s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 105s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 106s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 106s Fetched 2062 kB in 1s (1986 kB/s) 106s Reading package lists... 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 106s Package: * 106s Pin: release plucky-proposed 106s Pin-Priority: 100 106s 106s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 106s Pin: release plucky-proposed 106s Pin-Priority: 995 106s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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.IkPtVo/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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'] 107s + lsb_release --codename --short 107s + RELEASE=plucky 107s + cat 107s + [ plucky != trusty ] 107s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 107s Reading package lists... 107s Building dependency tree... 107s Reading state information... 107s Calculating upgrade... 107s The following packages were automatically installed and are no longer required: 107s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 107s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 107s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 107s linux-tools-6.11.0-8-generic 107s Use 'sudo apt autoremove' to remove them. 107s The following packages will be upgraded: 107s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 108s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 1155 kB of archives. 108s After this operation, 16.4 kB of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 108s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 108s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 108s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 108s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 108s Preconfiguring packages ... 108s Fetched 1155 kB in 1s (1906 kB/s) 108s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 108s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 108s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 108s Setting up dash (0.5.12-12ubuntu1) ... 109s (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.) 109s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 109s (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.) 109s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 109s (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.) 109s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 109s (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.) 109s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 109s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 109s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 109s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 109s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 109s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 109s Setting up libtasn1-6:s390x (4.20.0-2) ... 109s Processing triggers for libc-bin (2.40-4ubuntu1) ... 109s Processing triggers for man-db (2.13.0-1) ... 109s Processing triggers for debianutils (5.21) ... 109s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 109s + /usr/lib/apt/apt-helper analyze-pattern ?true 109s + uname -r 109s + sed s/\./\\./g 109s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 109s + apt list ?obsolete 109s + + grep -v ^linux-.*6\.12\.0-15-generic.* 109s tail -n+2 109s + cut -d/ -f1 110s + true 110s + obsolete_pkgs= 110s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 110s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s The following packages will be REMOVED: 110s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 110s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 110s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 110s linux-tools-6.11.0-8-generic* 110s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 110s After this operation, 167 MB disk space will be freed. 110s (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.) 110s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 110s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 110s Removing libpython3.12t64:s390x (3.12.9-1) ... 110s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 110s Removing libnsl2:s390x (1.3.0-3build3) ... 110s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 110s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 110s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 112s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s (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.) 112s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 112s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s + grep -q trusty /etc/lsb-release 112s + [ ! -d /usr/share/doc/unattended-upgrades ] 112s + [ ! -d /usr/share/doc/lxd ] 112s + [ ! -d /usr/share/doc/lxd-client ] 112s + [ ! -d /usr/share/doc/snapd ] 112s + type iptables 112s + cat 112s + chmod 755 /etc/rc.local 112s + . /etc/rc.local 112s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 112s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 112s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 112s + uname -m 112s + [ s390x = ppc64le ] 112s + [ -d /run/systemd/system ] 112s + systemd-detect-virt --quiet --vm 112s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 112s + cat 112s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 112s + echo COMPRESS=lz4 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [00:17:14]: upgrading testbed (apt dist-upgrade and autopurge) 112s 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'] 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 112s Starting 2 pkgProblemResolver with broken count: 0 112s Done 113s Entering ResolveByKeep 113s 113s The following packages will be upgraded: 113s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 113s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s Need to get 10.7 MB of archives. 113s After this operation, 305 kB of additional disk space will be used. 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 113s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 114s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 114s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 114s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 115s Preconfiguring packages ... 115s Fetched 10.7 MB in 1s (9990 kB/s) 115s (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.) 115s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 115s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Stopping some services possibly affected by the upgrade (will be restarted later): 115s cron: stopping...done. 115s 115s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Setting up libc6:s390x (2.41-1ubuntu1) ... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Restarting services possibly affected by the upgrade: 115s cron: restarting...done. 115s 115s Services restarted successfully. 115s (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.) 115s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Setting up libc-bin (2.41-1ubuntu1) ... 115s (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.) 115s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 115s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 115s Setting up iproute2 (6.13.0-1ubuntu1) ... 116s Setting up locales (2.41-1ubuntu1) ... 116s Installing new version of config file /etc/locale.alias ... 116s Generating locales (this might take a while)... 117s en_US.UTF-8... done 117s Generation complete. 117s Setting up libc-dev-bin (2.41-1ubuntu1) ... 117s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 117s Processing triggers for man-db (2.13.0-1) ... 118s Processing triggers for systemd (257.2-3ubuntu1) ... 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 120s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s autopkgtest: DBG: testbed command exited with code 0 120s 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.IkPtVo/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 1 120s autopkgtest [00:17:22]: rebooting testbed after setup commands that affected boot 120s autopkgtest: DBG: sending command to testbed: reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IkPtVo'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.IkPtVo/autopkgtest-reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IkPtVo'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.IkPtVo/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [00:17:41]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 139s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.IkPtVo/testbed-packages"], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/testbed-packages /tmp/autopkgtest-work.f_1zcgiv/out/testbed-packages 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IkPtVo'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.IkPtVo/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IkPtVo'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.IkPtVo/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IkPtVo/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: Binaries: initialising 141s autopkgtest [00:17:43]: @@@@@@@@@@@@@@@@@@@@ apt-source pyml 141s autopkgtest: DBG: blame += pyml 141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 141s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pyml'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libpyml-ocaml-dev$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libpyml-ocaml-dev=20231101-1build3'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libpyml-ocaml$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libpyml-ocaml=20231101-1build3'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: install_deps: deps_new=[] 142s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s 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.IkPtVo/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pyml=20231101-1build3 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 pyml_*.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'] 143s + cd / 143s + mktemp -d /tmp/autopkgtest.IkPtVo/build.XXX 143s + builddir=/tmp/autopkgtest.IkPtVo/build.gXY 143s + cd /tmp/autopkgtest.IkPtVo/build.gXY 143s + apt-get source -d -q --only-source pyml=20231101-1build3 143s + OUT=Reading package lists... 143s NOTICE: 'pyml' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/ocaml-team/pyml.git 143s Please use: 143s git clone https://salsa.debian.org/ocaml-team/pyml.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 95.0 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (dsc) [2160 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (tar) [89.0 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (diff) [3868 B] 143s Fetched 95.0 kB in 0s (257 kB/s) 143s Download complete and in download only mode 143s + [ -n ] 143s + echo Reading package lists... 143s NOTICE: 'pyml' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/ocaml-team/pyml.git 143s Please use: 143s git clone https://salsa.debian.org/ocaml-team/pyml.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 95.0 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (dsc) [2160 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (tar) [89.0 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (diff) [3868 B] 143s Fetched 95.0 kB in 0s (257 kB/s) 143s Download complete and in download only mode 143s + grep ^Get: 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (dsc) [2160 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (tar) [89.0 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pyml 20231101-1build3 (diff) [3868 B] 143s + dpkg-source -x pyml_20231101-1build3.dsc src 143s gpgv: Signature made Thu Jan 23 08:06:06 2025 UTC 143s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 143s gpgv: Can't check signature: No public key 143s dpkg-source: warning: cannot verify inline signature for ./pyml_20231101-1build3.dsc: no acceptable signature found 143s + chmod -R a+rX . 143s + cd src/. 143s + pwd 143s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [00:17:45]: testing package pyml version 20231101-1build3 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/build.gXY/src/debian/ /tmp/autopkgtest-work.f_1zcgiv/out/pkg/debian/ 143s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency ocaml-nox 144s autopkgtest: DBG: processing dependency ocaml-findlib 144s autopkgtest: DBG: processing dependency libpyml-ocaml-dev 144s autopkgtest: DBG: marked alternatives ['libpyml-ocaml-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-dev 144s autopkgtest: DBG: Test defined: name hello path debian/tests/hello command "None" restrictions [] features [] depends ['ocaml-nox', 'ocaml-findlib', 'libpyml-ocaml-dev', 'python3-dev'] 144s autopkgtest [00:17:46]: build not needed 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/build.gXY/src/ /tmp/autopkgtest-work.f_1zcgiv/out/tests-tree/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency ocaml-nox 144s autopkgtest: DBG: processing dependency ocaml-findlib 144s autopkgtest: DBG: processing dependency libpyml-ocaml-dev 144s autopkgtest: DBG: marked alternatives ['libpyml-ocaml-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-dev 144s autopkgtest: DBG: Test defined: name hello path debian/tests/hello command "None" restrictions [] features [] depends ['ocaml-nox', 'ocaml-findlib', 'libpyml-ocaml-dev', 'python3-dev'] 144s autopkgtest [00:17:46]: test hello: preparing testbed 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['ocaml-nox', 'ocaml-findlib', 'libpyml-ocaml-dev', 'python3-dev'] 144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 144s autopkgtest: DBG: install_deps: deps_new=['ocaml-nox', 'ocaml-findlib', 'libpyml-ocaml-dev', 'python3-dev'] 144s autopkgtest: DBG: install-deps: satisfying ocaml-nox, ocaml-findlib, libpyml-ocaml-dev, python3-dev 144s autopkgtest: DBG: can use apt-get on testbed: True 144s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'ocaml-nox, ocaml-findlib, libpyml-ocaml-dev, python3-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 144s Reading package lists... 144s Building dependency tree... 144s Reading state information... 145s Starting pkgProblemResolver with broken count: 0 145s Starting 2 pkgProblemResolver with broken count: 0 145s Done 145s The following NEW packages will be installed: 145s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu gcc gcc-14 145s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libcc1-0 145s libcompiler-libs-ocaml-dev libexpat1-dev libfindlib-ocaml libgcc-14-dev 145s libgomp1 libisl23 libitm1 libjs-jquery libjs-sphinxdoc libjs-underscore 145s libmpc3 libncurses-dev libpyml-ocaml libpyml-ocaml-dev libpython3-dev 145s libpython3.13-dev libstdcompat-ocaml libstdcompat-ocaml-dev libstdlib-ocaml 145s libstdlib-ocaml-dev libubsan1 libzstd-dev ocaml ocaml-base ocaml-findlib 145s ocaml-interp ocaml-nox python3-dev python3.13-dev zlib1g-dev 145s 0 upgraded, 40 newly installed, 0 to remove and 0 not upgraded. 145s Need to get 133 MB of archives. 145s After this operation, 385 MB of additional disk space will be used. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 146s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 146s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 146s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 146s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 146s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 146s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 146s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 146s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 146s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 146s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 146s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 146s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 146s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 146s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdlib-ocaml s390x 5.2.0-3 [426 kB] 146s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdlib-ocaml-dev s390x 5.2.0-3 [10.9 MB] 147s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x libcompiler-libs-ocaml-dev s390x 5.2.0-3 [45.1 MB] 150s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 150s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-base s390x 5.2.0-3 [300 kB] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libfindlib-ocaml s390x 1.9.6-3build1 [189 kB] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdcompat-ocaml s390x 20~git20240529-2 [49.5 kB] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyml-ocaml s390x 20231101-1build3 [538 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-interp s390x 5.2.0-3 [8077 kB] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml s390x 5.2.0-3 [20.0 MB] 151s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x libstdcompat-ocaml-dev s390x 20~git20240529-2 [1501 kB] 152s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x libpyml-ocaml-dev s390x 20231101-1build3 [1345 kB] 152s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 152s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 152s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 152s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-findlib s390x 1.9.6-3build1 [658 kB] 152s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x ocaml-nox all 5.2.0-3 [4936 B] 152s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 152s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 152s Fetched 133 MB in 7s (18.6 MB/s) 152s Selecting previously unselected package libisl23:s390x. 153s (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.) 153s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 153s Unpacking libisl23:s390x (0.27-1) ... 153s Selecting previously unselected package libmpc3:s390x. 153s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 153s Unpacking libmpc3:s390x (1.3.1-1build2) ... 153s Selecting previously unselected package cpp-14-s390x-linux-gnu. 153s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package cpp-14. 153s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package cpp-s390x-linux-gnu. 153s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package cpp. 153s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking cpp (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package libcc1-0:s390x. 153s Preparing to unpack .../06-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libgomp1:s390x. 153s Preparing to unpack .../07-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libitm1:s390x. 153s Preparing to unpack .../08-libitm1_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libasan8:s390x. 153s Preparing to unpack .../09-libasan8_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libubsan1:s390x. 153s Preparing to unpack .../10-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package libgcc-14-dev:s390x. 153s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14-s390x-linux-gnu. 153s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-14. 153s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package gcc-s390x-linux-gnu. 153s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package gcc. 153s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 153s Unpacking gcc (4:14.2.0-1ubuntu1) ... 153s Selecting previously unselected package libstdlib-ocaml. 153s Preparing to unpack .../16-libstdlib-ocaml_5.2.0-3_s390x.deb ... 153s Unpacking libstdlib-ocaml (5.2.0-3) ... 153s Selecting previously unselected package libstdlib-ocaml-dev. 153s Preparing to unpack .../17-libstdlib-ocaml-dev_5.2.0-3_s390x.deb ... 153s Unpacking libstdlib-ocaml-dev (5.2.0-3) ... 153s Selecting previously unselected package libcompiler-libs-ocaml-dev. 153s Preparing to unpack .../18-libcompiler-libs-ocaml-dev_5.2.0-3_s390x.deb ... 153s Unpacking libcompiler-libs-ocaml-dev (5.2.0-3) ... 154s Selecting previously unselected package libexpat1-dev:s390x. 154s Preparing to unpack .../19-libexpat1-dev_2.6.4-1_s390x.deb ... 154s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 154s Selecting previously unselected package ocaml-base. 154s Preparing to unpack .../20-ocaml-base_5.2.0-3_s390x.deb ... 154s Unpacking ocaml-base (5.2.0-3) ... 154s Selecting previously unselected package libfindlib-ocaml. 154s Preparing to unpack .../21-libfindlib-ocaml_1.9.6-3build1_s390x.deb ... 154s Unpacking libfindlib-ocaml (1.9.6-3build1) ... 154s Selecting previously unselected package libjs-jquery. 154s Preparing to unpack .../22-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 154s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 154s Selecting previously unselected package libjs-underscore. 154s Preparing to unpack .../23-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 154s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 154s Selecting previously unselected package libjs-sphinxdoc. 154s Preparing to unpack .../24-libjs-sphinxdoc_8.1.3-4_all.deb ... 154s Unpacking libjs-sphinxdoc (8.1.3-4) ... 154s Selecting previously unselected package libncurses-dev:s390x. 154s Preparing to unpack .../25-libncurses-dev_6.5+20250125-2_s390x.deb ... 154s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 154s Selecting previously unselected package libstdcompat-ocaml. 154s Preparing to unpack .../26-libstdcompat-ocaml_20~git20240529-2_s390x.deb ... 154s Unpacking libstdcompat-ocaml (20~git20240529-2) ... 154s Selecting previously unselected package libpyml-ocaml. 154s Preparing to unpack .../27-libpyml-ocaml_20231101-1build3_s390x.deb ... 154s Unpacking libpyml-ocaml (20231101-1build3) ... 154s Selecting previously unselected package ocaml-interp. 154s Preparing to unpack .../28-ocaml-interp_5.2.0-3_s390x.deb ... 154s Unpacking ocaml-interp (5.2.0-3) ... 154s Selecting previously unselected package libzstd-dev:s390x. 154s Preparing to unpack .../29-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 154s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 154s Selecting previously unselected package ocaml. 154s Preparing to unpack .../30-ocaml_5.2.0-3_s390x.deb ... 154s Unpacking ocaml (5.2.0-3) ... 154s Selecting previously unselected package libstdcompat-ocaml-dev. 154s Preparing to unpack .../31-libstdcompat-ocaml-dev_20~git20240529-2_s390x.deb ... 154s Unpacking libstdcompat-ocaml-dev (20~git20240529-2) ... 154s Selecting previously unselected package libpyml-ocaml-dev. 154s Preparing to unpack .../32-libpyml-ocaml-dev_20231101-1build3_s390x.deb ... 154s Unpacking libpyml-ocaml-dev (20231101-1build3) ... 154s Selecting previously unselected package zlib1g-dev:s390x. 154s Preparing to unpack .../33-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 154s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 154s Selecting previously unselected package libpython3.13-dev:s390x. 154s Preparing to unpack .../34-libpython3.13-dev_3.13.2-1_s390x.deb ... 154s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 155s Selecting previously unselected package libpython3-dev:s390x. 155s Preparing to unpack .../35-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 155s Selecting previously unselected package ocaml-findlib. 155s Preparing to unpack .../36-ocaml-findlib_1.9.6-3build1_s390x.deb ... 155s Unpacking ocaml-findlib (1.9.6-3build1) ... 155s Selecting previously unselected package ocaml-nox. 155s Preparing to unpack .../37-ocaml-nox_5.2.0-3_all.deb ... 155s Unpacking ocaml-nox (5.2.0-3) ... 155s Selecting previously unselected package python3.13-dev. 155s Preparing to unpack .../38-python3.13-dev_3.13.2-1_s390x.deb ... 155s Unpacking python3.13-dev (3.13.2-1) ... 155s Selecting previously unselected package python3-dev. 155s Preparing to unpack .../39-python3-dev_3.13.1-1~exp2_s390x.deb ... 155s Unpacking python3-dev (3.13.1-1~exp2) ... 155s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 155s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 155s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 155s Setting up libexpat1-dev:s390x (2.6.4-1) ... 155s Setting up libstdlib-ocaml (5.2.0-3) ... 155s Setting up libmpc3:s390x (1.3.1-1build2) ... 155s Setting up ocaml-base (5.2.0-3) ... 155s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 155s Setting up libstdcompat-ocaml (20~git20240529-2) ... 155s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 155s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 155s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 155s Setting up libisl23:s390x (0.27-1) ... 155s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 155s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 155s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 155s Setting up libstdlib-ocaml-dev (5.2.0-3) ... 155s Setting up libfindlib-ocaml (1.9.6-3build1) ... 155s Setting up libcompiler-libs-ocaml-dev (5.2.0-3) ... 155s Setting up libpyml-ocaml (20231101-1build3) ... 155s Setting up ocaml-interp (5.2.0-3) ... 155s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 155s Setting up ocaml-findlib (1.9.6-3build1) ... 155s Setting up libjs-sphinxdoc (8.1.3-4) ... 155s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 155s Setting up cpp-14 (14.2.0-17ubuntu1) ... 155s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 155s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 155s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 155s Setting up python3.13-dev (3.13.2-1) ... 155s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 155s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 155s Setting up python3-dev (3.13.1-1~exp2) ... 155s Setting up cpp (4:14.2.0-1ubuntu1) ... 155s Setting up gcc-14 (14.2.0-17ubuntu1) ... 155s Setting up gcc (4:14.2.0-1ubuntu1) ... 155s Setting up ocaml (5.2.0-3) ... 155s Setting up libstdcompat-ocaml-dev (20~git20240529-2) ... 155s Setting up ocaml-nox (5.2.0-3) ... 155s Setting up libpyml-ocaml-dev (20231101-1build3) ... 155s Processing triggers for man-db (2.13.0-1) ... 156s Processing triggers for libc-bin (2.41-1ubuntu1) ... 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libpyml-ocaml-dev'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.IkPtVo/hello-packages.all"], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/hello-packages.all /tmp/autopkgtest-work.f_1zcgiv/out/hello-packages.all 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.IkPtVo/build.gXY/src'], kind short, sout raw, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.IkPtVo/build.gXY/src already exists 157s autopkgtest [00:17:59]: test hello: [----------------------- 157s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.IkPtVo/wrapper.sh --debug --artifacts=/tmp/autopkgtest.IkPtVo/hello-artifacts --chdir=/tmp/autopkgtest.IkPtVo/build.gXY/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.IkPtVo/hello-stderr --stdout=/tmp/autopkgtest.IkPtVo/hello-stdout --tmp=/tmp/autopkgtest.IkPtVo/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.IkPtVo/build.gXY/src/debian/tests/hello -- /tmp/autopkgtest.IkPtVo/build.gXY/src/debian/tests/hello"], kind test, sout raw, serr raw, env [] 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.IkPtVo/hello-artifacts 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: changing to directory: /tmp/autopkgtest.IkPtVo/build.gXY/src 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: setting environment: LANG=C.UTF-8 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LANGUAGE 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_ADDRESS 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_ALL 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_COLLATE 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_CTYPE 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_IDENTIFICATION 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_MEASUREMENT 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_MESSAGES 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_MONETARY 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_NAME 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_NUMERIC 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_PAPER 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_TELEPHONE 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: unsetting environment: LC_TIME 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: pretending to be a login shell 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: will write standard error to /tmp/autopkgtest.IkPtVo/hello-stderr 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: will write stdout to /tmp/autopkgtest.IkPtVo/hello-stdout 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.IkPtVo/autopkgtest_tmp 157s /tmp/autopkgtest.IkPtVo/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 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: marking as executable: /tmp/autopkgtest.IkPtVo/build.gXY/src/debian/tests/hello 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: command to run: /tmp/autopkgtest.IkPtVo/build.gXY/src/debian/tests/hello 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: copying /tmp/tmp.rFalc0F9wc/out to stdout and file: /tmp/autopkgtest.IkPtVo/hello-stdout 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: copying /tmp/tmp.rFalc0F9wc/err to standard error and file: /tmp/autopkgtest.IkPtVo/hello-stdout 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: writing script pid 1739 to /tmp/autopkgtest_script_pid 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: checking for leaked background processes... 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: waiting for tee/cat subprocesses... 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: cleaning up... 157s /tmp/autopkgtest.IkPtVo/wrapper.sh: Exit status: 0 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest [00:17:59]: test hello: -----------------------] 157s autopkgtest: DBG: testbed executing test finished with exit status 0 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/hello-stdout /tmp/autopkgtest-work.f_1zcgiv/out/hello-stdout 158s autopkgtest: DBG: got reply from testbed: ok 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/hello-stderr /tmp/autopkgtest-work.f_1zcgiv/out/hello-stderr 158s autopkgtest: DBG: got reply from testbed: ok 158s autopkgtest [00:18:00]: test hello: - - - - - - - - - - results - - - - - - - - - - 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IkPtVo/hello-artifacts/ /tmp/autopkgtest-work.f_1zcgiv/out/artifacts/ 158s hello PASS 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.IkPtVo/hello-artifacts', '/tmp/autopkgtest.IkPtVo/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 159s autopkgtest [00:18:01]: @@@@@@@@@@@@@@@@@@@@ summary 159s hello PASS 159s autopkgtest: DBG: testbed stop 159s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.IkPtVo 159s autopkgtest: DBG: sending command to testbed: close 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: sending command to testbed: quit 176s nova [W] Using flock in prodstack6-s390x 176s flock: timeout while waiting to get lock 176s Creating nova instance adt-plucky-s390x-pyml-20250216-001522-juju-7f2275-prod-proposed-migration-environment-15-a0558423-0818-4d2f-9da9-0baa184a6017 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 176s nova [W] Timed out waiting for 8b4c1d70-0739-4e16-9662-8edbfae21d0b to get deleted.