0s autopkgtest: DBG: testbed init 0s autopkgtest [20:41:31]: starting date and time: 2025-02-19 20:41:31+0000 1s autopkgtest [20:41:32]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 1s autopkgtest [20:41:32]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work._9t7rhyn/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:systemd,src:auto-multiple-choice,src:glibc,src:openssh,src:php-twig,src:symfony --apt-upgrade inetutils --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=systemd/257.3-1ubuntu1 auto-multiple-choice/1.6.0-4build1 glibc/2.41-1ubuntu1 openssh/1:9.9p1-3ubuntu3 php-twig/3.20.0-1 symfony/6.4.18+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-1.secgroup --name adt-plucky-s390x-inetutils-20250219-204130-juju-7f2275-prod-proposed-migration-environment-15-bb6b57cb-4f52-46f7-a320-0c43ae10dd7f --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 132s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.W6YCXG 132s autopkgtest: DBG: sending command to testbed: print-execute-command 132s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zslb7fbc/runcmd 132s autopkgtest: DBG: sending command to testbed: capabilities 132s autopkgtest: DBG: got reply from testbed: ok revert-full-system reboot revert suggested-normal-user=ubuntu isolation-machine root-on-testbed 132s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'reboot', 'revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], 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/wrapper.sh /tmp/autopkgtest.W6YCXG/wrapper.sh 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/wrapper.sh'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [20:43:44]: testbed dpkg architecture: s390x 133s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [20:43:44]: testbed apt version: 2.9.30 133s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed has eatmydata 133s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [20:43:44]: @@@@@@@@@@@@@@@@@@@@ test bed setup 133s 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 [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [20:43:44]: testbed release detected to be: None 133s 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 [] 134s autopkgtest: DBG: testbed command exited with code 0 134s 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 [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: adding APT source: Types: deb deb-src 134s URIs: http://ftpmaster.internal/ubuntu/ 134s Suites: plucky-proposed 134s Components: main restricted universe multiverse 134s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 134s 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 [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 134s Package: * 134s Pin: release plucky-proposed 134s Pin-Priority: 500 134s 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 [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest [20:43:45]: updating testbed package index (apt update) 134s 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'] 134s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 135s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 135s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 135s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 135s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 135s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.5 kB] 135s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [731 kB] 135s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [78.4 kB] 135s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [103 kB] 135s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 135s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [657 kB] 135s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5272 B] 135s Fetched 1704 kB in 1s (1661 kB/s) 136s Reading package lists... 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 136s Package: * 136s Pin: release plucky-proposed 136s Pin-Priority: 100 136s 136s Package: src:systemd:any src:auto-multiple-choice:any src:glibc:any src:openssh:any src:php-twig:any src:symfony:any 136s Pin: release plucky-proposed 136s Pin-Priority: 995 136s 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:systemd:any src:auto-multiple-choice:any src:glibc:any src:openssh:any src:php-twig:any src:symfony:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s 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.W6YCXG/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s 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'] 137s + lsb_release --codename --short 137s + RELEASE=plucky 137s + cat 137s + [ plucky != trusty ] 137s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 137s Reading package lists... 137s Building dependency tree... 137s Reading state information... 137s Calculating upgrade... 137s The following packages were automatically installed and are no longer required: 137s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 137s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 137s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 137s linux-tools-6.11.0-8-generic 137s Use 'sudo apt autoremove' to remove them. 137s The following packages will be upgraded: 137s apparmor iproute2 libapparmor1 libgpgme11t64 liblsof0 libp11-kit0 137s liburcu8t64 lsof python-apt-common python3-apt sysvinit-utils 137s 11 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 137s Need to get 3066 kB of archives. 137s After this operation, 212 kB of additional disk space will be used. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 138s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 138s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python-apt-common all 2.9.9 [21.2 kB] 138s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apt s390x 2.9.9 [185 kB] 138s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu2 [758 kB] 138s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liburcu8t64 s390x 0.15.1-1 [66.0 kB] 138s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 138s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 138s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 138s Preconfiguring packages ... 138s Fetched 3066 kB in 1s (4175 kB/s) 138s (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 ... 81030 files and directories currently installed.) 139s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 139s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 139s Setting up sysvinit-utils (3.14-1ubuntu1) ... 139s (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 ... 81030 files and directories currently installed.) 139s Preparing to unpack .../0-iproute2_6.13.0-1ubuntu1_s390x.deb ... 139s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 139s Preparing to unpack .../1-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 139s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 139s Preparing to unpack .../2-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 139s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 139s Preparing to unpack .../3-python-apt-common_2.9.9_all.deb ... 139s Unpacking python-apt-common (2.9.9) over (2.9.8) ... 139s Preparing to unpack .../4-python3-apt_2.9.9_s390x.deb ... 139s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 139s for fn in glob1(directory, "%s.*" % fname): 139s Unpacking python3-apt (2.9.9) over (2.9.8) ... 139s Preparing to unpack .../5-apparmor_4.1.0~beta5-0ubuntu2_s390x.deb ... 139s Unpacking apparmor (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 139s dpkg: warning: unable to delete old directory '/lib/apparmor': Directory not empty 139s Preparing to unpack .../6-liburcu8t64_0.15.1-1_s390x.deb ... 139s Unpacking liburcu8t64:s390x (0.15.1-1) over (0.15.0-1) ... 139s Preparing to unpack .../7-lsof_4.99.4+dfsg-1_s390x.deb ... 139s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 139s Preparing to unpack .../8-liblsof0_4.99.4+dfsg-1_s390x.deb ... 139s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 139s Preparing to unpack .../9-libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 139s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 139s Setting up liburcu8t64:s390x (0.15.1-1) ... 139s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 139s Setting up liblsof0 (4.99.4+dfsg-1) ... 139s Setting up iproute2 (6.13.0-1ubuntu1) ... 140s Setting up apparmor (4.1.0~beta5-0ubuntu2) ... 140s Installing new version of config file /etc/apparmor.d/abstractions/dconf ... 140s Installing new version of config file /etc/apparmor.d/abstractions/mesa ... 140s Installing new version of config file /etc/apparmor.d/abstractions/nameservice ... 140s Installing new version of config file /etc/apparmor.d/abstractions/php ... 140s Installing new version of config file /etc/apparmor.d/abstractions/python ... 140s Installing new version of config file /etc/apparmor.d/slirp4netns ... 140s Installing new version of config file /etc/apparmor.d/toybox ... 140s Installing new version of config file /etc/apparmor.d/transmission ... 140s Installing new version of config file /etc/apparmor.d/tunables/global ... 140s Reloading AppArmor profiles 142s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 142s Setting up lsof (4.99.4+dfsg-1) ... 142s Setting up python-apt-common (2.9.9) ... 142s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 142s Setting up python3-apt (2.9.9) ... 142s Processing triggers for systemd (257.2-3ubuntu1) ... 142s Processing triggers for man-db (2.13.0-1) ... 143s Processing triggers for libc-bin (2.40-4ubuntu1) ... 143s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 143s + /usr/lib/apt/apt-helper analyze-pattern ?true 143s + uname -r+ 143s sed s/\./\\./g 143s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 143s + apt list ?obsolete 143s + tail -n+2 143s + grep -v ^linux-.*6\.12\.0-15-generic.* 143s + cut -d/ -f1 143s + true 143s + obsolete_pkgs= 143s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 143s Reading package lists... 144s Building dependency tree... 144s Reading state information... 144s The following packages will be REMOVED: 144s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 144s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 144s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 144s linux-tools-6.11.0-8-generic* 144s 0 upgraded, 0 newly installed, 9 to remove and 19 not upgraded. 144s After this operation, 167 MB disk space will be freed. 144s (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 ... 81079 files and directories currently installed.) 144s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 144s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 144s Removing libpython3.12t64:s390x (3.12.9-1) ... 144s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 144s Removing libnsl2:s390x (1.3.0-3build3) ... 144s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 144s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 144s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 145s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 145s Processing triggers for libc-bin (2.40-4ubuntu1) ... 145s (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 ... 55979 files and directories currently installed.) 145s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 145s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 145s + grep -q trusty /etc/lsb-release 145s + [ ! -d /usr/share/doc/unattended-upgrades ] 145s + [ ! -d /usr/share/doc/lxd ] 145s + [ ! -d /usr/share/doc/lxd-client ] 145s + [ ! -d /usr/share/doc/snapd ] 145s + type iptables 145s + cat 145s + chmod 755 /etc/rc.local 145s + . /etc/rc.local 145s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 145s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 145s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 145s + uname -m 145s + [ s390x = ppc64le ] 145s + [ -d /run/systemd/system ] 145s + systemd-detect-virt --quiet --vm 145s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 145s + cat 145s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 145s + echo COMPRESS=lz4 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [20:43:56]: upgrading testbed (apt dist-upgrade and autopurge) 145s 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'] 146s Reading package lists... 146s Building dependency tree... 146s Reading state information... 146s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 146s Starting 2 pkgProblemResolver with broken count: 0 146s Done 146s Entering ResolveByKeep 146s 146s The following packages will be upgraded: 146s libc-bin libc-dev-bin libc6 libc6-dev libnss-systemd libpam-systemd 146s libsystemd-shared libsystemd0 libudev1 locales openssh-client openssh-server 146s openssh-sftp-server systemd systemd-cryptsetup systemd-resolved systemd-sysv 146s systemd-timesyncd udev 147s 19 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 19.5 MB of archives. 147s After this operation, 304 kB of additional disk space will be used. 147s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 147s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 147s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libsystemd0 s390x 257.3-1ubuntu1 [534 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-sysv s390x 257.3-1ubuntu1 [11.8 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-resolved s390x 257.3-1ubuntu1 [326 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libnss-systemd s390x 257.3-1ubuntu1 [180 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpam-systemd s390x 257.3-1ubuntu1 [263 kB] 148s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libsystemd-shared s390x 257.3-1ubuntu1 [2325 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd s390x 257.3-1ubuntu1 [3025 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-timesyncd s390x 257.3-1ubuntu1 [41.3 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-cryptsetup s390x 257.3-1ubuntu1 [128 kB] 148s Get:15 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x udev s390x 257.3-1ubuntu1 [1400 kB] 148s Get:16 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libudev1 s390x 257.3-1ubuntu1 [204 kB] 148s Get:17 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x openssh-sftp-server s390x 1:9.9p1-3ubuntu3 [38.2 kB] 148s Get:18 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x openssh-server s390x 1:9.9p1-3ubuntu3 [552 kB] 148s Get:19 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x openssh-client s390x 1:9.9p1-3ubuntu3 [955 kB] 149s Preconfiguring packages ... 149s Fetched 19.5 MB in 2s (10.1 MB/s) 149s (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 ... 55977 files and directories currently installed.) 149s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 149s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 149s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 149s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 149s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 149s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 149s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 149s Checking for services that may need to be restarted... 149s Checking init scripts... 149s Checking for services that may need to be restarted... 149s Checking init scripts... 149s Stopping some services possibly affected by the upgrade (will be restarted later): 149s cron: stopping...done. 149s 149s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 149s Setting up libc6:s390x (2.41-1ubuntu1) ... 149s Checking for services that may need to be restarted... 149s Checking init scripts... 149s Restarting services possibly affected by the upgrade: 149s cron: restarting...done. 149s 149s Services restarted successfully. 149s (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 ... 55978 files and directories currently installed.) 149s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 149s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 149s Setting up libc-bin (2.41-1ubuntu1) ... 150s (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 ... 55978 files and directories currently installed.) 150s Preparing to unpack .../libsystemd0_257.3-1ubuntu1_s390x.deb ... 150s Unpacking libsystemd0:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Setting up libsystemd0:s390x (257.3-1ubuntu1) ... 150s (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 ... 55978 files and directories currently installed.) 150s Preparing to unpack .../systemd-sysv_257.3-1ubuntu1_s390x.deb ... 150s Unpacking systemd-sysv (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../systemd-resolved_257.3-1ubuntu1_s390x.deb ... 150s Unpacking systemd-resolved (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../libnss-systemd_257.3-1ubuntu1_s390x.deb ... 150s Unpacking libnss-systemd:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../libpam-systemd_257.3-1ubuntu1_s390x.deb ... 150s Unpacking libpam-systemd:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../libsystemd-shared_257.3-1ubuntu1_s390x.deb ... 150s Unpacking libsystemd-shared:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Setting up libsystemd-shared:s390x (257.3-1ubuntu1) ... 150s (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 ... 55978 files and directories currently installed.) 150s Preparing to unpack .../systemd_257.3-1ubuntu1_s390x.deb ... 150s Unpacking systemd (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../systemd-timesyncd_257.3-1ubuntu1_s390x.deb ... 150s Unpacking systemd-timesyncd (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../systemd-cryptsetup_257.3-1ubuntu1_s390x.deb ... 150s Unpacking systemd-cryptsetup (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../udev_257.3-1ubuntu1_s390x.deb ... 150s Unpacking udev (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Preparing to unpack .../libudev1_257.3-1ubuntu1_s390x.deb ... 150s Unpacking libudev1:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 150s Setting up libudev1:s390x (257.3-1ubuntu1) ... 150s (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 ... 55978 files and directories currently installed.) 150s Preparing to unpack .../openssh-sftp-server_1%3a9.9p1-3ubuntu3_s390x.deb ... 150s Unpacking openssh-sftp-server (1:9.9p1-3ubuntu3) over (1:9.9p1-3ubuntu2) ... 150s Preparing to unpack .../openssh-server_1%3a9.9p1-3ubuntu3_s390x.deb ... 150s Unpacking openssh-server (1:9.9p1-3ubuntu3) over (1:9.9p1-3ubuntu2) ... 150s Preparing to unpack .../openssh-client_1%3a9.9p1-3ubuntu3_s390x.deb ... 150s Unpacking openssh-client (1:9.9p1-3ubuntu3) over (1:9.9p1-3ubuntu2) ... 150s Setting up openssh-client (1:9.9p1-3ubuntu3) ... 150s Setting up systemd (257.3-1ubuntu1) ... 150s /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring. 150s Created symlink '/run/systemd/system/tmp.mount' → '/dev/null'. 151s /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring. 151s Setting up locales (2.41-1ubuntu1) ... 151s Installing new version of config file /etc/locale.alias ... 151s Generating locales (this might take a while)... 153s en_US.UTF-8... done 153s Generation complete. 153s Setting up systemd-cryptsetup (257.3-1ubuntu1) ... 153s Setting up systemd-timesyncd (257.3-1ubuntu1) ... 153s systemd-time-wait-sync.service is a disabled or a static unit not running, not starting it. 153s Setting up udev (257.3-1ubuntu1) ... 154s Setting up libc-dev-bin (2.41-1ubuntu1) ... 154s Setting up systemd-resolved (257.3-1ubuntu1) ... 154s Setting up openssh-sftp-server (1:9.9p1-3ubuntu3) ... 154s Setting up systemd-sysv (257.3-1ubuntu1) ... 154s Setting up openssh-server (1:9.9p1-3ubuntu3) ... 155s Setting up libnss-systemd:s390x (257.3-1ubuntu1) ... 155s Setting up libpam-systemd:s390x (257.3-1ubuntu1) ... 155s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 155s Processing triggers for libc-bin (2.41-1ubuntu1) ... 155s Processing triggers for ufw (0.36.2-9) ... 156s Processing triggers for man-db (2.13.0-1) ... 156s Processing triggers for dbus (1.16.0-1ubuntu1) ... 156s Processing triggers for shared-mime-info (2.4-5) ... 156s Warning: program compiled against libxml 212 using older 209 156s Processing triggers for initramfs-tools (0.145ubuntu2) ... 157s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 157s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 162s Using config file '/etc/zipl.conf' 162s Building bootmap in '/boot' 162s Adding IPL section 'ubuntu' (default) 162s Preparing boot device for LD-IPL: vda (0000). 162s Done. 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 162s Reading package lists... 162s Building dependency tree... 162s Reading state information... 162s Starting pkgProblemResolver with broken count: 0 162s Starting 2 pkgProblemResolver with broken count: 0 162s Done 162s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 162s autopkgtest: DBG: testbed command exited with code 0 162s 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.W6YCXG/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 1 163s autopkgtest [20:44:14]: rebooting testbed after setup commands that affected boot 163s autopkgtest: DBG: sending command to testbed: reboot 182s autopkgtest: DBG: got reply from testbed: ok 182s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 182s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot 182s autopkgtest: DBG: got reply from testbed: ok 182s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest [20:44:35]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 184s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.W6YCXG/testbed-packages"], kind short, sout raw, serr pipe, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/testbed-packages /tmp/autopkgtest-work._9t7rhyn/out/testbed-packages 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 184s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot 185s autopkgtest: DBG: got reply from testbed: ok 185s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: Binaries: initialising 186s autopkgtest [20:44:37]: @@@@@@@@@@@@@@@@@@@@ apt-source inetutils 186s autopkgtest: DBG: blame += inetutils 186s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 186s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'inetutils'], kind short, sout pipe, serr pipe, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-ping$'], kind short, sout pipe, serr raw, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-ping=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-ftpd$'], kind short, sout pipe, serr raw, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-ftpd=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-traceroute$'], kind short, sout pipe, serr raw, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-traceroute=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-syslogd$'], kind short, sout pipe, serr raw, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-syslogd=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-talk$'], kind short, sout pipe, serr raw, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-talk=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-inetd$'], kind short, sout pipe, serr raw, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-inetd=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-telnet$'], kind short, sout pipe, serr raw, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-telnet=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-tools$'], kind short, sout pipe, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-tools=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^telnetd$'], kind short, sout pipe, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'telnetd=0.17+2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-ftp$'], kind short, sout pipe, serr raw, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-ftp=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-talkd$'], kind short, sout pipe, serr raw, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-talkd=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^telnet$'], kind short, sout pipe, serr raw, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'telnet=0.17+2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-telnetd$'], kind short, sout pipe, serr raw, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-telnetd=2:2.5-5ubuntu1'], kind short, sout pipe, serr raw, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: install_deps: deps_new=[] 192s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 193s autopkgtest: DBG: testbed command exited with code 0 193s 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.W6YCXG/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source inetutils=2:2.5-5ubuntu1 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 inetutils_*.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=systemd/257.3-1ubuntu1 auto-multiple-choice/1.6.0-4build1 glibc/2.41-1ubuntu1 openssh/1:9.9p1-3ubuntu3 php-twig/3.20.0-1 symfony/6.4.18+dfsg-1'] 193s + cd / 193s + mktemp -d /tmp/autopkgtest.W6YCXG/build.XXX 193s + builddir=/tmp/autopkgtest.W6YCXG/build.S8J 193s + cd /tmp/autopkgtest.W6YCXG/build.S8J 193s + apt-get source -d -q --only-source inetutils=2:2.5-5ubuntu1 194s + OUT=Reading package lists... 194s NOTICE: 'inetutils' packaging is maintained in the 'Git' version control system at: 194s https://git.hadrons.org/git/debian/pkgs/inetutils.git 194s Please use: 194s git clone https://git.hadrons.org/git/debian/pkgs/inetutils.git 194s to retrieve the latest (possibly unreleased) updates to the package. 194s Need to get 1752 kB of source archives. 194s Get:1 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (dsc) [3003 B] 194s Get:2 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (tar) [1670 kB] 194s Get:3 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (diff) [78.1 kB] 194s Fetched 1752 kB in 1s (1812 kB/s) 194s Download complete and in download only mode 194s + [ -n ] 194s + echo+ Reading package lists... 194s NOTICE: 'inetutils' packaging is maintained in the 'Git' version control system at: 194s https://git.hadrons.org/git/debian/pkgs/inetutils.git 194s Please use: 194s git clone https://git.hadrons.org/git/debian/pkgs/inetutils.git 194s to retrieve the latest (possibly unreleased) updates to the package. 194s Need to get 1752 kB of source archives. 194s Get:1 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (dsc) [3003 B] 194s Get:2 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (tar) [1670 kB] 194s Get:3 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (diff) [78.1 kB] 194s Fetched 1752 kB in 1s (1812 kB/s) 194s Download complete and in download only mode 194s grep ^Get: 194s Get:1 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (dsc) [3003 B] 194s Get:2 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (tar) [1670 kB] 194s Get:3 http://ftpmaster.internal/ubuntu plucky/main inetutils 2:2.5-5ubuntu1 (diff) [78.1 kB] 194s + dpkg-source -x inetutils_2.5-5ubuntu1.dsc src 194s gpgv: Signature made Thu Jul 11 19:27:43 2024 UTC 194s gpgv: using RSA key AC483F68DE728F43F2202FCA568D30F321B2133D 194s gpgv: issuer "steve.langasek@ubuntu.com" 194s gpgv: Can't check signature: No public key 194s dpkg-source: warning: cannot verify inline signature for ./inetutils_2.5-5ubuntu1.dsc: no acceptable signature found 194s + chmod -R a+rX . 194s + cd src/. 194s + pwd 194s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 194s autopkgtest: DBG: testbed command exited with code 0 194s autopkgtest [20:44:45]: testing package inetutils version 2:2.5-5ubuntu1 194s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/ /tmp/autopkgtest-work._9t7rhyn/out/pkg/debian/ 195s autopkgtest: DBG: got reply from testbed: ok 195s autopkgtest: DBG: processing dependency build-essential 195s autopkgtest: DBG: processing dependency autoconf 195s autopkgtest: DBG: processing dependency automake 195s autopkgtest: DBG: processing dependency gettext 195s autopkgtest: DBG: processing dependency file 195s autopkgtest: DBG: processing dependency netbase 195s autopkgtest: DBG: processing dependency net-tools 195s autopkgtest: DBG: processing dependency inetutils-tools 195s autopkgtest: DBG: marked alternatives ['inetutils-tools'] as a synthesised dependency 195s autopkgtest: DBG: processing dependency inetutils-syslogd 195s autopkgtest: DBG: marked alternatives ['inetutils-syslogd'] as a synthesised dependency 195s autopkgtest: DBG: processing dependency inetutils-inetd 195s autopkgtest: DBG: marked alternatives ['inetutils-inetd'] as a synthesised dependency 195s autopkgtest: DBG: processing dependency inetutils-telnet 195s autopkgtest: DBG: marked alternatives ['inetutils-telnet'] as a synthesised dependency 195s autopkgtest: DBG: Test defined: name test-commands path debian/tests/test-commands command "None" restrictions ['allow-stderr', 'rw-build-tree'] features [] depends ['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-tools', 'inetutils-syslogd', 'inetutils-inetd', 'inetutils-telnet'] 197s autopkgtest: DBG: processing dependency build-essential 197s autopkgtest: DBG: processing dependency autoconf 197s autopkgtest: DBG: processing dependency automake 197s autopkgtest: DBG: processing dependency gettext 197s autopkgtest: DBG: processing dependency file 197s autopkgtest: DBG: processing dependency netbase 197s autopkgtest: DBG: processing dependency net-tools 197s autopkgtest: DBG: processing dependency inetutils-ftp 197s autopkgtest: DBG: marked alternatives ['inetutils-ftp'] as a synthesised dependency 197s autopkgtest: DBG: processing dependency inetutils-ftpd 197s autopkgtest: DBG: marked alternatives ['inetutils-ftpd'] as a synthesised dependency 197s autopkgtest: DBG: processing dependency inetutils-traceroute 197s autopkgtest: DBG: marked alternatives ['inetutils-traceroute'] as a synthesised dependency 197s autopkgtest: DBG: Test defined: name test-root-commands path debian/tests/test-root-commands command "None" restrictions ['allow-stderr', 'needs-root', 'rw-build-tree'] features [] depends ['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-ftp', 'inetutils-ftpd', 'inetutils-traceroute'] 197s autopkgtest [20:44:48]: build not needed 197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/build.S8J/src/ /tmp/autopkgtest-work._9t7rhyn/out/tests-tree/ 199s autopkgtest: DBG: got reply from testbed: ok 199s autopkgtest: DBG: processing dependency build-essential 199s autopkgtest: DBG: processing dependency autoconf 199s autopkgtest: DBG: processing dependency automake 199s autopkgtest: DBG: processing dependency gettext 199s autopkgtest: DBG: processing dependency file 199s autopkgtest: DBG: processing dependency netbase 199s autopkgtest: DBG: processing dependency net-tools 199s autopkgtest: DBG: processing dependency inetutils-tools 199s autopkgtest: DBG: marked alternatives ['inetutils-tools'] as a synthesised dependency 199s autopkgtest: DBG: processing dependency inetutils-syslogd 199s autopkgtest: DBG: marked alternatives ['inetutils-syslogd'] as a synthesised dependency 199s autopkgtest: DBG: processing dependency inetutils-inetd 199s autopkgtest: DBG: marked alternatives ['inetutils-inetd'] as a synthesised dependency 199s autopkgtest: DBG: processing dependency inetutils-telnet 199s autopkgtest: DBG: marked alternatives ['inetutils-telnet'] as a synthesised dependency 199s autopkgtest: DBG: Test defined: name test-commands path debian/tests/test-commands command "None" restrictions ['allow-stderr', 'rw-build-tree'] features [] depends ['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-tools', 'inetutils-syslogd', 'inetutils-inetd', 'inetutils-telnet'] 200s autopkgtest: DBG: processing dependency build-essential 200s autopkgtest: DBG: processing dependency autoconf 200s autopkgtest: DBG: processing dependency automake 200s autopkgtest: DBG: processing dependency gettext 200s autopkgtest: DBG: processing dependency file 200s autopkgtest: DBG: processing dependency netbase 200s autopkgtest: DBG: processing dependency net-tools 200s autopkgtest: DBG: processing dependency inetutils-ftp 200s autopkgtest: DBG: marked alternatives ['inetutils-ftp'] as a synthesised dependency 200s autopkgtest: DBG: processing dependency inetutils-ftpd 200s autopkgtest: DBG: marked alternatives ['inetutils-ftpd'] as a synthesised dependency 200s autopkgtest: DBG: processing dependency inetutils-traceroute 200s autopkgtest: DBG: marked alternatives ['inetutils-traceroute'] as a synthesised dependency 200s autopkgtest: DBG: Test defined: name test-root-commands path debian/tests/test-root-commands command "None" restrictions ['allow-stderr', 'needs-root', 'rw-build-tree'] features [] depends ['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-ftp', 'inetutils-ftpd', 'inetutils-traceroute'] 200s autopkgtest [20:44:51]: test test-commands: preparing testbed 200s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-tools', 'inetutils-syslogd', 'inetutils-inetd', 'inetutils-telnet'] 200s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 200s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-tools', 'inetutils-syslogd', 'inetutils-inetd', 'inetutils-telnet'] 200s autopkgtest: DBG: install-deps: satisfying build-essential, autoconf, automake, gettext, file, netbase, net-tools, inetutils-tools, inetutils-syslogd, inetutils-inetd, inetutils-telnet 200s autopkgtest: DBG: can use apt-get on testbed: True 200s 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', 'build-essential, autoconf, automake, gettext, file, netbase, net-tools, inetutils-tools, inetutils-syslogd, inetutils-inetd, inetutils-telnet'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 200s Reading package lists... 200s Building dependency tree... 200s Reading state information... 200s Starting pkgProblemResolver with broken count: 0 200s Starting 2 pkgProblemResolver with broken count: 0 200s Done 200s The following packages were automatically installed and are no longer required: 200s libestr0 libfastjson4 200s Use 'sudo apt autoremove' to remove them. 200s The following packages will be REMOVED: 200s rsyslog 200s The following NEW packages will be installed: 200s autoconf automake autotools-dev build-essential cpp cpp-14 200s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ g++-14 g++-14-s390x-linux-gnu 200s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 200s gettext inetutils-inetd inetutils-syslogd inetutils-tools libasan8 libcc1-0 200s libgcc-14-dev libgomp1 libisl23 libitm1 libmpc3 libstdc++-14-dev libubsan1 200s m4 net-tools tcpd update-inetd 201s 0 upgraded, 33 newly installed, 1 to remove and 0 not upgraded. 201s Need to get 51.5 MB of archives. 201s After this operation, 163 MB of additional disk space will be used. 201s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-syslogd s390x 2:2.5-5ubuntu1 [63.8 kB] 201s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x tcpd s390x 7.6.q-35 [24.8 kB] 201s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x update-inetd all 4.53 [24.0 kB] 201s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-inetd s390x 2:2.5-5ubuntu1 [47.5 kB] 201s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 201s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 201s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 201s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 201s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 201s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 201s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 202s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 202s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 202s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 202s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 202s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 202s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 202s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 202s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 203s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 203s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 204s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 204s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 204s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 204s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 204s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 205s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 205s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 205s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 205s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 205s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 205s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-tools s390x 2:2.5-5ubuntu1 [81.2 kB] 205s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x net-tools s390x 2.10-1.1ubuntu1 [207 kB] 206s Preconfiguring packages ... 206s Fetched 51.5 MB in 5s (11.1 MB/s) 206s (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 ... 55978 files and directories currently installed.) 206s Removing rsyslog (8.2412.0-2ubuntu1) ... 207s Selecting previously unselected package inetutils-syslogd. 207s (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 ... 55916 files and directories currently installed.) 207s Preparing to unpack .../00-inetutils-syslogd_2%3a2.5-5ubuntu1_s390x.deb ... 207s Unpacking inetutils-syslogd (2:2.5-5ubuntu1) ... 207s Selecting previously unselected package tcpd. 207s Preparing to unpack .../01-tcpd_7.6.q-35_s390x.deb ... 207s Unpacking tcpd (7.6.q-35) ... 207s Selecting previously unselected package update-inetd. 207s Preparing to unpack .../02-update-inetd_4.53_all.deb ... 207s Unpacking update-inetd (4.53) ... 207s Selecting previously unselected package inetutils-inetd. 207s Preparing to unpack .../03-inetutils-inetd_2%3a2.5-5ubuntu1_s390x.deb ... 207s Unpacking inetutils-inetd (2:2.5-5ubuntu1) ... 207s Selecting previously unselected package m4. 207s Preparing to unpack .../04-m4_1.4.19-5_s390x.deb ... 207s Unpacking m4 (1.4.19-5) ... 207s Selecting previously unselected package autoconf. 207s Preparing to unpack .../05-autoconf_2.72-3_all.deb ... 207s Unpacking autoconf (2.72-3) ... 207s Selecting previously unselected package autotools-dev. 207s Preparing to unpack .../06-autotools-dev_20220109.1_all.deb ... 207s Unpacking autotools-dev (20220109.1) ... 207s Selecting previously unselected package automake. 207s Preparing to unpack .../07-automake_1%3a1.17-3_all.deb ... 207s Unpacking automake (1:1.17-3) ... 207s Selecting previously unselected package libisl23:s390x. 207s Preparing to unpack .../08-libisl23_0.27-1_s390x.deb ... 207s Unpacking libisl23:s390x (0.27-1) ... 207s Selecting previously unselected package libmpc3:s390x. 207s Preparing to unpack .../09-libmpc3_1.3.1-1build2_s390x.deb ... 207s Unpacking libmpc3:s390x (1.3.1-1build2) ... 207s Selecting previously unselected package cpp-14-s390x-linux-gnu. 207s Preparing to unpack .../10-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 207s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 207s Selecting previously unselected package cpp-14. 207s Preparing to unpack .../11-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 207s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 207s Selecting previously unselected package cpp-s390x-linux-gnu. 207s Preparing to unpack .../12-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 207s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 207s Selecting previously unselected package cpp. 207s Preparing to unpack .../13-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 207s Unpacking cpp (4:14.2.0-1ubuntu1) ... 207s Selecting previously unselected package libcc1-0:s390x. 207s Preparing to unpack .../14-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 207s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 207s Selecting previously unselected package libgomp1:s390x. 207s Preparing to unpack .../15-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 207s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 207s Selecting previously unselected package libitm1:s390x. 207s Preparing to unpack .../16-libitm1_15-20250213-1ubuntu1_s390x.deb ... 207s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 207s Selecting previously unselected package libasan8:s390x. 207s Preparing to unpack .../17-libasan8_15-20250213-1ubuntu1_s390x.deb ... 207s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 207s Selecting previously unselected package libubsan1:s390x. 207s Preparing to unpack .../18-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 207s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 207s Selecting previously unselected package libgcc-14-dev:s390x. 207s Preparing to unpack .../19-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 207s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 207s Selecting previously unselected package gcc-14-s390x-linux-gnu. 207s Preparing to unpack .../20-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 207s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package gcc-14. 208s Preparing to unpack .../21-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package gcc-s390x-linux-gnu. 208s Preparing to unpack .../22-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 208s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 208s Selecting previously unselected package gcc. 208s Preparing to unpack .../23-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 208s Unpacking gcc (4:14.2.0-1ubuntu1) ... 208s Selecting previously unselected package libstdc++-14-dev:s390x. 208s Preparing to unpack .../24-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package g++-14-s390x-linux-gnu. 208s Preparing to unpack .../25-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package g++-14. 208s Preparing to unpack .../26-g++-14_14.2.0-17ubuntu1_s390x.deb ... 208s Unpacking g++-14 (14.2.0-17ubuntu1) ... 208s Selecting previously unselected package g++-s390x-linux-gnu. 208s Preparing to unpack .../27-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 208s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 208s Selecting previously unselected package g++. 208s Preparing to unpack .../28-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 208s Unpacking g++ (4:14.2.0-1ubuntu1) ... 208s Selecting previously unselected package build-essential. 208s Preparing to unpack .../29-build-essential_12.10ubuntu1_s390x.deb ... 208s Unpacking build-essential (12.10ubuntu1) ... 208s Selecting previously unselected package gettext. 208s Preparing to unpack .../30-gettext_0.23.1-1_s390x.deb ... 208s Unpacking gettext (0.23.1-1) ... 208s Selecting previously unselected package inetutils-tools. 208s Preparing to unpack .../31-inetutils-tools_2%3a2.5-5ubuntu1_s390x.deb ... 208s Unpacking inetutils-tools (2:2.5-5ubuntu1) ... 208s Selecting previously unselected package net-tools. 208s Preparing to unpack .../32-net-tools_2.10-1.1ubuntu1_s390x.deb ... 208s Unpacking net-tools (2.10-1.1ubuntu1) ... 208s Setting up net-tools (2.10-1.1ubuntu1) ... 208s Setting up update-inetd (4.53) ... 208s Setting up m4 (1.4.19-5) ... 208s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 208s Setting up autotools-dev (20220109.1) ... 208s Setting up inetutils-syslogd (2:2.5-5ubuntu1) ... 209s Created symlink '/etc/systemd/system/syslogd.service' → '/usr/lib/systemd/system/inetutils-syslogd.service'. 209s Removed '/etc/systemd/system/syslog.service'. 209s Created symlink '/etc/systemd/system/syslog.service' → '/usr/lib/systemd/system/inetutils-syslogd.service'. 209s Created symlink '/etc/systemd/system/multi-user.target.wants/inetutils-syslogd.service' → '/usr/lib/systemd/system/inetutils-syslogd.service'. 209s Setting up libmpc3:s390x (1.3.1-1build2) ... 209s Setting up autoconf (2.72-3) ... 209s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 209s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 209s Setting up inetutils-tools (2:2.5-5ubuntu1) ... 209s Setting up libisl23:s390x (0.27-1) ... 209s Setting up tcpd (7.6.q-35) ... 209s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 209s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 209s Setting up automake (1:1.17-3) ... 209s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 209s Setting up gettext (0.23.1-1) ... 209s Setting up inetutils-inetd (2:2.5-5ubuntu1) ... 210s Created symlink '/etc/systemd/system/inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 210s Created symlink '/etc/systemd/system/multi-user.target.wants/inetutils-inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 210s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 210s Setting up cpp-14 (14.2.0-17ubuntu1) ... 210s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 210s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 210s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 210s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 210s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 210s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 210s Setting up cpp (4:14.2.0-1ubuntu1) ... 210s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 210s Setting up gcc-14 (14.2.0-17ubuntu1) ... 210s Setting up g++-14 (14.2.0-17ubuntu1) ... 210s Setting up gcc (4:14.2.0-1ubuntu1) ... 210s Setting up g++ (4:14.2.0-1ubuntu1) ... 210s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 210s Setting up build-essential (12.10ubuntu1) ... 210s Processing triggers for libc-bin (2.41-1ubuntu1) ... 210s Processing triggers for man-db (2.13.0-1) ... 212s Processing triggers for install-info (7.1.1-1) ... 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-tools'], kind short, sout pipe, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-syslogd'], kind short, sout pipe, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-inetd'], kind short, sout pipe, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-telnet'], kind short, sout pipe, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.W6YCXG/test-commands-packages.all"], kind short, sout raw, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-commands-packages.all /tmp/autopkgtest-work._9t7rhyn/out/test-commands-packages.all 213s autopkgtest: DBG: got reply from testbed: ok 213s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.W6YCXG/build.S8J/src'], kind short, sout raw, serr raw, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.W6YCXG/build.S8J/src already exists 213s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '/tmp/autopkgtest.W6YCXG/build.S8J/src'], kind short, sout raw, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest [20:45:05]: test test-commands: [----------------------- 214s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.W6YCXG/wrapper.sh --debug --artifacts=/tmp/autopkgtest.W6YCXG/test-commands-artifacts --chdir=/tmp/autopkgtest.W6YCXG/build.S8J/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.W6YCXG/test-commands-stderr --stdout=/tmp/autopkgtest.W6YCXG/test-commands-stdout --tmp=/tmp/autopkgtest.W6YCXG/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=systemd/257.3-1ubuntu1 auto-multiple-choice/1.6.0-4build1 glibc/2.41-1ubuntu1 openssh/1:9.9p1-3ubuntu3 php-twig/3.20.0-1 symfony/6.4.18+dfsg-1' --make-executable=/tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-commands -- /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-commands"], kind test, sout raw, serr raw, env [] 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.W6YCXG/test-commands-artifacts 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: changing to directory: /tmp/autopkgtest.W6YCXG/build.S8J/src 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: LANG=C.UTF-8 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LANGUAGE 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_ADDRESS 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_ALL 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_COLLATE 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_CTYPE 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_IDENTIFICATION 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_MEASUREMENT 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_MESSAGES 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_MONETARY 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_NAME 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_NUMERIC 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_PAPER 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_TELEPHONE 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_TIME 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: pretending to be a login shell 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: will write standard error to /tmp/autopkgtest.W6YCXG/test-commands-stderr 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: will write stdout to /tmp/autopkgtest.W6YCXG/test-commands-stdout 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.W6YCXG/autopkgtest_tmp 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=systemd/257.3-1ubuntu1 auto-multiple-choice/1.6.0-4build1 glibc/2.41-1ubuntu1 openssh/1:9.9p1-3ubuntu3 php-twig/3.20.0-1 symfony/6.4.18+dfsg-1 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: marking as executable: /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-commands 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: command to run: /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-commands 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: copying /tmp/tmp.dn8wBLR5XL/out to stdout and file: /tmp/autopkgtest.W6YCXG/test-commands-stdout 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: copying /tmp/tmp.dn8wBLR5XL/err to standard error and file: /tmp/autopkgtest.W6YCXG/test-commands-stdout 214s /tmp/autopkgtest.W6YCXG/wrapper.sh: writing script pid 2335 to /tmp/autopkgtest_script_pid 225s checking build system type... s390x-ibm-linux-gnu 225s checking host system type... s390x-ibm-linux-gnu 225s checking for a BSD-compatible install... /usr/bin/install -c 225s checking whether sleep supports fractional seconds... yes 225s checking filesystem timestamp resolution... 0.01 225s checking whether build environment is sane... yes 225s checking for a race-free mkdir -p... /usr/bin/mkdir -p 225s checking for gawk... gawk 225s checking whether make sets $(MAKE)... yes 225s checking whether make supports nested variables... yes 225s checking xargs -n works... yes 225s checking for gcc... gcc 225s checking whether the C compiler works... yes 225s checking for C compiler default output file name... a.out 225s checking for suffix of executables... 225s checking whether we are cross compiling... no 225s checking for suffix of object files... o 225s checking whether the compiler supports GNU C... yes 225s checking whether gcc accepts -g... yes 225s checking for gcc option to enable C11 features... none needed 225s checking whether gcc understands -c and -o together... yes 225s checking whether the compiler is clang... no 225s checking for compiler option needed when checking for declarations... none 225s checking whether make supports the include directive... yes (GNU style) 225s checking dependency style of gcc... gcc3 225s checking for stdio.h... yes 225s checking for stdlib.h... yes 225s checking for string.h... yes 225s checking for inttypes.h... yes 225s checking for stdint.h... yes 225s checking for strings.h... yes 225s checking for sys/stat.h... yes 225s checking for sys/types.h... yes 225s checking for unistd.h... yes 225s checking for wchar.h... yes 225s checking for minix/config.h... no 225s checking for features.h... yes 225s checking for linewrap.h... no 225s checking for arpa/inet.h... yes 225s checking for sys/socket.h... yes 225s checking for uchar.h... yes 226s checking for sys/param.h... yes 226s checking for dirent.h... yes 226s checking for error.h... yes 226s checking for fnmatch.h... yes 226s checking for pty.h... yes 226s checking for termios.h... yes 226s checking for sys/vfs.h... yes 226s checking for netdb.h... yes 226s checking for netinet/in.h... yes 226s checking for getopt.h... yes 226s checking for sys/cdefs.h... yes 226s checking for stdio_ext.h... yes 226s checking for grp.h... yes 226s checking for glob.h... yes 226s checking for threads.h... yes 226s checking for limits.h... yes 226s checking for crtdefs.h... no 226s checking for wctype.h... yes 226s checking for langinfo.h... yes 226s checking for xlocale.h... no 226s checking for utmp.h... yes 226s checking for util.h... no 226s checking for libutil.h... no 226s checking for sys/mman.h... yes 226s checking for obstack.h... yes 226s checking for poll.h... yes 226s checking for sys/ioctl.h... yes 226s checking for sys/filio.h... no 226s checking for utmpx.h... yes 226s checking for OS.h... no 226s checking for malloc.h... yes 226s checking for sys/select.h... yes 226s checking for sys/time.h... yes 226s checking for stdbool.h... yes 227s checking for stdckdint.h... yes 227s checking for sys/random.h... yes 227s checking for sys/uio.h... yes 227s checking for sysexits.h... yes 227s checking for vfork.h... no 227s checking whether it is safe to define __EXTENSIONS__... yes 227s checking whether _XOPEN_SOURCE should be defined... no 227s checking how to run the C preprocessor... gcc -E 227s checking for egrep -e... /usr/bin/grep -E 227s checking for Minix Amsterdam compiler... no 227s checking for ar... ar 227s checking the archiver (ar) interface... ar 227s checking for ar... (cached) ar 227s checking for ranlib... ranlib 227s checking for gcc option to enable large file support... none needed 227s configure: autobuild project... GNU inetutils 227s configure: autobuild revision... 2.5 227s configure: autobuild hostname... autopkgtest 227s configure: autobuild timestamp... 20250219T204518Z 227s checking the archiver (ar) interface... (cached) ar 227s checking for ar... (cached) ar 227s checking for dd... /usr/bin/dd 227s checking for mktemp... /usr/bin/mktemp 227s checking for netstat... /usr/bin/netstat 227s checking for rm... /usr/bin/rm 227s checking how to run the C preprocessor... gcc -E 227s checking for grep that handles long lines and -e... /usr/bin/grep 227s checking for egrep... /usr/bin/grep -E 227s checking for fgrep... /usr/bin/grep -F 227s checking whether make sets $(MAKE)... (cached) yes 227s checking for ranlib... (cached) ranlib 227s checking for bison... no 227s checking for byacc... no 227s checking whether ln -s works... yes 227s checking for a sed that does not truncate output... /usr/bin/sed 227s checking for size_t... yes 227s checking for working alloca.h... yes 227s checking for alloca... yes 227s checking for inline... inline 227s checking for C/C++ restrict keyword... __restrict__ 227s checking for gcc options needed to detect all undeclared functions... none needed 227s checking whether clearerr_unlocked is declared... yes 227s checking whether feof_unlocked is declared... yes 227s checking whether ferror_unlocked is declared... yes 227s checking whether fflush_unlocked is declared... yes 227s checking whether fgets_unlocked is declared... yes 227s checking whether fputc_unlocked is declared... yes 227s checking whether fputs_unlocked is declared... yes 227s checking whether fread_unlocked is declared... yes 227s checking whether fwrite_unlocked is declared... yes 227s checking whether getc_unlocked is declared... yes 227s checking whether getchar_unlocked is declared... yes 227s checking whether putc_unlocked is declared... yes 227s checking whether putchar_unlocked is declared... yes 227s checking for flockfile... yes 227s checking for funlockfile... yes 227s checking for btowc... yes 227s checking for mbrtowc... yes 227s checking for mbsinit... yes 228s checking for _set_invalid_parameter_handler... no 228s checking for fchdir... yes 228s checking for fcntl... yes 228s checking for symlink... yes 228s checking for fdopendir... yes 228s checking for fnmatch... yes 228s checking for mbsrtowcs... yes 228s checking for fstatat... yes 228s checking for openat... yes 228s checking for fstatfs... yes 228s checking for getdtablesize... yes 228s checking for getpass... yes 228s checking for getexecname... no 228s checking for getusershell... yes 228s checking for glob_pattern_p... yes 228s checking for isblank... yes 228s checking for iswcntrl... yes 228s checking for lstat... yes 228s checking for mprotect... yes 228s checking for memset_explicit... no 228s checking for memset_s... no 228s checking for getgrouplist... yes 228s checking for mkstemp... yes 228s checking for pipe... yes 228s checking for utmpname... yes 228s checking for utmpxname... yes 228s checking for iswctype... yes 228s checking for setenv... yes 228s checking for sleep... yes 228s checking for snprintf... yes 228s checking for strndup... yes 228s checking for vasnprintf... no 228s checking for wcrtomb... yes 228s checking for fork... yes 228s checking for vfork... yes 228s checking for getpagesize... yes 228s checking whether strerror_r is declared... yes 229s checking whether strerror_r returns char *... yes 229s checking whether the preprocessor supports include_next... yes 229s checking whether source code line length is unlimited... yes 229s checking whether uses 'inline' correctly... yes 229s checking for nl_langinfo and CODESET... yes 229s checking for a traditional french locale... none 229s checking whether char8_t is correctly defined... yes 229s checking whether char16_t is correctly defined... yes 229s checking whether char32_t is correctly defined... yes 229s checking for bit size of wchar_t... 32 229s checking for mbstate_t... yes 229s checking for a traditional japanese locale... none 229s checking for a french Unicode locale... none 229s checking for a transitional chinese locale... none 229s checking whether mbrtowc handles incomplete characters... guessing yes 229s checking whether mbrtowc works as well as mbtowc... guessing yes 229s checking whether mbrtoc32 is declared... yes 229s checking for mbrtoc32... yes 229s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 229s checking whether malloc is ptrdiff_t safe... yes 229s checking whether malloc, realloc, calloc set errno on failure... yes 229s checking if environ is properly declared... yes 229s checking for complete errno.h... yes 229s checking for error... yes 229s checking whether error_at_line is declared... yes 229s checking for error_at_line... yes 229s checking for working error function... yes 229s checking whether ctype.h defines __header_inline... no 229s checking whether fchdir is declared... yes 230s checking for working fcntl.h... yes 230s checking for pid_t... yes 230s checking for mode_t... yes 230s checking for promoted mode_t type... mode_t 230s checking whether strmode is declared... no 230s checking whether fopen recognizes a trailing slash... yes 230s checking whether fflush works on input streams... no 230s checking for library containing forkpty... none required 230s checking whether stdin defaults to large file offsets... yes 231s checking whether fseeko is declared... yes 231s checking for fseeko... yes 231s checking whether fflush works on input streams... (cached) no 231s checking whether stat file-mode macros are broken... no 231s checking for nlink_t... yes 231s checking whether lstat correctly handles trailing slash... yes 231s checking whether ftello is declared... yes 231s checking whether ungetc works on arbitrary bytes... yes 231s checking for ftello... yes 231s checking whether ftello works... yes 231s checking for O_CLOEXEC... yes 231s checking whether is self-contained... yes 231s checking for shutdown... yes 231s checking whether defines the SHUT_* macros... yes 231s checking for struct sockaddr_storage... yes 231s checking for sa_family_t... yes 231s checking for struct sockaddr_storage.ss_family... yes 231s checking for library containing gethostbyname... none required 231s checking for gethostbyname... yes 231s checking for library containing getservbyname... none required 231s checking for getservbyname... yes 231s checking for library containing inet_ntop... none required 231s checking whether inet_ntop is declared... yes 231s checking for IPv4 sockets... yes 231s checking for IPv6 sockets... yes 231s checking whether getcwd (NULL, 0) allocates memory for result... yes 231s checking for getcwd with POSIX signature... yes 231s checking whether getcwd is declared... yes 231s checking whether getdelim is declared... yes 231s checking whether getdtablesize is declared... yes 231s checking for uid_t... yes 231s checking for gid_t... yes 231s checking type of array argument to getgroups... gid_t 231s checking whether getline is declared... yes 231s checking whether getlogin_r is declared... yes 232s checking whether getlogin is declared... yes 232s checking for getopt.h... (cached) yes 232s checking for getopt_long_only... yes 232s checking whether getopt is POSIX compatible... yes 232s checking for working GNU getopt function... yes 232s checking for working GNU getopt_long function... yes 232s checking whether flockfile is declared... yes 232s checking whether funlockfile is declared... yes 232s checking for pthread.h... yes 232s checking for pthread_kill in -lpthread... yes 232s checking whether POSIX threads API is available... yes 232s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 232s checking whether setlocale (category, NULL) is multithread-safe... yes 232s checking for off_t... yes 232s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 232s checking whether limits.h has SSIZE_MAX... yes 232s checking for wint_t... yes 232s checking whether wint_t is large enough... yes 232s checking whether the compiler produces multi-arch binaries... no 232s checking whether stdint.h conforms to C99... yes 232s checking whether stdint.h works without ISO C predefines... yes 232s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 232s checking whether iswcntrl works... yes 232s checking for towlower... yes 232s checking for wctype_t... yes 232s checking for wctrans_t... yes 232s checking whether wctype supports the "blank" and "punct" character classes... yes 232s checking whether langinfo.h defines CODESET... yes 232s checking whether langinfo.h defines T_FMT_AMPM... yes 232s checking whether langinfo.h defines ALTMON_1... yes 232s checking whether langinfo.h defines ERA... yes 232s checking whether langinfo.h defines YESEXPR... yes 233s checking for wchar_t... yes 233s checking for good max_align_t... yes 233s checking whether NULL can be used in arbitrary expressions... yes 233s checking for unreachable... no 233s checking whether locale.h defines locale_t... yes 233s checking whether locale.h conforms to POSIX:2001... yes 233s checking whether struct lconv is properly defined... yes 233s checking whether imported symbols can be declared weak... yes 233s checking for multithread API to use... posix 233s checking whether malloc (0) returns nonnull... yes 233s checking for mmap... yes 233s checking for MAP_ANONYMOUS... yes 233s checking whether memchr works... yes 233s checking whether memrchr is declared... yes 233s checking whether defines MIN and MAX... no 233s checking whether defines MIN and MAX... yes 233s checking for library containing setsockopt... none needed 233s checking for ld used by gcc... /usr/bin/ld 233s checking if the linker (/usr/bin/ld) is GNU ld... yes 233s checking for shared library run path origin... done 233s checking 32-bit host C ABI... no 233s checking for ELF binary format... yes 233s checking for the common suffixes of directories in the library search path... lib,lib,lib 233s checking whether to use systemd APIs... no 233s checking whether endutent is declared... yes 233s checking for struct utmpx.ut_user... yes 233s checking for struct utmp.ut_user... yes 233s checking for struct utmpx.ut_name... yes 233s checking for struct utmp.ut_name... yes 233s checking for struct utmpx.ut_type... yes 233s checking for struct utmp.ut_type... yes 233s checking for struct utmpx.ut_pid... yes 233s checking for struct utmp.ut_pid... yes 233s checking for struct utmp.ut_tv... yes 233s checking for struct utmpx.ut_host... yes 233s checking for struct utmp.ut_host... yes 234s checking for struct utmpx.ut_id... yes 234s checking for struct utmp.ut_id... yes 234s checking for struct utmpx.ut_session... yes 234s checking for struct utmp.ut_session... yes 234s checking for struct utmpx.ut_exit... yes 234s checking for struct utmp.ut_exit... yes 234s checking for struct utmpx.ut_exit.ut_exit... no 234s checking for struct utmpx.ut_exit.e_exit... yes 234s checking for struct utmp.ut_exit.e_exit... yes 234s checking for struct utmpx.ut_exit.ut_termination... no 234s checking for struct utmpx.ut_exit.e_termination... yes 234s checking for struct utmp.ut_exit.e_termination... yes 234s checking whether sysinfo is declared... yes 234s checking for sys/sysctl.h... no 234s checking for sysctl... no 234s checking whether alarm is declared... yes 234s checking whether is self-contained... yes 234s checking whether setenv is declared... yes 234s checking for search.h... yes 234s checking for tsearch... yes 234s checking for sigset_t... yes 234s checking for volatile sig_atomic_t... yes 234s checking for sighandler_t... yes 235s checking whether snprintf returns a byte count as in C99... yes 235s checking whether printf supports POSIX/XSI format strings with positions... yes 235s checking whether snprintf is declared... yes 235s checking whether fcloseall is declared... yes 235s checking whether getw is declared... yes 235s checking whether putw is declared... yes 235s checking which flavor of printf attribute matches inttypes macros... system 235s checking whether ecvt is declared... yes 235s checking whether fcvt is declared... yes 235s checking whether gcvt is declared... yes 235s checking whether MB_CUR_MAX is correct... guessing yes 235s checking whether strdup is declared... yes 235s checking whether strerror(0) succeeds... yes 235s checking whether strndup is declared... yes 235s checking whether strnlen is declared... yes 235s checking whether declares ioctl... yes 235s checking for struct timeval... yes 235s checking for wide-enough struct timeval.tv_sec member... yes 235s checking for struct timespec in ... yes 235s checking for TIME_UTC in ... yes 235s checking whether execvpe is declared... yes 235s checking for util.h... (cached) no 235s checking for libutil.h... (cached) no 235s checking for inttypes.h... yes 235s checking for stdint.h... yes 235s checking for intmax_t... yes 235s checking whether snprintf truncates the result as in C99... yes 235s checking where to find the exponent in a 'double'... word 0 bit 20 235s checking for wcslen... yes 235s checking for snprintf... (cached) yes 235s checking for strnlen... yes 235s checking for wcrtomb... (cached) yes 235s checking whether _snprintf is declared... no 235s checking whether vsnprintf is declared... yes 235s checking whether wcsdup is declared... yes 235s checking for C compiler option to allow warnings... -Wno-error 235s checking for alignas and alignof... yes, macros 235s checking for alloca as a compiler built-in... yes 235s checking whether program_invocation_name is declared... yes 235s checking whether program_invocation_short_name is declared... yes 236s checking whether program_invocation_name is defined... yes 236s checking whether program_invocation_short_name is defined... yes 236s checking for static_assert... yes, an macro 236s checking whether btowc(0) is correct... yes 236s checking whether btowc(EOF) is correct... guessing yes 236s checking whether btowc is consistent with mbrtowc in the C locale... no 236s checking for __builtin_expect... yes 236s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 236s checking whether this system supports file names of any length... no 236s checking for library containing clock_gettime... none required 236s checking for clock_getres... yes 236s checking for clock_gettime... yes 236s checking for clock_settime... yes 236s checking for closedir... yes 236s checking for d_ino member in directory struct... yes 236s checking for d_type member in directory struct... yes 236s checking for dirfd... yes 236s checking whether dirfd is declared... yes 236s checking whether dirfd is a macro... no 236s checking whether // is distinct from /... no 236s checking whether dup works... yes 236s checking whether dup2 works... yes 236s checking whether fcntl handles F_DUPFD correctly... yes 236s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 236s checking whether fdopendir is declared... yes 236s checking whether fdopendir works... yes 236s checking for mempcpy... yes 236s checking for flexible array member... yes 236s checking whether conversion from 'int' to 'long double' works... yes 236s checking for working POSIX fnmatch... yes 236s checking whether fopen supports the mode character 'x'... yes 236s checking whether fopen supports the mode character 'e'... yes 236s checking whether forkpty is declared... yes 236s checking for const-safe forkpty signature... yes 236s checking whether free is known to preserve errno... yes 236s checking for fseeko... (cached) yes 236s checking whether fflush works on input streams... (cached) no 236s checking for _fseeki64... no 236s checking whether fstatat (..., 0) works... yes 236s checking for ftello... (cached) yes 236s checking whether ftello works... (cached) yes 236s checking for struct statfs.f_type... yes 237s checking for __fsword_t... yes 237s checking for fts_open... yes 237s checking for library containing getaddrinfo... none required 237s checking for getaddrinfo... yes 237s checking whether gai_strerror is declared... yes 237s checking whether gai_strerrorA is declared... no 237s checking for gai_strerror with POSIX signature... yes 237s checking for struct sockaddr.sa_len... no 237s checking whether getaddrinfo is declared... yes 237s checking whether freeaddrinfo is declared... yes 237s checking whether getnameinfo is declared... yes 237s checking for struct addrinfo... yes 237s checking whether getcwd handles long file names properly... yes 237s checking for getpagesize... yes 237s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 237s checking for getdelim... yes 237s checking for working getdelim function... yes 237s checking for getdomainname... yes 237s checking whether getdomainname is declared... yes 237s checking for getdomainname's second argument type... size_t 237s checking whether getdtablesize works... yes 237s checking for getgroups... yes 237s checking for working getgroups... yes 237s checking whether getgroups handles negative values... yes 237s checking for gethostname... yes 237s checking for HOST_NAME_MAX... yes 237s checking for getline... yes 237s checking for working getline function... yes 237s checking for getlogin_r... yes 237s checking whether getlogin_r works with small buffers... yes 237s checking for getprogname... no 237s checking whether program_invocation_name is declared... (cached) yes 237s checking whether program_invocation_name is declared... (cached) yes 237s checking whether program_invocation_short_name is declared... (cached) yes 237s checking whether __argv is declared... no 238s checking for getrandom... yes 238s checking whether getrandom is compatible with its GNU+BSD signature... yes 238s checking whether getusershell is declared... yes 238s checking for glob... yes 238s checking for GNU glob interface version 1 or 2... yes 238s checking whether glob lists broken symlinks... yes 238s checking whether glob NOTDIR*/ omits symlink to nondir... yes 238s checking for library containing gethostbyname... (cached) none required 238s checking for gethostbyname... (cached) yes 238s checking for library containing inet_ntop... (cached) none required 238s checking whether inet_ntop is declared... (cached) yes 238s checking whether the compiler generally respects inline... yes 238s checking for ioctl... yes 238s checking for ioctl with POSIX signature... no 238s checking for iswblank... yes 238s checking whether iswblank is declared... yes 238s checking whether iswdigit is ISO C compliant... guessing yes 238s checking whether iswpunct is consistent with ispunct... yes 238s checking whether iswxdigit is ISO C compliant... guessing yes 238s checking whether the compiler supports the __inline keyword... yes 238s checking whether localeconv works... yes 238s checking for pthread_rwlock_t... yes 238s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 238s checking for login_tty... yes 238s checking whether lseek detects pipes... yes 238s checking whether SEEK_DATA works but is incompatible with GNU... no 238s checking whether malloc (0) returns nonnull... (cached) yes 238s checking whether mbrtoc32 works on empty input... yes 238s checking whether the C locale is free of encoding errors... no 238s checking whether mbrtowc handles a NULL pwc argument... guessing yes 238s checking whether mbrtowc handles a NULL string argument... guessing yes 238s checking whether mbrtowc has a correct return value... guessing yes 238s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 238s checking whether mbrtowc stores incomplete characters... guessing no 238s checking whether mbrtowc works on empty input... yes 238s checking whether the C locale is free of encoding errors... no 238s checking whether mbsrtowcs works... guessing yes 238s checking whether the C locale is free of encoding errors... (cached) no 238s checking for mbtowc... yes 238s checking for mempcpy... (cached) yes 238s checking for memrchr... yes 238s checking for explicit_memset... no 238s checking whether mkdir handles trailing slash... yes 238s checking whether mkdir handles trailing dot... yes 238s checking for working mkstemp... yes 238s checking whether is self-contained... yes 238s checking for nl_langinfo... yes 238s checking whether YESEXPR works... yes 238s checking for obstacks that work with any size object... no 239s checking whether open recognizes a trailing slash... yes 239s checking for opendir... yes 239s checking whether openpty is declared... yes 239s checking for const-safe openpty signature... yes 239s checking for poll... yes 239s checking for posix_openpt... yes 239s checking whether program_invocation_name is declared... (cached) yes 239s checking whether program_invocation_short_name is declared... (cached) yes 239s checking for rawmemchr... yes 239s checking for readdir... yes 239s checking for readline... no 239s checking for readline/readline.h... no 239s checking for readline/history.h... no 239s checking whether realloc (0, 0) returns nonnull... yes 239s checking for reallocarray... yes 239s checking for working re_compile_pattern... yes 239s checking for rewinddir... yes 239s checking whether select supports a 0 argument... yes 239s checking whether select detects invalid fds... yes 239s checking for library containing getservbyname... (cached) none required 239s checking for getservbyname... (cached) yes 239s checking whether setenv validates arguments... yes 239s checking for HOST_NAME_MAX... (cached) yes 239s checking for sethostname... yes 239s checking whether sethostname is declared... yes 239s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 239s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 239s checking for stdint.h... (cached) yes 239s checking for SIZE_MAX... yes 239s checking whether sleep is declared... yes 240s checking for working sleep... yes 240s checking for snprintf... (cached) yes 240s checking whether snprintf respects a size of 1... yes 240s checking for socklen_t... yes 240s checking for ssize_t... yes 240s checking whether stat handles trailing slashes on files... yes 240s checking for struct stat.st_atim.tv_nsec... yes 240s checking whether struct stat.st_atim is of type struct timespec... yes 240s checking for struct stat.st_birthtimespec.tv_nsec... no 240s checking for struct stat.st_birthtimensec... no 240s checking for struct stat.st_birthtim.tv_nsec... no 241s checking for va_copy... yes 241s checking for bool, true, false... no 241s checking for strcasecmp... yes 241s checking for strncasecmp... yes 241s checking whether strncasecmp is declared... yes 241s checking for strchrnul... yes 241s checking whether strchrnul works... yes 241s checking for working strerror function... yes 241s checking for working strndup... yes 241s checking for working strnlen... yes 241s checking for variable-length arrays... yes 241s checking for ptrdiff_t... yes 241s checking for vasprintf... yes 241s checking for vsnprintf... yes 241s checking whether snprintf respects a size of 1... (cached) yes 241s checking whether wcrtomb works in the C locale... yes 241s checking whether wcrtomb return value is correct... guessing yes 241s checking for wmemchr... yes 241s checking for wmempcpy... yes 241s checking for stdint.h... (cached) yes 241s checking for library containing inet_ntoa... none required 241s checking for initscr in -lncurses... no 241s checking for tgetent in -ltermcap... no 241s checking whether tgetent needs support... no 241s checking for tgetent in -lcurses... no 241s checking whether tgetent is declared... no 241s checking for tgetent in -ltermlib... no 241s checking for crypt in -lcrypt... yes 241s checking for login in -lutil... yes 241s checking for loginx in -lutil... no 241s checking for logout in -lutil... yes 241s checking for logoutx in -lutil... no 241s checking for logwtmp in -lutil... yes 241s checking for logwtmpx in -lutil... no 241s checking for protocols/talkd.h... yes 241s checking for rcmd... yes 241s checking for rcmd_af... yes 241s checking for orcmd... no 241s checking for orcmd_af... no 241s checking for rresvport_af... yes 241s checking for iruserok... yes 242s checking for iruserok_af... yes 242s checking for iruserok_sa... no 242s checking for ruserok... yes 242s checking for ruserok_af... yes 242s checking for AF_INET6... yes 242s checking for IPV6_V6ONLY... yes 242s checking for struct sockaddr_storage... (cached) yes 242s checking for struct sockaddr_in6... yes 242s checking for struct addrinfo... (cached) yes 242s checking for getnameinfo... yes 242s checking for netinet/icmp6.h... yes 242s checking for netinet/ip6.h... yes 242s checking for struct icmp6_filter... yes 242s checking for struct icmp6_hdr... yes 242s checking for IPV6_HOPLIMIT... yes 242s checking for IPV6_2292HOPLIMIT... yes 242s checking for IPV6_RECVHOPLIMIT... yes 242s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 242s checking for locale.h... yes 242s checking for setlocale... yes 242s checking for arpa/nameser.h... yes 242s checking for arpa/tftp.h... yes 242s checking for fcntl.h... yes 242s checking for features.h... (cached) yes 242s checking for glob.h... (cached) yes 242s checking for memory.h... yes 242s checking for netinet/ether.h... yes 242s checking for netinet/in_systm.h... yes 242s checking for netinet/ip.h... yes 242s checking for netinet/ip_icmp.h... yes 242s checking for netinet/ip_var.h... no 242s checking for security/pam_appl.h... no 242s checking for shadow.h... yes 242s checking for stropts.h... no 242s checking for sys/tty.h... no 242s checking for sys/utsname.h... yes 242s checking for sys/ptyvar.h... no 242s checking for sys/msgbuf.h... no 242s checking for sys/filio.h... (cached) no 242s checking for sys/ioctl_compat.h... no 242s checking for sys/cdefs.h... (cached) yes 242s checking for sys/stream.h... no 242s checking for sys/mkdev.h... no 242s checking for sys/sockio.h... no 242s checking for sys/sysmacros.h... yes 242s checking for sys/param.h... (cached) yes 242s checking for sys/file.h... yes 242s checking for sys/proc.h... no 242s checking for sys/select.h... (cached) yes 242s checking for sys/wait.h... yes 242s checking for sys/resource.h... yes 242s checking for stropts.h... (cached) no 242s checking for tcpd.h... no 242s checking for utmp.h... (cached) yes 242s checking for utmpx.h... (cached) yes 242s checking for unistd.h... (cached) yes 242s checking for vis.h... no 243s checking for struct if_nameindex... yes 243s checking for sigset_t... (cached) yes 243s checking for sig_atomic_t... yes 243s checking for struct sockaddr_in.sin_len... no 243s checking for struct sockaddr_in6.sin6_len... no 243s checking for struct sockaddr_storage.ss_len... no 243s checking for struct passwd.pw_expire... no 243s checking for struct passwd.pw_change... no 243s checking for struct lastlog... yes 243s checking for struct utmp.ut_type... (cached) yes 243s checking for struct utmp.ut_pid... (cached) yes 243s checking for struct utmp.ut_line... yes 243s checking for struct utmp.ut_id... (cached) yes 243s checking for struct utmp.ut_user... (cached) yes 243s checking for struct utmp.ut_host... (cached) yes 243s checking for struct utmp.ut_exit... (cached) yes 243s checking for struct utmp.ut_session... (cached) yes 243s checking for struct utmp.ut_tv... (cached) yes 243s checking for struct utmp.ut_time... yes 243s checking for struct utmp.ut_addr_v6... yes 243s checking for struct utmp.ut_name... (cached) yes 243s checking for struct lastlogx... no 243s checking for struct lastlogx.ll_ss... no 243s checking for struct utmpx.ut_user... (cached) yes 243s checking for struct utmpx.ut_name... (cached) yes 243s checking for struct utmpx.ut_id... (cached) yes 243s checking for struct utmpx.ut_line... yes 243s checking for struct utmpx.ut_pid... (cached) yes 243s checking for struct utmpx.ut_type... (cached) yes 243s checking for struct utmpx.ut_exit... (cached) yes 243s checking for struct utmpx.ut_tv... yes 243s checking for struct utmpx.ut_session... (cached) yes 243s checking for struct utmpx.ut_syslen... no 243s checking for struct utmpx.ut_host... (cached) yes 243s checking for struct utmpx.ut_ss... no 243s checking for struct utmpx.ut_addr_v6... yes 243s checking for struct ifreq.ifr_index... no 243s checking for struct ifreq.ifr_netmask... yes 243s checking for struct ifreq.ifr_broadaddr... yes 243s checking for struct ifreq.ifr_mtu... yes 243s checking for struct ifreq.ifr_map... yes 243s checking for struct sockaddr.sa_len... (cached) no 243s checking for struct hostent.h_addr_list... yes 243s checking for struct stat.st_atim.tv_nsec... (cached) yes 243s checking for struct stat.st_atim.tv_usec... no 243s checking for struct stat.st_blksize... yes 243s checking for struct stat.st_ctim.tv_nsec... yes 243s checking for struct stat.st_ctim.tv_usec... no 243s checking for struct stat.st_mtim.tv_nsec... yes 243s checking for struct stat.st_mtim.tv_usec... no 243s checking for struct tftphdr.th_u... no 243s checking for working fork... yes 243s checking for working vfork... (cached) yes 243s checking for working mmap... yes 243s checking for cfsetspeed... yes 243s checking for cgetent... no 243s checking for dirfd... (cached) yes 243s checking for flock... yes 243s checking for fork... (cached) yes 243s checking for fpathconf... yes 243s checking for ftruncate... yes 243s checking for getcwd... yes 243s checking for getmsg... no 243s checking for getpwuid_r... yes 243s checking for getspnam... yes 243s checking for getutxent... yes 243s checking for getutxuser... no 243s checking for initgroups... yes 243s checking for initsetproctitle... no 243s checking for killpg... yes 243s checking for ptsname... yes 243s checking for pututline... yes 243s checking for pututxline... yes 244s checking for setegid... yes 244s checking for seteuid... yes 244s checking for setpgid... yes 244s checking for setlogin... no 244s checking for setsid... yes 244s checking for setregid... yes 244s checking for setreuid... yes 244s checking for setresgid... yes 244s checking for setresuid... yes 244s checking for setutent_r... no 244s checking for sigaction... yes 244s checking for sigvec... no 244s checking for strchr... yes 244s checking for setproctitle... no 244s checking for tcgetattr... yes 244s checking for tzset... yes 244s checking for utimes... yes 244s checking for utime... yes 244s checking for uname... yes 244s checking for updwtmp... yes 244s checking for updwtmpx... yes 244s checking for vhangup... yes 244s checking for wait3... yes 244s checking for wait4... yes 244s checking for __opendir2... no 244s checking for __rcmd_errstr... yes 244s checking for __check_rhosts_file... yes 244s checking for login... yes 244s checking for loginx... no 244s checking for logout... yes 244s checking for logoutx... no 244s checking for logwtmp... yes 245s checking for logwtmpx... no 245s checking for crypt... yes 245s checking for _obstack_free... yes 245s checking for setpgid... (cached) yes 245s checking for hstrerror... yes 245s checking whether hstrerror is declared... yes 245s checking whether telcmds is declared... yes 245s checking whether telopts is declared... no 245s checking for Schedule... no 245s checking for Session_Key... no 245s checking whether enctype_names is const char... no 245s checking whether crypt is declared... yes 245s checking for syslog internal macros... yes 245s checking for CODE... yes 245s checking whether prioritynames is declared... yes 245s checking whether fclose is declared... yes 245s checking whether pclose is declared... yes 245s checking whether getcwd is declared... (cached) yes 245s checking whether getlogin is declared... (cached) yes 245s checking whether getpass is declared... yes 245s checking whether getusershell is declared... (cached) yes 245s checking whether ttyname is declared... yes 245s checking whether getgrnam is declared... yes 245s checking whether initgroups is declared... yes 245s checking whether htons is declared... yes 245s checking for h_errno... yes 245s checking whether h_errno is declared... yes 245s checking for SEEK_ macros... yes 245s checking for _FILENO macros... yes 245s checking for fd_set macros... yes 245s checking for paths.h... yes 245s checking for value of PATH_BSHELL... from _PATH_BSHELL in 245s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 245s checking for value of PATH_CP... /usr/bin/cp 245s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 245s checking for value of PATH_DEV... from _PATH_DEV in 245s checking for value of PATH_TTY_PFX... from _PATH_DEV in 245s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 245s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 245s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 245s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 245s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 245s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 245s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 245s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 245s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 245s checking for value of PATH_UTMP... from _PATH_UTMP in 245s checking for value of PATH_UTMPX... from _PATH_UTMPX in 245s checking for value of PATH_WTMP... from _PATH_WTMP in 245s checking for value of PATH_WTMPX... from _PATH_WTMPX in 245s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 245s checking for value of PATH_LOG... from _PATH_LOG in 245s checking for value of PATH_KLOG... from _PATH_KLOG in 245s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 245s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 245s checking for value of PATH_LOGIN... /usr/bin/login 245s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 245s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 245s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 245s checking for value of PATH_RSH... (default) $(bindir)/rsh 245s checking for value of PATH_TMP... from _PATH_TMP in 245s checking for value of PATH_TTY... from _PATH_TTY in 246s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 246s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 246s checking for value of PATH_PROCNET_DEV... /proc/net/dev 246s checking that generated files are newer than configure... done 246s configure: creating ./config.status 246s config.status: creating Makefile 246s config.status: creating summary.sh 246s config.status: creating lib/Makefile 246s config.status: creating libinetutils/Makefile 246s config.status: creating libtelnet/Makefile 246s config.status: creating libicmp/Makefile 246s config.status: creating libls/Makefile 246s config.status: creating src/Makefile 246s config.status: creating telnet/Makefile 246s config.status: creating telnetd/Makefile 246s config.status: creating ftp/Makefile 246s config.status: creating ftpd/Makefile 246s config.status: creating talk/Makefile 246s config.status: creating talkd/Makefile 246s config.status: creating whois/Makefile 246s config.status: creating ping/Makefile 246s config.status: creating ifconfig/Makefile 246s config.status: creating ifconfig/system/Makefile 246s config.status: creating tests/Makefile 246s config.status: creating confpaths.h 246s config.status: creating config.h 246s config.status: executing depfiles commands 247s config.status: executing summary commands 247s Summary of build decisions: 247s 247s Clients: 247s 247s dnsdomainname yes 247s ftp no 247s hostname yes 247s ifconfig yes 247s logger yes 247s ping no 247s ping6 no 247s rcp yes 247s rexec yes 247s rlogin yes 247s rsh yes 247s talk no 247s telnet yes 247s tftp no 247s traceroute no 247s whois yes 247s 247s Servers: 247s 247s ftpd no 247s inetd yes 247s rexecd yes 247s rlogind yes 247s rshd yes 247s syslogd yes 247s talkd yes 247s telnetd yes 247s tftpd no 247s uucpd yes 247s 247s Support: 247s 247s libls no 247s make: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 247s make: Warning: File '../configure.ac' has modification time 32 s in the future 247s cd .. && make am--refresh 247s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src' 247s make[1]: Warning: File 'Makefile.am' has modification time 32 s in the future 247s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing' aclocal-1.17 -I am -I m4 250s cd . && /bin/bash /tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing automake-1.17 --gnu 253s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing' autoconf 254s /bin/bash ./config.status --recheck 254s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-talk --disable-ftp --disable-ftpd --disable-ping --disable-ping6 --disable-tftp --disable-tftpd --disable-traceroute --no-create --no-recursion 254s checking build system type... s390x-ibm-linux-gnu 254s checking host system type... s390x-ibm-linux-gnu 254s checking for a BSD-compatible install... /usr/bin/install -c 254s checking whether sleep supports fractional seconds... yes 255s checking filesystem timestamp resolution... 0.01 255s checking whether build environment is sane... yes 255s checking for a race-free mkdir -p... /usr/bin/mkdir -p 255s checking for gawk... gawk 255s checking whether make sets $(MAKE)... yes 255s checking whether make supports nested variables... yes 255s checking xargs -n works... yes 255s checking for gcc... gcc 255s checking whether the C compiler works... yes 255s checking for C compiler default output file name... a.out 255s checking for suffix of executables... 255s checking whether we are cross compiling... no 255s checking for suffix of object files... o 255s checking whether the compiler supports GNU C... yes 255s checking whether gcc accepts -g... yes 255s checking for gcc option to enable C11 features... none needed 255s checking whether gcc understands -c and -o together... yes 255s checking whether the compiler is clang... no 255s checking for compiler option needed when checking for declarations... none 255s checking whether make supports the include directive... yes (GNU style) 255s checking dependency style of gcc... gcc3 255s checking for stdio.h... yes 255s checking for stdlib.h... yes 255s checking for string.h... yes 255s checking for inttypes.h... yes 255s checking for stdint.h... yes 255s checking for strings.h... yes 255s checking for sys/stat.h... yes 255s checking for sys/types.h... yes 255s checking for unistd.h... yes 255s checking for wchar.h... yes 255s checking for minix/config.h... no 255s checking for features.h... yes 255s checking for linewrap.h... no 255s checking for arpa/inet.h... yes 255s checking for sys/socket.h... yes 255s checking for uchar.h... yes 255s checking for sys/param.h... yes 255s checking for dirent.h... yes 255s checking for error.h... yes 255s checking for fnmatch.h... yes 255s checking for pty.h... yes 255s checking for termios.h... yes 255s checking for sys/vfs.h... yes 255s checking for netdb.h... yes 255s checking for netinet/in.h... yes 255s checking for getopt.h... yes 255s checking for sys/cdefs.h... yes 255s checking for stdio_ext.h... yes 255s checking for grp.h... yes 255s checking for glob.h... yes 255s checking for threads.h... yes 255s checking for limits.h... yes 255s checking for crtdefs.h... no 256s checking for wctype.h... yes 257s checking for langinfo.h... yes 257s checking for xlocale.h... no 257s checking for utmp.h... yes 257s checking for util.h... no 257s checking for libutil.h... no 257s checking for sys/mman.h... yes 257s checking for obstack.h... yes 257s checking for poll.h... yes 257s checking for sys/ioctl.h... yes 257s checking for sys/filio.h... no 257s checking for utmpx.h... yes 257s checking for OS.h... no 257s checking for malloc.h... yes 257s checking for sys/select.h... yes 257s checking for sys/time.h... yes 257s checking for stdbool.h... yes 257s checking for stdckdint.h... yes 257s checking for sys/random.h... yes 257s checking for sys/uio.h... yes 257s checking for sysexits.h... yes 257s checking for vfork.h... no 257s checking whether it is safe to define __EXTENSIONS__... yes 257s checking whether _XOPEN_SOURCE should be defined... no 257s checking how to run the C preprocessor... gcc -E 257s checking for egrep -e... /usr/bin/grep -E 257s checking for Minix Amsterdam compiler... no 257s checking for ar... ar 257s checking the archiver (ar) interface... ar 257s checking for ar... (cached) ar 257s checking for ranlib... ranlib 257s checking for gcc option to enable large file support... none needed 257s configure: autobuild project... GNU inetutils 257s configure: autobuild revision... 2.5 257s configure: autobuild hostname... autopkgtest 257s configure: autobuild timestamp... 20250219T204547Z 257s checking the archiver (ar) interface... (cached) ar 257s checking for ar... (cached) ar 257s checking for dd... /usr/bin/dd 257s checking for mktemp... /usr/bin/mktemp 257s checking for netstat... /usr/bin/netstat 257s checking for rm... /usr/bin/rm 257s checking how to run the C preprocessor... gcc -E 257s checking for grep that handles long lines and -e... /usr/bin/grep 257s checking for egrep... /usr/bin/grep -E 257s checking for fgrep... /usr/bin/grep -F 257s checking whether make sets $(MAKE)... (cached) yes 257s checking for ranlib... (cached) ranlib 257s checking for bison... no 257s checking for byacc... no 257s checking whether ln -s works... yes 257s checking for a sed that does not truncate output... /usr/bin/sed 257s checking for size_t... yes 257s checking for working alloca.h... yes 257s checking for alloca... yes 257s checking for inline... inline 257s checking for C/C++ restrict keyword... __restrict__ 257s checking for gcc options needed to detect all undeclared functions... none needed 257s checking whether clearerr_unlocked is declared... yes 257s checking whether feof_unlocked is declared... yes 257s checking whether ferror_unlocked is declared... yes 257s checking whether fflush_unlocked is declared... yes 257s checking whether fgets_unlocked is declared... yes 257s checking whether fputc_unlocked is declared... yes 257s checking whether fputs_unlocked is declared... yes 257s checking whether fread_unlocked is declared... yes 257s checking whether fwrite_unlocked is declared... yes 257s checking whether getc_unlocked is declared... yes 257s checking whether getchar_unlocked is declared... yes 257s checking whether putc_unlocked is declared... yes 257s checking whether putchar_unlocked is declared... yes 257s checking for flockfile... yes 257s checking for funlockfile... yes 257s checking for btowc... yes 257s checking for mbrtowc... yes 257s checking for mbsinit... yes 257s checking for _set_invalid_parameter_handler... no 257s checking for fchdir... yes 257s checking for fcntl... yes 257s checking for symlink... yes 257s checking for fdopendir... yes 257s checking for fnmatch... yes 257s checking for mbsrtowcs... yes 257s checking for fstatat... yes 257s checking for openat... yes 257s checking for fstatfs... yes 257s checking for getdtablesize... yes 257s checking for getpass... yes 257s checking for getexecname... no 257s checking for getusershell... yes 257s checking for glob_pattern_p... yes 257s checking for isblank... yes 257s checking for iswcntrl... yes 257s checking for lstat... yes 257s checking for mprotect... yes 257s checking for memset_explicit... no 257s checking for memset_s... no 257s checking for getgrouplist... yes 257s checking for mkstemp... yes 257s checking for pipe... yes 258s checking for utmpname... yes 258s checking for utmpxname... yes 258s checking for iswctype... yes 258s checking for setenv... yes 258s checking for sleep... yes 258s checking for snprintf... yes 258s checking for strndup... yes 258s checking for vasnprintf... no 258s checking for wcrtomb... yes 258s checking for fork... yes 258s checking for vfork... yes 258s checking for getpagesize... yes 258s checking whether strerror_r is declared... yes 258s checking whether strerror_r returns char *... yes 258s checking whether the preprocessor supports include_next... yes 258s checking whether source code line length is unlimited... yes 258s checking whether uses 'inline' correctly... yes 258s checking for nl_langinfo and CODESET... yes 258s checking for a traditional french locale... none 258s checking whether char8_t is correctly defined... yes 258s checking whether char16_t is correctly defined... yes 258s checking whether char32_t is correctly defined... yes 258s checking for bit size of wchar_t... 32 258s checking for mbstate_t... yes 258s checking for a traditional japanese locale... none 258s checking for a french Unicode locale... none 258s checking for a transitional chinese locale... none 258s checking whether mbrtowc handles incomplete characters... guessing yes 258s checking whether mbrtowc works as well as mbtowc... guessing yes 258s checking whether mbrtoc32 is declared... yes 258s checking for mbrtoc32... yes 258s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 258s checking whether malloc is ptrdiff_t safe... yes 258s checking whether malloc, realloc, calloc set errno on failure... yes 258s checking if environ is properly declared... yes 258s checking for complete errno.h... yes 258s checking for error... yes 258s checking whether error_at_line is declared... yes 258s checking for error_at_line... yes 258s checking for working error function... yes 258s checking whether ctype.h defines __header_inline... no 259s checking whether fchdir is declared... yes 260s checking for working fcntl.h... yes 260s checking for pid_t... yes 260s checking for mode_t... yes 260s checking for promoted mode_t type... mode_t 260s checking whether strmode is declared... no 260s checking whether fopen recognizes a trailing slash... yes 260s checking whether fflush works on input streams... no 260s checking for library containing forkpty... none required 260s checking whether stdin defaults to large file offsets... yes 260s checking whether fseeko is declared... yes 260s checking for fseeko... yes 260s checking whether fflush works on input streams... (cached) no 260s checking whether stat file-mode macros are broken... no 260s checking for nlink_t... yes 260s checking whether lstat correctly handles trailing slash... yes 260s checking whether ftello is declared... yes 260s checking whether ungetc works on arbitrary bytes... yes 260s checking for ftello... yes 260s checking whether ftello works... yes 260s checking for O_CLOEXEC... yes 260s checking whether is self-contained... yes 260s checking for shutdown... yes 260s checking whether defines the SHUT_* macros... yes 260s checking for struct sockaddr_storage... yes 260s checking for sa_family_t... yes 260s checking for struct sockaddr_storage.ss_family... yes 260s checking for library containing gethostbyname... none required 260s checking for gethostbyname... yes 260s checking for library containing getservbyname... none required 260s checking for getservbyname... yes 260s checking for library containing inet_ntop... none required 260s checking whether inet_ntop is declared... yes 260s checking for IPv4 sockets... yes 260s checking for IPv6 sockets... yes 261s checking whether getcwd (NULL, 0) allocates memory for result... yes 261s checking for getcwd with POSIX signature... yes 261s checking whether getcwd is declared... yes 261s checking whether getdelim is declared... yes 261s checking whether getdtablesize is declared... yes 261s checking for uid_t... yes 261s checking for gid_t... yes 261s checking type of array argument to getgroups... gid_t 261s checking whether getline is declared... yes 261s checking whether getlogin_r is declared... yes 261s checking whether getlogin is declared... yes 261s checking for getopt.h... (cached) yes 261s checking for getopt_long_only... yes 261s checking whether getopt is POSIX compatible... yes 261s checking for working GNU getopt function... yes 261s checking for working GNU getopt_long function... yes 261s checking whether flockfile is declared... yes 261s checking whether funlockfile is declared... yes 261s checking for pthread.h... yes 261s checking for pthread_kill in -lpthread... yes 261s checking whether POSIX threads API is available... yes 261s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 261s checking whether setlocale (category, NULL) is multithread-safe... yes 261s checking for off_t... yes 261s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 261s checking whether limits.h has SSIZE_MAX... yes 261s checking for wint_t... yes 261s checking whether wint_t is large enough... yes 261s checking whether the compiler produces multi-arch binaries... no 262s checking whether stdint.h conforms to C99... yes 262s checking whether stdint.h works without ISO C predefines... yes 262s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 262s checking whether iswcntrl works... yes 262s checking for towlower... yes 262s checking for wctype_t... yes 262s checking for wctrans_t... yes 262s checking whether wctype supports the "blank" and "punct" character classes... yes 262s checking whether langinfo.h defines CODESET... yes 262s checking whether langinfo.h defines T_FMT_AMPM... yes 262s checking whether langinfo.h defines ALTMON_1... yes 262s checking whether langinfo.h defines ERA... yes 262s checking whether langinfo.h defines YESEXPR... yes 262s checking for wchar_t... yes 262s checking for good max_align_t... yes 262s checking whether NULL can be used in arbitrary expressions... yes 262s checking for unreachable... no 262s checking whether locale.h defines locale_t... yes 262s checking whether locale.h conforms to POSIX:2001... yes 262s checking whether struct lconv is properly defined... yes 262s checking whether imported symbols can be declared weak... yes 262s checking for multithread API to use... posix 262s checking whether malloc (0) returns nonnull... yes 262s checking for mmap... yes 262s checking for MAP_ANONYMOUS... yes 262s checking whether memchr works... yes 262s checking whether memrchr is declared... yes 262s checking whether defines MIN and MAX... no 262s checking whether defines MIN and MAX... yes 262s checking for library containing setsockopt... none needed 262s checking for ld used by gcc... /usr/bin/ld 262s checking if the linker (/usr/bin/ld) is GNU ld... yes 262s checking for shared library run path origin... done 262s checking 32-bit host C ABI... no 262s checking for ELF binary format... yes 262s checking for the common suffixes of directories in the library search path... lib,lib,lib 262s checking whether to use systemd APIs... no 262s checking whether endutent is declared... yes 262s checking for struct utmpx.ut_user... yes 262s checking for struct utmp.ut_user... yes 262s checking for struct utmpx.ut_name... yes 262s checking for struct utmp.ut_name... yes 262s checking for struct utmpx.ut_type... yes 262s checking for struct utmp.ut_type... yes 262s checking for struct utmpx.ut_pid... yes 262s checking for struct utmp.ut_pid... yes 262s checking for struct utmp.ut_tv... yes 263s checking for struct utmpx.ut_host... yes 263s checking for struct utmp.ut_host... yes 263s checking for struct utmpx.ut_id... yes 263s checking for struct utmp.ut_id... yes 263s checking for struct utmpx.ut_session... yes 263s checking for struct utmp.ut_session... yes 263s checking for struct utmpx.ut_exit... yes 263s checking for struct utmp.ut_exit... yes 263s checking for struct utmpx.ut_exit.ut_exit... no 263s checking for struct utmpx.ut_exit.e_exit... yes 263s checking for struct utmp.ut_exit.e_exit... yes 263s checking for struct utmpx.ut_exit.ut_termination... no 263s checking for struct utmpx.ut_exit.e_termination... yes 263s checking for struct utmp.ut_exit.e_termination... yes 263s checking whether sysinfo is declared... yes 263s checking for sys/sysctl.h... no 263s checking for sysctl... no 263s checking whether alarm is declared... yes 263s checking whether is self-contained... yes 263s checking whether setenv is declared... yes 263s checking for search.h... yes 263s checking for tsearch... yes 263s checking for sigset_t... yes 263s checking for volatile sig_atomic_t... yes 263s checking for sighandler_t... yes 263s checking whether snprintf returns a byte count as in C99... yes 263s checking whether printf supports POSIX/XSI format strings with positions... yes 263s checking whether snprintf is declared... yes 264s checking whether fcloseall is declared... yes 264s checking whether getw is declared... yes 264s checking whether putw is declared... yes 264s checking which flavor of printf attribute matches inttypes macros... system 264s checking whether ecvt is declared... yes 264s checking whether fcvt is declared... yes 264s checking whether gcvt is declared... yes 264s checking whether MB_CUR_MAX is correct... guessing yes 264s checking whether strdup is declared... yes 264s checking whether strerror(0) succeeds... yes 264s checking whether strndup is declared... yes 264s checking whether strnlen is declared... yes 264s checking whether declares ioctl... yes 264s checking for struct timeval... yes 264s checking for wide-enough struct timeval.tv_sec member... yes 264s checking for struct timespec in ... yes 264s checking for TIME_UTC in ... yes 264s checking whether execvpe is declared... yes 264s checking for util.h... (cached) no 264s checking for libutil.h... (cached) no 264s checking for inttypes.h... yes 264s checking for stdint.h... yes 264s checking for intmax_t... yes 264s checking whether snprintf truncates the result as in C99... yes 264s checking where to find the exponent in a 'double'... word 0 bit 20 264s checking for wcslen... yes 264s checking for snprintf... (cached) yes 264s checking for strnlen... yes 264s checking for wcrtomb... (cached) yes 264s checking whether _snprintf is declared... no 264s checking whether vsnprintf is declared... yes 264s checking whether wcsdup is declared... yes 264s checking for C compiler option to allow warnings... -Wno-error 264s checking for alignas and alignof... yes, macros 264s checking for alloca as a compiler built-in... yes 264s checking whether program_invocation_name is declared... yes 264s checking whether program_invocation_short_name is declared... yes 264s checking whether program_invocation_name is defined... yes 264s checking whether program_invocation_short_name is defined... yes 264s checking for static_assert... yes, an macro 264s checking whether btowc(0) is correct... yes 264s checking whether btowc(EOF) is correct... guessing yes 264s checking whether btowc is consistent with mbrtowc in the C locale... no 264s checking for __builtin_expect... yes 264s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 264s checking whether this system supports file names of any length... no 265s checking for library containing clock_gettime... none required 265s checking for clock_getres... yes 265s checking for clock_gettime... yes 265s checking for clock_settime... yes 265s checking for closedir... yes 265s checking for d_ino member in directory struct... yes 265s checking for d_type member in directory struct... yes 265s checking for dirfd... yes 265s checking whether dirfd is declared... yes 265s checking whether dirfd is a macro... no 265s checking whether // is distinct from /... no 265s checking whether dup works... yes 265s checking whether dup2 works... yes 265s checking whether fcntl handles F_DUPFD correctly... yes 265s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 265s checking whether fdopendir is declared... yes 265s checking whether fdopendir works... yes 265s checking for mempcpy... yes 265s checking for flexible array member... yes 265s checking whether conversion from 'int' to 'long double' works... yes 265s checking for working POSIX fnmatch... yes 265s checking whether fopen supports the mode character 'x'... yes 265s checking whether fopen supports the mode character 'e'... yes 265s checking whether forkpty is declared... yes 265s checking for const-safe forkpty signature... yes 265s checking whether free is known to preserve errno... yes 265s checking for fseeko... (cached) yes 265s checking whether fflush works on input streams... (cached) no 265s checking for _fseeki64... no 265s checking whether fstatat (..., 0) works... yes 265s checking for ftello... (cached) yes 265s checking whether ftello works... (cached) yes 265s checking for struct statfs.f_type... yes 265s checking for __fsword_t... yes 265s checking for fts_open... yes 265s checking for library containing getaddrinfo... none required 265s checking for getaddrinfo... yes 265s checking whether gai_strerror is declared... yes 265s checking whether gai_strerrorA is declared... no 265s checking for gai_strerror with POSIX signature... yes 266s checking for struct sockaddr.sa_len... no 266s checking whether getaddrinfo is declared... yes 266s checking whether freeaddrinfo is declared... yes 266s checking whether getnameinfo is declared... yes 266s checking for struct addrinfo... yes 266s checking whether getcwd handles long file names properly... yes 266s checking for getpagesize... yes 266s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 266s checking for getdelim... yes 266s checking for working getdelim function... yes 266s checking for getdomainname... yes 266s checking whether getdomainname is declared... yes 266s checking for getdomainname's second argument type... size_t 266s checking whether getdtablesize works... yes 266s checking for getgroups... yes 266s checking for working getgroups... yes 266s checking whether getgroups handles negative values... yes 266s checking for gethostname... yes 266s checking for HOST_NAME_MAX... yes 266s checking for getline... yes 266s checking for working getline function... yes 266s checking for getlogin_r... yes 266s checking whether getlogin_r works with small buffers... yes 266s checking for getprogname... no 266s checking whether program_invocation_name is declared... (cached) yes 266s checking whether program_invocation_name is declared... (cached) yes 266s checking whether program_invocation_short_name is declared... (cached) yes 266s checking whether __argv is declared... no 266s checking for getrandom... yes 266s checking whether getrandom is compatible with its GNU+BSD signature... yes 266s checking whether getusershell is declared... yes 266s checking for glob... yes 266s checking for GNU glob interface version 1 or 2... yes 266s checking whether glob lists broken symlinks... yes 266s checking whether glob NOTDIR*/ omits symlink to nondir... yes 266s checking for library containing gethostbyname... (cached) none required 266s checking for gethostbyname... (cached) yes 266s checking for library containing inet_ntop... (cached) none required 266s checking whether inet_ntop is declared... (cached) yes 266s checking whether the compiler generally respects inline... yes 266s checking for ioctl... yes 267s checking for ioctl with POSIX signature... no 267s checking for iswblank... yes 267s checking whether iswblank is declared... yes 267s checking whether iswdigit is ISO C compliant... guessing yes 267s checking whether iswpunct is consistent with ispunct... yes 267s checking whether iswxdigit is ISO C compliant... guessing yes 267s checking whether the compiler supports the __inline keyword... yes 267s checking whether localeconv works... yes 267s checking for pthread_rwlock_t... yes 267s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 267s checking for login_tty... yes 267s checking whether lseek detects pipes... yes 267s checking whether SEEK_DATA works but is incompatible with GNU... no 267s checking whether malloc (0) returns nonnull... (cached) yes 267s checking whether mbrtoc32 works on empty input... yes 267s checking whether the C locale is free of encoding errors... no 267s checking whether mbrtowc handles a NULL pwc argument... guessing yes 267s checking whether mbrtowc handles a NULL string argument... guessing yes 267s checking whether mbrtowc has a correct return value... guessing yes 267s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 267s checking whether mbrtowc stores incomplete characters... guessing no 267s checking whether mbrtowc works on empty input... yes 267s checking whether the C locale is free of encoding errors... no 267s checking whether mbsrtowcs works... guessing yes 267s checking whether the C locale is free of encoding errors... (cached) no 267s checking for mbtowc... yes 267s checking for mempcpy... (cached) yes 267s checking for memrchr... yes 267s checking for explicit_memset... no 267s checking whether mkdir handles trailing slash... yes 267s checking whether mkdir handles trailing dot... yes 267s checking for working mkstemp... yes 267s checking whether is self-contained... yes 267s checking for nl_langinfo... yes 267s checking whether YESEXPR works... yes 267s checking for obstacks that work with any size object... no 267s checking whether open recognizes a trailing slash... yes 267s checking for opendir... yes 267s checking whether openpty is declared... yes 267s checking for const-safe openpty signature... yes 267s checking for poll... yes 268s checking for posix_openpt... yes 268s checking whether program_invocation_name is declared... (cached) yes 268s checking whether program_invocation_short_name is declared... (cached) yes 268s checking for rawmemchr... yes 268s checking for readdir... yes 268s checking for readline... no 268s checking for readline/readline.h... no 268s checking for readline/history.h... no 268s checking whether realloc (0, 0) returns nonnull... yes 268s checking for reallocarray... yes 268s checking for working re_compile_pattern... yes 268s checking for rewinddir... yes 268s checking whether select supports a 0 argument... yes 268s checking whether select detects invalid fds... yes 268s checking for library containing getservbyname... (cached) none required 268s checking for getservbyname... (cached) yes 268s checking whether setenv validates arguments... yes 268s checking for HOST_NAME_MAX... (cached) yes 268s checking for sethostname... yes 268s checking whether sethostname is declared... yes 268s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 268s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 268s checking for stdint.h... (cached) yes 268s checking for SIZE_MAX... yes 268s checking whether sleep is declared... yes 269s checking for working sleep... yes 269s checking for snprintf... (cached) yes 269s checking whether snprintf respects a size of 1... yes 269s checking for socklen_t... yes 269s checking for ssize_t... yes 269s checking whether stat handles trailing slashes on files... yes 269s checking for struct stat.st_atim.tv_nsec... yes 269s checking whether struct stat.st_atim is of type struct timespec... yes 269s checking for struct stat.st_birthtimespec.tv_nsec... no 269s checking for struct stat.st_birthtimensec... no 269s checking for struct stat.st_birthtim.tv_nsec... no 269s checking for va_copy... yes 269s checking for bool, true, false... no 269s checking for strcasecmp... yes 269s checking for strncasecmp... yes 269s checking whether strncasecmp is declared... yes 269s checking for strchrnul... yes 269s checking whether strchrnul works... yes 270s checking for working strerror function... yes 270s checking for working strndup... yes 270s checking for working strnlen... yes 270s checking for variable-length arrays... yes 270s checking for ptrdiff_t... yes 270s checking for vasprintf... yes 270s checking for vsnprintf... yes 270s checking whether snprintf respects a size of 1... (cached) yes 270s checking whether wcrtomb works in the C locale... yes 270s checking whether wcrtomb return value is correct... guessing yes 270s checking for wmemchr... yes 270s checking for wmempcpy... yes 270s checking for stdint.h... (cached) yes 270s checking for library containing inet_ntoa... none required 270s checking for initscr in -lncurses... no 270s checking for tgetent in -ltermcap... no 270s checking whether tgetent needs support... no 270s checking for tgetent in -lcurses... no 270s checking whether tgetent is declared... no 270s checking for tgetent in -ltermlib... no 270s checking for crypt in -lcrypt... yes 270s checking for login in -lutil... yes 270s checking for loginx in -lutil... no 270s checking for logout in -lutil... yes 270s checking for logoutx in -lutil... no 270s checking for logwtmp in -lutil... yes 270s checking for logwtmpx in -lutil... no 270s checking for protocols/talkd.h... yes 270s checking for rcmd... yes 270s checking for rcmd_af... yes 270s checking for orcmd... no 270s checking for orcmd_af... no 270s checking for rresvport_af... yes 270s checking for iruserok... yes 270s checking for iruserok_af... yes 270s checking for iruserok_sa... no 270s checking for ruserok... yes 270s checking for ruserok_af... yes 270s checking for AF_INET6... yes 270s checking for IPV6_V6ONLY... yes 270s checking for struct sockaddr_storage... (cached) yes 271s checking for struct sockaddr_in6... yes 271s checking for struct addrinfo... (cached) yes 271s checking for getnameinfo... yes 271s checking for netinet/icmp6.h... yes 271s checking for netinet/ip6.h... yes 271s checking for struct icmp6_filter... yes 271s checking for struct icmp6_hdr... yes 271s checking for IPV6_HOPLIMIT... yes 271s checking for IPV6_2292HOPLIMIT... yes 271s checking for IPV6_RECVHOPLIMIT... yes 271s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 271s checking for locale.h... yes 271s checking for setlocale... yes 271s checking for arpa/nameser.h... yes 271s checking for arpa/tftp.h... yes 271s checking for fcntl.h... yes 271s checking for features.h... (cached) yes 271s checking for glob.h... (cached) yes 271s checking for memory.h... yes 271s checking for netinet/ether.h... yes 271s checking for netinet/in_systm.h... yes 271s checking for netinet/ip.h... yes 271s checking for netinet/ip_icmp.h... yes 271s checking for netinet/ip_var.h... no 271s checking for security/pam_appl.h... no 271s checking for shadow.h... yes 271s checking for stropts.h... no 271s checking for sys/tty.h... no 271s checking for sys/utsname.h... yes 271s checking for sys/ptyvar.h... no 271s checking for sys/msgbuf.h... no 271s checking for sys/filio.h... (cached) no 271s checking for sys/ioctl_compat.h... no 271s checking for sys/cdefs.h... (cached) yes 271s checking for sys/stream.h... no 271s checking for sys/mkdev.h... no 271s checking for sys/sockio.h... no 271s checking for sys/sysmacros.h... yes 271s checking for sys/param.h... (cached) yes 271s checking for sys/file.h... yes 271s checking for sys/proc.h... no 271s checking for sys/select.h... (cached) yes 271s checking for sys/wait.h... yes 271s checking for sys/resource.h... yes 271s checking for stropts.h... (cached) no 271s checking for tcpd.h... no 271s checking for utmp.h... (cached) yes 271s checking for utmpx.h... (cached) yes 271s checking for unistd.h... (cached) yes 271s checking for vis.h... no 271s checking for struct if_nameindex... yes 271s checking for sigset_t... (cached) yes 271s checking for sig_atomic_t... yes 271s checking for struct sockaddr_in.sin_len... no 271s checking for struct sockaddr_in6.sin6_len... no 271s checking for struct sockaddr_storage.ss_len... no 271s checking for struct passwd.pw_expire... no 271s checking for struct passwd.pw_change... no 272s checking for struct lastlog... yes 272s checking for struct utmp.ut_type... (cached) yes 272s checking for struct utmp.ut_pid... (cached) yes 272s checking for struct utmp.ut_line... yes 272s checking for struct utmp.ut_id... (cached) yes 272s checking for struct utmp.ut_user... (cached) yes 272s checking for struct utmp.ut_host... (cached) yes 272s checking for struct utmp.ut_exit... (cached) yes 272s checking for struct utmp.ut_session... (cached) yes 272s checking for struct utmp.ut_tv... (cached) yes 272s checking for struct utmp.ut_time... yes 272s checking for struct utmp.ut_addr_v6... yes 272s checking for struct utmp.ut_name... (cached) yes 272s checking for struct lastlogx... no 272s checking for struct lastlogx.ll_ss... no 272s checking for struct utmpx.ut_user... (cached) yes 272s checking for struct utmpx.ut_name... (cached) yes 272s checking for struct utmpx.ut_id... (cached) yes 272s checking for struct utmpx.ut_line... yes 272s checking for struct utmpx.ut_pid... (cached) yes 272s checking for struct utmpx.ut_type... (cached) yes 272s checking for struct utmpx.ut_exit... (cached) yes 272s checking for struct utmpx.ut_tv... yes 272s checking for struct utmpx.ut_session... (cached) yes 272s checking for struct utmpx.ut_syslen... no 272s checking for struct utmpx.ut_host... (cached) yes 272s checking for struct utmpx.ut_ss... no 272s checking for struct utmpx.ut_addr_v6... yes 272s checking for struct ifreq.ifr_index... no 272s checking for struct ifreq.ifr_netmask... yes 272s checking for struct ifreq.ifr_broadaddr... yes 272s checking for struct ifreq.ifr_mtu... yes 272s checking for struct ifreq.ifr_map... yes 272s checking for struct sockaddr.sa_len... (cached) no 272s checking for struct hostent.h_addr_list... yes 272s checking for struct stat.st_atim.tv_nsec... (cached) yes 272s checking for struct stat.st_atim.tv_usec... no 272s checking for struct stat.st_blksize... yes 272s checking for struct stat.st_ctim.tv_nsec... yes 272s checking for struct stat.st_ctim.tv_usec... no 272s checking for struct stat.st_mtim.tv_nsec... yes 272s checking for struct stat.st_mtim.tv_usec... no 272s checking for struct tftphdr.th_u... no 272s checking for working fork... yes 272s checking for working vfork... (cached) yes 272s checking for working mmap... yes 272s checking for cfsetspeed... yes 272s checking for cgetent... no 272s checking for dirfd... (cached) yes 272s checking for flock... yes 272s checking for fork... (cached) yes 272s checking for fpathconf... yes 272s checking for ftruncate... yes 272s checking for getcwd... yes 272s checking for getmsg... no 272s checking for getpwuid_r... yes 272s checking for getspnam... yes 272s checking for getutxent... yes 272s checking for getutxuser... no 272s checking for initgroups... yes 272s checking for initsetproctitle... no 272s checking for killpg... yes 272s checking for ptsname... yes 272s checking for pututline... yes 272s checking for pututxline... yes 272s checking for setegid... yes 273s checking for seteuid... yes 273s checking for setpgid... yes 273s checking for setlogin... no 273s checking for setsid... yes 273s checking for setregid... yes 273s checking for setreuid... yes 273s checking for setresgid... yes 273s checking for setresuid... yes 273s checking for setutent_r... no 273s checking for sigaction... yes 273s checking for sigvec... no 273s checking for strchr... yes 273s checking for setproctitle... no 273s checking for tcgetattr... yes 273s checking for tzset... yes 273s checking for utimes... yes 273s checking for utime... yes 273s checking for uname... yes 273s checking for updwtmp... yes 273s checking for updwtmpx... yes 273s checking for vhangup... yes 273s checking for wait3... yes 273s checking for wait4... yes 273s checking for __opendir2... no 273s checking for __rcmd_errstr... yes 273s checking for __check_rhosts_file... yes 273s checking for login... yes 273s checking for loginx... no 273s checking for logout... yes 273s checking for logoutx... no 273s checking for logwtmp... yes 273s checking for logwtmpx... no 273s checking for crypt... yes 273s checking for _obstack_free... yes 273s checking for setpgid... (cached) yes 273s checking for hstrerror... yes 273s checking whether hstrerror is declared... yes 273s checking whether telcmds is declared... yes 273s checking whether telopts is declared... no 273s checking for Schedule... no 274s checking for Session_Key... no 274s checking whether enctype_names is const char... no 274s checking whether crypt is declared... yes 274s checking for syslog internal macros... yes 274s checking for CODE... yes 274s checking whether prioritynames is declared... yes 274s checking whether fclose is declared... yes 274s checking whether pclose is declared... yes 274s checking whether getcwd is declared... (cached) yes 274s checking whether getlogin is declared... (cached) yes 274s checking whether getpass is declared... yes 274s checking whether getusershell is declared... (cached) yes 274s checking whether ttyname is declared... yes 274s checking whether getgrnam is declared... yes 274s checking whether initgroups is declared... yes 274s checking whether htons is declared... yes 274s checking for h_errno... yes 274s checking whether h_errno is declared... yes 274s checking for SEEK_ macros... yes 274s checking for _FILENO macros... yes 274s checking for fd_set macros... yes 274s checking for paths.h... yes 274s checking for value of PATH_BSHELL... from _PATH_BSHELL in 274s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 274s checking for value of PATH_CP... /usr/bin/cp 274s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 274s checking for value of PATH_DEV... from _PATH_DEV in 274s checking for value of PATH_TTY_PFX... from _PATH_DEV in 274s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 274s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 274s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 274s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 274s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 274s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 274s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 274s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 274s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 274s checking for value of PATH_UTMP... from _PATH_UTMP in 274s checking for value of PATH_UTMPX... from _PATH_UTMPX in 274s checking for value of PATH_WTMP... from _PATH_WTMP in 274s checking for value of PATH_WTMPX... from _PATH_WTMPX in 274s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 274s checking for value of PATH_LOG... from _PATH_LOG in 274s checking for value of PATH_KLOG... from _PATH_KLOG in 274s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 274s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 274s checking for value of PATH_LOGIN... /usr/bin/login 274s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 274s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 274s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 274s checking for value of PATH_RSH... (default) $(bindir)/rsh 274s checking for value of PATH_TMP... from _PATH_TMP in 274s checking for value of PATH_TTY... from _PATH_TTY in 274s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 274s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 274s checking for value of PATH_PROCNET_DEV... /proc/net/dev 275s checking that generated files are newer than configure... done 275s configure: creating ./config.status 275s /bin/bash ./config.status 275s config.status: creating Makefile 275s config.status: creating summary.sh 275s config.status: creating lib/Makefile 275s config.status: creating libinetutils/Makefile 275s config.status: creating libtelnet/Makefile 275s config.status: creating libicmp/Makefile 275s config.status: creating libls/Makefile 275s config.status: creating src/Makefile 275s config.status: creating telnet/Makefile 275s config.status: creating telnetd/Makefile 275s config.status: creating ftp/Makefile 275s config.status: creating ftpd/Makefile 275s config.status: creating talk/Makefile 275s config.status: creating talkd/Makefile 275s config.status: creating whois/Makefile 275s config.status: creating ping/Makefile 275s config.status: creating ifconfig/Makefile 275s config.status: creating ifconfig/system/Makefile 275s config.status: creating tests/Makefile 275s config.status: creating confpaths.h 275s config.status: creating config.h 275s config.status: config.h is unchanged 275s config.status: executing depfiles commands 275s config.status: executing summary commands 275s Summary of build decisions: 275s 275s Clients: 275s 275s dnsdomainname yes 275s ftp no 275s hostname yes 275s ifconfig yes 275s logger yes 275s ping no 275s ping6 no 275s rcp yes 275s rexec yes 275s rlogin yes 275s rsh yes 275s talk no 275s telnet yes 275s tftp no 275s traceroute no 275s whois yes 275s 275s Servers: 275s 275s ftpd no 275s inetd yes 275s rexecd yes 275s rlogind yes 275s rshd yes 275s syslogd yes 275s talkd yes 275s telnetd yes 275s tftpd no 275s uucpd yes 275s 275s Support: 275s 275s libls no 275s make[1]: Warning: File 'Makefile.am' has modification time 4.1 s in the future 275s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing' aclocal-1.17 -I am -I m4 278s cd . && /bin/bash /tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing automake-1.17 --gnu 281s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing' autoconf 283s /bin/bash ./config.status --recheck 283s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-talk --disable-ftp --disable-ftpd --disable-ping --disable-ping6 --disable-tftp --disable-tftpd --disable-traceroute --no-create --no-recursion 283s checking build system type... s390x-ibm-linux-gnu 283s checking host system type... s390x-ibm-linux-gnu 283s checking for a BSD-compatible install... /usr/bin/install -c 283s checking whether sleep supports fractional seconds... yes 283s checking filesystem timestamp resolution... 0.01 283s checking whether build environment is sane... yes 283s checking for a race-free mkdir -p... /usr/bin/mkdir -p 283s checking for gawk... gawk 283s checking whether make sets $(MAKE)... yes 283s checking whether make supports nested variables... yes 283s checking xargs -n works... yes 283s checking for gcc... gcc 283s checking whether the C compiler works... yes 283s checking for C compiler default output file name... a.out 283s checking for suffix of executables... 283s checking whether we are cross compiling... no 283s checking for suffix of object files... o 283s checking whether the compiler supports GNU C... yes 283s checking whether gcc accepts -g... yes 283s checking for gcc option to enable C11 features... none needed 283s checking whether gcc understands -c and -o together... yes 283s checking whether the compiler is clang... no 283s checking for compiler option needed when checking for declarations... none 283s checking whether make supports the include directive... yes (GNU style) 284s checking dependency style of gcc... gcc3 284s checking for stdio.h... yes 284s checking for stdlib.h... yes 284s checking for string.h... yes 284s checking for inttypes.h... yes 284s checking for stdint.h... yes 284s checking for strings.h... yes 284s checking for sys/stat.h... yes 284s checking for sys/types.h... yes 284s checking for unistd.h... yes 284s checking for wchar.h... yes 284s checking for minix/config.h... no 284s checking for features.h... yes 284s checking for linewrap.h... no 284s checking for arpa/inet.h... yes 284s checking for sys/socket.h... yes 284s checking for uchar.h... yes 284s checking for sys/param.h... yes 284s checking for dirent.h... yes 284s checking for error.h... yes 284s checking for fnmatch.h... yes 284s checking for pty.h... yes 284s checking for termios.h... yes 284s checking for sys/vfs.h... yes 284s checking for netdb.h... yes 284s checking for netinet/in.h... yes 284s checking for getopt.h... yes 284s checking for sys/cdefs.h... yes 284s checking for stdio_ext.h... yes 284s checking for grp.h... yes 284s checking for glob.h... yes 284s checking for threads.h... yes 284s checking for limits.h... yes 284s checking for crtdefs.h... no 284s checking for wctype.h... yes 284s checking for langinfo.h... yes 284s checking for xlocale.h... no 284s checking for utmp.h... yes 284s checking for util.h... no 284s checking for libutil.h... no 284s checking for sys/mman.h... yes 284s checking for obstack.h... yes 284s checking for poll.h... yes 284s checking for sys/ioctl.h... yes 285s checking for sys/filio.h... no 285s checking for utmpx.h... yes 285s checking for OS.h... no 285s checking for malloc.h... yes 285s checking for sys/select.h... yes 285s checking for sys/time.h... yes 285s checking for stdbool.h... yes 285s checking for stdckdint.h... yes 285s checking for sys/random.h... yes 285s checking for sys/uio.h... yes 285s checking for sysexits.h... yes 285s checking for vfork.h... no 285s checking whether it is safe to define __EXTENSIONS__... yes 285s checking whether _XOPEN_SOURCE should be defined... no 285s checking how to run the C preprocessor... gcc -E 285s checking for egrep -e... /usr/bin/grep -E 285s checking for Minix Amsterdam compiler... no 285s checking for ar... ar 285s checking the archiver (ar) interface... ar 285s checking for ar... (cached) ar 285s checking for ranlib... ranlib 285s checking for gcc option to enable large file support... none needed 285s configure: autobuild project... GNU inetutils 285s configure: autobuild revision... 2.5 285s configure: autobuild hostname... autopkgtest 285s configure: autobuild timestamp... 20250219T204616Z 285s checking the archiver (ar) interface... (cached) ar 285s checking for ar... (cached) ar 285s checking for dd... /usr/bin/dd 285s checking for mktemp... /usr/bin/mktemp 285s checking for netstat... /usr/bin/netstat 285s checking for rm... /usr/bin/rm 285s checking how to run the C preprocessor... gcc -E 285s checking for grep that handles long lines and -e... /usr/bin/grep 285s checking for egrep... /usr/bin/grep -E 285s checking for fgrep... /usr/bin/grep -F 285s checking whether make sets $(MAKE)... (cached) yes 285s checking for ranlib... (cached) ranlib 285s checking for bison... no 285s checking for byacc... no 285s checking whether ln -s works... yes 285s checking for a sed that does not truncate output... /usr/bin/sed 285s checking for size_t... yes 285s checking for working alloca.h... yes 285s checking for alloca... yes 285s checking for inline... inline 285s checking for C/C++ restrict keyword... __restrict__ 285s checking for gcc options needed to detect all undeclared functions... none needed 285s checking whether clearerr_unlocked is declared... yes 285s checking whether feof_unlocked is declared... yes 285s checking whether ferror_unlocked is declared... yes 285s checking whether fflush_unlocked is declared... yes 285s checking whether fgets_unlocked is declared... yes 285s checking whether fputc_unlocked is declared... yes 285s checking whether fputs_unlocked is declared... yes 285s checking whether fread_unlocked is declared... yes 285s checking whether fwrite_unlocked is declared... yes 285s checking whether getc_unlocked is declared... yes 285s checking whether getchar_unlocked is declared... yes 285s checking whether putc_unlocked is declared... yes 285s checking whether putchar_unlocked is declared... yes 285s checking for flockfile... yes 285s checking for funlockfile... yes 286s checking for btowc... yes 286s checking for mbrtowc... yes 286s checking for mbsinit... yes 286s checking for _set_invalid_parameter_handler... no 286s checking for fchdir... yes 286s checking for fcntl... yes 286s checking for symlink... yes 286s checking for fdopendir... yes 286s checking for fnmatch... yes 286s checking for mbsrtowcs... yes 286s checking for fstatat... yes 286s checking for openat... yes 286s checking for fstatfs... yes 286s checking for getdtablesize... yes 286s checking for getpass... yes 286s checking for getexecname... no 286s checking for getusershell... yes 286s checking for glob_pattern_p... yes 286s checking for isblank... yes 286s checking for iswcntrl... yes 286s checking for lstat... yes 286s checking for mprotect... yes 286s checking for memset_explicit... no 286s checking for memset_s... no 286s checking for getgrouplist... yes 286s checking for mkstemp... yes 286s checking for pipe... yes 286s checking for utmpname... yes 286s checking for utmpxname... yes 286s checking for iswctype... yes 286s checking for setenv... yes 286s checking for sleep... yes 286s checking for snprintf... yes 286s checking for strndup... yes 286s checking for vasnprintf... no 286s checking for wcrtomb... yes 286s checking for fork... yes 286s checking for vfork... yes 286s checking for getpagesize... yes 287s checking whether strerror_r is declared... yes 287s checking whether strerror_r returns char *... yes 287s checking whether the preprocessor supports include_next... yes 287s checking whether source code line length is unlimited... yes 287s checking whether uses 'inline' correctly... yes 287s checking for nl_langinfo and CODESET... yes 287s checking for a traditional french locale... none 287s checking whether char8_t is correctly defined... yes 287s checking whether char16_t is correctly defined... yes 287s checking whether char32_t is correctly defined... yes 287s checking for bit size of wchar_t... 32 287s checking for mbstate_t... yes 287s checking for a traditional japanese locale... none 287s checking for a french Unicode locale... none 287s checking for a transitional chinese locale... none 287s checking whether mbrtowc handles incomplete characters... guessing yes 287s checking whether mbrtowc works as well as mbtowc... guessing yes 287s checking whether mbrtoc32 is declared... yes 287s checking for mbrtoc32... yes 287s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 287s checking whether malloc is ptrdiff_t safe... yes 287s checking whether malloc, realloc, calloc set errno on failure... yes 287s checking if environ is properly declared... yes 287s checking for complete errno.h... yes 287s checking for error... yes 287s checking whether error_at_line is declared... yes 287s checking for error_at_line... yes 287s checking for working error function... yes 287s checking whether ctype.h defines __header_inline... no 287s checking whether fchdir is declared... yes 288s checking for working fcntl.h... yes 288s checking for pid_t... yes 288s checking for mode_t... yes 288s checking for promoted mode_t type... mode_t 288s checking whether strmode is declared... no 288s checking whether fopen recognizes a trailing slash... yes 288s checking whether fflush works on input streams... no 288s checking for library containing forkpty... none required 288s checking whether stdin defaults to large file offsets... yes 289s checking whether fseeko is declared... yes 289s checking for fseeko... yes 289s checking whether fflush works on input streams... (cached) no 289s checking whether stat file-mode macros are broken... no 289s checking for nlink_t... yes 289s checking whether lstat correctly handles trailing slash... yes 289s checking whether ftello is declared... yes 289s checking whether ungetc works on arbitrary bytes... yes 289s checking for ftello... yes 289s checking whether ftello works... yes 289s checking for O_CLOEXEC... yes 289s checking whether is self-contained... yes 289s checking for shutdown... yes 289s checking whether defines the SHUT_* macros... yes 289s checking for struct sockaddr_storage... yes 289s checking for sa_family_t... yes 289s checking for struct sockaddr_storage.ss_family... yes 289s checking for library containing gethostbyname... none required 289s checking for gethostbyname... yes 289s checking for library containing getservbyname... none required 289s checking for getservbyname... yes 289s checking for library containing inet_ntop... none required 289s checking whether inet_ntop is declared... yes 289s checking for IPv4 sockets... yes 289s checking for IPv6 sockets... yes 289s checking whether getcwd (NULL, 0) allocates memory for result... yes 289s checking for getcwd with POSIX signature... yes 289s checking whether getcwd is declared... yes 289s checking whether getdelim is declared... yes 289s checking whether getdtablesize is declared... yes 289s checking for uid_t... yes 289s checking for gid_t... yes 289s checking type of array argument to getgroups... gid_t 289s checking whether getline is declared... yes 289s checking whether getlogin_r is declared... yes 290s checking whether getlogin is declared... yes 290s checking for getopt.h... (cached) yes 290s checking for getopt_long_only... yes 290s checking whether getopt is POSIX compatible... yes 290s checking for working GNU getopt function... yes 290s checking for working GNU getopt_long function... yes 290s checking whether flockfile is declared... yes 290s checking whether funlockfile is declared... yes 290s checking for pthread.h... yes 290s checking for pthread_kill in -lpthread... yes 290s checking whether POSIX threads API is available... yes 290s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 290s checking whether setlocale (category, NULL) is multithread-safe... yes 290s checking for off_t... yes 290s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 290s checking whether limits.h has SSIZE_MAX... yes 290s checking for wint_t... yes 290s checking whether wint_t is large enough... yes 290s checking whether the compiler produces multi-arch binaries... no 290s checking whether stdint.h conforms to C99... yes 290s checking whether stdint.h works without ISO C predefines... yes 290s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 290s checking whether iswcntrl works... yes 290s checking for towlower... yes 290s checking for wctype_t... yes 290s checking for wctrans_t... yes 290s checking whether wctype supports the "blank" and "punct" character classes... yes 290s checking whether langinfo.h defines CODESET... yes 290s checking whether langinfo.h defines T_FMT_AMPM... yes 290s checking whether langinfo.h defines ALTMON_1... yes 290s checking whether langinfo.h defines ERA... yes 290s checking whether langinfo.h defines YESEXPR... yes 290s checking for wchar_t... yes 290s checking for good max_align_t... yes 290s checking whether NULL can be used in arbitrary expressions... yes 290s checking for unreachable... no 290s checking whether locale.h defines locale_t... yes 290s checking whether locale.h conforms to POSIX:2001... yes 290s checking whether struct lconv is properly defined... yes 291s checking whether imported symbols can be declared weak... yes 291s checking for multithread API to use... posix 291s checking whether malloc (0) returns nonnull... yes 291s checking for mmap... yes 291s checking for MAP_ANONYMOUS... yes 291s checking whether memchr works... yes 291s checking whether memrchr is declared... yes 291s checking whether defines MIN and MAX... no 291s checking whether defines MIN and MAX... yes 291s checking for library containing setsockopt... none needed 291s checking for ld used by gcc... /usr/bin/ld 291s checking if the linker (/usr/bin/ld) is GNU ld... yes 291s checking for shared library run path origin... done 291s checking 32-bit host C ABI... no 291s checking for ELF binary format... yes 291s checking for the common suffixes of directories in the library search path... lib,lib,lib 291s checking whether to use systemd APIs... no 291s checking whether endutent is declared... yes 291s checking for struct utmpx.ut_user... yes 291s checking for struct utmp.ut_user... yes 291s checking for struct utmpx.ut_name... yes 291s checking for struct utmp.ut_name... yes 291s checking for struct utmpx.ut_type... yes 291s checking for struct utmp.ut_type... yes 291s checking for struct utmpx.ut_pid... yes 291s checking for struct utmp.ut_pid... yes 291s checking for struct utmp.ut_tv... yes 291s checking for struct utmpx.ut_host... yes 291s checking for struct utmp.ut_host... yes 291s checking for struct utmpx.ut_id... yes 291s checking for struct utmp.ut_id... yes 291s checking for struct utmpx.ut_session... yes 291s checking for struct utmp.ut_session... yes 291s checking for struct utmpx.ut_exit... yes 291s checking for struct utmp.ut_exit... yes 291s checking for struct utmpx.ut_exit.ut_exit... no 291s checking for struct utmpx.ut_exit.e_exit... yes 291s checking for struct utmp.ut_exit.e_exit... yes 291s checking for struct utmpx.ut_exit.ut_termination... no 292s checking for struct utmpx.ut_exit.e_termination... yes 292s checking for struct utmp.ut_exit.e_termination... yes 292s checking whether sysinfo is declared... yes 292s checking for sys/sysctl.h... no 292s checking for sysctl... no 292s checking whether alarm is declared... yes 292s checking whether is self-contained... yes 292s checking whether setenv is declared... yes 292s checking for search.h... yes 292s checking for tsearch... yes 292s checking for sigset_t... yes 292s checking for volatile sig_atomic_t... yes 292s checking for sighandler_t... yes 292s checking whether snprintf returns a byte count as in C99... yes 292s checking whether printf supports POSIX/XSI format strings with positions... yes 292s checking whether snprintf is declared... yes 292s checking whether fcloseall is declared... yes 292s checking whether getw is declared... yes 292s checking whether putw is declared... yes 292s checking which flavor of printf attribute matches inttypes macros... system 292s checking whether ecvt is declared... yes 292s checking whether fcvt is declared... yes 293s checking whether gcvt is declared... yes 293s checking whether MB_CUR_MAX is correct... guessing yes 293s checking whether strdup is declared... yes 293s checking whether strerror(0) succeeds... yes 293s checking whether strndup is declared... yes 293s checking whether strnlen is declared... yes 293s checking whether declares ioctl... yes 293s checking for struct timeval... yes 293s checking for wide-enough struct timeval.tv_sec member... yes 293s checking for struct timespec in ... yes 293s checking for TIME_UTC in ... yes 293s checking whether execvpe is declared... yes 293s checking for util.h... (cached) no 293s checking for libutil.h... (cached) no 293s checking for inttypes.h... yes 293s checking for stdint.h... yes 293s checking for intmax_t... yes 293s checking whether snprintf truncates the result as in C99... yes 293s checking where to find the exponent in a 'double'... word 0 bit 20 293s checking for wcslen... yes 293s checking for snprintf... (cached) yes 293s checking for strnlen... yes 293s checking for wcrtomb... (cached) yes 293s checking whether _snprintf is declared... no 293s checking whether vsnprintf is declared... yes 293s checking whether wcsdup is declared... yes 293s checking for C compiler option to allow warnings... -Wno-error 293s checking for alignas and alignof... yes, macros 293s checking for alloca as a compiler built-in... yes 293s checking whether program_invocation_name is declared... yes 293s checking whether program_invocation_short_name is declared... yes 293s checking whether program_invocation_name is defined... yes 293s checking whether program_invocation_short_name is defined... yes 293s checking for static_assert... yes, an macro 293s checking whether btowc(0) is correct... yes 293s checking whether btowc(EOF) is correct... guessing yes 293s checking whether btowc is consistent with mbrtowc in the C locale... no 293s checking for __builtin_expect... yes 293s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 293s checking whether this system supports file names of any length... no 293s checking for library containing clock_gettime... none required 293s checking for clock_getres... yes 293s checking for clock_gettime... yes 294s checking for clock_settime... yes 294s checking for closedir... yes 294s checking for d_ino member in directory struct... yes 294s checking for d_type member in directory struct... yes 294s checking for dirfd... yes 294s checking whether dirfd is declared... yes 294s checking whether dirfd is a macro... no 294s checking whether // is distinct from /... no 294s checking whether dup works... yes 294s checking whether dup2 works... yes 294s checking whether fcntl handles F_DUPFD correctly... yes 294s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 294s checking whether fdopendir is declared... yes 294s checking whether fdopendir works... yes 294s checking for mempcpy... yes 294s checking for flexible array member... yes 294s checking whether conversion from 'int' to 'long double' works... yes 294s checking for working POSIX fnmatch... yes 294s checking whether fopen supports the mode character 'x'... yes 294s checking whether fopen supports the mode character 'e'... yes 294s checking whether forkpty is declared... yes 294s checking for const-safe forkpty signature... yes 294s checking whether free is known to preserve errno... yes 294s checking for fseeko... (cached) yes 294s checking whether fflush works on input streams... (cached) no 294s checking for _fseeki64... no 294s checking whether fstatat (..., 0) works... yes 294s checking for ftello... (cached) yes 294s checking whether ftello works... (cached) yes 294s checking for struct statfs.f_type... yes 294s checking for __fsword_t... yes 294s checking for fts_open... yes 294s checking for library containing getaddrinfo... none required 294s checking for getaddrinfo... yes 294s checking whether gai_strerror is declared... yes 295s checking whether gai_strerrorA is declared... no 295s checking for gai_strerror with POSIX signature... yes 295s checking for struct sockaddr.sa_len... no 295s checking whether getaddrinfo is declared... yes 295s checking whether freeaddrinfo is declared... yes 295s checking whether getnameinfo is declared... yes 295s checking for struct addrinfo... yes 295s checking whether getcwd handles long file names properly... yes 295s checking for getpagesize... yes 295s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 295s checking for getdelim... yes 295s checking for working getdelim function... yes 295s checking for getdomainname... yes 295s checking whether getdomainname is declared... yes 295s checking for getdomainname's second argument type... size_t 295s checking whether getdtablesize works... yes 295s checking for getgroups... yes 295s checking for working getgroups... yes 295s checking whether getgroups handles negative values... yes 295s checking for gethostname... yes 295s checking for HOST_NAME_MAX... yes 295s checking for getline... yes 295s checking for working getline function... yes 295s checking for getlogin_r... yes 295s checking whether getlogin_r works with small buffers... yes 295s checking for getprogname... no 295s checking whether program_invocation_name is declared... (cached) yes 295s checking whether program_invocation_name is declared... (cached) yes 295s checking whether program_invocation_short_name is declared... (cached) yes 295s checking whether __argv is declared... no 295s checking for getrandom... yes 295s checking whether getrandom is compatible with its GNU+BSD signature... yes 296s checking whether getusershell is declared... yes 296s checking for glob... yes 296s checking for GNU glob interface version 1 or 2... yes 296s checking whether glob lists broken symlinks... yes 296s checking whether glob NOTDIR*/ omits symlink to nondir... yes 296s checking for library containing gethostbyname... (cached) none required 296s checking for gethostbyname... (cached) yes 296s checking for library containing inet_ntop... (cached) none required 296s checking whether inet_ntop is declared... (cached) yes 296s checking whether the compiler generally respects inline... yes 296s checking for ioctl... yes 296s checking for ioctl with POSIX signature... no 296s checking for iswblank... yes 296s checking whether iswblank is declared... yes 296s checking whether iswdigit is ISO C compliant... guessing yes 296s checking whether iswpunct is consistent with ispunct... yes 296s checking whether iswxdigit is ISO C compliant... guessing yes 296s checking whether the compiler supports the __inline keyword... yes 296s checking whether localeconv works... yes 296s checking for pthread_rwlock_t... yes 296s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 296s checking for login_tty... yes 296s checking whether lseek detects pipes... yes 296s checking whether SEEK_DATA works but is incompatible with GNU... no 296s checking whether malloc (0) returns nonnull... (cached) yes 296s checking whether mbrtoc32 works on empty input... yes 296s checking whether the C locale is free of encoding errors... no 296s checking whether mbrtowc handles a NULL pwc argument... guessing yes 296s checking whether mbrtowc handles a NULL string argument... guessing yes 296s checking whether mbrtowc has a correct return value... guessing yes 296s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 296s checking whether mbrtowc stores incomplete characters... guessing no 296s checking whether mbrtowc works on empty input... yes 296s checking whether the C locale is free of encoding errors... no 296s checking whether mbsrtowcs works... guessing yes 296s checking whether the C locale is free of encoding errors... (cached) no 296s checking for mbtowc... yes 296s checking for mempcpy... (cached) yes 296s checking for memrchr... yes 296s checking for explicit_memset... no 296s checking whether mkdir handles trailing slash... yes 296s checking whether mkdir handles trailing dot... yes 296s checking for working mkstemp... yes 296s checking whether is self-contained... yes 296s checking for nl_langinfo... yes 296s checking whether YESEXPR works... yes 296s checking for obstacks that work with any size object... no 297s checking whether open recognizes a trailing slash... yes 297s checking for opendir... yes 297s checking whether openpty is declared... yes 297s checking for const-safe openpty signature... yes 297s checking for poll... yes 297s checking for posix_openpt... yes 297s checking whether program_invocation_name is declared... (cached) yes 297s checking whether program_invocation_short_name is declared... (cached) yes 297s checking for rawmemchr... yes 297s checking for readdir... yes 297s checking for readline... no 297s checking for readline/readline.h... no 297s checking for readline/history.h... no 297s checking whether realloc (0, 0) returns nonnull... yes 297s checking for reallocarray... yes 297s checking for working re_compile_pattern... yes 297s checking for rewinddir... yes 297s checking whether select supports a 0 argument... yes 297s checking whether select detects invalid fds... yes 297s checking for library containing getservbyname... (cached) none required 297s checking for getservbyname... (cached) yes 297s checking whether setenv validates arguments... yes 297s checking for HOST_NAME_MAX... (cached) yes 297s checking for sethostname... yes 297s checking whether sethostname is declared... yes 297s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 297s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 297s checking for stdint.h... (cached) yes 297s checking for SIZE_MAX... yes 297s checking whether sleep is declared... yes 298s checking for working sleep... yes 298s checking for snprintf... (cached) yes 298s checking whether snprintf respects a size of 1... yes 298s checking for socklen_t... yes 298s checking for ssize_t... yes 298s checking whether stat handles trailing slashes on files... yes 298s checking for struct stat.st_atim.tv_nsec... yes 298s checking whether struct stat.st_atim is of type struct timespec... yes 298s checking for struct stat.st_birthtimespec.tv_nsec... no 298s checking for struct stat.st_birthtimensec... no 298s checking for struct stat.st_birthtim.tv_nsec... no 298s checking for va_copy... yes 298s checking for bool, true, false... no 299s checking for strcasecmp... yes 299s checking for strncasecmp... yes 299s checking whether strncasecmp is declared... yes 299s checking for strchrnul... yes 299s checking whether strchrnul works... yes 299s checking for working strerror function... yes 299s checking for working strndup... yes 299s checking for working strnlen... yes 299s checking for variable-length arrays... yes 299s checking for ptrdiff_t... yes 299s checking for vasprintf... yes 299s checking for vsnprintf... yes 299s checking whether snprintf respects a size of 1... (cached) yes 299s checking whether wcrtomb works in the C locale... yes 299s checking whether wcrtomb return value is correct... guessing yes 299s checking for wmemchr... yes 299s checking for wmempcpy... yes 299s checking for stdint.h... (cached) yes 299s checking for library containing inet_ntoa... none required 299s checking for initscr in -lncurses... no 299s checking for tgetent in -ltermcap... no 299s checking whether tgetent needs support... no 299s checking for tgetent in -lcurses... no 299s checking whether tgetent is declared... no 299s checking for tgetent in -ltermlib... no 299s checking for crypt in -lcrypt... yes 299s checking for login in -lutil... yes 299s checking for loginx in -lutil... no 299s checking for logout in -lutil... yes 299s checking for logoutx in -lutil... no 299s checking for logwtmp in -lutil... yes 299s checking for logwtmpx in -lutil... no 299s checking for protocols/talkd.h... yes 299s checking for rcmd... yes 299s checking for rcmd_af... yes 299s checking for orcmd... no 299s checking for orcmd_af... no 299s checking for rresvport_af... yes 299s checking for iruserok... yes 299s checking for iruserok_af... yes 300s checking for iruserok_sa... no 300s checking for ruserok... yes 300s checking for ruserok_af... yes 300s checking for AF_INET6... yes 300s checking for IPV6_V6ONLY... yes 300s checking for struct sockaddr_storage... (cached) yes 300s checking for struct sockaddr_in6... yes 300s checking for struct addrinfo... (cached) yes 300s checking for getnameinfo... yes 300s checking for netinet/icmp6.h... yes 300s checking for netinet/ip6.h... yes 300s checking for struct icmp6_filter... yes 300s checking for struct icmp6_hdr... yes 300s checking for IPV6_HOPLIMIT... yes 300s checking for IPV6_2292HOPLIMIT... yes 300s checking for IPV6_RECVHOPLIMIT... yes 300s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 300s checking for locale.h... yes 300s checking for setlocale... yes 300s checking for arpa/nameser.h... yes 300s checking for arpa/tftp.h... yes 300s checking for fcntl.h... yes 300s checking for features.h... (cached) yes 300s checking for glob.h... (cached) yes 300s checking for memory.h... yes 300s checking for netinet/ether.h... yes 300s checking for netinet/in_systm.h... yes 300s checking for netinet/ip.h... yes 300s checking for netinet/ip_icmp.h... yes 300s checking for netinet/ip_var.h... no 300s checking for security/pam_appl.h... no 300s checking for shadow.h... yes 300s checking for stropts.h... no 300s checking for sys/tty.h... no 300s checking for sys/utsname.h... yes 300s checking for sys/ptyvar.h... no 300s checking for sys/msgbuf.h... no 300s checking for sys/filio.h... (cached) no 300s checking for sys/ioctl_compat.h... no 300s checking for sys/cdefs.h... (cached) yes 300s checking for sys/stream.h... no 300s checking for sys/mkdev.h... no 300s checking for sys/sockio.h... no 300s checking for sys/sysmacros.h... yes 300s checking for sys/param.h... (cached) yes 300s checking for sys/file.h... yes 300s checking for sys/proc.h... no 300s checking for sys/select.h... (cached) yes 300s checking for sys/wait.h... yes 300s checking for sys/resource.h... yes 300s checking for stropts.h... (cached) no 300s checking for tcpd.h... no 300s checking for utmp.h... (cached) yes 300s checking for utmpx.h... (cached) yes 300s checking for unistd.h... (cached) yes 300s checking for vis.h... no 300s checking for struct if_nameindex... yes 300s checking for sigset_t... (cached) yes 301s checking for sig_atomic_t... yes 301s checking for struct sockaddr_in.sin_len... no 301s checking for struct sockaddr_in6.sin6_len... no 301s checking for struct sockaddr_storage.ss_len... no 301s checking for struct passwd.pw_expire... no 301s checking for struct passwd.pw_change... no 301s checking for struct lastlog... yes 301s checking for struct utmp.ut_type... (cached) yes 301s checking for struct utmp.ut_pid... (cached) yes 301s checking for struct utmp.ut_line... yes 301s checking for struct utmp.ut_id... (cached) yes 301s checking for struct utmp.ut_user... (cached) yes 301s checking for struct utmp.ut_host... (cached) yes 301s checking for struct utmp.ut_exit... (cached) yes 301s checking for struct utmp.ut_session... (cached) yes 301s checking for struct utmp.ut_tv... (cached) yes 301s checking for struct utmp.ut_time... yes 301s checking for struct utmp.ut_addr_v6... yes 301s checking for struct utmp.ut_name... (cached) yes 301s checking for struct lastlogx... no 301s checking for struct lastlogx.ll_ss... no 301s checking for struct utmpx.ut_user... (cached) yes 301s checking for struct utmpx.ut_name... (cached) yes 301s checking for struct utmpx.ut_id... (cached) yes 301s checking for struct utmpx.ut_line... yes 301s checking for struct utmpx.ut_pid... (cached) yes 301s checking for struct utmpx.ut_type... (cached) yes 301s checking for struct utmpx.ut_exit... (cached) yes 301s checking for struct utmpx.ut_tv... yes 301s checking for struct utmpx.ut_session... (cached) yes 301s checking for struct utmpx.ut_syslen... no 301s checking for struct utmpx.ut_host... (cached) yes 301s checking for struct utmpx.ut_ss... no 301s checking for struct utmpx.ut_addr_v6... yes 301s checking for struct ifreq.ifr_index... no 301s checking for struct ifreq.ifr_netmask... yes 301s checking for struct ifreq.ifr_broadaddr... yes 301s checking for struct ifreq.ifr_mtu... yes 301s checking for struct ifreq.ifr_map... yes 301s checking for struct sockaddr.sa_len... (cached) no 301s checking for struct hostent.h_addr_list... yes 301s checking for struct stat.st_atim.tv_nsec... (cached) yes 301s checking for struct stat.st_atim.tv_usec... no 301s checking for struct stat.st_blksize... yes 301s checking for struct stat.st_ctim.tv_nsec... yes 301s checking for struct stat.st_ctim.tv_usec... no 301s checking for struct stat.st_mtim.tv_nsec... yes 301s checking for struct stat.st_mtim.tv_usec... no 301s checking for struct tftphdr.th_u... no 301s checking for working fork... yes 301s checking for working vfork... (cached) yes 301s checking for working mmap... yes 301s checking for cfsetspeed... yes 301s checking for cgetent... no 301s checking for dirfd... (cached) yes 301s checking for flock... yes 301s checking for fork... (cached) yes 301s checking for fpathconf... yes 301s checking for ftruncate... yes 301s checking for getcwd... yes 301s checking for getmsg... no 301s checking for getpwuid_r... yes 301s checking for getspnam... yes 301s checking for getutxent... yes 301s checking for getutxuser... no 301s checking for initgroups... yes 302s checking for initsetproctitle... no 302s checking for killpg... yes 302s checking for ptsname... yes 302s checking for pututline... yes 302s checking for pututxline... yes 302s checking for setegid... yes 302s checking for seteuid... yes 302s checking for setpgid... yes 302s checking for setlogin... no 302s checking for setsid... yes 302s checking for setregid... yes 302s checking for setreuid... yes 302s checking for setresgid... yes 302s checking for setresuid... yes 302s checking for setutent_r... no 302s checking for sigaction... yes 302s checking for sigvec... no 302s checking for strchr... yes 302s checking for setproctitle... no 302s checking for tcgetattr... yes 302s checking for tzset... yes 302s checking for utimes... yes 302s checking for utime... yes 302s checking for uname... yes 302s checking for updwtmp... yes 302s checking for updwtmpx... yes 302s checking for vhangup... yes 302s checking for wait3... yes 302s checking for wait4... yes 302s checking for __opendir2... no 302s checking for __rcmd_errstr... yes 302s checking for __check_rhosts_file... yes 302s checking for login... yes 302s checking for loginx... no 302s checking for logout... yes 302s checking for logoutx... no 302s checking for logwtmp... yes 303s checking for logwtmpx... no 303s checking for crypt... yes 303s checking for _obstack_free... yes 303s checking for setpgid... (cached) yes 303s checking for hstrerror... yes 303s checking whether hstrerror is declared... yes 303s checking whether telcmds is declared... yes 303s checking whether telopts is declared... no 303s checking for Schedule... no 303s checking for Session_Key... no 303s checking whether enctype_names is const char... no 303s checking whether crypt is declared... yes 303s checking for syslog internal macros... yes 303s checking for CODE... yes 303s checking whether prioritynames is declared... yes 303s checking whether fclose is declared... yes 303s checking whether pclose is declared... yes 303s checking whether getcwd is declared... (cached) yes 303s checking whether getlogin is declared... (cached) yes 303s checking whether getpass is declared... yes 303s checking whether getusershell is declared... (cached) yes 303s checking whether ttyname is declared... yes 303s checking whether getgrnam is declared... yes 303s checking whether initgroups is declared... yes 303s checking whether htons is declared... yes 303s checking for h_errno... yes 303s checking whether h_errno is declared... yes 303s checking for SEEK_ macros... yes 303s checking for _FILENO macros... yes 303s checking for fd_set macros... yes 303s checking for paths.h... yes 303s checking for value of PATH_BSHELL... from _PATH_BSHELL in 303s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 303s checking for value of PATH_CP... /usr/bin/cp 303s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 303s checking for value of PATH_DEV... from _PATH_DEV in 303s checking for value of PATH_TTY_PFX... from _PATH_DEV in 303s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 303s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 303s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 303s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 303s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 303s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 303s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 303s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 303s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 303s checking for value of PATH_UTMP... from _PATH_UTMP in 303s checking for value of PATH_UTMPX... from _PATH_UTMPX in 303s checking for value of PATH_WTMP... from _PATH_WTMP in 303s checking for value of PATH_WTMPX... from _PATH_WTMPX in 303s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 303s checking for value of PATH_LOG... from _PATH_LOG in 303s checking for value of PATH_KLOG... from _PATH_KLOG in 303s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 303s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 303s checking for value of PATH_LOGIN... /usr/bin/login 303s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 303s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 303s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 303s checking for value of PATH_RSH... (default) $(bindir)/rsh 303s checking for value of PATH_TMP... from _PATH_TMP in 304s checking for value of PATH_TTY... from _PATH_TTY in 304s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 304s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 304s checking for value of PATH_PROCNET_DEV... /proc/net/dev 304s checking that generated files are newer than configure... done 304s configure: creating ./config.status 304s /bin/bash ./config.status 304s config.status: creating Makefile 304s config.status: creating summary.sh 304s config.status: creating lib/Makefile 304s config.status: creating libinetutils/Makefile 304s config.status: creating libtelnet/Makefile 304s config.status: creating libicmp/Makefile 304s config.status: creating libls/Makefile 304s config.status: creating src/Makefile 304s config.status: creating telnet/Makefile 304s config.status: creating telnetd/Makefile 304s config.status: creating ftp/Makefile 304s config.status: creating ftpd/Makefile 304s config.status: creating talk/Makefile 304s config.status: creating talkd/Makefile 304s config.status: creating whois/Makefile 304s config.status: creating ping/Makefile 305s config.status: creating ifconfig/Makefile 305s config.status: creating ifconfig/system/Makefile 305s config.status: creating tests/Makefile 305s config.status: creating confpaths.h 305s config.status: creating config.h 305s config.status: config.h is unchanged 305s config.status: executing depfiles commands 305s config.status: executing summary commands 305s Summary of build decisions: 305s 305s Clients: 305s 305s dnsdomainname yes 305s ftp no 305s hostname yes 305s ifconfig yes 305s logger yes 305s ping no 305s ping6 no 305s rcp yes 305s rexec yes 305s rlogin yes 305s rsh yes 305s talk no 305s telnet yes 305s tftp no 305s traceroute no 305s whois yes 305s 305s Servers: 305s 305s ftpd no 305s inetd yes 305s rexecd yes 305s rlogind yes 305s rshd yes 305s syslogd yes 305s talkd yes 305s telnetd yes 305s tftpd no 305s uucpd yes 305s 305s Support: 305s 305s libls no 305s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing' aclocal-1.17 -I am -I m4 307s cd . && /bin/bash /tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing automake-1.17 --gnu 311s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.W6YCXG/build.S8J/src/build-aux/missing' autoconf 313s /bin/bash ./config.status --recheck 313s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-talk --disable-ftp --disable-ftpd --disable-ping --disable-ping6 --disable-tftp --disable-tftpd --disable-traceroute --no-create --no-recursion 313s checking build system type... s390x-ibm-linux-gnu 313s checking host system type... s390x-ibm-linux-gnu 313s checking for a BSD-compatible install... /usr/bin/install -c 313s checking whether sleep supports fractional seconds... yes 313s checking filesystem timestamp resolution... 0.01 313s checking whether build environment is sane... yes 313s checking for a race-free mkdir -p... /usr/bin/mkdir -p 313s checking for gawk... gawk 313s checking whether make sets $(MAKE)... yes 313s checking whether make supports nested variables... yes 313s checking xargs -n works... yes 313s checking for gcc... gcc 313s checking whether the C compiler works... yes 313s checking for C compiler default output file name... a.out 313s checking for suffix of executables... 313s checking whether we are cross compiling... no 313s checking for suffix of object files... o 313s checking whether the compiler supports GNU C... yes 313s checking whether gcc accepts -g... yes 314s checking for gcc option to enable C11 features... none needed 314s checking whether gcc understands -c and -o together... yes 314s checking whether the compiler is clang... no 314s checking for compiler option needed when checking for declarations... none 314s checking whether make supports the include directive... yes (GNU style) 314s checking dependency style of gcc... gcc3 314s checking for stdio.h... yes 314s checking for stdlib.h... yes 314s checking for string.h... yes 314s checking for inttypes.h... yes 314s checking for stdint.h... yes 314s checking for strings.h... yes 314s checking for sys/stat.h... yes 314s checking for sys/types.h... yes 314s checking for unistd.h... yes 314s checking for wchar.h... yes 314s checking for minix/config.h... no 314s checking for features.h... yes 314s checking for linewrap.h... no 314s checking for arpa/inet.h... yes 314s checking for sys/socket.h... yes 314s checking for uchar.h... yes 314s checking for sys/param.h... yes 314s checking for dirent.h... yes 314s checking for error.h... yes 314s checking for fnmatch.h... yes 314s checking for pty.h... yes 314s checking for termios.h... yes 314s checking for sys/vfs.h... yes 314s checking for netdb.h... yes 314s checking for netinet/in.h... yes 314s checking for getopt.h... yes 314s checking for sys/cdefs.h... yes 314s checking for stdio_ext.h... yes 314s checking for grp.h... yes 314s checking for glob.h... yes 314s checking for threads.h... yes 314s checking for limits.h... yes 314s checking for crtdefs.h... no 314s checking for wctype.h... yes 314s checking for langinfo.h... yes 314s checking for xlocale.h... no 314s checking for utmp.h... yes 314s checking for util.h... no 315s checking for libutil.h... no 315s checking for sys/mman.h... yes 315s checking for obstack.h... yes 315s checking for poll.h... yes 315s checking for sys/ioctl.h... yes 315s checking for sys/filio.h... no 315s checking for utmpx.h... yes 315s checking for OS.h... no 315s checking for malloc.h... yes 315s checking for sys/select.h... yes 315s checking for sys/time.h... yes 315s checking for stdbool.h... yes 315s checking for stdckdint.h... yes 315s checking for sys/random.h... yes 315s checking for sys/uio.h... yes 315s checking for sysexits.h... yes 315s checking for vfork.h... no 315s checking whether it is safe to define __EXTENSIONS__... yes 315s checking whether _XOPEN_SOURCE should be defined... no 315s checking how to run the C preprocessor... gcc -E 315s checking for egrep -e... /usr/bin/grep -E 315s checking for Minix Amsterdam compiler... no 315s checking for ar... ar 315s checking the archiver (ar) interface... ar 315s checking for ar... (cached) ar 315s checking for ranlib... ranlib 315s checking for gcc option to enable large file support... none needed 315s configure: autobuild project... GNU inetutils 315s configure: autobuild revision... 2.5 315s configure: autobuild hostname... autopkgtest 315s configure: autobuild timestamp... 20250219T204646Z 315s checking the archiver (ar) interface... (cached) ar 315s checking for ar... (cached) ar 315s checking for dd... /usr/bin/dd 315s checking for mktemp... /usr/bin/mktemp 315s checking for netstat... /usr/bin/netstat 315s checking for rm... /usr/bin/rm 315s checking how to run the C preprocessor... gcc -E 315s checking for grep that handles long lines and -e... /usr/bin/grep 315s checking for egrep... /usr/bin/grep -E 315s checking for fgrep... /usr/bin/grep -F 315s checking whether make sets $(MAKE)... (cached) yes 315s checking for ranlib... (cached) ranlib 315s checking for bison... no 315s checking for byacc... no 315s checking whether ln -s works... yes 315s checking for a sed that does not truncate output... /usr/bin/sed 315s checking for size_t... yes 315s checking for working alloca.h... yes 315s checking for alloca... yes 315s checking for inline... inline 315s checking for C/C++ restrict keyword... __restrict__ 315s checking for gcc options needed to detect all undeclared functions... none needed 315s checking whether clearerr_unlocked is declared... yes 315s checking whether feof_unlocked is declared... yes 315s checking whether ferror_unlocked is declared... yes 315s checking whether fflush_unlocked is declared... yes 315s checking whether fgets_unlocked is declared... yes 315s checking whether fputc_unlocked is declared... yes 315s checking whether fputs_unlocked is declared... yes 316s checking whether fread_unlocked is declared... yes 316s checking whether fwrite_unlocked is declared... yes 316s checking whether getc_unlocked is declared... yes 316s checking whether getchar_unlocked is declared... yes 316s checking whether putc_unlocked is declared... yes 316s checking whether putchar_unlocked is declared... yes 316s checking for flockfile... yes 316s checking for funlockfile... yes 316s checking for btowc... yes 316s checking for mbrtowc... yes 316s checking for mbsinit... yes 316s checking for _set_invalid_parameter_handler... no 316s checking for fchdir... yes 316s checking for fcntl... yes 316s checking for symlink... yes 316s checking for fdopendir... yes 316s checking for fnmatch... yes 316s checking for mbsrtowcs... yes 316s checking for fstatat... yes 316s checking for openat... yes 316s checking for fstatfs... yes 316s checking for getdtablesize... yes 316s checking for getpass... yes 316s checking for getexecname... no 316s checking for getusershell... yes 316s checking for glob_pattern_p... yes 316s checking for isblank... yes 316s checking for iswcntrl... yes 316s checking for lstat... yes 316s checking for mprotect... yes 316s checking for memset_explicit... no 316s checking for memset_s... no 316s checking for getgrouplist... yes 316s checking for mkstemp... yes 316s checking for pipe... yes 316s checking for utmpname... yes 317s checking for utmpxname... yes 317s checking for iswctype... yes 317s checking for setenv... yes 317s checking for sleep... yes 317s checking for snprintf... yes 317s checking for strndup... yes 317s checking for vasnprintf... no 317s checking for wcrtomb... yes 317s checking for fork... yes 317s checking for vfork... yes 317s checking for getpagesize... yes 317s checking whether strerror_r is declared... yes 317s checking whether strerror_r returns char *... yes 317s checking whether the preprocessor supports include_next... yes 317s checking whether source code line length is unlimited... yes 317s checking whether uses 'inline' correctly... yes 317s checking for nl_langinfo and CODESET... yes 317s checking for a traditional french locale... none 317s checking whether char8_t is correctly defined... yes 317s checking whether char16_t is correctly defined... yes 317s checking whether char32_t is correctly defined... yes 317s checking for bit size of wchar_t... 32 317s checking for mbstate_t... yes 317s checking for a traditional japanese locale... none 317s checking for a french Unicode locale... none 317s checking for a transitional chinese locale... none 317s checking whether mbrtowc handles incomplete characters... guessing yes 317s checking whether mbrtowc works as well as mbtowc... guessing yes 317s checking whether mbrtoc32 is declared... yes 317s checking for mbrtoc32... yes 317s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 317s checking whether malloc is ptrdiff_t safe... yes 317s checking whether malloc, realloc, calloc set errno on failure... yes 317s checking if environ is properly declared... yes 317s checking for complete errno.h... yes 317s checking for error... yes 317s checking whether error_at_line is declared... yes 317s checking for error_at_line... yes 317s checking for working error function... yes 317s checking whether ctype.h defines __header_inline... no 317s checking whether fchdir is declared... yes 318s checking for working fcntl.h... yes 319s checking for pid_t... yes 319s checking for mode_t... yes 319s checking for promoted mode_t type... mode_t 319s checking whether strmode is declared... no 319s checking whether fopen recognizes a trailing slash... yes 319s checking whether fflush works on input streams... no 319s checking for library containing forkpty... none required 319s checking whether stdin defaults to large file offsets... yes 319s checking whether fseeko is declared... yes 319s checking for fseeko... yes 319s checking whether fflush works on input streams... (cached) no 319s checking whether stat file-mode macros are broken... no 319s checking for nlink_t... yes 319s checking whether lstat correctly handles trailing slash... yes 319s checking whether ftello is declared... yes 319s checking whether ungetc works on arbitrary bytes... yes 319s checking for ftello... yes 319s checking whether ftello works... yes 319s checking for O_CLOEXEC... yes 319s checking whether is self-contained... yes 319s checking for shutdown... yes 319s checking whether defines the SHUT_* macros... yes 319s checking for struct sockaddr_storage... yes 319s checking for sa_family_t... yes 319s checking for struct sockaddr_storage.ss_family... yes 319s checking for library containing gethostbyname... none required 319s checking for gethostbyname... yes 319s checking for library containing getservbyname... none required 319s checking for getservbyname... yes 319s checking for library containing inet_ntop... none required 319s checking whether inet_ntop is declared... yes 319s checking for IPv4 sockets... yes 319s checking for IPv6 sockets... yes 319s checking whether getcwd (NULL, 0) allocates memory for result... yes 319s checking for getcwd with POSIX signature... yes 319s checking whether getcwd is declared... yes 320s checking whether getdelim is declared... yes 320s checking whether getdtablesize is declared... yes 320s checking for uid_t... yes 320s checking for gid_t... yes 320s checking type of array argument to getgroups... gid_t 320s checking whether getline is declared... yes 320s checking whether getlogin_r is declared... yes 320s checking whether getlogin is declared... yes 320s checking for getopt.h... (cached) yes 320s checking for getopt_long_only... yes 320s checking whether getopt is POSIX compatible... yes 320s checking for working GNU getopt function... yes 320s checking for working GNU getopt_long function... yes 320s checking whether flockfile is declared... yes 320s checking whether funlockfile is declared... yes 320s checking for pthread.h... yes 320s checking for pthread_kill in -lpthread... yes 320s checking whether POSIX threads API is available... yes 320s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 320s checking whether setlocale (category, NULL) is multithread-safe... yes 320s checking for off_t... yes 320s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 320s checking whether limits.h has SSIZE_MAX... yes 320s checking for wint_t... yes 320s checking whether wint_t is large enough... yes 320s checking whether the compiler produces multi-arch binaries... no 320s checking whether stdint.h conforms to C99... yes 320s checking whether stdint.h works without ISO C predefines... yes 320s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 321s checking whether iswcntrl works... yes 321s checking for towlower... yes 321s checking for wctype_t... yes 321s checking for wctrans_t... yes 321s checking whether wctype supports the "blank" and "punct" character classes... yes 321s checking whether langinfo.h defines CODESET... yes 321s checking whether langinfo.h defines T_FMT_AMPM... yes 321s checking whether langinfo.h defines ALTMON_1... yes 321s checking whether langinfo.h defines ERA... yes 321s checking whether langinfo.h defines YESEXPR... yes 321s checking for wchar_t... yes 321s checking for good max_align_t... yes 321s checking whether NULL can be used in arbitrary expressions... yes 321s checking for unreachable... no 321s checking whether locale.h defines locale_t... yes 321s checking whether locale.h conforms to POSIX:2001... yes 321s checking whether struct lconv is properly defined... yes 321s checking whether imported symbols can be declared weak... yes 321s checking for multithread API to use... posix 321s checking whether malloc (0) returns nonnull... yes 321s checking for mmap... yes 321s checking for MAP_ANONYMOUS... yes 321s checking whether memchr works... yes 321s checking whether memrchr is declared... yes 321s checking whether defines MIN and MAX... no 321s checking whether defines MIN and MAX... yes 321s checking for library containing setsockopt... none needed 321s checking for ld used by gcc... /usr/bin/ld 321s checking if the linker (/usr/bin/ld) is GNU ld... yes 321s checking for shared library run path origin... done 321s checking 32-bit host C ABI... no 321s checking for ELF binary format... yes 321s checking for the common suffixes of directories in the library search path... lib,lib,lib 321s checking whether to use systemd APIs... no 321s checking whether endutent is declared... yes 321s checking for struct utmpx.ut_user... yes 321s checking for struct utmp.ut_user... yes 321s checking for struct utmpx.ut_name... yes 321s checking for struct utmp.ut_name... yes 321s checking for struct utmpx.ut_type... yes 321s checking for struct utmp.ut_type... yes 321s checking for struct utmpx.ut_pid... yes 321s checking for struct utmp.ut_pid... yes 321s checking for struct utmp.ut_tv... yes 321s checking for struct utmpx.ut_host... yes 322s checking for struct utmp.ut_host... yes 322s checking for struct utmpx.ut_id... yes 322s checking for struct utmp.ut_id... yes 322s checking for struct utmpx.ut_session... yes 322s checking for struct utmp.ut_session... yes 322s checking for struct utmpx.ut_exit... yes 322s checking for struct utmp.ut_exit... yes 322s checking for struct utmpx.ut_exit.ut_exit... no 322s checking for struct utmpx.ut_exit.e_exit... yes 322s checking for struct utmp.ut_exit.e_exit... yes 322s checking for struct utmpx.ut_exit.ut_termination... no 322s checking for struct utmpx.ut_exit.e_termination... yes 322s checking for struct utmp.ut_exit.e_termination... yes 322s checking whether sysinfo is declared... yes 322s checking for sys/sysctl.h... no 322s checking for sysctl... no 322s checking whether alarm is declared... yes 322s checking whether is self-contained... yes 322s checking whether setenv is declared... yes 322s checking for search.h... yes 322s checking for tsearch... yes 322s checking for sigset_t... yes 322s checking for volatile sig_atomic_t... yes 322s checking for sighandler_t... yes 322s checking whether snprintf returns a byte count as in C99... yes 322s checking whether printf supports POSIX/XSI format strings with positions... yes 323s checking whether snprintf is declared... yes 323s checking whether fcloseall is declared... yes 323s checking whether getw is declared... yes 323s checking whether putw is declared... yes 323s checking which flavor of printf attribute matches inttypes macros... system 323s checking whether ecvt is declared... yes 323s checking whether fcvt is declared... yes 323s checking whether gcvt is declared... yes 323s checking whether MB_CUR_MAX is correct... guessing yes 323s checking whether strdup is declared... yes 323s checking whether strerror(0) succeeds... yes 323s checking whether strndup is declared... yes 323s checking whether strnlen is declared... yes 323s checking whether declares ioctl... yes 323s checking for struct timeval... yes 323s checking for wide-enough struct timeval.tv_sec member... yes 323s checking for struct timespec in ... yes 323s checking for TIME_UTC in ... yes 323s checking whether execvpe is declared... yes 323s checking for util.h... (cached) no 323s checking for libutil.h... (cached) no 323s checking for inttypes.h... yes 323s checking for stdint.h... yes 323s checking for intmax_t... yes 323s checking whether snprintf truncates the result as in C99... yes 323s checking where to find the exponent in a 'double'... word 0 bit 20 323s checking for wcslen... yes 323s checking for snprintf... (cached) yes 323s checking for strnlen... yes 323s checking for wcrtomb... (cached) yes 323s checking whether _snprintf is declared... no 323s checking whether vsnprintf is declared... yes 323s checking whether wcsdup is declared... yes 324s checking for C compiler option to allow warnings... -Wno-error 324s checking for alignas and alignof... yes, macros 324s checking for alloca as a compiler built-in... yes 324s checking whether program_invocation_name is declared... yes 324s checking whether program_invocation_short_name is declared... yes 324s checking whether program_invocation_name is defined... yes 324s checking whether program_invocation_short_name is defined... yes 324s checking for static_assert... yes, an macro 324s checking whether btowc(0) is correct... yes 324s checking whether btowc(EOF) is correct... guessing yes 324s checking whether btowc is consistent with mbrtowc in the C locale... no 324s checking for __builtin_expect... yes 324s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 324s checking whether this system supports file names of any length... no 324s checking for library containing clock_gettime... none required 324s checking for clock_getres... yes 324s checking for clock_gettime... yes 324s checking for clock_settime... yes 324s checking for closedir... yes 324s checking for d_ino member in directory struct... yes 324s checking for d_type member in directory struct... yes 324s checking for dirfd... yes 324s checking whether dirfd is declared... yes 324s checking whether dirfd is a macro... no 324s checking whether // is distinct from /... no 324s checking whether dup works... yes 324s checking whether dup2 works... yes 324s checking whether fcntl handles F_DUPFD correctly... yes 324s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 324s checking whether fdopendir is declared... yes 324s checking whether fdopendir works... yes 324s checking for mempcpy... yes 324s checking for flexible array member... yes 324s checking whether conversion from 'int' to 'long double' works... yes 324s checking for working POSIX fnmatch... yes 324s checking whether fopen supports the mode character 'x'... yes 324s checking whether fopen supports the mode character 'e'... yes 324s checking whether forkpty is declared... yes 324s checking for const-safe forkpty signature... yes 325s checking whether free is known to preserve errno... yes 325s checking for fseeko... (cached) yes 325s checking whether fflush works on input streams... (cached) no 325s checking for _fseeki64... no 325s checking whether fstatat (..., 0) works... yes 325s checking for ftello... (cached) yes 325s checking whether ftello works... (cached) yes 325s checking for struct statfs.f_type... yes 325s checking for __fsword_t... yes 325s checking for fts_open... yes 325s checking for library containing getaddrinfo... none required 325s checking for getaddrinfo... yes 325s checking whether gai_strerror is declared... yes 325s checking whether gai_strerrorA is declared... no 325s checking for gai_strerror with POSIX signature... yes 325s checking for struct sockaddr.sa_len... no 325s checking whether getaddrinfo is declared... yes 325s checking whether freeaddrinfo is declared... yes 325s checking whether getnameinfo is declared... yes 325s checking for struct addrinfo... yes 325s checking whether getcwd handles long file names properly... yes 325s checking for getpagesize... yes 325s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 325s checking for getdelim... yes 325s checking for working getdelim function... yes 325s checking for getdomainname... yes 325s checking whether getdomainname is declared... yes 325s checking for getdomainname's second argument type... size_t 325s checking whether getdtablesize works... yes 325s checking for getgroups... yes 325s checking for working getgroups... yes 325s checking whether getgroups handles negative values... yes 325s checking for gethostname... yes 325s checking for HOST_NAME_MAX... yes 325s checking for getline... yes 325s checking for working getline function... yes 326s checking for getlogin_r... yes 326s checking whether getlogin_r works with small buffers... yes 326s checking for getprogname... no 326s checking whether program_invocation_name is declared... (cached) yes 326s checking whether program_invocation_name is declared... (cached) yes 326s checking whether program_invocation_short_name is declared... (cached) yes 326s checking whether __argv is declared... no 326s checking for getrandom... yes 326s checking whether getrandom is compatible with its GNU+BSD signature... yes 326s checking whether getusershell is declared... yes 326s checking for glob... yes 326s checking for GNU glob interface version 1 or 2... yes 326s checking whether glob lists broken symlinks... yes 326s checking whether glob NOTDIR*/ omits symlink to nondir... yes 326s checking for library containing gethostbyname... (cached) none required 326s checking for gethostbyname... (cached) yes 326s checking for library containing inet_ntop... (cached) none required 326s checking whether inet_ntop is declared... (cached) yes 326s checking whether the compiler generally respects inline... yes 326s checking for ioctl... yes 326s checking for ioctl with POSIX signature... no 326s checking for iswblank... yes 326s checking whether iswblank is declared... yes 326s checking whether iswdigit is ISO C compliant... guessing yes 326s checking whether iswpunct is consistent with ispunct... yes 326s checking whether iswxdigit is ISO C compliant... guessing yes 326s checking whether the compiler supports the __inline keyword... yes 326s checking whether localeconv works... yes 326s checking for pthread_rwlock_t... yes 326s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 326s checking for login_tty... yes 326s checking whether lseek detects pipes... yes 326s checking whether SEEK_DATA works but is incompatible with GNU... no 326s checking whether malloc (0) returns nonnull... (cached) yes 326s checking whether mbrtoc32 works on empty input... yes 326s checking whether the C locale is free of encoding errors... no 326s checking whether mbrtowc handles a NULL pwc argument... guessing yes 326s checking whether mbrtowc handles a NULL string argument... guessing yes 326s checking whether mbrtowc has a correct return value... guessing yes 326s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 326s checking whether mbrtowc stores incomplete characters... guessing no 326s checking whether mbrtowc works on empty input... yes 326s checking whether the C locale is free of encoding errors... no 326s checking whether mbsrtowcs works... guessing yes 326s checking whether the C locale is free of encoding errors... (cached) no 326s checking for mbtowc... yes 326s checking for mempcpy... (cached) yes 326s checking for memrchr... yes 326s checking for explicit_memset... no 327s checking whether mkdir handles trailing slash... yes 327s checking whether mkdir handles trailing dot... yes 327s checking for working mkstemp... yes 327s checking whether is self-contained... yes 327s checking for nl_langinfo... yes 327s checking whether YESEXPR works... yes 327s checking for obstacks that work with any size object... no 327s checking whether open recognizes a trailing slash... yes 327s checking for opendir... yes 327s checking whether openpty is declared... yes 327s checking for const-safe openpty signature... yes 327s checking for poll... yes 327s checking for posix_openpt... yes 327s checking whether program_invocation_name is declared... (cached) yes 327s checking whether program_invocation_short_name is declared... (cached) yes 327s checking for rawmemchr... yes 327s checking for readdir... yes 327s checking for readline... no 327s checking for readline/readline.h... no 327s checking for readline/history.h... no 327s checking whether realloc (0, 0) returns nonnull... yes 327s checking for reallocarray... yes 327s checking for working re_compile_pattern... yes 327s checking for rewinddir... yes 327s checking whether select supports a 0 argument... yes 327s checking whether select detects invalid fds... yes 327s checking for library containing getservbyname... (cached) none required 327s checking for getservbyname... (cached) yes 327s checking whether setenv validates arguments... yes 327s checking for HOST_NAME_MAX... (cached) yes 327s checking for sethostname... yes 327s checking whether sethostname is declared... yes 327s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 327s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 327s checking for stdint.h... (cached) yes 327s checking for SIZE_MAX... yes 327s checking whether sleep is declared... yes 328s checking for working sleep... yes 328s checking for snprintf... (cached) yes 328s checking whether snprintf respects a size of 1... yes 329s checking for socklen_t... yes 329s checking for ssize_t... yes 329s checking whether stat handles trailing slashes on files... yes 329s checking for struct stat.st_atim.tv_nsec... yes 329s checking whether struct stat.st_atim is of type struct timespec... yes 329s checking for struct stat.st_birthtimespec.tv_nsec... no 329s checking for struct stat.st_birthtimensec... no 329s checking for struct stat.st_birthtim.tv_nsec... no 329s checking for va_copy... yes 329s checking for bool, true, false... no 329s checking for strcasecmp... yes 329s checking for strncasecmp... yes 329s checking whether strncasecmp is declared... yes 329s checking for strchrnul... yes 329s checking whether strchrnul works... yes 329s checking for working strerror function... yes 329s checking for working strndup... yes 329s checking for working strnlen... yes 329s checking for variable-length arrays... yes 329s checking for ptrdiff_t... yes 329s checking for vasprintf... yes 329s checking for vsnprintf... yes 329s checking whether snprintf respects a size of 1... (cached) yes 329s checking whether wcrtomb works in the C locale... yes 329s checking whether wcrtomb return value is correct... guessing yes 329s checking for wmemchr... yes 329s checking for wmempcpy... yes 329s checking for stdint.h... (cached) yes 329s checking for library containing inet_ntoa... none required 329s checking for initscr in -lncurses... no 329s checking for tgetent in -ltermcap... no 329s checking whether tgetent needs support... no 329s checking for tgetent in -lcurses... no 329s checking whether tgetent is declared... no 329s checking for tgetent in -ltermlib... no 329s checking for crypt in -lcrypt... yes 329s checking for login in -lutil... yes 329s checking for loginx in -lutil... no 329s checking for logout in -lutil... yes 329s checking for logoutx in -lutil... no 329s checking for logwtmp in -lutil... yes 330s checking for logwtmpx in -lutil... no 330s checking for protocols/talkd.h... yes 330s checking for rcmd... yes 330s checking for rcmd_af... yes 330s checking for orcmd... no 330s checking for orcmd_af... no 330s checking for rresvport_af... yes 330s checking for iruserok... yes 330s checking for iruserok_af... yes 330s checking for iruserok_sa... no 330s checking for ruserok... yes 330s checking for ruserok_af... yes 330s checking for AF_INET6... yes 330s checking for IPV6_V6ONLY... yes 330s checking for struct sockaddr_storage... (cached) yes 330s checking for struct sockaddr_in6... yes 330s checking for struct addrinfo... (cached) yes 330s checking for getnameinfo... yes 330s checking for netinet/icmp6.h... yes 330s checking for netinet/ip6.h... yes 330s checking for struct icmp6_filter... yes 330s checking for struct icmp6_hdr... yes 330s checking for IPV6_HOPLIMIT... yes 330s checking for IPV6_2292HOPLIMIT... yes 330s checking for IPV6_RECVHOPLIMIT... yes 330s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 330s checking for locale.h... yes 330s checking for setlocale... yes 330s checking for arpa/nameser.h... yes 330s checking for arpa/tftp.h... yes 330s checking for fcntl.h... yes 330s checking for features.h... (cached) yes 330s checking for glob.h... (cached) yes 330s checking for memory.h... yes 330s checking for netinet/ether.h... yes 330s checking for netinet/in_systm.h... yes 330s checking for netinet/ip.h... yes 330s checking for netinet/ip_icmp.h... yes 330s checking for netinet/ip_var.h... no 330s checking for security/pam_appl.h... no 330s checking for shadow.h... yes 330s checking for stropts.h... no 330s checking for sys/tty.h... no 330s checking for sys/utsname.h... yes 331s checking for sys/ptyvar.h... no 331s checking for sys/msgbuf.h... no 331s checking for sys/filio.h... (cached) no 331s checking for sys/ioctl_compat.h... no 331s checking for sys/cdefs.h... (cached) yes 331s checking for sys/stream.h... no 331s checking for sys/mkdev.h... no 331s checking for sys/sockio.h... no 331s checking for sys/sysmacros.h... yes 331s checking for sys/param.h... (cached) yes 331s checking for sys/file.h... yes 331s checking for sys/proc.h... no 331s checking for sys/select.h... (cached) yes 331s checking for sys/wait.h... yes 331s checking for sys/resource.h... yes 331s checking for stropts.h... (cached) no 331s checking for tcpd.h... no 331s checking for utmp.h... (cached) yes 331s checking for utmpx.h... (cached) yes 331s checking for unistd.h... (cached) yes 331s checking for vis.h... no 331s checking for struct if_nameindex... yes 331s checking for sigset_t... (cached) yes 331s checking for sig_atomic_t... yes 331s checking for struct sockaddr_in.sin_len... no 331s checking for struct sockaddr_in6.sin6_len... no 331s checking for struct sockaddr_storage.ss_len... no 331s checking for struct passwd.pw_expire... no 331s checking for struct passwd.pw_change... no 331s checking for struct lastlog... yes 331s checking for struct utmp.ut_type... (cached) yes 331s checking for struct utmp.ut_pid... (cached) yes 331s checking for struct utmp.ut_line... yes 331s checking for struct utmp.ut_id... (cached) yes 331s checking for struct utmp.ut_user... (cached) yes 331s checking for struct utmp.ut_host... (cached) yes 331s checking for struct utmp.ut_exit... (cached) yes 331s checking for struct utmp.ut_session... (cached) yes 331s checking for struct utmp.ut_tv... (cached) yes 331s checking for struct utmp.ut_time... yes 331s checking for struct utmp.ut_addr_v6... yes 331s checking for struct utmp.ut_name... (cached) yes 331s checking for struct lastlogx... no 331s checking for struct lastlogx.ll_ss... no 331s checking for struct utmpx.ut_user... (cached) yes 331s checking for struct utmpx.ut_name... (cached) yes 331s checking for struct utmpx.ut_id... (cached) yes 331s checking for struct utmpx.ut_line... yes 331s checking for struct utmpx.ut_pid... (cached) yes 331s checking for struct utmpx.ut_type... (cached) yes 331s checking for struct utmpx.ut_exit... (cached) yes 331s checking for struct utmpx.ut_tv... yes 331s checking for struct utmpx.ut_session... (cached) yes 331s checking for struct utmpx.ut_syslen... no 331s checking for struct utmpx.ut_host... (cached) yes 331s checking for struct utmpx.ut_ss... no 332s checking for struct utmpx.ut_addr_v6... yes 332s checking for struct ifreq.ifr_index... no 332s checking for struct ifreq.ifr_netmask... yes 332s checking for struct ifreq.ifr_broadaddr... yes 332s checking for struct ifreq.ifr_mtu... yes 332s checking for struct ifreq.ifr_map... yes 332s checking for struct sockaddr.sa_len... (cached) no 332s checking for struct hostent.h_addr_list... yes 332s checking for struct stat.st_atim.tv_nsec... (cached) yes 332s checking for struct stat.st_atim.tv_usec... no 332s checking for struct stat.st_blksize... yes 332s checking for struct stat.st_ctim.tv_nsec... yes 332s checking for struct stat.st_ctim.tv_usec... no 332s checking for struct stat.st_mtim.tv_nsec... yes 332s checking for struct stat.st_mtim.tv_usec... no 332s checking for struct tftphdr.th_u... no 332s checking for working fork... yes 332s checking for working vfork... (cached) yes 332s checking for working mmap... yes 332s checking for cfsetspeed... yes 332s checking for cgetent... no 332s checking for dirfd... (cached) yes 332s checking for flock... yes 332s checking for fork... (cached) yes 332s checking for fpathconf... yes 332s checking for ftruncate... yes 332s checking for getcwd... yes 332s checking for getmsg... no 332s checking for getpwuid_r... yes 332s checking for getspnam... yes 332s checking for getutxent... yes 332s checking for getutxuser... no 332s checking for initgroups... yes 332s checking for initsetproctitle... no 332s checking for killpg... yes 332s checking for ptsname... yes 332s checking for pututline... yes 332s checking for pututxline... yes 332s checking for setegid... yes 333s checking for seteuid... yes 333s checking for setpgid... yes 333s checking for setlogin... no 333s checking for setsid... yes 333s checking for setregid... yes 333s checking for setreuid... yes 333s checking for setresgid... yes 333s checking for setresuid... yes 333s checking for setutent_r... no 333s checking for sigaction... yes 333s checking for sigvec... no 333s checking for strchr... yes 333s checking for setproctitle... no 333s checking for tcgetattr... yes 333s checking for tzset... yes 333s checking for utimes... yes 333s checking for utime... yes 333s checking for uname... yes 333s checking for updwtmp... yes 333s checking for updwtmpx... yes 333s checking for vhangup... yes 333s checking for wait3... yes 333s checking for wait4... yes 333s checking for __opendir2... no 333s checking for __rcmd_errstr... yes 333s checking for __check_rhosts_file... yes 333s checking for login... yes 333s checking for loginx... no 333s checking for logout... yes 333s checking for logoutx... no 333s checking for logwtmp... yes 333s checking for logwtmpx... no 333s checking for crypt... yes 333s checking for _obstack_free... yes 333s checking for setpgid... (cached) yes 333s checking for hstrerror... yes 333s checking whether hstrerror is declared... yes 333s checking whether telcmds is declared... yes 333s checking whether telopts is declared... no 334s checking for Schedule... no 334s checking for Session_Key... no 334s checking whether enctype_names is const char... no 334s checking whether crypt is declared... yes 334s checking for syslog internal macros... yes 334s checking for CODE... yes 334s checking whether prioritynames is declared... yes 334s checking whether fclose is declared... yes 334s checking whether pclose is declared... yes 334s checking whether getcwd is declared... (cached) yes 334s checking whether getlogin is declared... (cached) yes 334s checking whether getpass is declared... yes 334s checking whether getusershell is declared... (cached) yes 334s checking whether ttyname is declared... yes 334s checking whether getgrnam is declared... yes 334s checking whether initgroups is declared... yes 334s checking whether htons is declared... yes 334s checking for h_errno... yes 334s checking whether h_errno is declared... yes 334s checking for SEEK_ macros... yes 334s checking for _FILENO macros... yes 334s checking for fd_set macros... yes 334s checking for paths.h... yes 334s checking for value of PATH_BSHELL... from _PATH_BSHELL in 334s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 334s checking for value of PATH_CP... /usr/bin/cp 334s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 334s checking for value of PATH_DEV... from _PATH_DEV in 334s checking for value of PATH_TTY_PFX... from _PATH_DEV in 334s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 334s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 334s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 334s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 334s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 334s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 334s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 334s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 334s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 334s checking for value of PATH_UTMP... from _PATH_UTMP in 334s checking for value of PATH_UTMPX... from _PATH_UTMPX in 334s checking for value of PATH_WTMP... from _PATH_WTMP in 334s checking for value of PATH_WTMPX... from _PATH_WTMPX in 334s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 334s checking for value of PATH_LOG... from _PATH_LOG in 334s checking for value of PATH_KLOG... from _PATH_KLOG in 334s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 334s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 334s checking for value of PATH_LOGIN... /usr/bin/login 334s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 334s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 334s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 334s checking for value of PATH_RSH... (default) $(bindir)/rsh 334s checking for value of PATH_TMP... from _PATH_TMP in 334s checking for value of PATH_TTY... from _PATH_TTY in 334s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 334s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 334s checking for value of PATH_PROCNET_DEV... /proc/net/dev 335s checking that generated files are newer than configure... done 335s configure: creating ./config.status 335s /bin/bash ./config.status 335s config.status: creating Makefile 335s config.status: creating summary.sh 335s config.status: creating lib/Makefile 335s config.status: creating libinetutils/Makefile 335s config.status: creating libtelnet/Makefile 335s config.status: creating libicmp/Makefile 335s config.status: creating libls/Makefile 335s config.status: creating src/Makefile 335s config.status: creating telnet/Makefile 335s config.status: creating telnetd/Makefile 335s config.status: creating ftp/Makefile 335s config.status: creating ftpd/Makefile 335s config.status: creating talk/Makefile 335s config.status: creating talkd/Makefile 335s config.status: creating whois/Makefile 335s config.status: creating ping/Makefile 335s config.status: creating ifconfig/Makefile 335s config.status: creating ifconfig/system/Makefile 335s config.status: creating tests/Makefile 335s config.status: creating confpaths.h 335s config.status: creating config.h 335s config.status: config.h is unchanged 335s config.status: executing depfiles commands 335s config.status: executing summary commands 335s Summary of build decisions: 335s 335s Clients: 335s 335s dnsdomainname yes 335s ftp no 335s hostname yes 335s ifconfig yes 335s logger yes 335s ping no 335s ping6 no 335s rcp yes 335s rexec yes 335s rlogin yes 335s rsh yes 335s talk no 335s telnet yes 335s tftp no 335s traceroute no 335s whois yes 335s 335s Servers: 335s 335s ftpd no 335s inetd yes 335s rexecd yes 335s rlogind yes 335s rshd yes 335s syslogd yes 335s talkd yes 335s telnetd yes 335s tftpd no 335s uucpd yes 335s 335s Support: 335s 335s libls no 335s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src' 335s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src' 335s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src' 335s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src' 335s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src' 335s GEN alloca.h 335s GEN arpa/inet.h 335s GEN ctype.h 335s GEN dirent.h 336s GEN error.h 336s GEN fcntl.h 336s GEN getopt.h 336s GEN getopt-cdefs.h 336s GEN malloc/dynarray.gl.h 336s GEN malloc/dynarray-skeleton.gl.h 336s GEN malloc/scratch_buffer.gl.h 336s GEN glob-libc.gl.h 336s GEN inttypes.h 336s GEN langinfo.h 336s GEN limits.h 336s GEN locale.h 336s GEN netdb.h 336s GEN obstack.h 336s GEN poll.h 336s GEN pty.h 336s GEN signal.h 336s GEN stddef.h 336s GEN stdio.h 336s GEN stdlib.h 336s GEN string.h 336s GEN strings.h 336s GEN sys/ioctl.h 336s GEN sys/random.h 336s GEN sys/select.h 336s GEN sys/socket.h 336s GEN sys/stat.h 336s GEN sys/time.h 336s GEN sys/types.h 336s GEN sys/uio.h 336s GEN termios.h 336s GEN time.h 336s GEN uchar.h 336s GEN unicase.h 336s GEN unictype.h 336s GEN uninorm.h 336s GEN unistd.h 336s GEN unistr.h 336s GEN unitypes.h 336s GEN utmp.h 336s GEN wchar.h 336s GEN wctype.h 336s make all-recursive 336s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 336s make[2]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 336s CC libgnu_a-argp-ba.o 336s CC libgnu_a-argp-eexst.o 336s CC libgnu_a-argp-fmtstream.o 336s CC libgnu_a-argp-fs-xinl.o 336s CC libgnu_a-argp-help.o 337s CC libgnu_a-argp-parse.o 337s CC libgnu_a-argp-pin.o 337s CC libgnu_a-argp-pv.o 337s CC libgnu_a-argp-pvh.o 337s CC libgnu_a-argp-xinl.o 337s CC libgnu_a-argp-version-etc.o 337s CC libgnu_a-openat-proc.o 337s CC libgnu_a-basename-lgpl.o 337s CC libgnu_a-bitrotate.o 337s CC libgnu_a-btoc32.o 337s CC libgnu_a-btowc.o 337s CC libgnu_a-c32_apply_type_test.o 337s CC libgnu_a-c32_get_type_test.o 337s CC libgnu_a-c32isalnum.o 337s CC libgnu_a-c32isalpha.o 337s CC libgnu_a-c32isblank.o 337s CC libgnu_a-c32iscntrl.o 337s CC libgnu_a-c32isdigit.o 337s CC libgnu_a-c32isgraph.o 338s CC libgnu_a-c32islower.o 338s CC libgnu_a-c32isprint.o 338s CC libgnu_a-c32ispunct.o 338s CC libgnu_a-c32isspace.o 338s CC libgnu_a-c32isupper.o 338s CC libgnu_a-c32isxdigit.o 338s CC libgnu_a-c32tolower.o 338s CC libgnu_a-chdir-long.o 338s CC libgnu_a-cloexec.o 338s CC libgnu_a-cycle-check.o 338s CC libgnu_a-dirname-lgpl.o 338s CC libgnu_a-stripslash.o 338s CC libgnu_a-exitfail.o 338s CC libgnu_a-fcntl.o 338s CC libgnu_a-creat-safer.o 338s CC libgnu_a-open-safer.o 338s CC libgnu_a-fd-hook.o 338s CC libgnu_a-fd-safer-flag.o 338s CC libgnu_a-dup-safer-flag.o 338s CC libgnu_a-filemode.o 339s CC libgnu_a-filenamecat-lgpl.o 339s CC libgnu_a-fopen-safer.o 339s CC libgnu_a-fseek.o 339s CC libgnu_a-fseeko.o 339s CC libgnu_a-fts.o 339s CC libgnu_a-getopt.o 339s CC libgnu_a-getopt1.o 339s CC libgnu_a-getprogname.o 339s CC libgnu_a-getugroups.o 339s CC malloc/libgnu_a-dynarray_at_failure.o 340s CC malloc/libgnu_a-dynarray_emplace_enlarge.o 340s CC malloc/libgnu_a-dynarray_finalize.o 340s CC malloc/libgnu_a-dynarray_resize.o 340s CC malloc/libgnu_a-dynarray_resize_clear.o 340s CC malloc/libgnu_a-scratch_buffer_grow.o 340s CC malloc/libgnu_a-scratch_buffer_grow_preserve.o 340s CC malloc/libgnu_a-scratch_buffer_set_array_size.o 340s CC libgnu_a-hard-locale.o 340s CC libgnu_a-hash.o 340s CC libgnu_a-i-ring.o 340s CC libgnu_a-ialloc.o 340s CC libgnu_a-imaxtostr.o 340s CC libgnu_a-inttostr.o 340s CC libgnu_a-offtostr.o 340s CC libgnu_a-uinttostr.o 340s CC libgnu_a-umaxtostr.o 340s CC libgnu_a-ioctl.o 340s CC libgnu_a-localcharset.o 340s CC glthread/libgnu_a-lock.o 340s CC libgnu_a-malloca.o 340s CC libgnu_a-mbrtoc32.o 341s CC libgnu_a-mbrtowc.o 341s CC libgnu_a-mbsrtoc32s.o 341s CC libgnu_a-mbsrtowcs.o 341s CC libgnu_a-mbszero.o 341s CC libgnu_a-memset_explicit.o 341s CC libgnu_a-mgetgroups.o 341s CC libgnu_a-obstack.o 341s CC libgnu_a-openat-die.o 341s CC libgnu_a-openat-safer.o 341s CC libgnu_a-opendirat.o 341s CC libgnu_a-progname.o 341s CC libgnu_a-read-file.o 341s CC libgnu_a-readline.o 341s CC libgnu_a-readutmp.o 342s CC libgnu_a-same-inode.o 342s CC libgnu_a-save-cwd.o 342s CC libgnu_a-setlocale_null.o 342s CC libgnu_a-sockets.o 342s CC libgnu_a-stat-time.o 342s CC libgnu_a-strnlen1.o 342s CC libgnu_a-sys_socket.o 342s CC libgnu_a-tempname.o 342s CC glthread/libgnu_a-threadlib.o 342s CC unicase/libgnu_a-tolower.o 342s CC unictype/libgnu_a-ctype_alnum.o 342s CC unictype/libgnu_a-ctype_alpha.o 342s CC unictype/libgnu_a-ctype_blank.o 342s CC unictype/libgnu_a-ctype_cntrl.o 342s CC unictype/libgnu_a-ctype_digit.o 342s CC unictype/libgnu_a-ctype_graph.o 342s CC unictype/libgnu_a-ctype_lower.o 342s CC unictype/libgnu_a-ctype_print.o 342s CC unictype/libgnu_a-ctype_punct.o 342s CC unictype/libgnu_a-ctype_space.o 342s CC unictype/libgnu_a-ctype_upper.o 342s CC unictype/libgnu_a-ctype_xdigit.o 342s CC libgnu_a-unistd.o 342s CC libgnu_a-dup-safer.o 342s CC libgnu_a-fd-safer.o 342s CC libgnu_a-pipe-safer.o 342s CC unistr/libgnu_a-u32-chr.o 342s CC unistr/libgnu_a-u32-cpy.o 342s CC unistr/libgnu_a-u32-pcpy.o 342s CC unistr/libgnu_a-u32-strcat.o 342s CC unistr/libgnu_a-u32-strlen.o 342s CC libgnu_a-version-etc.o 342s CC libgnu_a-version-etc-fsf.o 342s CC libgnu_a-wctype-h.o 343s CC libgnu_a-xmalloc.o 343s CC libgnu_a-xalloc-die.o 343s CC libgnu_a-xgetcwd.o 343s CC libgnu_a-xgetdomainname.o 343s CC libgnu_a-xgethostname.o 343s CC libgnu_a-xsize.o 343s CC libgnu_a-xvasprintf.o 343s CC libgnu_a-xasprintf.o 343s CC asnprintf.o 343s CC fopen.o 343s CC mbsrtoc32s-state.o 343s CC mbsrtowcs-state.o 343s CC printf-args.o 343s CC printf-parse.o 343s CC vasnprintf.o 344s AR libgnu.a 344s make[2]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 344s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 344s make: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 344s make: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/libinetutils' 344s CC argcv.o 344s CC cleansess.o 344s cleansess.c: In function ‘cleanup_session’: 344s cleansess.c:65:3: warning: ignoring return value of ‘chown’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 344s 65 | chown (tty, 0, 0); 344s | ^~~~~~~~~~~~~~~~~ 344s cleansess.c:67:3: warning: ignoring return value of ‘fchown’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 344s 67 | fchown (pty_fd, 0, 0); 344s | ^~~~~~~~~~~~~~~~~~~~~ 344s CC daemon.o 344s CC defauthors.o 344s CC if_index.o 344s CC kcmd.o 344s CC kerberos5.o 344s CC krcmd.o 344s CC localhost.o 344s CC logwtmpko.o 344s In file included from logwtmpko.c:26: 344s logwtmp.c: In function ‘_logwtmp’: 344s logwtmp.c:83:9: warning: ignoring return value of ‘ftruncate’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 344s 83 | ftruncate (fd, st.st_size); 344s | ^~~~~~~~~~~~~~~~~~~~~~~~~~ 344s CC setsig.o 344s CC shishi.o 344s CC tftpsubs.o 344s CC ttymsg.o 344s CC utmp_init.o 344s CC utmp_logout.o 344s AR libinetutils.a 344s make: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/libinetutils' 344s make: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 344s sed -e 's,[@]GREP[@],/usr/bin/grep,g' -e 's,[@]EGREP[@],/usr/bin/grep -E,g' -e 's,[@]FGREP[@],/usr/bin/grep -F,g' -e 's,[@]SED[@],/usr/bin/sed,g' -e 's,[@]DD[@],/usr/bin/dd,g' -e 's,[@]MKTEMP[@],/usr/bin/mktemp,g' -e 's,[@]NETSTAT[@],/usr/bin/netstat,g' -e 's,[@]TARGET[@],127.0.0.1,g' -e 's,[@]TARGET6[@],::1,g' -e 's,[@]TEST_IPV4[@],auto,g' -e 's,[@]TEST_IPV6[@],auto,g' < ./tools.sh.in > tools.sh 344s make check-am 344s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 344s CC identify.o 345s CCLD identify 345s make localhost readutmp runtime-ipv6 test-snprintf waitdaemon addrpeek tcpget \ 345s utmp.sh syslogd.sh inetd.sh telnet-localhost.sh hostname.sh dnsdomainname.sh ifconfig.sh 345s make[2]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 345s CC localhost.o 345s CCLD localhost 345s CC readutmp.o 345s CCLD readutmp 345s CC runtime-ipv6.o 345s CCLD runtime-ipv6 345s CC test-snprintf.o 345s CCLD test-snprintf 345s CC waitdaemon.o 345s CCLD waitdaemon 345s CC addrpeek.o 345s addrpeek.c: In function ‘write_environment’: 345s addrpeek.c:107:7: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 345s 107 | write (fd, *envp, strlen (*envp)); 345s | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 345s addrpeek.c:108:7: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 345s 108 | write (fd, SEPARATOR, strlen (SEPARATOR)); 345s | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 345s CCLD addrpeek 345s CC tcpget.o 345s tcpget.c: In function ‘main’: 345s tcpget.c:115:9: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 345s 115 | write (STDOUT_FILENO, buffer, n); 345s | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 345s CCLD tcpget 345s make[2]: Nothing to be done for 'utmp.sh'. 345s make[2]: Nothing to be done for 'syslogd.sh'. 345s make[2]: Nothing to be done for 'inetd.sh'. 345s make[2]: Nothing to be done for 'telnet-localhost.sh'. 345s make[2]: Nothing to be done for 'hostname.sh'. 345s make[2]: Nothing to be done for 'dnsdomainname.sh'. 345s make[2]: Nothing to be done for 'ifconfig.sh'. 345s make[2]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 345s make check-TESTS 345s make[2]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 345s make[3]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 345s PASS: localhost 345s SKIP: test-snprintf 345s PASS: waitdaemon 345s PASS: utmp.sh 351s PASS: syslogd.sh 364s PASS: inetd.sh 364s SKIP: telnet-localhost.sh 364s PASS: hostname.sh 364s PASS: dnsdomainname.sh 364s PASS: ifconfig.sh 364s ============================================================================ 364s Testsuite summary for GNU inetutils 2.5 364s ============================================================================ 364s # TOTAL: 10 364s # PASS: 8 364s # SKIP: 2 364s # XFAIL: 0 364s # FAIL: 0 364s # XPASS: 0 364s # ERROR: 0 364s ============================================================================ 364s make[3]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 364s make[2]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 364s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 364s make: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 364s /tmp/autopkgtest.W6YCXG/wrapper.sh: checking for leaked background processes... 364s /tmp/autopkgtest.W6YCXG/wrapper.sh: waiting for tee/cat subprocesses... 364s /tmp/autopkgtest.W6YCXG/wrapper.sh: cleaning up... 364s /tmp/autopkgtest.W6YCXG/wrapper.sh: Exit status: 0 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest [20:47:35]: test test-commands: -----------------------] 364s autopkgtest: DBG: testbed executing test finished with exit status 0 364s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-commands-stdout /tmp/autopkgtest-work._9t7rhyn/out/test-commands-stdout 364s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-commands-stderr /tmp/autopkgtest-work._9t7rhyn/out/test-commands-stderr 364s autopkgtest: DBG: got reply from testbed: ok 365s test-commands PASS 365s autopkgtest [20:47:36]: test test-commands: - - - - - - - - - - results - - - - - - - - - - 365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-commands-artifacts/ /tmp/autopkgtest-work._9t7rhyn/out/artifacts/ 365s autopkgtest: DBG: got reply from testbed: ok 365s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.W6YCXG/test-commands-artifacts', '/tmp/autopkgtest.W6YCXG/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest [20:47:36]: test test-root-commands: preparing testbed 365s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-tools', 'inetutils-syslogd', 'inetutils-inetd', 'inetutils-telnet'], deps_new=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-ftp', 'inetutils-ftpd', 'inetutils-traceroute'] 365s autopkgtest: DBG: testbed reset 365s autopkgtest: DBG: sending command to testbed: revert 492s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.W6YCXG 492s autopkgtest: DBG: sending command to testbed: print-execute-command 492s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.zslb7fbc/runcmd 492s autopkgtest: DBG: sending command to testbed: capabilities 492s autopkgtest: DBG: got reply from testbed: ok root-on-testbed revert-full-system reboot revert ok suggested-normal-user=ubuntu isolation-machine 492s autopkgtest: DBG: testbed capabilities: ['root-on-testbed', 'revert-full-system', 'reboot', 'revert', 'ok', 'suggested-normal-user=ubuntu', 'isolation-machine', 'has_internet'] 492s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 492s autopkgtest: DBG: testbed command exited with code 0 492s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.W6YCXG/wrapper.sh 492s autopkgtest: DBG: got reply from testbed: ok 492s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/wrapper.sh'], kind short, sout raw, serr pipe, env [] 492s autopkgtest: DBG: testbed command exited with code 0 492s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 492s autopkgtest: DBG: testbed command exited with code 0 492s autopkgtest [20:49:43]: testbed dpkg architecture: s390x 492s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 492s autopkgtest: DBG: testbed command exited with code 0 492s autopkgtest [20:49:43]: testbed apt version: 2.9.30 492s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 493s autopkgtest: DBG: testbed command exited with code 0 493s autopkgtest: DBG: testbed has eatmydata 493s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 493s autopkgtest: DBG: testbed command exited with code 0 493s autopkgtest [20:49:44]: @@@@@@@@@@@@@@@@@@@@ test bed setup 493s 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 [] 493s autopkgtest: DBG: testbed command exited with code 0 493s autopkgtest [20:49:44]: testbed release detected to be: plucky 493s 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 [] 493s autopkgtest: DBG: testbed command exited with code 0 493s 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 [] 493s autopkgtest: DBG: testbed command exited with code 0 493s autopkgtest: DBG: adding APT source: Types: deb deb-src 493s URIs: http://ftpmaster.internal/ubuntu/ 493s Suites: plucky-proposed 493s Components: main restricted universe multiverse 493s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 493s 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 [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 494s Package: * 494s Pin: release plucky-proposed 494s Pin-Priority: 500 494s 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 [] 494s autopkgtest: DBG: testbed command exited with code 0 494s autopkgtest [20:49:45]: updating testbed package index (apt update) 494s 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'] 494s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 494s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 494s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 494s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 495s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.5 kB] 495s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [78.4 kB] 495s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 495s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [731 kB] 495s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [103 kB] 495s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 495s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [657 kB] 495s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5272 B] 495s Fetched 1704 kB in 1s (1925 kB/s) 495s Reading package lists... 496s autopkgtest: DBG: testbed command exited with code 0 496s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 496s Package: * 496s Pin: release plucky-proposed 496s Pin-Priority: 100 496s 496s Package: src:systemd:any src:auto-multiple-choice:any src:glibc:any src:openssh:any src:php-twig:any src:symfony:any 496s Pin: release plucky-proposed 496s Pin-Priority: 995 496s 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:systemd:any src:auto-multiple-choice:any src:glibc:any src:openssh:any src:php-twig:any src:symfony:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 496s autopkgtest: DBG: testbed command exited with code 0 496s 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.W6YCXG/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 496s autopkgtest: DBG: testbed command exited with code 0 496s 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'] 496s + lsb_release --codename --short 496s + RELEASE=plucky 496s + cat 496s + [ plucky != trusty ] 496s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 496s Reading package lists... 496s Building dependency tree... 496s Reading state information... 496s Calculating upgrade... 496s The following packages were automatically installed and are no longer required: 496s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 496s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 496s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 496s linux-tools-6.11.0-8-generic 496s Use 'sudo apt autoremove' to remove them. 496s The following packages will be upgraded: 496s apparmor iproute2 libapparmor1 libgpgme11t64 liblsof0 libp11-kit0 496s liburcu8t64 lsof python-apt-common python3-apt sysvinit-utils 497s 11 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 497s Need to get 3066 kB of archives. 497s After this operation, 212 kB of additional disk space will be used. 497s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 497s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 497s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 497s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 497s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python-apt-common all 2.9.9 [21.2 kB] 497s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apt s390x 2.9.9 [185 kB] 497s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu2 [758 kB] 497s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liburcu8t64 s390x 0.15.1-1 [66.0 kB] 497s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 497s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 497s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 497s Preconfiguring packages ... 497s Fetched 3066 kB in 1s (4322 kB/s) 498s (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 ... 81030 files and directories currently installed.) 498s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 498s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 498s Setting up sysvinit-utils (3.14-1ubuntu1) ... 498s (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 ... 81030 files and directories currently installed.) 498s Preparing to unpack .../0-iproute2_6.13.0-1ubuntu1_s390x.deb ... 498s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 498s Preparing to unpack .../1-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 498s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 498s Preparing to unpack .../2-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 498s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 498s Preparing to unpack .../3-python-apt-common_2.9.9_all.deb ... 498s Unpacking python-apt-common (2.9.9) over (2.9.8) ... 498s Preparing to unpack .../4-python3-apt_2.9.9_s390x.deb ... 498s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 498s for fn in glob1(directory, "%s.*" % fname): 498s Unpacking python3-apt (2.9.9) over (2.9.8) ... 498s Preparing to unpack .../5-apparmor_4.1.0~beta5-0ubuntu2_s390x.deb ... 498s Unpacking apparmor (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 498s dpkg: warning: unable to delete old directory '/lib/apparmor': Directory not empty 499s Preparing to unpack .../6-liburcu8t64_0.15.1-1_s390x.deb ... 499s Unpacking liburcu8t64:s390x (0.15.1-1) over (0.15.0-1) ... 499s Preparing to unpack .../7-lsof_4.99.4+dfsg-1_s390x.deb ... 499s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 499s Preparing to unpack .../8-liblsof0_4.99.4+dfsg-1_s390x.deb ... 499s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 499s Preparing to unpack .../9-libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 499s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 499s Setting up liburcu8t64:s390x (0.15.1-1) ... 499s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 499s Setting up liblsof0 (4.99.4+dfsg-1) ... 499s Setting up iproute2 (6.13.0-1ubuntu1) ... 499s Setting up apparmor (4.1.0~beta5-0ubuntu2) ... 499s Installing new version of config file /etc/apparmor.d/abstractions/dconf ... 499s Installing new version of config file /etc/apparmor.d/abstractions/mesa ... 499s Installing new version of config file /etc/apparmor.d/abstractions/nameservice ... 499s Installing new version of config file /etc/apparmor.d/abstractions/php ... 499s Installing new version of config file /etc/apparmor.d/abstractions/python ... 499s Installing new version of config file /etc/apparmor.d/slirp4netns ... 499s Installing new version of config file /etc/apparmor.d/toybox ... 499s Installing new version of config file /etc/apparmor.d/transmission ... 499s Installing new version of config file /etc/apparmor.d/tunables/global ... 499s Reloading AppArmor profiles 501s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 501s Setting up lsof (4.99.4+dfsg-1) ... 501s Setting up python-apt-common (2.9.9) ... 501s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 501s Setting up python3-apt (2.9.9) ... 501s Processing triggers for systemd (257.2-3ubuntu1) ... 501s Processing triggers for man-db (2.13.0-1) ... 502s Processing triggers for libc-bin (2.40-4ubuntu1) ... 502s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 502s + /usr/lib/apt/apt-helper analyze-pattern ?true 502s + + sed s/\./\\./g 502s uname -r 502s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 502s + apt list ?obsolete 502s + tail -n+2 502s + cut -d/ -f1 502s + grep -v ^linux-.*6\.12\.0-15-generic.* 502s + true 502s + obsolete_pkgs= 502s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 503s Reading package lists... 503s Building dependency tree... 503s Reading state information... 503s The following packages will be REMOVED: 503s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 503s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 503s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 503s linux-tools-6.11.0-8-generic* 503s 0 upgraded, 0 newly installed, 9 to remove and 19 not upgraded. 503s After this operation, 167 MB disk space will be freed. 503s (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 ... 81079 files and directories currently installed.) 503s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 503s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 503s Removing libpython3.12t64:s390x (3.12.9-1) ... 503s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 503s Removing libnsl2:s390x (1.3.0-3build3) ... 503s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 503s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 503s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 504s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 504s Processing triggers for libc-bin (2.40-4ubuntu1) ... 504s (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 ... 55979 files and directories currently installed.) 504s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 504s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 504s + grep -q trusty /etc/lsb-release 504s + [ ! -d /usr/share/doc/unattended-upgrades ] 504s + [ ! -d /usr/share/doc/lxd ] 504s + [ ! -d /usr/share/doc/lxd-client ] 504s + [ ! -d /usr/share/doc/snapd ] 504s + type iptables 504s + cat 504s + chmod 755 /etc/rc.local 504s + . /etc/rc.local 504s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 504s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 504s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 504s + uname -m 504s + [ s390x = ppc64le ] 504s + [ -d /run/systemd/system ] 504s + systemd-detect-virt --quiet --vm 504s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 504s + cat 504s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 504s + echo COMPRESS=lz4 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [20:49:55]: upgrading testbed (apt dist-upgrade and autopurge) 504s 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'] 505s Reading package lists... 505s Building dependency tree... 505s Reading state information... 505s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 505s Starting 2 pkgProblemResolver with broken count: 0 505s Done 505s Entering ResolveByKeep 505s 505s The following packages will be upgraded: 505s libc-bin libc-dev-bin libc6 libc6-dev libnss-systemd libpam-systemd 505s libsystemd-shared libsystemd0 libudev1 locales openssh-client openssh-server 505s openssh-sftp-server systemd systemd-cryptsetup systemd-resolved systemd-sysv 505s systemd-timesyncd udev 505s 19 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 505s Need to get 19.5 MB of archives. 505s After this operation, 304 kB of additional disk space will be used. 505s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 506s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 506s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 506s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 506s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 506s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libsystemd0 s390x 257.3-1ubuntu1 [534 kB] 506s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-sysv s390x 257.3-1ubuntu1 [11.8 kB] 506s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-resolved s390x 257.3-1ubuntu1 [326 kB] 506s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libnss-systemd s390x 257.3-1ubuntu1 [180 kB] 506s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpam-systemd s390x 257.3-1ubuntu1 [263 kB] 507s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libsystemd-shared s390x 257.3-1ubuntu1 [2325 kB] 507s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd s390x 257.3-1ubuntu1 [3025 kB] 507s Get:13 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-timesyncd s390x 257.3-1ubuntu1 [41.3 kB] 507s Get:14 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x systemd-cryptsetup s390x 257.3-1ubuntu1 [128 kB] 507s Get:15 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x udev s390x 257.3-1ubuntu1 [1400 kB] 507s Get:16 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libudev1 s390x 257.3-1ubuntu1 [204 kB] 507s Get:17 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x openssh-sftp-server s390x 1:9.9p1-3ubuntu3 [38.2 kB] 507s Get:18 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x openssh-server s390x 1:9.9p1-3ubuntu3 [552 kB] 507s Get:19 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x openssh-client s390x 1:9.9p1-3ubuntu3 [955 kB] 507s Preconfiguring packages ... 507s Fetched 19.5 MB in 2s (12.6 MB/s) 507s (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 ... 55977 files and directories currently installed.) 507s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 507s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 507s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 507s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 507s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 507s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 508s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 508s Checking for services that may need to be restarted... 508s Checking init scripts... 508s Checking for services that may need to be restarted... 508s Checking init scripts... 508s Stopping some services possibly affected by the upgrade (will be restarted later): 508s cron: stopping...done. 508s 508s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 508s Setting up libc6:s390x (2.41-1ubuntu1) ... 508s Checking for services that may need to be restarted... 508s Checking init scripts... 508s Restarting services possibly affected by the upgrade: 508s cron: restarting...done. 508s 508s Services restarted successfully. 508s (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 ... 55978 files and directories currently installed.) 508s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 508s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 508s Setting up libc-bin (2.41-1ubuntu1) ... 508s (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 ... 55978 files and directories currently installed.) 508s Preparing to unpack .../libsystemd0_257.3-1ubuntu1_s390x.deb ... 508s Unpacking libsystemd0:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 508s Setting up libsystemd0:s390x (257.3-1ubuntu1) ... 508s (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 ... 55978 files and directories currently installed.) 508s Preparing to unpack .../systemd-sysv_257.3-1ubuntu1_s390x.deb ... 508s Unpacking systemd-sysv (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 508s Preparing to unpack .../systemd-resolved_257.3-1ubuntu1_s390x.deb ... 508s Unpacking systemd-resolved (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 508s Preparing to unpack .../libnss-systemd_257.3-1ubuntu1_s390x.deb ... 508s Unpacking libnss-systemd:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 508s Preparing to unpack .../libpam-systemd_257.3-1ubuntu1_s390x.deb ... 508s Unpacking libpam-systemd:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 508s Preparing to unpack .../libsystemd-shared_257.3-1ubuntu1_s390x.deb ... 508s Unpacking libsystemd-shared:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 508s Setting up libsystemd-shared:s390x (257.3-1ubuntu1) ... 508s (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 ... 55978 files and directories currently installed.) 508s Preparing to unpack .../systemd_257.3-1ubuntu1_s390x.deb ... 508s Unpacking systemd (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 509s Preparing to unpack .../systemd-timesyncd_257.3-1ubuntu1_s390x.deb ... 509s Unpacking systemd-timesyncd (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 509s Preparing to unpack .../systemd-cryptsetup_257.3-1ubuntu1_s390x.deb ... 509s Unpacking systemd-cryptsetup (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 509s Preparing to unpack .../udev_257.3-1ubuntu1_s390x.deb ... 509s Unpacking udev (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 509s Preparing to unpack .../libudev1_257.3-1ubuntu1_s390x.deb ... 509s Unpacking libudev1:s390x (257.3-1ubuntu1) over (257.2-3ubuntu1) ... 509s Setting up libudev1:s390x (257.3-1ubuntu1) ... 509s (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 ... 55978 files and directories currently installed.) 509s Preparing to unpack .../openssh-sftp-server_1%3a9.9p1-3ubuntu3_s390x.deb ... 509s Unpacking openssh-sftp-server (1:9.9p1-3ubuntu3) over (1:9.9p1-3ubuntu2) ... 509s Preparing to unpack .../openssh-server_1%3a9.9p1-3ubuntu3_s390x.deb ... 509s Unpacking openssh-server (1:9.9p1-3ubuntu3) over (1:9.9p1-3ubuntu2) ... 509s Preparing to unpack .../openssh-client_1%3a9.9p1-3ubuntu3_s390x.deb ... 509s Unpacking openssh-client (1:9.9p1-3ubuntu3) over (1:9.9p1-3ubuntu2) ... 509s Setting up openssh-client (1:9.9p1-3ubuntu3) ... 509s Setting up systemd (257.3-1ubuntu1) ... 509s /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring. 509s Created symlink '/run/systemd/system/tmp.mount' → '/dev/null'. 509s /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring. 510s Setting up locales (2.41-1ubuntu1) ... 510s Installing new version of config file /etc/locale.alias ... 510s Generating locales (this might take a while)... 511s en_US.UTF-8... done 511s Generation complete. 511s Setting up systemd-cryptsetup (257.3-1ubuntu1) ... 511s Setting up systemd-timesyncd (257.3-1ubuntu1) ... 512s systemd-time-wait-sync.service is a disabled or a static unit not running, not starting it. 512s Setting up udev (257.3-1ubuntu1) ... 512s Setting up libc-dev-bin (2.41-1ubuntu1) ... 512s Setting up systemd-resolved (257.3-1ubuntu1) ... 513s Setting up openssh-sftp-server (1:9.9p1-3ubuntu3) ... 513s Setting up systemd-sysv (257.3-1ubuntu1) ... 513s Setting up openssh-server (1:9.9p1-3ubuntu3) ... 514s Setting up libnss-systemd:s390x (257.3-1ubuntu1) ... 514s Setting up libpam-systemd:s390x (257.3-1ubuntu1) ... 514s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 514s Processing triggers for libc-bin (2.41-1ubuntu1) ... 514s Processing triggers for ufw (0.36.2-9) ... 514s Processing triggers for man-db (2.13.0-1) ... 514s Processing triggers for dbus (1.16.0-1ubuntu1) ... 514s Processing triggers for shared-mime-info (2.4-5) ... 514s Warning: program compiled against libxml 212 using older 209 515s Processing triggers for initramfs-tools (0.145ubuntu2) ... 515s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 515s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 519s Using config file '/etc/zipl.conf' 519s Building bootmap in '/boot' 519s Adding IPL section 'ubuntu' (default) 519s Preparing boot device for LD-IPL: vda (0000). 519s Done. 520s autopkgtest: DBG: testbed command exited with code 0 520s 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'] 520s Reading package lists... 520s Building dependency tree... 520s Reading state information... 520s Starting pkgProblemResolver with broken count: 0 520s Starting 2 pkgProblemResolver with broken count: 0 520s Done 520s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 520s autopkgtest: DBG: testbed command exited with code 0 520s 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.W6YCXG/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 520s autopkgtest: DBG: testbed command exited with code 1 520s autopkgtest [20:50:11]: rebooting testbed after setup commands that affected boot 520s autopkgtest: DBG: sending command to testbed: reboot 534s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 540s autopkgtest: DBG: got reply from testbed: ok 540s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 540s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot 540s autopkgtest: DBG: got reply from testbed: ok 540s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare 541s autopkgtest: DBG: got reply from testbed: ok 541s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.W6YCXG/testbed-packages"], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/testbed-packages /tmp/autopkgtest-work._9t7rhyn/out/testbed-packages 542s autopkgtest: DBG: got reply from testbed: ok 542s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 542s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot 543s autopkgtest: DBG: got reply from testbed: ok 543s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 543s autopkgtest: DBG: testbed command exited with code 0 543s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 543s autopkgtest: DBG: testbed command exited with code 0 543s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 543s autopkgtest: DBG: testbed command exited with code 0 543s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG'], kind short, sout raw, serr pipe, env [] 543s autopkgtest: DBG: testbed command exited with code 0 543s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare 544s autopkgtest: DBG: got reply from testbed: ok 544s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 544s autopkgtest: DBG: testbed command exited with code 0 544s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.W6YCXG/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 544s autopkgtest: DBG: testbed command exited with code 0 544s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 544s autopkgtest: DBG: testbed command exited with code 0 544s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 544s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-ftp', 'inetutils-ftpd', 'inetutils-traceroute'] 544s autopkgtest: DBG: install-deps: satisfying build-essential, autoconf, automake, gettext, file, netbase, net-tools, inetutils-ftp, inetutils-ftpd, inetutils-traceroute 544s autopkgtest: DBG: can use apt-get on testbed: True 544s 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', 'build-essential, autoconf, automake, gettext, file, netbase, net-tools, inetutils-ftp, inetutils-ftpd, inetutils-traceroute'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 544s Reading package lists... 544s Building dependency tree... 544s Reading state information... 545s Starting pkgProblemResolver with broken count: 0 545s Starting 2 pkgProblemResolver with broken count: 0 545s Done 545s The following NEW packages will be installed: 545s autoconf automake autotools-dev build-essential cpp cpp-14 545s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ g++-14 g++-14-s390x-linux-gnu 545s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 545s gettext inetutils-ftp inetutils-ftpd inetutils-inetd inetutils-traceroute 545s libasan8 libcc1-0 libgcc-14-dev libgomp1 libisl23 libitm1 libmpc3 545s libstdc++-14-dev libubsan1 m4 net-tools tcpd update-inetd 545s 0 upgraded, 34 newly installed, 0 to remove and 0 not upgraded. 545s Need to get 51.6 MB of archives. 545s After this operation, 165 MB of additional disk space will be used. 545s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x tcpd s390x 7.6.q-35 [24.8 kB] 545s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x update-inetd all 4.53 [24.0 kB] 545s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-inetd s390x 2:2.5-5ubuntu1 [47.5 kB] 545s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 545s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 545s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 545s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 545s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 545s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 545s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 546s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 546s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 546s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 546s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 546s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 546s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 546s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 546s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 546s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 546s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 547s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 547s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 547s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 547s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 547s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 547s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 547s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 547s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 547s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 547s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 547s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-ftp s390x 2:2.5-5ubuntu1 [86.4 kB] 547s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-ftpd s390x 2:2.5-5ubuntu1 [76.1 kB] 547s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x net-tools s390x 2.10-1.1ubuntu1 [207 kB] 547s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x inetutils-traceroute s390x 2:2.5-5ubuntu1 [43.3 kB] 547s Preconfiguring packages ... 547s Fetched 51.6 MB in 2s (22.6 MB/s) 547s Selecting previously unselected package tcpd. 548s (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 ... 55978 files and directories currently installed.) 548s Preparing to unpack .../00-tcpd_7.6.q-35_s390x.deb ... 548s Unpacking tcpd (7.6.q-35) ... 548s Selecting previously unselected package update-inetd. 548s Preparing to unpack .../01-update-inetd_4.53_all.deb ... 548s Unpacking update-inetd (4.53) ... 548s Selecting previously unselected package inetutils-inetd. 548s Preparing to unpack .../02-inetutils-inetd_2%3a2.5-5ubuntu1_s390x.deb ... 548s Unpacking inetutils-inetd (2:2.5-5ubuntu1) ... 548s Selecting previously unselected package m4. 548s Preparing to unpack .../03-m4_1.4.19-5_s390x.deb ... 548s Unpacking m4 (1.4.19-5) ... 548s Selecting previously unselected package autoconf. 548s Preparing to unpack .../04-autoconf_2.72-3_all.deb ... 548s Unpacking autoconf (2.72-3) ... 548s Selecting previously unselected package autotools-dev. 548s Preparing to unpack .../05-autotools-dev_20220109.1_all.deb ... 548s Unpacking autotools-dev (20220109.1) ... 548s Selecting previously unselected package automake. 548s Preparing to unpack .../06-automake_1%3a1.17-3_all.deb ... 548s Unpacking automake (1:1.17-3) ... 548s Selecting previously unselected package libisl23:s390x. 548s Preparing to unpack .../07-libisl23_0.27-1_s390x.deb ... 548s Unpacking libisl23:s390x (0.27-1) ... 548s Selecting previously unselected package libmpc3:s390x. 548s Preparing to unpack .../08-libmpc3_1.3.1-1build2_s390x.deb ... 548s Unpacking libmpc3:s390x (1.3.1-1build2) ... 548s Selecting previously unselected package cpp-14-s390x-linux-gnu. 548s Preparing to unpack .../09-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 548s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 548s Selecting previously unselected package cpp-14. 548s Preparing to unpack .../10-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 548s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 548s Selecting previously unselected package cpp-s390x-linux-gnu. 548s Preparing to unpack .../11-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 548s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 548s Selecting previously unselected package cpp. 548s Preparing to unpack .../12-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 548s Unpacking cpp (4:14.2.0-1ubuntu1) ... 548s Selecting previously unselected package libcc1-0:s390x. 548s Preparing to unpack .../13-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 548s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 548s Selecting previously unselected package libgomp1:s390x. 548s Preparing to unpack .../14-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 548s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 548s Selecting previously unselected package libitm1:s390x. 548s Preparing to unpack .../15-libitm1_15-20250213-1ubuntu1_s390x.deb ... 548s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 548s Selecting previously unselected package libasan8:s390x. 548s Preparing to unpack .../16-libasan8_15-20250213-1ubuntu1_s390x.deb ... 548s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 548s Selecting previously unselected package libubsan1:s390x. 548s Preparing to unpack .../17-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 548s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 548s Selecting previously unselected package libgcc-14-dev:s390x. 548s Preparing to unpack .../18-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 548s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 548s Selecting previously unselected package gcc-14-s390x-linux-gnu. 548s Preparing to unpack .../19-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 548s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 548s Selecting previously unselected package gcc-14. 548s Preparing to unpack .../20-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 548s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 548s Selecting previously unselected package gcc-s390x-linux-gnu. 548s Preparing to unpack .../21-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 548s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 548s Selecting previously unselected package gcc. 548s Preparing to unpack .../22-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 548s Unpacking gcc (4:14.2.0-1ubuntu1) ... 548s Selecting previously unselected package libstdc++-14-dev:s390x. 548s Preparing to unpack .../23-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 548s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 549s Selecting previously unselected package g++-14-s390x-linux-gnu. 549s Preparing to unpack .../24-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 549s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 549s Selecting previously unselected package g++-14. 549s Preparing to unpack .../25-g++-14_14.2.0-17ubuntu1_s390x.deb ... 549s Unpacking g++-14 (14.2.0-17ubuntu1) ... 549s Selecting previously unselected package g++-s390x-linux-gnu. 549s Preparing to unpack .../26-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 549s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 549s Selecting previously unselected package g++. 549s Preparing to unpack .../27-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 549s Unpacking g++ (4:14.2.0-1ubuntu1) ... 549s Selecting previously unselected package build-essential. 549s Preparing to unpack .../28-build-essential_12.10ubuntu1_s390x.deb ... 549s Unpacking build-essential (12.10ubuntu1) ... 549s Selecting previously unselected package gettext. 549s Preparing to unpack .../29-gettext_0.23.1-1_s390x.deb ... 549s Unpacking gettext (0.23.1-1) ... 549s Selecting previously unselected package inetutils-ftp. 549s Preparing to unpack .../30-inetutils-ftp_2%3a2.5-5ubuntu1_s390x.deb ... 549s Unpacking inetutils-ftp (2:2.5-5ubuntu1) ... 549s Selecting previously unselected package inetutils-ftpd. 549s Preparing to unpack .../31-inetutils-ftpd_2%3a2.5-5ubuntu1_s390x.deb ... 549s Unpacking inetutils-ftpd (2:2.5-5ubuntu1) ... 549s Selecting previously unselected package net-tools. 549s Preparing to unpack .../32-net-tools_2.10-1.1ubuntu1_s390x.deb ... 549s Unpacking net-tools (2.10-1.1ubuntu1) ... 549s Selecting previously unselected package inetutils-traceroute. 549s Preparing to unpack .../33-inetutils-traceroute_2%3a2.5-5ubuntu1_s390x.deb ... 549s Unpacking inetutils-traceroute (2:2.5-5ubuntu1) ... 549s Setting up net-tools (2.10-1.1ubuntu1) ... 549s Setting up update-inetd (4.53) ... 549s Setting up m4 (1.4.19-5) ... 549s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 549s Setting up inetutils-traceroute (2:2.5-5ubuntu1) ... 549s update-alternatives: using /usr/bin/inetutils-traceroute to provide /usr/bin/traceroute (traceroute) in auto mode 549s Setting up autotools-dev (20220109.1) ... 549s Setting up inetutils-ftp (2:2.5-5ubuntu1) ... 549s Setting up libmpc3:s390x (1.3.1-1build2) ... 549s Setting up autoconf (2.72-3) ... 549s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 549s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 549s Setting up libisl23:s390x (0.27-1) ... 549s Setting up tcpd (7.6.q-35) ... 549s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 549s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 549s Setting up automake (1:1.17-3) ... 549s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 549s Setting up gettext (0.23.1-1) ... 549s Setting up inetutils-inetd (2:2.5-5ubuntu1) ... 549s Created symlink '/etc/systemd/system/inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 549s Created symlink '/etc/systemd/system/multi-user.target.wants/inetutils-inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 550s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 550s Setting up cpp-14 (14.2.0-17ubuntu1) ... 550s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 550s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 550s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 550s Setting up inetutils-ftpd (2:2.5-5ubuntu1) ... 550s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 550s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 550s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 550s Setting up cpp (4:14.2.0-1ubuntu1) ... 550s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 550s Setting up gcc-14 (14.2.0-17ubuntu1) ... 550s Setting up g++-14 (14.2.0-17ubuntu1) ... 550s Setting up gcc (4:14.2.0-1ubuntu1) ... 550s Setting up g++ (4:14.2.0-1ubuntu1) ... 550s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 550s Setting up build-essential (12.10ubuntu1) ... 550s Processing triggers for libc-bin (2.41-1ubuntu1) ... 550s Processing triggers for man-db (2.13.0-1) ... 551s Processing triggers for install-info (7.1.1-1) ... 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-ftp'], kind short, sout pipe, serr pipe, env [] 551s autopkgtest: DBG: testbed command exited with code 0 551s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-ftpd'], kind short, sout pipe, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-traceroute'], kind short, sout pipe, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.W6YCXG/test-root-commands-packages.all"], kind short, sout raw, serr pipe, env [] 552s autopkgtest: DBG: testbed command exited with code 0 552s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-root-commands-packages.all /tmp/autopkgtest-work._9t7rhyn/out/test-root-commands-packages.all 552s autopkgtest: DBG: got reply from testbed: ok 552s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.W6YCXG/build.S8J/src'], kind short, sout raw, serr raw, env [] 553s autopkgtest: DBG: testbed command exited with code 1 553s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.W6YCXG/build.S8J'], kind short, sout raw, serr pipe, env [] 553s autopkgtest: DBG: testbed command exited with code 0 553s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work._9t7rhyn/out/tests-tree/ /tmp/autopkgtest.W6YCXG/build.S8J/src/ 556s autopkgtest: DBG: got reply from testbed: ok 556s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.W6YCXG/build.S8J/src'], kind short, sout raw, serr pipe, env [] 556s autopkgtest: DBG: testbed command exited with code 0 556s autopkgtest [20:50:47]: test test-root-commands: [----------------------- 556s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.W6YCXG/wrapper.sh --debug --artifacts=/tmp/autopkgtest.W6YCXG/test-root-commands-artifacts --chdir=/tmp/autopkgtest.W6YCXG/build.S8J/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.W6YCXG/test-root-commands-stderr --stdout=/tmp/autopkgtest.W6YCXG/test-root-commands-stdout --tmp=/tmp/autopkgtest.W6YCXG/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--env=ADT_TEST_TRIGGERS=systemd/257.3-1ubuntu1 auto-multiple-choice/1.6.0-4build1 glibc/2.41-1ubuntu1 openssh/1:9.9p1-3ubuntu3 php-twig/3.20.0-1 symfony/6.4.18+dfsg-1' --make-executable=/tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-root-commands -- /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-root-commands"], kind test, sout raw, serr raw, env [] 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.W6YCXG/test-root-commands-artifacts 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: changing to directory: /tmp/autopkgtest.W6YCXG/build.S8J/src 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: LANG=C.UTF-8 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LANGUAGE 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_ADDRESS 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_ALL 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_COLLATE 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_CTYPE 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_IDENTIFICATION 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_MEASUREMENT 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_MESSAGES 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_MONETARY 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_NAME 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_NUMERIC 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_PAPER 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_TELEPHONE 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: unsetting environment: LC_TIME 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: pretending to be a login shell 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: will write standard error to /tmp/autopkgtest.W6YCXG/test-root-commands-stderr 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: will write stdout to /tmp/autopkgtest.W6YCXG/test-root-commands-stdout 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.W6YCXG/autopkgtest_tmp 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=systemd/257.3-1ubuntu1 auto-multiple-choice/1.6.0-4build1 glibc/2.41-1ubuntu1 openssh/1:9.9p1-3ubuntu3 php-twig/3.20.0-1 symfony/6.4.18+dfsg-1 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: marking as executable: /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-root-commands 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: command to run: /tmp/autopkgtest.W6YCXG/build.S8J/src/debian/tests/test-root-commands 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: copying /tmp/tmp.oxcgAzGOhn/out to stdout and file: /tmp/autopkgtest.W6YCXG/test-root-commands-stdout 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: copying /tmp/tmp.oxcgAzGOhn/err to standard error and file: /tmp/autopkgtest.W6YCXG/test-root-commands-stdout 556s /tmp/autopkgtest.W6YCXG/wrapper.sh: writing script pid 1803 to /tmp/autopkgtest_script_pid 566s checking build system type... s390x-ibm-linux-gnu 566s checking host system type... s390x-ibm-linux-gnu 566s checking for a BSD-compatible install... /usr/bin/install -c 566s checking whether sleep supports fractional seconds... yes 566s checking filesystem timestamp resolution... 0.01 566s checking whether build environment is sane... yes 566s checking for a race-free mkdir -p... /usr/bin/mkdir -p 566s checking for gawk... gawk 566s checking whether make sets $(MAKE)... yes 566s checking whether make supports nested variables... yes 566s checking xargs -n works... yes 566s checking for gcc... gcc 566s checking whether the C compiler works... yes 566s checking for C compiler default output file name... a.out 566s checking for suffix of executables... 566s checking whether we are cross compiling... no 566s checking for suffix of object files... o 566s checking whether the compiler supports GNU C... yes 566s checking whether gcc accepts -g... yes 566s checking for gcc option to enable C11 features... none needed 566s checking whether gcc understands -c and -o together... yes 566s checking whether the compiler is clang... no 566s checking for compiler option needed when checking for declarations... none 566s checking whether make supports the include directive... yes (GNU style) 566s checking dependency style of gcc... gcc3 566s checking for stdio.h... yes 566s checking for stdlib.h... yes 566s checking for string.h... yes 566s checking for inttypes.h... yes 566s checking for stdint.h... yes 566s checking for strings.h... yes 567s checking for sys/stat.h... yes 567s checking for sys/types.h... yes 567s checking for unistd.h... yes 567s checking for wchar.h... yes 567s checking for minix/config.h... no 567s checking for features.h... yes 567s checking for linewrap.h... no 567s checking for arpa/inet.h... yes 567s checking for sys/socket.h... yes 567s checking for uchar.h... yes 567s checking for sys/param.h... yes 567s checking for dirent.h... yes 567s checking for error.h... yes 567s checking for fnmatch.h... yes 567s checking for pty.h... yes 567s checking for termios.h... yes 567s checking for sys/vfs.h... yes 567s checking for netdb.h... yes 567s checking for netinet/in.h... yes 567s checking for getopt.h... yes 567s checking for sys/cdefs.h... yes 567s checking for stdio_ext.h... yes 567s checking for grp.h... yes 567s checking for glob.h... yes 567s checking for threads.h... yes 567s checking for limits.h... yes 567s checking for crtdefs.h... no 567s checking for wctype.h... yes 567s checking for langinfo.h... yes 567s checking for xlocale.h... no 567s checking for utmp.h... yes 567s checking for util.h... no 567s checking for libutil.h... no 567s checking for sys/mman.h... yes 567s checking for obstack.h... yes 567s checking for poll.h... yes 567s checking for sys/ioctl.h... yes 567s checking for sys/filio.h... no 567s checking for utmpx.h... yes 567s checking for OS.h... no 567s checking for malloc.h... yes 568s checking for sys/select.h... yes 568s checking for sys/time.h... yes 568s checking for stdbool.h... yes 568s checking for stdckdint.h... yes 568s checking for sys/random.h... yes 568s checking for sys/uio.h... yes 568s checking for sysexits.h... yes 568s checking for vfork.h... no 568s checking whether it is safe to define __EXTENSIONS__... yes 568s checking whether _XOPEN_SOURCE should be defined... no 568s checking how to run the C preprocessor... gcc -E 568s checking for egrep -e... /usr/bin/grep -E 568s checking for Minix Amsterdam compiler... no 568s checking for ar... ar 568s checking the archiver (ar) interface... ar 568s checking for ar... (cached) ar 568s checking for ranlib... ranlib 568s checking for gcc option to enable large file support... none needed 568s configure: autobuild project... GNU inetutils 568s configure: autobuild revision... 2.5 568s configure: autobuild hostname... autopkgtest 568s configure: autobuild timestamp... 20250219T205059Z 568s checking the archiver (ar) interface... (cached) ar 568s checking for ar... (cached) ar 568s checking for dd... /usr/bin/dd 568s checking for mktemp... /usr/bin/mktemp 568s checking for netstat... /usr/bin/netstat 568s checking for rm... /usr/bin/rm 568s checking how to run the C preprocessor... gcc -E 568s checking for grep that handles long lines and -e... /usr/bin/grep 568s checking for egrep... /usr/bin/grep -E 568s checking for fgrep... /usr/bin/grep -F 568s checking whether make sets $(MAKE)... (cached) yes 568s checking for ranlib... (cached) ranlib 568s checking for bison... no 568s checking for byacc... no 568s checking whether ln -s works... yes 568s checking for a sed that does not truncate output... /usr/bin/sed 568s checking for size_t... yes 568s checking for working alloca.h... yes 568s checking for alloca... yes 568s checking for inline... inline 568s checking for C/C++ restrict keyword... __restrict__ 568s checking for gcc options needed to detect all undeclared functions... none needed 568s checking whether clearerr_unlocked is declared... yes 568s checking whether feof_unlocked is declared... yes 568s checking whether ferror_unlocked is declared... yes 568s checking whether fflush_unlocked is declared... yes 568s checking whether fgets_unlocked is declared... yes 568s checking whether fputc_unlocked is declared... yes 568s checking whether fputs_unlocked is declared... yes 568s checking whether fread_unlocked is declared... yes 568s checking whether fwrite_unlocked is declared... yes 568s checking whether getc_unlocked is declared... yes 568s checking whether getchar_unlocked is declared... yes 568s checking whether putc_unlocked is declared... yes 568s checking whether putchar_unlocked is declared... yes 568s checking for flockfile... yes 568s checking for funlockfile... yes 568s checking for btowc... yes 568s checking for mbrtowc... yes 568s checking for mbsinit... yes 568s checking for _set_invalid_parameter_handler... no 569s checking for fchdir... yes 569s checking for fcntl... yes 569s checking for symlink... yes 569s checking for fdopendir... yes 569s checking for fnmatch... yes 569s checking for mbsrtowcs... yes 569s checking for fstatat... yes 569s checking for openat... yes 569s checking for fstatfs... yes 569s checking for getdtablesize... yes 569s checking for getpass... yes 569s checking for getexecname... no 569s checking for getusershell... yes 569s checking for glob_pattern_p... yes 569s checking for isblank... yes 569s checking for iswcntrl... yes 569s checking for lstat... yes 569s checking for mprotect... yes 569s checking for memset_explicit... no 569s checking for memset_s... no 569s checking for getgrouplist... yes 569s checking for mkstemp... yes 569s checking for pipe... yes 569s checking for utmpname... yes 569s checking for utmpxname... yes 569s checking for iswctype... yes 569s checking for setenv... yes 569s checking for sleep... yes 569s checking for snprintf... yes 569s checking for strndup... yes 569s checking for vasnprintf... no 569s checking for wcrtomb... yes 569s checking for fork... yes 569s checking for vfork... yes 569s checking for getpagesize... yes 569s checking whether strerror_r is declared... yes 569s checking whether strerror_r returns char *... yes 569s checking whether the preprocessor supports include_next... yes 569s checking whether source code line length is unlimited... yes 569s checking whether uses 'inline' correctly... yes 570s checking for nl_langinfo and CODESET... yes 570s checking for a traditional french locale... none 570s checking whether char8_t is correctly defined... yes 570s checking whether char16_t is correctly defined... yes 570s checking whether char32_t is correctly defined... yes 570s checking for bit size of wchar_t... 32 570s checking for mbstate_t... yes 570s checking for a traditional japanese locale... none 570s checking for a french Unicode locale... none 570s checking for a transitional chinese locale... none 570s checking whether mbrtowc handles incomplete characters... guessing yes 570s checking whether mbrtowc works as well as mbtowc... guessing yes 570s checking whether mbrtoc32 is declared... yes 570s checking for mbrtoc32... yes 570s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 570s checking whether malloc is ptrdiff_t safe... yes 570s checking whether malloc, realloc, calloc set errno on failure... yes 570s checking if environ is properly declared... yes 570s checking for complete errno.h... yes 570s checking for error... yes 570s checking whether error_at_line is declared... yes 570s checking for error_at_line... yes 570s checking for working error function... yes 570s checking whether ctype.h defines __header_inline... no 570s checking whether fchdir is declared... yes 571s checking for working fcntl.h... yes 571s checking for pid_t... yes 571s checking for mode_t... yes 571s checking for promoted mode_t type... mode_t 571s checking whether strmode is declared... no 571s checking whether fopen recognizes a trailing slash... yes 571s checking whether fflush works on input streams... no 571s checking for library containing forkpty... none required 571s checking whether stdin defaults to large file offsets... yes 571s checking whether fseeko is declared... yes 571s checking for fseeko... yes 571s checking whether fflush works on input streams... (cached) no 571s checking whether stat file-mode macros are broken... no 572s checking for nlink_t... yes 572s checking whether lstat correctly handles trailing slash... yes 572s checking whether ftello is declared... yes 572s checking whether ungetc works on arbitrary bytes... yes 572s checking for ftello... yes 572s checking whether ftello works... yes 572s checking for O_CLOEXEC... yes 572s checking whether is self-contained... yes 572s checking for shutdown... yes 572s checking whether defines the SHUT_* macros... yes 572s checking for struct sockaddr_storage... yes 572s checking for sa_family_t... yes 572s checking for struct sockaddr_storage.ss_family... yes 572s checking for library containing gethostbyname... none required 572s checking for gethostbyname... yes 572s checking for library containing getservbyname... none required 572s checking for getservbyname... yes 572s checking for library containing inet_ntop... none required 572s checking whether inet_ntop is declared... yes 572s checking for IPv4 sockets... yes 572s checking for IPv6 sockets... yes 572s checking whether getcwd (NULL, 0) allocates memory for result... yes 572s checking for getcwd with POSIX signature... yes 572s checking whether getcwd is declared... yes 572s checking whether getdelim is declared... yes 572s checking whether getdtablesize is declared... yes 572s checking for uid_t... yes 572s checking for gid_t... yes 572s checking type of array argument to getgroups... gid_t 572s checking whether getline is declared... yes 572s checking whether getlogin_r is declared... yes 572s checking whether getlogin is declared... yes 572s checking for getopt.h... (cached) yes 572s checking for getopt_long_only... yes 573s checking whether getopt is POSIX compatible... yes 573s checking for working GNU getopt function... yes 573s checking for working GNU getopt_long function... yes 573s checking whether flockfile is declared... yes 573s checking whether funlockfile is declared... yes 573s checking for pthread.h... yes 573s checking for pthread_kill in -lpthread... yes 573s checking whether POSIX threads API is available... yes 573s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 573s checking whether setlocale (category, NULL) is multithread-safe... yes 573s checking for off_t... yes 573s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 573s checking whether limits.h has SSIZE_MAX... yes 573s checking for wint_t... yes 573s checking whether wint_t is large enough... yes 573s checking whether the compiler produces multi-arch binaries... no 573s checking whether stdint.h conforms to C99... yes 573s checking whether stdint.h works without ISO C predefines... yes 573s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 573s checking whether iswcntrl works... yes 573s checking for towlower... yes 573s checking for wctype_t... yes 573s checking for wctrans_t... yes 573s checking whether wctype supports the "blank" and "punct" character classes... yes 573s checking whether langinfo.h defines CODESET... yes 573s checking whether langinfo.h defines T_FMT_AMPM... yes 573s checking whether langinfo.h defines ALTMON_1... yes 573s checking whether langinfo.h defines ERA... yes 573s checking whether langinfo.h defines YESEXPR... yes 573s checking for wchar_t... yes 573s checking for good max_align_t... yes 573s checking whether NULL can be used in arbitrary expressions... yes 573s checking for unreachable... no 573s checking whether locale.h defines locale_t... yes 573s checking whether locale.h conforms to POSIX:2001... yes 573s checking whether struct lconv is properly defined... yes 573s checking whether imported symbols can be declared weak... yes 573s checking for multithread API to use... posix 573s checking whether malloc (0) returns nonnull... yes 573s checking for mmap... yes 574s checking for MAP_ANONYMOUS... yes 574s checking whether memchr works... yes 574s checking whether memrchr is declared... yes 574s checking whether defines MIN and MAX... no 574s checking whether defines MIN and MAX... yes 574s checking for library containing setsockopt... none needed 574s checking for ld used by gcc... /usr/bin/ld 574s checking if the linker (/usr/bin/ld) is GNU ld... yes 574s checking for shared library run path origin... done 574s checking 32-bit host C ABI... no 574s checking for ELF binary format... yes 574s checking for the common suffixes of directories in the library search path... lib,lib,lib 574s checking whether to use systemd APIs... no 574s checking whether endutent is declared... yes 574s checking for struct utmpx.ut_user... yes 574s checking for struct utmp.ut_user... yes 574s checking for struct utmpx.ut_name... yes 574s checking for struct utmp.ut_name... yes 574s checking for struct utmpx.ut_type... yes 574s checking for struct utmp.ut_type... yes 574s checking for struct utmpx.ut_pid... yes 574s checking for struct utmp.ut_pid... yes 574s checking for struct utmp.ut_tv... yes 574s checking for struct utmpx.ut_host... yes 574s checking for struct utmp.ut_host... yes 574s checking for struct utmpx.ut_id... yes 574s checking for struct utmp.ut_id... yes 574s checking for struct utmpx.ut_session... yes 574s checking for struct utmp.ut_session... yes 574s checking for struct utmpx.ut_exit... yes 574s checking for struct utmp.ut_exit... yes 574s checking for struct utmpx.ut_exit.ut_exit... no 574s checking for struct utmpx.ut_exit.e_exit... yes 574s checking for struct utmp.ut_exit.e_exit... yes 574s checking for struct utmpx.ut_exit.ut_termination... no 574s checking for struct utmpx.ut_exit.e_termination... yes 575s checking for struct utmp.ut_exit.e_termination... yes 575s checking whether sysinfo is declared... yes 575s checking for sys/sysctl.h... no 575s checking for sysctl... no 575s checking whether alarm is declared... yes 575s checking whether is self-contained... yes 575s checking whether setenv is declared... yes 575s checking for search.h... yes 575s checking for tsearch... yes 575s checking for sigset_t... yes 575s checking for volatile sig_atomic_t... yes 575s checking for sighandler_t... yes 575s checking whether snprintf returns a byte count as in C99... yes 575s checking whether printf supports POSIX/XSI format strings with positions... yes 575s checking whether snprintf is declared... yes 575s checking whether fcloseall is declared... yes 575s checking whether getw is declared... yes 575s checking whether putw is declared... yes 575s checking which flavor of printf attribute matches inttypes macros... system 575s checking whether ecvt is declared... yes 575s checking whether fcvt is declared... yes 575s checking whether gcvt is declared... yes 575s checking whether MB_CUR_MAX is correct... guessing yes 575s checking whether strdup is declared... yes 575s checking whether strerror(0) succeeds... yes 575s checking whether strndup is declared... yes 575s checking whether strnlen is declared... yes 575s checking whether declares ioctl... yes 575s checking for struct timeval... yes 575s checking for wide-enough struct timeval.tv_sec member... yes 575s checking for struct timespec in ... yes 575s checking for TIME_UTC in ... yes 575s checking whether execvpe is declared... yes 575s checking for util.h... (cached) no 575s checking for libutil.h... (cached) no 576s checking for inttypes.h... yes 576s checking for stdint.h... yes 576s checking for intmax_t... yes 576s checking whether snprintf truncates the result as in C99... yes 576s checking where to find the exponent in a 'double'... word 0 bit 20 576s checking for wcslen... yes 576s checking for snprintf... (cached) yes 576s checking for strnlen... yes 576s checking for wcrtomb... (cached) yes 576s checking whether _snprintf is declared... no 576s checking whether vsnprintf is declared... yes 576s checking whether wcsdup is declared... yes 576s checking for C compiler option to allow warnings... -Wno-error 576s checking for alignas and alignof... yes, macros 576s checking for alloca as a compiler built-in... yes 576s checking whether program_invocation_name is declared... yes 576s checking whether program_invocation_short_name is declared... yes 576s checking whether program_invocation_name is defined... yes 576s checking whether program_invocation_short_name is defined... yes 576s checking for static_assert... yes, an macro 576s checking whether btowc(0) is correct... yes 576s checking whether btowc(EOF) is correct... guessing yes 576s checking whether btowc is consistent with mbrtowc in the C locale... no 576s checking for __builtin_expect... yes 576s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 576s checking whether this system supports file names of any length... no 576s checking for library containing clock_gettime... none required 576s checking for clock_getres... yes 576s checking for clock_gettime... yes 576s checking for clock_settime... yes 576s checking for closedir... yes 576s checking for d_ino member in directory struct... yes 576s checking for d_type member in directory struct... yes 576s checking for dirfd... yes 576s checking whether dirfd is declared... yes 576s checking whether dirfd is a macro... no 576s checking whether // is distinct from /... no 576s checking whether dup works... yes 576s checking whether dup2 works... yes 576s checking whether fcntl handles F_DUPFD correctly... yes 576s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 577s checking whether fdopendir is declared... yes 577s checking whether fdopendir works... yes 577s checking for mempcpy... yes 577s checking for flexible array member... yes 577s checking whether conversion from 'int' to 'long double' works... yes 577s checking for working POSIX fnmatch... yes 577s checking whether fopen supports the mode character 'x'... yes 577s checking whether fopen supports the mode character 'e'... yes 577s checking whether forkpty is declared... yes 577s checking for const-safe forkpty signature... yes 577s checking whether free is known to preserve errno... yes 577s checking for fseeko... (cached) yes 577s checking whether fflush works on input streams... (cached) no 577s checking for _fseeki64... no 577s checking whether fstatat (..., 0) works... yes 577s checking for ftello... (cached) yes 577s checking whether ftello works... (cached) yes 577s checking for struct statfs.f_type... yes 577s checking for __fsword_t... yes 577s checking for fts_open... yes 577s checking for library containing getaddrinfo... none required 577s checking for getaddrinfo... yes 577s checking whether gai_strerror is declared... yes 577s checking whether gai_strerrorA is declared... no 577s checking for gai_strerror with POSIX signature... yes 577s checking for struct sockaddr.sa_len... no 577s checking whether getaddrinfo is declared... yes 577s checking whether freeaddrinfo is declared... yes 577s checking whether getnameinfo is declared... yes 577s checking for struct addrinfo... yes 577s checking whether getcwd handles long file names properly... yes 577s checking for getpagesize... yes 577s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 577s checking for getdelim... yes 577s checking for working getdelim function... yes 577s checking for getdomainname... yes 578s checking whether getdomainname is declared... yes 578s checking for getdomainname's second argument type... size_t 578s checking whether getdtablesize works... yes 578s checking for getgroups... yes 578s checking for working getgroups... yes 578s checking whether getgroups handles negative values... yes 578s checking for gethostname... yes 578s checking for HOST_NAME_MAX... yes 578s checking for getline... yes 578s checking for working getline function... yes 578s checking for getlogin_r... yes 578s checking whether getlogin_r works with small buffers... yes 578s checking for getprogname... no 578s checking whether program_invocation_name is declared... (cached) yes 578s checking whether program_invocation_name is declared... (cached) yes 578s checking whether program_invocation_short_name is declared... (cached) yes 578s checking whether __argv is declared... no 578s checking for getrandom... yes 578s checking whether getrandom is compatible with its GNU+BSD signature... yes 578s checking whether getusershell is declared... yes 578s checking for glob... yes 578s checking for GNU glob interface version 1 or 2... yes 578s checking whether glob lists broken symlinks... yes 578s checking whether glob NOTDIR*/ omits symlink to nondir... yes 578s checking for library containing gethostbyname... (cached) none required 578s checking for gethostbyname... (cached) yes 578s checking for library containing inet_ntop... (cached) none required 578s checking whether inet_ntop is declared... (cached) yes 578s checking whether the compiler generally respects inline... yes 578s checking for ioctl... yes 578s checking for ioctl with POSIX signature... no 578s checking for iswblank... yes 578s checking whether iswblank is declared... yes 578s checking whether iswdigit is ISO C compliant... guessing yes 578s checking whether iswpunct is consistent with ispunct... yes 578s checking whether iswxdigit is ISO C compliant... guessing yes 578s checking whether the compiler supports the __inline keyword... yes 578s checking whether localeconv works... yes 578s checking for pthread_rwlock_t... yes 578s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 578s checking for login_tty... yes 579s checking whether lseek detects pipes... yes 579s checking whether SEEK_DATA works but is incompatible with GNU... no 579s checking whether malloc (0) returns nonnull... (cached) yes 579s checking whether mbrtoc32 works on empty input... yes 579s checking whether the C locale is free of encoding errors... no 579s checking whether mbrtowc handles a NULL pwc argument... guessing yes 579s checking whether mbrtowc handles a NULL string argument... guessing yes 579s checking whether mbrtowc has a correct return value... guessing yes 579s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 579s checking whether mbrtowc stores incomplete characters... guessing no 579s checking whether mbrtowc works on empty input... yes 579s checking whether the C locale is free of encoding errors... no 579s checking whether mbsrtowcs works... guessing yes 579s checking whether the C locale is free of encoding errors... (cached) no 579s checking for mbtowc... yes 579s checking for mempcpy... (cached) yes 579s checking for memrchr... yes 579s checking for explicit_memset... no 579s checking whether mkdir handles trailing slash... yes 579s checking whether mkdir handles trailing dot... yes 579s checking for working mkstemp... yes 579s checking whether is self-contained... yes 579s checking for nl_langinfo... yes 579s checking whether YESEXPR works... yes 579s checking for obstacks that work with any size object... no 579s checking whether open recognizes a trailing slash... yes 579s checking for opendir... yes 579s checking whether openpty is declared... yes 579s checking for const-safe openpty signature... yes 579s checking for poll... yes 579s checking for posix_openpt... yes 579s checking whether program_invocation_name is declared... (cached) yes 579s checking whether program_invocation_short_name is declared... (cached) yes 579s checking for rawmemchr... yes 579s checking for readdir... yes 579s checking for readline... no 579s checking for readline/readline.h... no 579s checking for readline/history.h... no 579s checking whether realloc (0, 0) returns nonnull... yes 579s checking for reallocarray... yes 580s checking for working re_compile_pattern... yes 580s checking for rewinddir... yes 580s checking whether select supports a 0 argument... yes 580s checking whether select detects invalid fds... yes 580s checking for library containing getservbyname... (cached) none required 580s checking for getservbyname... (cached) yes 580s checking whether setenv validates arguments... yes 580s checking for HOST_NAME_MAX... (cached) yes 580s checking for sethostname... yes 580s checking whether sethostname is declared... yes 580s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 580s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 580s checking for stdint.h... (cached) yes 580s checking for SIZE_MAX... yes 580s checking whether sleep is declared... yes 581s checking for working sleep... yes 581s checking for snprintf... (cached) yes 581s checking whether snprintf respects a size of 1... yes 581s checking for socklen_t... yes 581s checking for ssize_t... yes 581s checking whether stat handles trailing slashes on files... yes 581s checking for struct stat.st_atim.tv_nsec... yes 581s checking whether struct stat.st_atim is of type struct timespec... yes 581s checking for struct stat.st_birthtimespec.tv_nsec... no 581s checking for struct stat.st_birthtimensec... no 581s checking for struct stat.st_birthtim.tv_nsec... no 581s checking for va_copy... yes 581s checking for bool, true, false... no 581s checking for strcasecmp... yes 581s checking for strncasecmp... yes 581s checking whether strncasecmp is declared... yes 581s checking for strchrnul... yes 581s checking whether strchrnul works... yes 581s checking for working strerror function... yes 581s checking for working strndup... yes 581s checking for working strnlen... yes 581s checking for variable-length arrays... yes 581s checking for ptrdiff_t... yes 581s checking for vasprintf... yes 581s checking for vsnprintf... yes 581s checking whether snprintf respects a size of 1... (cached) yes 581s checking whether wcrtomb works in the C locale... yes 581s checking whether wcrtomb return value is correct... guessing yes 582s checking for wmemchr... yes 582s checking for wmempcpy... yes 582s checking for stdint.h... (cached) yes 582s checking for library containing inet_ntoa... none required 582s checking for initscr in -lncurses... no 582s checking for tgetent in -ltermcap... no 582s checking whether tgetent needs support... no 582s checking for tgetent in -lcurses... no 582s checking whether tgetent is declared... no 582s checking for tgetent in -ltermlib... no 582s checking for crypt in -lcrypt... yes 582s checking for login in -lutil... yes 582s checking for loginx in -lutil... no 582s checking for logout in -lutil... yes 582s checking for logoutx in -lutil... no 582s checking for logwtmp in -lutil... yes 582s checking for logwtmpx in -lutil... no 582s checking for protocols/talkd.h... yes 582s checking for rcmd... yes 582s checking for rcmd_af... yes 582s checking for orcmd... no 582s checking for orcmd_af... no 582s checking for rresvport_af... yes 582s checking for iruserok... yes 582s checking for iruserok_af... yes 582s checking for iruserok_sa... no 582s checking for ruserok... yes 582s checking for ruserok_af... yes 582s checking for AF_INET6... yes 582s checking for IPV6_V6ONLY... yes 582s checking for struct sockaddr_storage... (cached) yes 582s checking for struct sockaddr_in6... yes 582s checking for struct addrinfo... (cached) yes 582s checking for getnameinfo... yes 582s checking for netinet/icmp6.h... yes 582s checking for netinet/ip6.h... yes 582s checking for struct icmp6_filter... yes 582s checking for struct icmp6_hdr... yes 582s checking for IPV6_HOPLIMIT... yes 582s checking for IPV6_2292HOPLIMIT... yes 582s checking for IPV6_RECVHOPLIMIT... yes 582s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 582s checking for locale.h... yes 582s checking for setlocale... yes 582s checking for arpa/nameser.h... yes 582s checking for arpa/tftp.h... yes 582s checking for fcntl.h... yes 582s checking for features.h... (cached) yes 582s checking for glob.h... (cached) yes 582s checking for memory.h... yes 582s checking for netinet/ether.h... yes 583s checking for netinet/in_systm.h... yes 583s checking for netinet/ip.h... yes 583s checking for netinet/ip_icmp.h... yes 583s checking for netinet/ip_var.h... no 583s checking for security/pam_appl.h... no 583s checking for shadow.h... yes 583s checking for stropts.h... no 583s checking for sys/tty.h... no 583s checking for sys/utsname.h... yes 583s checking for sys/ptyvar.h... no 583s checking for sys/msgbuf.h... no 583s checking for sys/filio.h... (cached) no 583s checking for sys/ioctl_compat.h... no 583s checking for sys/cdefs.h... (cached) yes 583s checking for sys/stream.h... no 583s checking for sys/mkdev.h... no 583s checking for sys/sockio.h... no 583s checking for sys/sysmacros.h... yes 583s checking for sys/param.h... (cached) yes 583s checking for sys/file.h... yes 583s checking for sys/proc.h... no 583s checking for sys/select.h... (cached) yes 583s checking for sys/wait.h... yes 583s checking for sys/resource.h... yes 583s checking for stropts.h... (cached) no 583s checking for tcpd.h... no 583s checking for utmp.h... (cached) yes 583s checking for utmpx.h... (cached) yes 583s checking for unistd.h... (cached) yes 583s checking for vis.h... no 583s checking for struct if_nameindex... yes 583s checking for sigset_t... (cached) yes 583s checking for sig_atomic_t... yes 583s checking for struct sockaddr_in.sin_len... no 583s checking for struct sockaddr_in6.sin6_len... no 583s checking for struct sockaddr_storage.ss_len... no 583s checking for struct passwd.pw_expire... no 583s checking for struct passwd.pw_change... no 583s checking for struct lastlog... yes 583s checking for struct utmp.ut_type... (cached) yes 583s checking for struct utmp.ut_pid... (cached) yes 583s checking for struct utmp.ut_line... yes 583s checking for struct utmp.ut_id... (cached) yes 583s checking for struct utmp.ut_user... (cached) yes 583s checking for struct utmp.ut_host... (cached) yes 583s checking for struct utmp.ut_exit... (cached) yes 583s checking for struct utmp.ut_session... (cached) yes 583s checking for struct utmp.ut_tv... (cached) yes 583s checking for struct utmp.ut_time... yes 583s checking for struct utmp.ut_addr_v6... yes 583s checking for struct utmp.ut_name... (cached) yes 583s checking for struct lastlogx... no 583s checking for struct lastlogx.ll_ss... no 583s checking for struct utmpx.ut_user... (cached) yes 583s checking for struct utmpx.ut_name... (cached) yes 583s checking for struct utmpx.ut_id... (cached) yes 583s checking for struct utmpx.ut_line... yes 583s checking for struct utmpx.ut_pid... (cached) yes 583s checking for struct utmpx.ut_type... (cached) yes 583s checking for struct utmpx.ut_exit... (cached) yes 583s checking for struct utmpx.ut_tv... yes 583s checking for struct utmpx.ut_session... (cached) yes 583s checking for struct utmpx.ut_syslen... no 583s checking for struct utmpx.ut_host... (cached) yes 583s checking for struct utmpx.ut_ss... no 583s checking for struct utmpx.ut_addr_v6... yes 583s checking for struct ifreq.ifr_index... no 583s checking for struct ifreq.ifr_netmask... yes 583s checking for struct ifreq.ifr_broadaddr... yes 583s checking for struct ifreq.ifr_mtu... yes 583s checking for struct ifreq.ifr_map... yes 583s checking for struct sockaddr.sa_len... (cached) no 583s checking for struct hostent.h_addr_list... yes 583s checking for struct stat.st_atim.tv_nsec... (cached) yes 583s checking for struct stat.st_atim.tv_usec... no 583s checking for struct stat.st_blksize... yes 583s checking for struct stat.st_ctim.tv_nsec... yes 583s checking for struct stat.st_ctim.tv_usec... no 584s checking for struct stat.st_mtim.tv_nsec... yes 584s checking for struct stat.st_mtim.tv_usec... no 584s checking for struct tftphdr.th_u... no 584s checking for working fork... yes 584s checking for working vfork... (cached) yes 584s checking for working mmap... yes 584s checking for cfsetspeed... yes 584s checking for cgetent... no 584s checking for dirfd... (cached) yes 584s checking for flock... yes 584s checking for fork... (cached) yes 584s checking for fpathconf... yes 584s checking for ftruncate... yes 584s checking for getcwd... yes 584s checking for getmsg... no 584s checking for getpwuid_r... yes 584s checking for getspnam... yes 584s checking for getutxent... yes 584s checking for getutxuser... no 584s checking for initgroups... yes 584s checking for initsetproctitle... no 584s checking for killpg... yes 584s checking for ptsname... yes 584s checking for pututline... yes 584s checking for pututxline... yes 584s checking for setegid... yes 584s checking for seteuid... yes 584s checking for setpgid... yes 584s checking for setlogin... no 584s checking for setsid... yes 584s checking for setregid... yes 584s checking for setreuid... yes 584s checking for setresgid... yes 584s checking for setresuid... yes 584s checking for setutent_r... no 584s checking for sigaction... yes 585s checking for sigvec... no 585s checking for strchr... yes 585s checking for setproctitle... no 585s checking for tcgetattr... yes 585s checking for tzset... yes 585s checking for utimes... yes 585s checking for utime... yes 585s checking for uname... yes 585s checking for updwtmp... yes 585s checking for updwtmpx... yes 585s checking for vhangup... yes 585s checking for wait3... yes 585s checking for wait4... yes 585s checking for __opendir2... no 585s checking for __rcmd_errstr... yes 585s checking for __check_rhosts_file... yes 585s checking for login... yes 585s checking for loginx... no 585s checking for logout... yes 585s checking for logoutx... no 585s checking for logwtmp... yes 585s checking for logwtmpx... no 585s checking for crypt... yes 585s checking for _obstack_free... yes 585s checking for setpgid... (cached) yes 585s checking for hstrerror... yes 585s checking whether hstrerror is declared... yes 585s checking whether telcmds is declared... yes 585s checking whether telopts is declared... no 585s checking for Schedule... no 585s checking for Session_Key... no 585s checking whether enctype_names is const char... no 585s checking whether crypt is declared... yes 585s checking for syslog internal macros... yes 585s checking for CODE... yes 585s checking whether prioritynames is declared... yes 585s checking whether fclose is declared... yes 585s checking whether pclose is declared... yes 585s checking whether getcwd is declared... (cached) yes 585s checking whether getlogin is declared... (cached) yes 586s checking whether getpass is declared... yes 586s checking whether getusershell is declared... (cached) yes 586s checking whether ttyname is declared... yes 586s checking whether getgrnam is declared... yes 586s checking whether initgroups is declared... yes 586s checking whether htons is declared... yes 586s checking for h_errno... yes 586s checking whether h_errno is declared... yes 586s checking for SEEK_ macros... yes 586s checking for _FILENO macros... yes 586s checking for fd_set macros... yes 586s checking for paths.h... yes 586s checking for value of PATH_BSHELL... from _PATH_BSHELL in 586s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 586s checking for value of PATH_CP... /usr/bin/cp 586s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 586s checking for value of PATH_DEV... from _PATH_DEV in 586s checking for value of PATH_TTY_PFX... from _PATH_DEV in 586s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 586s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 586s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 586s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 586s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 586s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 586s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 586s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 586s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 586s checking for value of PATH_UTMP... from _PATH_UTMP in 586s checking for value of PATH_UTMPX... from _PATH_UTMPX in 586s checking for value of PATH_WTMP... from _PATH_WTMP in 586s checking for value of PATH_WTMPX... from _PATH_WTMPX in 586s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 586s checking for value of PATH_LOG... from _PATH_LOG in 586s checking for value of PATH_KLOG... from _PATH_KLOG in 586s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 586s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 586s checking for value of PATH_LOGIN... /usr/bin/login 586s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 586s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 586s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 586s checking for value of PATH_RSH... (default) $(bindir)/rsh 586s checking for value of PATH_TMP... from _PATH_TMP in 586s checking for value of PATH_TTY... from _PATH_TTY in 586s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 586s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 586s checking for value of PATH_PROCNET_DEV... /proc/net/dev 587s checking that generated files are newer than configure... done 587s configure: creating ./config.status 587s config.status: creating Makefile 587s config.status: creating summary.sh 587s config.status: creating lib/Makefile 587s config.status: creating libinetutils/Makefile 587s config.status: creating libtelnet/Makefile 587s config.status: creating libicmp/Makefile 587s config.status: creating libls/Makefile 587s config.status: creating src/Makefile 587s config.status: creating telnet/Makefile 587s config.status: creating telnetd/Makefile 587s config.status: creating ftp/Makefile 587s config.status: creating ftpd/Makefile 587s config.status: creating talk/Makefile 587s config.status: creating talkd/Makefile 587s config.status: creating whois/Makefile 587s config.status: creating ping/Makefile 587s config.status: creating ifconfig/Makefile 587s config.status: creating ifconfig/system/Makefile 587s config.status: creating tests/Makefile 587s config.status: creating confpaths.h 587s config.status: creating config.h 587s config.status: executing depfiles commands 588s config.status: executing summary commands 588s Summary of build decisions: 588s 588s Clients: 588s 588s dnsdomainname no 588s ftp yes 588s hostname no 588s ifconfig no 588s logger no 588s ping no 588s ping6 no 588s rcp no 588s rexec no 588s rlogin no 588s rsh no 588s talk no 588s telnet no 588s tftp no 588s traceroute yes 588s whois no 588s 588s Servers: 588s 588s ftpd yes 588s inetd no 588s rexecd no 588s rlogind no 588s rshd no 588s syslogd no 588s talkd no 588s telnetd no 588s tftpd no 588s uucpd no 588s 588s Support: 588s 588s libls no 588s make: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 588s GEN alloca.h 588s GEN arpa/inet.h 588s GEN ctype.h 588s GEN dirent.h 588s GEN error.h 588s GEN fcntl.h 588s GEN getopt.h 588s GEN getopt-cdefs.h 588s GEN malloc/dynarray.gl.h 588s GEN malloc/dynarray-skeleton.gl.h 588s GEN malloc/scratch_buffer.gl.h 588s GEN glob-libc.gl.h 588s GEN inttypes.h 588s GEN langinfo.h 588s GEN limits.h 588s GEN locale.h 588s GEN netdb.h 588s GEN obstack.h 588s GEN poll.h 588s GEN pty.h 588s GEN signal.h 588s GEN stddef.h 588s GEN stdio.h 588s GEN stdlib.h 588s GEN string.h 588s GEN strings.h 588s GEN sys/ioctl.h 588s GEN sys/random.h 588s GEN sys/select.h 588s GEN sys/socket.h 588s GEN sys/stat.h 588s GEN sys/time.h 588s GEN sys/types.h 588s GEN sys/uio.h 588s GEN termios.h 588s GEN time.h 588s GEN uchar.h 588s GEN unicase.h 588s GEN unictype.h 588s GEN uninorm.h 588s GEN unistd.h 588s GEN unistr.h 588s GEN unitypes.h 588s GEN utmp.h 588s GEN wchar.h 588s GEN wctype.h 588s make all-recursive 588s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 588s make[2]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 588s CC libgnu_a-argp-ba.o 588s CC libgnu_a-argp-eexst.o 588s CC libgnu_a-argp-fmtstream.o 588s CC libgnu_a-argp-fs-xinl.o 589s CC libgnu_a-argp-help.o 589s CC libgnu_a-argp-parse.o 589s CC libgnu_a-argp-pin.o 589s CC libgnu_a-argp-pv.o 589s CC libgnu_a-argp-pvh.o 589s CC libgnu_a-argp-xinl.o 589s CC libgnu_a-argp-version-etc.o 589s CC libgnu_a-openat-proc.o 590s CC libgnu_a-basename-lgpl.o 590s CC libgnu_a-bitrotate.o 590s CC libgnu_a-btoc32.o 590s CC libgnu_a-btowc.o 590s CC libgnu_a-c32_apply_type_test.o 590s CC libgnu_a-c32_get_type_test.o 590s CC libgnu_a-c32isalnum.o 590s CC libgnu_a-c32isalpha.o 590s CC libgnu_a-c32isblank.o 590s CC libgnu_a-c32iscntrl.o 590s CC libgnu_a-c32isdigit.o 590s CC libgnu_a-c32isgraph.o 590s CC libgnu_a-c32islower.o 590s CC libgnu_a-c32isprint.o 590s CC libgnu_a-c32ispunct.o 590s CC libgnu_a-c32isspace.o 590s CC libgnu_a-c32isupper.o 590s CC libgnu_a-c32isxdigit.o 590s CC libgnu_a-c32tolower.o 590s CC libgnu_a-chdir-long.o 590s CC libgnu_a-cloexec.o 590s CC libgnu_a-cycle-check.o 590s CC libgnu_a-dirname-lgpl.o 590s CC libgnu_a-stripslash.o 590s CC libgnu_a-exitfail.o 590s CC libgnu_a-fcntl.o 590s CC libgnu_a-creat-safer.o 590s CC libgnu_a-open-safer.o 590s CC libgnu_a-fd-hook.o 590s CC libgnu_a-fd-safer-flag.o 591s CC libgnu_a-dup-safer-flag.o 591s CC libgnu_a-filemode.o 591s CC libgnu_a-filenamecat-lgpl.o 591s CC libgnu_a-fopen-safer.o 591s CC libgnu_a-fseek.o 591s CC libgnu_a-fseeko.o 591s CC libgnu_a-fts.o 591s CC libgnu_a-getopt.o 591s CC libgnu_a-getopt1.o 591s CC libgnu_a-getprogname.o 591s CC libgnu_a-getugroups.o 591s CC malloc/libgnu_a-dynarray_at_failure.o 591s CC malloc/libgnu_a-dynarray_emplace_enlarge.o 592s CC malloc/libgnu_a-dynarray_finalize.o 592s CC malloc/libgnu_a-dynarray_resize.o 592s CC malloc/libgnu_a-dynarray_resize_clear.o 592s CC malloc/libgnu_a-scratch_buffer_grow.o 592s CC malloc/libgnu_a-scratch_buffer_grow_preserve.o 592s CC malloc/libgnu_a-scratch_buffer_set_array_size.o 592s CC libgnu_a-hard-locale.o 592s CC libgnu_a-hash.o 592s CC libgnu_a-i-ring.o 592s CC libgnu_a-ialloc.o 592s CC libgnu_a-imaxtostr.o 592s CC libgnu_a-inttostr.o 592s CC libgnu_a-offtostr.o 592s CC libgnu_a-uinttostr.o 592s CC libgnu_a-umaxtostr.o 592s CC libgnu_a-ioctl.o 592s CC libgnu_a-localcharset.o 592s CC glthread/libgnu_a-lock.o 592s CC libgnu_a-malloca.o 592s CC libgnu_a-mbrtoc32.o 592s CC libgnu_a-mbrtowc.o 592s CC libgnu_a-mbsrtoc32s.o 592s CC libgnu_a-mbsrtowcs.o 592s CC libgnu_a-mbszero.o 592s CC libgnu_a-memset_explicit.o 592s CC libgnu_a-mgetgroups.o 592s CC libgnu_a-obstack.o 593s CC libgnu_a-openat-die.o 593s CC libgnu_a-openat-safer.o 593s CC libgnu_a-opendirat.o 593s CC libgnu_a-progname.o 593s CC libgnu_a-read-file.o 593s CC libgnu_a-readline.o 593s CC libgnu_a-readutmp.o 593s CC libgnu_a-same-inode.o 593s CC libgnu_a-save-cwd.o 593s CC libgnu_a-setlocale_null.o 593s CC libgnu_a-sockets.o 593s CC libgnu_a-stat-time.o 593s CC libgnu_a-strnlen1.o 593s CC libgnu_a-sys_socket.o 593s CC libgnu_a-tempname.o 593s CC glthread/libgnu_a-threadlib.o 593s CC unicase/libgnu_a-tolower.o 593s CC unictype/libgnu_a-ctype_alnum.o 593s CC unictype/libgnu_a-ctype_alpha.o 593s CC unictype/libgnu_a-ctype_blank.o 593s CC unictype/libgnu_a-ctype_cntrl.o 593s CC unictype/libgnu_a-ctype_digit.o 593s CC unictype/libgnu_a-ctype_graph.o 593s CC unictype/libgnu_a-ctype_lower.o 593s CC unictype/libgnu_a-ctype_print.o 593s CC unictype/libgnu_a-ctype_punct.o 593s CC unictype/libgnu_a-ctype_space.o 593s CC unictype/libgnu_a-ctype_upper.o 593s CC unictype/libgnu_a-ctype_xdigit.o 593s CC libgnu_a-unistd.o 594s CC libgnu_a-dup-safer.o 594s CC libgnu_a-fd-safer.o 594s CC libgnu_a-pipe-safer.o 594s CC unistr/libgnu_a-u32-chr.o 594s CC unistr/libgnu_a-u32-cpy.o 594s CC unistr/libgnu_a-u32-pcpy.o 594s CC unistr/libgnu_a-u32-strcat.o 594s CC unistr/libgnu_a-u32-strlen.o 594s CC libgnu_a-version-etc.o 594s CC libgnu_a-version-etc-fsf.o 594s CC libgnu_a-wctype-h.o 594s CC libgnu_a-xmalloc.o 594s CC libgnu_a-xalloc-die.o 594s CC libgnu_a-xgetcwd.o 594s CC libgnu_a-xgetdomainname.o 594s CC libgnu_a-xgethostname.o 594s CC libgnu_a-xsize.o 594s CC libgnu_a-xvasprintf.o 594s CC libgnu_a-xasprintf.o 594s CC asnprintf.o 594s CC fopen.o 594s CC mbsrtoc32s-state.o 594s CC mbsrtowcs-state.o 594s CC printf-args.o 594s CC printf-parse.o 595s CC vasnprintf.o 595s AR libgnu.a 595s make[2]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 595s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 595s make: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/lib' 595s make: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/libinetutils' 595s CC argcv.o 595s CC cleansess.o 595s cleansess.c: In function ‘cleanup_session’: 595s cleansess.c:65:3: warning: ignoring return value of ‘chown’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 595s 65 | chown (tty, 0, 0); 595s | ^~~~~~~~~~~~~~~~~ 595s cleansess.c:67:3: warning: ignoring return value of ‘fchown’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 595s 67 | fchown (pty_fd, 0, 0); 595s | ^~~~~~~~~~~~~~~~~~~~~ 595s CC daemon.o 595s CC defauthors.o 595s CC if_index.o 595s CC kcmd.o 595s CC kerberos5.o 595s CC krcmd.o 595s CC localhost.o 595s CC logwtmpko.o 595s In file included from logwtmpko.c:26: 595s logwtmp.c: In function ‘_logwtmp’: 595s logwtmp.c:83:9: warning: ignoring return value of ‘ftruncate’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 595s 83 | ftruncate (fd, st.st_size); 595s | ^~~~~~~~~~~~~~~~~~~~~~~~~~ 595s CC setsig.o 595s CC shishi.o 595s CC tftpsubs.o 595s CC ttymsg.o 596s CC utmp_init.o 596s CC utmp_logout.o 596s AR libinetutils.a 596s make: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/libinetutils' 596s make: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s sed -e 's,[@]GREP[@],/usr/bin/grep,g' -e 's,[@]EGREP[@],/usr/bin/grep -E,g' -e 's,[@]FGREP[@],/usr/bin/grep -F,g' -e 's,[@]SED[@],/usr/bin/sed,g' -e 's,[@]DD[@],/usr/bin/dd,g' -e 's,[@]MKTEMP[@],/usr/bin/mktemp,g' -e 's,[@]NETSTAT[@],/usr/bin/netstat,g' -e 's,[@]TARGET[@],127.0.0.1,g' -e 's,[@]TARGET6[@],::1,g' -e 's,[@]TEST_IPV4[@],auto,g' -e 's,[@]TEST_IPV6[@],auto,g' < ./tools.sh.in > tools.sh 596s make check-am 596s make[1]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s CC identify.o 596s CCLD identify 596s make localhost readutmp runtime-ipv6 test-snprintf waitdaemon \ 596s utmp.sh traceroute-localhost.sh ftp-parser.sh ftp-regressions.sh 596s make[2]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s CC localhost.o 596s CCLD localhost 596s CC readutmp.o 596s CCLD readutmp 596s CC runtime-ipv6.o 596s CCLD runtime-ipv6 596s CC test-snprintf.o 596s CCLD test-snprintf 596s CC waitdaemon.o 596s CCLD waitdaemon 596s make[2]: Nothing to be done for 'utmp.sh'. 596s make[2]: Nothing to be done for 'traceroute-localhost.sh'. 596s make[2]: Nothing to be done for 'ftp-parser.sh'. 596s make[2]: Nothing to be done for 'ftp-regressions.sh'. 596s make[2]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s make check-TESTS 596s make[2]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s make[3]: Entering directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s PASS: localhost 596s SKIP: test-snprintf 596s PASS: waitdaemon 596s PASS: utmp.sh 596s PASS: traceroute-localhost.sh 596s PASS: ftp-parser.sh 596s PASS: ftp-regressions.sh 596s ============================================================================ 596s Testsuite summary for GNU inetutils 2.5 596s ============================================================================ 596s # TOTAL: 7 596s # PASS: 6 596s # SKIP: 1 596s # XFAIL: 0 596s # FAIL: 0 596s # XPASS: 0 596s # ERROR: 0 596s ============================================================================ 596s make[3]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s make[2]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s make[1]: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s make: Leaving directory '/tmp/autopkgtest.W6YCXG/build.S8J/src/tests' 596s /tmp/autopkgtest.W6YCXG/wrapper.sh: checking for leaked background processes... 596s /tmp/autopkgtest.W6YCXG/wrapper.sh: waiting for tee/cat subprocesses... 596s /tmp/autopkgtest.W6YCXG/wrapper.sh: cleaning up... 596s /tmp/autopkgtest.W6YCXG/wrapper.sh: Exit status: 0 596s autopkgtest: DBG: testbed command exited with code 0 597s autopkgtest [20:51:28]: test test-root-commands: -----------------------] 597s autopkgtest: DBG: testbed executing test finished with exit status 0 597s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-root-commands-stdout /tmp/autopkgtest-work._9t7rhyn/out/test-root-commands-stdout 597s autopkgtest: DBG: got reply from testbed: ok 597s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-root-commands-stderr /tmp/autopkgtest-work._9t7rhyn/out/test-root-commands-stderr 597s autopkgtest: DBG: got reply from testbed: ok 597s autopkgtest [20:51:28]: test test-root-commands: - - - - - - - - - - results - - - - - - - - - - 597s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.W6YCXG/test-root-commands-artifacts/ /tmp/autopkgtest-work._9t7rhyn/out/artifacts/ 597s test-root-commands PASS 597s autopkgtest: DBG: got reply from testbed: ok 597s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.W6YCXG/test-root-commands-artifacts', '/tmp/autopkgtest.W6YCXG/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 597s autopkgtest: DBG: testbed command exited with code 0 597s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 597s autopkgtest [20:51:28]: @@@@@@@@@@@@@@@@@@@@ summary 597s test-commands PASS 597s test-root-commands PASS 597s autopkgtest: DBG: testbed stop 597s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.W6YCXG 597s autopkgtest: DBG: sending command to testbed: close 615s autopkgtest: DBG: got reply from testbed: ok 615s autopkgtest: DBG: sending command to testbed: quit 615s nova [W] Using flock in prodstack6-s390x 615s Creating nova instance adt-plucky-s390x-inetutils-20250219-204130-juju-7f2275-prod-proposed-migration-environment-15-bb6b57cb-4f52-46f7-a320-0c43ae10dd7f from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 615s nova [W] Timed out waiting for a3313382-f43c-47bb-b1df-a634ee715d43 to get deleted. 615s nova [W] Using flock in prodstack6-s390x 615s Creating nova instance adt-plucky-s390x-inetutils-20250219-204130-juju-7f2275-prod-proposed-migration-environment-15-bb6b57cb-4f52-46f7-a320-0c43ae10dd7f from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 615s nova [W] Timed out waiting for 1eddce90-8746-475d-96fb-004f699d4970 to get deleted.