0s autopkgtest: DBG: testbed init 0s autopkgtest [01:42:19]: starting date and time: 2025-02-16 01:42:19+0000 0s autopkgtest [01:42:19]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:42:19]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.wfsqiybn/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 yabasic --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-30.secgroup --name adt-plucky-s390x-yabasic-20250216-014219-juju-7f2275-prod-proposed-migration-environment-15-2cadd19e-d731-43ee-9e8a-84714256c8b4 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ZlS12Y 96s autopkgtest: DBG: sending command to testbed: print-execute-command 96s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.cs2m9kxb/runcmd 96s autopkgtest: DBG: sending command to testbed: capabilities 96s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu isolation-machine revert-full-system revert root-on-testbed 96s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'revert', 'root-on-testbed', 'has_internet'] 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZlS12Y'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ZlS12Y/wrapper.sh 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZlS12Y/wrapper.sh'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:43:56]: testbed dpkg architecture: s390x 97s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [01:43:56]: testbed apt version: 2.9.28 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed has eatmydata 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [01:43:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [01:43:57]: testbed release detected to be: None 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT source: Types: deb deb-src 98s URIs: http://ftpmaster.internal/ubuntu/ 98s Suites: plucky-proposed 98s Components: main restricted universe multiverse 98s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 98s Package: * 98s Pin: release plucky-proposed 98s Pin-Priority: 500 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [01:43:57]: updating testbed package index (apt update) 98s 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'] 99s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 99s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 99s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 99s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 99s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 99s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 99s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 99s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 99s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 99s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 99s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 99s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 100s Fetched 2062 kB in 1s (2109 kB/s) 100s Reading package lists... 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 100s Package: * 100s Pin: release plucky-proposed 100s Pin-Priority: 100 100s 100s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 100s Pin: release plucky-proposed 100s Pin-Priority: 995 100s 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 [] 100s autopkgtest: DBG: testbed command exited with code 0 100s 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.ZlS12Y/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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'] 101s + lsb_release --codename --short 101s + RELEASE=plucky 101s + cat 101s + [ plucky != trusty ] 101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s Calculating upgrade... 101s The following packages were automatically installed and are no longer required: 101s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 101s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 101s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 101s linux-tools-6.11.0-8-generic 101s Use 'sudo apt autoremove' to remove them. 101s The following packages will be upgraded: 101s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 101s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 101s Need to get 1155 kB of archives. 101s After this operation, 16.4 kB of additional disk space will be used. 101s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 102s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 102s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 102s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 102s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 102s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 102s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 102s Preconfiguring packages ... 102s Fetched 1155 kB in 1s (1893 kB/s) 102s (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.) 102s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 102s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 102s Setting up dash (0.5.12-12ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 102s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 102s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 102s (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.) 102s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 103s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 103s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 103s (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.) 103s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 103s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 103s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 103s (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.) 103s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 103s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 103s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 103s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 103s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 103s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 103s Setting up libtasn1-6:s390x (4.20.0-2) ... 103s Processing triggers for libc-bin (2.40-4ubuntu1) ... 103s Processing triggers for man-db (2.13.0-1) ... 103s Processing triggers for debianutils (5.21) ... 103s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 103s + /usr/lib/apt/apt-helper analyze-pattern ?true 103s + uname -r 103s + sed s/\./\\./g 103s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 103s + apt list ?obsolete 103s + tail -n+2 103s + cut -d/ -f1 103s + grep -v ^linux-.*6\.12\.0-15-generic.* 104s + true 104s + obsolete_pkgs= 104s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 104s Reading package lists... 104s Building dependency tree... 104s Reading state information... 104s The following packages will be REMOVED: 104s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 104s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 104s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 104s linux-tools-6.11.0-8-generic* 104s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 104s After this operation, 167 MB disk space will be freed. 104s (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.) 104s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 104s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 104s Removing libpython3.12t64:s390x (3.12.9-1) ... 104s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 104s Removing libnsl2:s390x (1.3.0-3build3) ... 104s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 104s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 104s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 105s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 105s Processing triggers for libc-bin (2.40-4ubuntu1) ... 106s (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.) 106s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 106s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 106s + grep -q trusty /etc/lsb-release 106s + [ ! -d /usr/share/doc/unattended-upgrades ] 106s + [ ! -d /usr/share/doc/lxd ] 106s + [ ! -d /usr/share/doc/lxd-client ] 106s + [ ! -d /usr/share/doc/snapd ] 106s + type iptables 106s + cat 106s + chmod 755 /etc/rc.local 106s + . /etc/rc.local 106s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 106s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 106s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 106s + uname -m 106s + [ s390x = ppc64le ] 106s + [ -d /run/systemd/system ] 106s + systemd-detect-virt --quiet --vm 106s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 106s + cat 106s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 106s + echo COMPRESS=lz4 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [01:44:05]: upgrading testbed (apt dist-upgrade and autopurge) 106s 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'] 106s Reading package lists... 106s Building dependency tree... 106s Reading state information... 106s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 106s Starting 2 pkgProblemResolver with broken count: 0 106s Done 107s Entering ResolveByKeep 107s 107s The following packages will be upgraded: 107s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 107s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 107s Need to get 10.7 MB of archives. 107s After this operation, 305 kB of additional disk space will be used. 107s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 107s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 108s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 109s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 109s Preconfiguring packages ... 109s Fetched 10.7 MB in 2s (7021 kB/s) 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 ... 55867 files and directories currently installed.) 109s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 109s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 109s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 109s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 109s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 109s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 109s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 109s Checking for services that may need to be restarted... 109s Checking init scripts... 109s Checking for services that may need to be restarted... 109s Checking init scripts... 109s Stopping some services possibly affected by the upgrade (will be restarted later): 109s cron: stopping...done. 109s 110s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 110s Setting up libc6:s390x (2.41-1ubuntu1) ... 110s Checking for services that may need to be restarted... 110s Checking init scripts... 110s Restarting services possibly affected by the upgrade: 110s cron: restarting...done. 110s 110s Services restarted successfully. 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 ... 55868 files and directories currently installed.) 110s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 110s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 110s Setting up libc-bin (2.41-1ubuntu1) ... 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 ... 55868 files and directories currently installed.) 110s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 110s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 110s Setting up iproute2 (6.13.0-1ubuntu1) ... 110s Setting up locales (2.41-1ubuntu1) ... 110s Installing new version of config file /etc/locale.alias ... 110s Generating locales (this might take a while)... 112s en_US.UTF-8... done 112s Generation complete. 112s Setting up libc-dev-bin (2.41-1ubuntu1) ... 112s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 112s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for systemd (257.2-3ubuntu1) ... 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Starting pkgProblemResolver with broken count: 0 114s Starting 2 pkgProblemResolver with broken count: 0 114s Done 114s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 114s autopkgtest: DBG: testbed command exited with code 0 114s 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.ZlS12Y/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 114s autopkgtest: DBG: testbed command exited with code 1 114s autopkgtest [01:44:13]: rebooting testbed after setup commands that affected boot 114s autopkgtest: DBG: sending command to testbed: reboot 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZlS12Y'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ZlS12Y/autopkgtest-reboot 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZlS12Y'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ZlS12Y/autopkgtest-reboot-prepare 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [01:44:32]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 133s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ZlS12Y/testbed-packages"], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/testbed-packages /tmp/autopkgtest-work.wfsqiybn/out/testbed-packages 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZlS12Y'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ZlS12Y/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ZlS12Y'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ZlS12Y/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ZlS12Y/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: Binaries: initialising 135s autopkgtest [01:44:34]: @@@@@@@@@@@@@@@@@@@@ apt-source yabasic 135s autopkgtest: DBG: blame += yabasic 135s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 135s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'yabasic'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^yabasic$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'yabasic=1:2.90.5-1'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: install_deps: deps_new=[] 136s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s 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.ZlS12Y/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source yabasic=1:2.90.5-1 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 yabasic_*.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'] 137s + cd / 137s + mktemp -d /tmp/autopkgtest.ZlS12Y/build.XXX 137s + builddir=/tmp/autopkgtest.ZlS12Y/build.BC1 137s + cd /tmp/autopkgtest.ZlS12Y/build.BC1 137s + apt-get source -d -q --only-source yabasic=1:2.90.5-1 137s + OUT=Reading package lists... 137s NOTICE: 'yabasic' packaging is maintained in the 'Git' version control system at: 137s https://salsa.debian.org/debian/yabasic.git 137s Please use: 137s git clone https://salsa.debian.org/debian/yabasic.git 137s to retrieve the latest (possibly unreleased) updates to the package. 137s Need to get 749 kB of source archives. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (dsc) [2017 B] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (tar) [739 kB] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (diff) [8460 B] 137s Fetched 749 kB in 1s (1344 kB/s) 137s Download complete and in download only mode 137s + [ -n ] 137s + + echo Reading package lists... 137s NOTICE: 'yabasic' packaging is maintained in the 'Git' version control system at: 137s https://salsa.debian.org/debian/yabasic.git 137s Please use: 137s git clone https://salsa.debian.org/debian/yabasic.git 137s to retrieve the latest (possibly unreleased) updates to the package. 137s Need to get 749 kB of source archives. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (dsc) [2017 B] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (tar) [739 kB] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (diff) [8460 B] 137s Fetched 749 kB in 1s (1344 kB/s) 137s Download complete and in download only mode 137s grep ^Get: 137s Get:1 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (dsc) [2017 B] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (tar) [739 kB] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/universe yabasic 1:2.90.5-1 (diff) [8460 B] 137s + dpkg-source -x yabasic_2.90.5-1.dsc src 137s gpgv: Signature made Sat Nov 16 16:15:03 2024 UTC 137s gpgv: using RSA key 25E3FF2D7F469DBE7D0D4E50AFCFEC8E669CE1C2 137s gpgv: Can't check signature: No public key 137s dpkg-source: warning: cannot verify inline signature for ./yabasic_2.90.5-1.dsc: no acceptable signature found 137s + chmod -R a+rX . 137s + cd src/. 137s + pwd 137s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [01:44:36]: testing package yabasic version 1:2.90.5-1 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/build.BC1/src/debian/ /tmp/autopkgtest-work.wfsqiybn/out/pkg/debian/ 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: processing dependency yabasic 138s autopkgtest: DBG: marked alternatives ['yabasic'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency debhelper 138s autopkgtest: DBG: processing dependency bash 138s autopkgtest: DBG: processing dependency libx11-dev 138s autopkgtest: DBG: processing dependency libffi-dev 138s autopkgtest: DBG: processing dependency libncurses5-dev 138s autopkgtest: DBG: Test defined: name check path debian/tests/check command "None" restrictions ['allow-stderr', 'rw-build-tree'] features [] depends ['yabasic', 'debhelper', 'bash', 'libx11-dev', 'libffi-dev', 'libncurses5-dev'] 138s autopkgtest [01:44:37]: build not needed 138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/build.BC1/src/ /tmp/autopkgtest-work.wfsqiybn/out/tests-tree/ 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: processing dependency yabasic 138s autopkgtest: DBG: marked alternatives ['yabasic'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency debhelper 138s autopkgtest: DBG: processing dependency bash 138s autopkgtest: DBG: processing dependency libx11-dev 138s autopkgtest: DBG: processing dependency libffi-dev 138s autopkgtest: DBG: processing dependency libncurses5-dev 138s autopkgtest: DBG: Test defined: name check path debian/tests/check command "None" restrictions ['allow-stderr', 'rw-build-tree'] features [] depends ['yabasic', 'debhelper', 'bash', 'libx11-dev', 'libffi-dev', 'libncurses5-dev'] 138s autopkgtest [01:44:37]: test check: preparing testbed 138s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['yabasic', 'debhelper', 'bash', 'libx11-dev', 'libffi-dev', 'libncurses5-dev'] 138s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 138s autopkgtest: DBG: install_deps: deps_new=['yabasic', 'debhelper', 'bash', 'libx11-dev', 'libffi-dev', 'libncurses5-dev'] 138s autopkgtest: DBG: install-deps: satisfying yabasic, debhelper, bash, libx11-dev, libffi-dev, libncurses5-dev 138s autopkgtest: DBG: can use apt-get on testbed: True 138s 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', 'yabasic, debhelper, bash, libx11-dev, libffi-dev, libncurses5-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 138s Reading package lists... 139s Building dependency tree... 139s Reading state information... 139s Starting pkgProblemResolver with broken count: 0 139s Starting 2 pkgProblemResolver with broken count: 0 139s Done 139s The following NEW packages will be installed: 139s autoconf automake autopoint autotools-dev cpp cpp-14 cpp-14-s390x-linux-gnu 139s cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 139s dh-strip-nondeterminism dwz gcc gcc-14 gcc-14-s390x-linux-gnu 139s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 139s libcc1-0 libdebhelper-perl libffi-dev libfile-stripnondeterminism-perl 139s libgcc-14-dev libgomp1 libisl23 libitm1 libmpc3 libncurses-dev libtool 139s libubsan1 libwhereami0 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev m4 139s po-debconf x11proto-dev xorg-sgml-doctools xtrans-dev yabasic 139s 0 upgraded, 44 newly installed, 0 to remove and 0 not upgraded. 139s Need to get 42.0 MB of archives. 139s After this operation, 125 MB of additional disk space will be used. 139s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 140s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 140s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 140s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 140s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 140s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 141s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 141s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 141s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 141s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 141s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 141s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 141s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 141s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 141s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 141s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 141s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 142s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 142s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 142s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 142s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 142s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 142s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 142s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 142s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 142s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 142s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 142s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 142s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 142s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 142s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 142s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 142s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x libwhereami0 s390x 0.0~git20240120.c5f6b01-1 [5360 B] 142s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB] 142s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x x11proto-dev all 2024.1-1 [606 kB] 142s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libxau-dev s390x 1:1.0.11-1 [9752 B] 142s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp-dev s390x 1:1.1.5-1 [26.9 kB] 142s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x xtrans-dev all 1.4.0-1 [68.9 kB] 142s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb1-dev s390x 1.17.0-2 [88.9 kB] 142s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-dev s390x 2:1.8.10-2 [761 kB] 142s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x yabasic s390x 1:2.90.5-1 [280 kB] 142s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.7-1 [58.9 kB] 142s Fetched 42.0 MB in 3s (14.1 MB/s) 142s Selecting previously unselected package m4. 142s (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.) 142s Preparing to unpack .../00-m4_1.4.19-5_s390x.deb ... 142s Unpacking m4 (1.4.19-5) ... 143s Selecting previously unselected package autoconf. 143s Preparing to unpack .../01-autoconf_2.72-3_all.deb ... 143s Unpacking autoconf (2.72-3) ... 143s Selecting previously unselected package autotools-dev. 143s Preparing to unpack .../02-autotools-dev_20220109.1_all.deb ... 143s Unpacking autotools-dev (20220109.1) ... 143s Selecting previously unselected package automake. 143s Preparing to unpack .../03-automake_1%3a1.17-3_all.deb ... 143s Unpacking automake (1:1.17-3) ... 143s Selecting previously unselected package autopoint. 143s Preparing to unpack .../04-autopoint_0.23.1-1_all.deb ... 143s Unpacking autopoint (0.23.1-1) ... 143s Selecting previously unselected package libisl23:s390x. 143s Preparing to unpack .../05-libisl23_0.27-1_s390x.deb ... 143s Unpacking libisl23:s390x (0.27-1) ... 143s Selecting previously unselected package libmpc3:s390x. 143s Preparing to unpack .../06-libmpc3_1.3.1-1build2_s390x.deb ... 143s Unpacking libmpc3:s390x (1.3.1-1build2) ... 143s Selecting previously unselected package cpp-14-s390x-linux-gnu. 143s Preparing to unpack .../07-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package cpp-14. 143s Preparing to unpack .../08-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package cpp-s390x-linux-gnu. 143s Preparing to unpack .../09-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 143s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 143s Selecting previously unselected package cpp. 143s Preparing to unpack .../10-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 143s Unpacking cpp (4:14.2.0-1ubuntu1) ... 143s Selecting previously unselected package libdebhelper-perl. 143s Preparing to unpack .../11-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 143s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 143s Selecting previously unselected package libcc1-0:s390x. 143s Preparing to unpack .../12-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package libgomp1:s390x. 143s Preparing to unpack .../13-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package libitm1:s390x. 143s Preparing to unpack .../14-libitm1_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package libasan8:s390x. 143s Preparing to unpack .../15-libasan8_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package libubsan1:s390x. 143s Preparing to unpack .../16-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package libgcc-14-dev:s390x. 143s Preparing to unpack .../17-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package gcc-14-s390x-linux-gnu. 143s Preparing to unpack .../18-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package gcc-14. 143s Preparing to unpack .../19-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 143s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 143s Selecting previously unselected package gcc-s390x-linux-gnu. 143s Preparing to unpack .../20-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 143s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 143s Selecting previously unselected package gcc. 143s Preparing to unpack .../21-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 143s Unpacking gcc (4:14.2.0-1ubuntu1) ... 143s Selecting previously unselected package libtool. 143s Preparing to unpack .../22-libtool_2.5.4-3build1_all.deb ... 143s Unpacking libtool (2.5.4-3build1) ... 143s Selecting previously unselected package dh-autoreconf. 143s Preparing to unpack .../23-dh-autoreconf_20_all.deb ... 143s Unpacking dh-autoreconf (20) ... 143s Selecting previously unselected package libarchive-zip-perl. 143s Preparing to unpack .../24-libarchive-zip-perl_1.68-1_all.deb ... 143s Unpacking libarchive-zip-perl (1.68-1) ... 143s Selecting previously unselected package libfile-stripnondeterminism-perl. 143s Preparing to unpack .../25-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 143s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 143s Selecting previously unselected package dh-strip-nondeterminism. 143s Preparing to unpack .../26-dh-strip-nondeterminism_1.14.1-2_all.deb ... 143s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 143s Selecting previously unselected package debugedit. 143s Preparing to unpack .../27-debugedit_1%3a5.1-2_s390x.deb ... 143s Unpacking debugedit (1:5.1-2) ... 143s Selecting previously unselected package dwz. 143s Preparing to unpack .../28-dwz_0.15-1build6_s390x.deb ... 143s Unpacking dwz (0.15-1build6) ... 143s Selecting previously unselected package gettext. 143s Preparing to unpack .../29-gettext_0.23.1-1_s390x.deb ... 143s Unpacking gettext (0.23.1-1) ... 143s Selecting previously unselected package intltool-debian. 143s Preparing to unpack .../30-intltool-debian_0.35.0+20060710.6_all.deb ... 143s Unpacking intltool-debian (0.35.0+20060710.6) ... 143s Selecting previously unselected package po-debconf. 143s Preparing to unpack .../31-po-debconf_1.0.21+nmu1_all.deb ... 143s Unpacking po-debconf (1.0.21+nmu1) ... 143s Selecting previously unselected package debhelper. 143s Preparing to unpack .../32-debhelper_13.24.1ubuntu2_all.deb ... 143s Unpacking debhelper (13.24.1ubuntu2) ... 143s Selecting previously unselected package libncurses-dev:s390x. 143s Preparing to unpack .../33-libncurses-dev_6.5+20250125-2_s390x.deb ... 143s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 143s Selecting previously unselected package libwhereami0:s390x. 143s Preparing to unpack .../34-libwhereami0_0.0~git20240120.c5f6b01-1_s390x.deb ... 143s Unpacking libwhereami0:s390x (0.0~git20240120.c5f6b01-1) ... 143s Selecting previously unselected package xorg-sgml-doctools. 143s Preparing to unpack .../35-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ... 143s Unpacking xorg-sgml-doctools (1:1.11-1.1) ... 143s Selecting previously unselected package x11proto-dev. 143s Preparing to unpack .../36-x11proto-dev_2024.1-1_all.deb ... 143s Unpacking x11proto-dev (2024.1-1) ... 144s Selecting previously unselected package libxau-dev:s390x. 144s Preparing to unpack .../37-libxau-dev_1%3a1.0.11-1_s390x.deb ... 144s Unpacking libxau-dev:s390x (1:1.0.11-1) ... 144s Selecting previously unselected package libxdmcp-dev:s390x. 144s Preparing to unpack .../38-libxdmcp-dev_1%3a1.1.5-1_s390x.deb ... 144s Unpacking libxdmcp-dev:s390x (1:1.1.5-1) ... 144s Selecting previously unselected package xtrans-dev. 144s Preparing to unpack .../39-xtrans-dev_1.4.0-1_all.deb ... 144s Unpacking xtrans-dev (1.4.0-1) ... 144s Selecting previously unselected package libxcb1-dev:s390x. 144s Preparing to unpack .../40-libxcb1-dev_1.17.0-2_s390x.deb ... 144s Unpacking libxcb1-dev:s390x (1.17.0-2) ... 144s Selecting previously unselected package libx11-dev:s390x. 144s Preparing to unpack .../41-libx11-dev_2%3a1.8.10-2_s390x.deb ... 144s Unpacking libx11-dev:s390x (2:1.8.10-2) ... 144s Selecting previously unselected package yabasic. 144s Preparing to unpack .../42-yabasic_1%3a2.90.5-1_s390x.deb ... 144s Unpacking yabasic (1:2.90.5-1) ... 144s Selecting previously unselected package libffi-dev:s390x. 144s Preparing to unpack .../43-libffi-dev_3.4.7-1_s390x.deb ... 144s Unpacking libffi-dev:s390x (3.4.7-1) ... 144s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 144s Setting up libarchive-zip-perl (1.68-1) ... 144s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 144s Setting up m4 (1.4.19-5) ... 144s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 144s Setting up libffi-dev:s390x (3.4.7-1) ... 144s Setting up libwhereami0:s390x (0.0~git20240120.c5f6b01-1) ... 144s Setting up xtrans-dev (1.4.0-1) ... 144s Setting up autotools-dev (20220109.1) ... 144s Setting up libmpc3:s390x (1.3.1-1build2) ... 144s Setting up autopoint (0.23.1-1) ... 144s Setting up autoconf (2.72-3) ... 144s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 144s Setting up dwz (0.15-1build6) ... 144s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 144s Setting up debugedit (1:5.1-2) ... 144s Setting up xorg-sgml-doctools (1:1.11-1.1) ... 144s Setting up libisl23:s390x (0.27-1) ... 144s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 144s Setting up yabasic (1:2.90.5-1) ... 144s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 144s Setting up automake (1:1.17-3) ... 144s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 144s Setting up x11proto-dev (2024.1-1) ... 144s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 144s Setting up gettext (0.23.1-1) ... 144s Setting up libxau-dev:s390x (1:1.0.11-1) ... 144s Setting up intltool-debian (0.35.0+20060710.6) ... 144s Setting up libxdmcp-dev:s390x (1:1.1.5-1) ... 144s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 144s Setting up cpp-14 (14.2.0-17ubuntu1) ... 144s Setting up dh-strip-nondeterminism (1.14.1-2) ... 144s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 144s Setting up libxcb1-dev:s390x (1.17.0-2) ... 144s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 144s Setting up po-debconf (1.0.21+nmu1) ... 144s Setting up libx11-dev:s390x (2:1.8.10-2) ... 144s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 144s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 144s Setting up cpp (4:14.2.0-1ubuntu1) ... 144s Setting up gcc-14 (14.2.0-17ubuntu1) ... 144s Setting up libtool (2.5.4-3build1) ... 144s Setting up gcc (4:14.2.0-1ubuntu1) ... 144s Setting up dh-autoreconf (20) ... 144s Setting up debhelper (13.24.1ubuntu2) ... 144s Processing triggers for install-info (7.1.1-1) ... 144s Processing triggers for libc-bin (2.41-1ubuntu1) ... 144s Processing triggers for man-db (2.13.0-1) ... 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'yabasic'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ZlS12Y/check-packages.all"], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/check-packages.all /tmp/autopkgtest-work.wfsqiybn/out/check-packages.all 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ZlS12Y/build.BC1/src'], kind short, sout raw, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ZlS12Y/build.BC1/src already exists 146s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '/tmp/autopkgtest.ZlS12Y/build.BC1/src'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [01:44:45]: test check: [----------------------- 146s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ZlS12Y/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ZlS12Y/check-artifacts --chdir=/tmp/autopkgtest.ZlS12Y/build.BC1/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.ZlS12Y/check-stderr --stdout=/tmp/autopkgtest.ZlS12Y/check-stdout --tmp=/tmp/autopkgtest.ZlS12Y/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.ZlS12Y/build.BC1/src/debian/tests/check -- /tmp/autopkgtest.ZlS12Y/build.BC1/src/debian/tests/check"], kind test, sout raw, serr raw, env [] 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ZlS12Y/check-artifacts 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: changing to directory: /tmp/autopkgtest.ZlS12Y/build.BC1/src 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: setting environment: LANG=C.UTF-8 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LANGUAGE 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_ADDRESS 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_ALL 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_COLLATE 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_CTYPE 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_IDENTIFICATION 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_MEASUREMENT 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_MESSAGES 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_MONETARY 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_NAME 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_NUMERIC 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_PAPER 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_TELEPHONE 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: unsetting environment: LC_TIME 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: pretending to be a login shell 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: will write standard error to /tmp/autopkgtest.ZlS12Y/check-stderr 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: will write stdout to /tmp/autopkgtest.ZlS12Y/check-stdout 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ZlS12Y/autopkgtest_tmp 146s /tmp/autopkgtest.ZlS12Y/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 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: marking as executable: /tmp/autopkgtest.ZlS12Y/build.BC1/src/debian/tests/check 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: command to run: /tmp/autopkgtest.ZlS12Y/build.BC1/src/debian/tests/check 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: copying /tmp/tmp.KIXVnqwAET/out to stdout and file: /tmp/autopkgtest.ZlS12Y/check-stdout 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: copying /tmp/tmp.KIXVnqwAET/err to standard error and file: /tmp/autopkgtest.ZlS12Y/check-stdout 146s /tmp/autopkgtest.ZlS12Y/wrapper.sh: writing script pid 1830 to /tmp/autopkgtest_script_pid 146s 146s dh_autoreconf 148s libtoolize: putting auxiliary files in '.'. 148s libtoolize: copying file './ltmain.sh' 148s libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. 148s libtoolize: copying file 'm4/libtool.m4' 148s libtoolize: copying file 'm4/ltoptions.m4' 148s libtoolize: copying file 'm4/ltsugar.m4' 148s libtoolize: copying file 'm4/ltversion.m4' 148s libtoolize: copying file 'm4/lt~obsolete.m4' 150s configure.ac:10: installing './compile' 150s configure.ac:9: installing './missing' 150s Makefile.am: installing './depcomp' 150s dh_auto_configure 150s ./configure --build=s390x-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir=\${prefix}/lib/s390x-linux-gnu --runstatedir=/run --disable-maintainer-mode --disable-dependency-tracking 150s checking for a BSD-compatible install... /usr/bin/install -c 150s checking whether sleep supports fractional seconds... yes 150s checking filesystem timestamp resolution... 0.01 150s checking whether build environment is sane... yes 150s checking for a race-free mkdir -p... /usr/bin/mkdir -p 150s checking for gawk... gawk 150s checking whether make sets $(MAKE)... yes 150s checking whether make supports nested variables... yes 150s checking xargs -n works... yes 150s checking build system type... s390x-ibm-linux-gnu 150s checking host system type... s390x-ibm-linux-gnu 150s checking how to print strings... printf 150s checking whether make supports the include directive... yes (GNU style) 150s checking for gcc... gcc 150s checking whether the C compiler works... yes 150s checking for C compiler default output file name... a.out 150s checking for suffix of executables... 150s checking whether we are cross compiling... no 150s checking for suffix of object files... o 150s checking whether the compiler supports GNU C... yes 150s checking whether gcc accepts -g... yes 150s checking for gcc option to enable C11 features... none needed 150s checking whether gcc understands -c and -o together... yes 150s checking dependency style of gcc... none 150s checking for a sed that does not truncate output... /usr/bin/sed 150s checking for grep that handles long lines and -e... /usr/bin/grep 150s checking for egrep... /usr/bin/grep -E 150s checking for fgrep... /usr/bin/grep -F 150s checking for ld used by gcc... /usr/bin/ld 150s checking if the linker (/usr/bin/ld) is GNU ld... yes 150s checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B 150s checking the name lister (/usr/bin/nm -B) interface... BSD nm 150s checking whether ln -s works... yes 151s checking the maximum length of command line arguments... 1572864 151s checking how to convert s390x-ibm-linux-gnu file names to s390x-ibm-linux-gnu format... func_convert_file_noop 151s checking how to convert s390x-ibm-linux-gnu file names to toolchain format... func_convert_file_noop 151s checking for /usr/bin/ld option to reload object files... -r 151s checking for file... file 151s checking for objdump... objdump 151s checking how to recognize dependent libraries... pass_all 151s checking for dlltool... no 151s checking how to associate runtime and link libraries... printf %s\n 151s checking for ranlib... ranlib 151s checking for ar... ar 151s checking for archiver @FILE support... @ 151s checking for strip... strip 151s checking command to parse /usr/bin/nm -B output from gcc object... ok 151s checking for sysroot... no 151s checking for a working dd... /usr/bin/dd 151s checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 151s checking for mt... mt 151s checking if mt is a manifest tool... no 151s checking for stdio.h... yes 151s checking for stdlib.h... yes 151s checking for string.h... yes 151s checking for inttypes.h... yes 151s checking for stdint.h... yes 151s checking for strings.h... yes 151s checking for sys/stat.h... yes 151s checking for sys/types.h... yes 151s checking for unistd.h... yes 151s checking for dlfcn.h... yes 151s checking for objdir... .libs 151s checking if gcc supports -fno-rtti -fno-exceptions... no 151s checking for gcc option to produce PIC... -fPIC -DPIC 151s checking if gcc PIC flag -fPIC -DPIC works... yes 151s checking if gcc static flag -static works... yes 151s checking if gcc supports -c -o file.o... yes 151s checking if gcc supports -c -o file.o... (cached) yes 151s checking whether the gcc linker (/usr/bin/ld -m elf64_s390) supports shared libraries... yes 151s checking whether -lc should be explicitly linked in... no 151s checking dynamic linker characteristics... GNU/Linux ld.so 151s checking how to hardcode library paths into programs... immediate 151s checking whether stripping libraries is possible... yes 151s checking if libtool supports shared libraries... yes 151s checking whether to build shared libraries... yes 151s checking whether to build static libraries... yes 151s checking for gcc... (cached) gcc 151s checking whether the compiler supports GNU C... (cached) yes 151s checking whether gcc accepts -g... (cached) yes 151s checking for gcc option to enable C11 features... (cached) none needed 151s checking whether gcc understands -c and -o together... (cached) yes 151s checking dependency style of gcc... (cached) none 151s checking for gcc... -Wall 151s checking for malloc.h... yes 151s checking for alloc.h... no 151s checking for prctl.h... no 151s checking for size_t... yes 151s checking for working alloca.h... yes 151s checking for alloca... yes 151s checking for size_t... (cached) yes 151s checking for working strtod... yes 151s checking for strerror... yes 152s checking for mkstemp... yes 152s checking for pkg-config... no 152s checking for library containing ffi_call... -lffi 152s checking for ffi.h... yes 152s checking for library containing dlopen... none required 152s checking for dlfcn.h... (cached) yes 152s checking for library containing initscr... -lcurses 152s checking for curses.h... yes 152s checking for ncurses.h... yes 152s checking for getnstr... yes 152s checking for library containing dladdr... none required 152s checking how to run the C preprocessor... gcc -E 152s checking for X... libraries , headers 152s checking for gethostbyname... yes 152s checking for connect... yes 152s checking for remove... yes 152s checking for shmat... yes 152s checking for IceConnectionNumber in -lICE... no 152s checking that generated files are newer than configure... done 152s configure: creating ./config.status 153s config.status: creating Makefile 153s config.status: creating config.h 153s config.status: executing depfiles commands 153s config.status: executing libtool commands 153s 153s # Make sure we run the tests with the installed executable 153s rm -f yabasic 153s ln -s /usr/bin/yabasic yabasic 153s 153s make check-TESTS 153s make[1]: Entering directory '/tmp/autopkgtest.ZlS12Y/build.BC1/src' 153s PASS: tests/break.yab 153s PASS: tests/bugs.yab 153s PASS: tests/grammar.yab 153s PASS: tests/io.yab 153s PASS: tests/long_variable_name.yab 153s PASS: tests/simple.yab 153s PASS: tests/switch_continue_break.yab 153s PASS: tests/switch_for.yab 153s PASS: tests/switch_gosub.yab 153s PASS: tests/switch_goto.yab 153s PASS: tests/switch_return.yab 153s PASS: tests/switch_simple.yab 153s PASS: tests/switch_subr.yab 153s PASS: tests/switch.yab 153s PASS: tests/numbers.yab 153s PASS: tests/system.yab 153s PASS: tests/string.yab 153s PASS: tests/silent.sh 153s PASS: tests/nested_import.yab 153s ============================================================================ 153s Testsuite summary for yabasic 2.90.5 153s ============================================================================ 153s # TOTAL: 19 153s # PASS: 19 153s # SKIP: 0 153s # XFAIL: 0 153s # FAIL: 0 153s # XPASS: 0 153s # ERROR: 0 153s ============================================================================ 153s make[1]: Leaving directory '/tmp/autopkgtest.ZlS12Y/build.BC1/src' 153s /tmp/autopkgtest.ZlS12Y/wrapper.sh: checking for leaked background processes... 153s /tmp/autopkgtest.ZlS12Y/wrapper.sh: waiting for tee/cat subprocesses... 153s /tmp/autopkgtest.ZlS12Y/wrapper.sh: cleaning up... 153s /tmp/autopkgtest.ZlS12Y/wrapper.sh: Exit status: 0 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest [01:44:52]: test check: -----------------------] 153s autopkgtest: DBG: testbed executing test finished with exit status 0 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/check-stdout /tmp/autopkgtest-work.wfsqiybn/out/check-stdout 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/check-stderr /tmp/autopkgtest-work.wfsqiybn/out/check-stderr 154s autopkgtest: DBG: got reply from testbed: ok 154s check PASS 154s autopkgtest [01:44:53]: test check: - - - - - - - - - - results - - - - - - - - - - 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ZlS12Y/check-artifacts/ /tmp/autopkgtest-work.wfsqiybn/out/artifacts/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ZlS12Y/check-artifacts', '/tmp/autopkgtest.ZlS12Y/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 154s autopkgtest [01:44:53]: @@@@@@@@@@@@@@@@@@@@ summary 154s check PASS 154s autopkgtest: DBG: testbed stop 154s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ZlS12Y 154s autopkgtest: DBG: sending command to testbed: close 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: sending command to testbed: quit 171s nova [W] Using flock in prodstack6-s390x 171s Creating nova instance adt-plucky-s390x-yabasic-20250216-014219-juju-7f2275-prod-proposed-migration-environment-15-2cadd19e-d731-43ee-9e8a-84714256c8b4 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 171s nova [W] Timed out waiting for 1aabb71b-d8fb-4725-82c2-36031f335903 to get deleted.