0s autopkgtest: DBG: testbed init 0s autopkgtest [08:13:00]: starting date and time: 2025-02-19 08:13:00+0000 0s autopkgtest [08:13:00]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [08:13:00]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.yy331h41/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:inetutils,src:ncurses --apt-upgrade inetutils --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=inetutils/2:2.5-6ubuntu1 ncurses/6.5+20250216-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-30.secgroup --name adt-plucky-s390x-inetutils-20250219-074843-juju-7f2275-prod-proposed-migration-environment-15-25022f25-6afb-4a2f-b0fe-21aecb0bfcc2 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 56s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.4hJkOK 56s autopkgtest: DBG: sending command to testbed: print-execute-command 56s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.cml6aj3n/runcmd 56s autopkgtest: DBG: sending command to testbed: capabilities 56s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system suggested-normal-user=ubuntu revert isolation-machine root-on-testbed 56s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'isolation-machine', 'root-on-testbed', 'has_internet'] 56s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 56s autopkgtest: DBG: testbed command exited with code 0 56s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.4hJkOK/wrapper.sh 56s autopkgtest: DBG: got reply from testbed: ok 56s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/wrapper.sh'], kind short, sout raw, serr pipe, env [] 56s autopkgtest: DBG: testbed command exited with code 0 56s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 57s autopkgtest: DBG: testbed command exited with code 0 57s autopkgtest [08:13:57]: testbed dpkg architecture: s390x 57s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 57s autopkgtest: DBG: testbed command exited with code 0 57s autopkgtest [08:13:57]: testbed apt version: 2.9.30 57s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 57s autopkgtest: DBG: testbed command exited with code 0 57s autopkgtest: DBG: testbed has eatmydata 57s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 57s autopkgtest: DBG: testbed command exited with code 0 57s autopkgtest [08:13:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 57s 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 [] 57s autopkgtest: DBG: testbed command exited with code 0 57s autopkgtest [08:13:57]: testbed release detected to be: None 57s 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 [] 57s autopkgtest: DBG: testbed command exited with code 0 57s 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 [] 58s autopkgtest: DBG: testbed command exited with code 0 58s autopkgtest: DBG: adding APT source: Types: deb deb-src 58s URIs: http://ftpmaster.internal/ubuntu/ 58s Suites: plucky-proposed 58s Components: main restricted universe multiverse 58s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 58s 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 [] 58s autopkgtest: DBG: testbed command exited with code 0 58s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 58s Package: * 58s Pin: release plucky-proposed 58s Pin-Priority: 500 58s 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 [] 58s autopkgtest: DBG: testbed command exited with code 0 58s autopkgtest [08:13:58]: updating testbed package index (apt update) 58s 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'] 58s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 58s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 58s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 59s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 59s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 59s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 59s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 59s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 59s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 59s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 59s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 59s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 59s Fetched 1651 kB in 1s (1847 kB/s) 59s Reading package lists... 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 60s Package: * 60s Pin: release plucky-proposed 60s Pin-Priority: 100 60s 60s Package: src:inetutils:any src:ncurses:any 60s Pin: release plucky-proposed 60s Pin-Priority: 995 60s 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:inetutils:any src:ncurses:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s 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.4hJkOK/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s 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'] 60s + lsb_release --codename --short 60s + RELEASE=plucky 60s + cat 60s + [ plucky != trusty ] 60s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 60s Reading package lists... 60s Building dependency tree... 60s Reading state information... 60s Calculating upgrade... 60s The following packages were automatically installed and are no longer required: 60s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 60s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 60s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 60s linux-tools-6.11.0-8-generic 60s Use 'sudo apt autoremove' to remove them. 60s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 60s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 60s + /usr/lib/apt/apt-helper analyze-pattern ?true 60s + uname -r 60s + sed s/\./\\./g 60s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 60s + apt list ?obsolete 60s + + tail -n+2cut 60s -d/ -f1 60s + grep -v ^linux-.*6\.12\.0-15-generic.* 60s + true 60s + obsolete_pkgs= 60s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 60s Reading package lists... 61s Building dependency tree... 61s Reading state information... 61s The following packages will be REMOVED: 61s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 61s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 61s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 61s linux-tools-6.11.0-8-generic* 61s 0 upgraded, 0 newly installed, 9 to remove and 8 not upgraded. 61s After this operation, 167 MB disk space will be freed. 61s (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.) 61s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 61s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 61s Removing libpython3.12t64:s390x (3.12.9-1) ... 61s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 61s Removing libnsl2:s390x (1.3.0-3build3) ... 61s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 61s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 61s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 62s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 62s Processing triggers for libc-bin (2.40-4ubuntu1) ... 62s (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 ... 55930 files and directories currently installed.) 62s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 62s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 62s + grep -q trusty /etc/lsb-release 62s + [ ! -d /usr/share/doc/unattended-upgrades ] 62s + [ ! -d /usr/share/doc/lxd ] 62s + [ ! -d /usr/share/doc/lxd-client ] 62s + [ ! -d /usr/share/doc/snapd ] 62s + type iptables 62s + cat 62s + chmod 755 /etc/rc.local 62s + . /etc/rc.local 62s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 62s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 62s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 62s + uname -m 62s + [ s390x = ppc64le ] 62s + [ -d /run/systemd/system ] 62s + systemd-detect-virt --quiet --vm 62s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 62s + cat 62s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 62s + echo COMPRESS=lz4 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest [08:14:02]: upgrading testbed (apt dist-upgrade and autopurge) 62s 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'] 62s Reading package lists... 63s Building dependency tree... 63s Reading state information... 63s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 63s Starting 2 pkgProblemResolver with broken count: 0 63s Done 63s Entering ResolveByKeep 63s 63s The following packages will be upgraded: 63s inetutils-telnet libncurses6 libncursesw6 libtinfo6 ncurses-base ncurses-bin 63s ncurses-term telnet 63s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 63s Need to get 1011 kB of archives. 63s After this operation, 16.4 kB of additional disk space will be used. 63s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ncurses-bin s390x 6.5+20250216-1 [197 kB] 64s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ncurses-base all 6.5+20250216-1 [25.9 kB] 64s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ncurses-term all 6.5+20250216-1 [276 kB] 64s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libncursesw6 s390x 6.5+20250216-1 [158 kB] 64s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libncurses6 s390x 6.5+20250216-1 [122 kB] 64s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libtinfo6 s390x 6.5+20250216-1 [117 kB] 64s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x inetutils-telnet s390x 2:2.5-6ubuntu1 [111 kB] 64s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x telnet all 0.17+2.5-6ubuntu1 [3694 B] 64s Fetched 1011 kB in 1s (1785 kB/s) 64s (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 ... 55928 files and directories currently installed.) 64s Preparing to unpack .../ncurses-bin_6.5+20250216-1_s390x.deb ... 64s Unpacking ncurses-bin (6.5+20250216-1) over (6.5+20250125-2) ... 64s Setting up ncurses-bin (6.5+20250216-1) ... 64s (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 ... 55928 files and directories currently installed.) 64s Preparing to unpack .../ncurses-base_6.5+20250216-1_all.deb ... 64s Unpacking ncurses-base (6.5+20250216-1) over (6.5+20250125-2) ... 64s Setting up ncurses-base (6.5+20250216-1) ... 64s (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 ... 55928 files and directories currently installed.) 64s Preparing to unpack .../ncurses-term_6.5+20250216-1_all.deb ... 64s Unpacking ncurses-term (6.5+20250216-1) over (6.5+20250125-2) ... 64s Preparing to unpack .../libncursesw6_6.5+20250216-1_s390x.deb ... 64s Unpacking libncursesw6:s390x (6.5+20250216-1) over (6.5+20250125-2) ... 64s Preparing to unpack .../libncurses6_6.5+20250216-1_s390x.deb ... 64s Unpacking libncurses6:s390x (6.5+20250216-1) over (6.5+20250125-2) ... 64s Preparing to unpack .../libtinfo6_6.5+20250216-1_s390x.deb ... 64s Unpacking libtinfo6:s390x (6.5+20250216-1) over (6.5+20250125-2) ... 64s Setting up libtinfo6:s390x (6.5+20250216-1) ... 64s (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 ... 55929 files and directories currently installed.) 64s Preparing to unpack .../inetutils-telnet_2%3a2.5-6ubuntu1_s390x.deb ... 64s Unpacking inetutils-telnet (2:2.5-6ubuntu1) over (2:2.5-5ubuntu1) ... 64s Preparing to unpack .../telnet_0.17+2.5-6ubuntu1_all.deb ... 64s Unpacking telnet (0.17+2.5-6ubuntu1) over (0.17+2.5-5ubuntu1) ... 64s Setting up inetutils-telnet (2:2.5-6ubuntu1) ... 64s Setting up libncurses6:s390x (6.5+20250216-1) ... 64s Setting up libncursesw6:s390x (6.5+20250216-1) ... 64s Setting up ncurses-term (6.5+20250216-1) ... 64s Setting up telnet (0.17+2.5-6ubuntu1) ... 64s Processing triggers for man-db (2.13.0-1) ... 65s Processing triggers for libc-bin (2.40-4ubuntu1) ... 65s autopkgtest: DBG: testbed command exited with code 0 65s 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'] 65s Reading package lists... 65s Building dependency tree... 65s Reading state information... 65s Starting pkgProblemResolver with broken count: 0 65s Starting 2 pkgProblemResolver with broken count: 0 65s Done 66s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 66s autopkgtest: DBG: testbed command exited with code 0 66s 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.4hJkOK/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 66s autopkgtest: DBG: testbed command exited with code 1 66s autopkgtest [08:14:06]: rebooting testbed after setup commands that affected boot 66s autopkgtest: DBG: sending command to testbed: reboot 82s autopkgtest: DBG: got reply from testbed: ok 82s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 82s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot 82s autopkgtest: DBG: got reply from testbed: ok 82s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 82s autopkgtest: DBG: testbed command exited with code 0 82s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare 83s autopkgtest: DBG: got reply from testbed: ok 83s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 83s autopkgtest: DBG: testbed command exited with code 0 83s autopkgtest [08:14:23]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 83s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4hJkOK/testbed-packages"], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/testbed-packages /tmp/autopkgtest-work.yy331h41/out/testbed-packages 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 84s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare 85s autopkgtest: DBG: got reply from testbed: ok 85s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: Binaries: initialising 86s autopkgtest [08:14:26]: @@@@@@@@@@@@@@@@@@@@ apt-source inetutils 86s autopkgtest: DBG: blame += inetutils 86s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 86s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'inetutils'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-telnetd$'], kind short, sout pipe, serr raw, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-telnetd=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-ping$'], kind short, sout pipe, serr raw, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-ping=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^telnetd$'], kind short, sout pipe, serr raw, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'telnetd=0.17+2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-talk$'], kind short, sout pipe, serr raw, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-talk=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-ftp$'], kind short, sout pipe, serr raw, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-ftp=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-talkd$'], kind short, sout pipe, serr raw, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-talkd=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-traceroute$'], kind short, sout pipe, serr raw, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-traceroute=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^telnet$'], kind short, sout pipe, serr raw, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'telnet=0.17+2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-syslogd$'], kind short, sout pipe, serr raw, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-syslogd=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-ftpd$'], kind short, sout pipe, serr raw, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-ftpd=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-inetd$'], kind short, sout pipe, serr raw, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-inetd=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 90s autopkgtest: DBG: testbed command exited with code 0 90s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-telnet$'], kind short, sout pipe, serr raw, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-telnet=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^inetutils-tools$'], kind short, sout pipe, serr raw, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'inetutils-tools=2:2.5-6ubuntu1'], kind short, sout pipe, serr raw, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s autopkgtest: DBG: install_deps: deps_new=[] 91s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 91s autopkgtest: DBG: testbed command exited with code 0 91s 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.4hJkOK/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source inetutils=2:2.5-6ubuntu1 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=inetutils/2:2.5-6ubuntu1 ncurses/6.5+20250216-1'] 92s + cd / 92s + mktemp -d /tmp/autopkgtest.4hJkOK/build.XXX 92s + builddir=/tmp/autopkgtest.4hJkOK/build.M0K 92s + cd /tmp/autopkgtest.4hJkOK/build.M0K 92s + apt-get source -d -q --only-source inetutils=2:2.5-6ubuntu1 92s + OUT=Reading package lists... 92s NOTICE: 'inetutils' packaging is maintained in the 'Git' version control system at: 92s https://git.hadrons.org/git/debian/pkgs/inetutils.git 92s Please use: 92s git clone https://git.hadrons.org/git/debian/pkgs/inetutils.git 92s to retrieve the latest (possibly unreleased) updates to the package. 92s Need to get 1753 kB of source archives. 92s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (dsc) [3210 B] 92s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (tar) [1670 kB] 92s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (asc) [228 B] 92s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (diff) [79.5 kB] 92s Fetched 1753 kB in 1s (2443 kB/s) 92s Download complete and in download only mode 92s + [ -n ] 92s + grep ^Get: 92s + echo Reading package lists... 92s NOTICE: 'inetutils' packaging is maintained in the 'Git' version control system at: 92s https://git.hadrons.org/git/debian/pkgs/inetutils.git 92s Please use: 92s git clone https://git.hadrons.org/git/debian/pkgs/inetutils.git 92s to retrieve the latest (possibly unreleased) updates to the package. 92s Need to get 1753 kB of source archives. 92s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (dsc) [3210 B] 92s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (tar) [1670 kB] 92s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (asc) [228 B] 92s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (diff) [79.5 kB] 92s Fetched 1753 kB in 1s (2443 kB/s) 92s Download complete and in download only mode 92s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (dsc) [3210 B] 92s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (tar) [1670 kB] 92s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (asc) [228 B] 92s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main inetutils 2:2.5-6ubuntu1 (diff) [79.5 kB] 92s + dpkg-source -x inetutils_2.5-6ubuntu1.dsc src 92s gpgv: Signature made Tue Feb 18 22:00:56 2025 UTC 92s gpgv: using RSA key 5C7ABEA20F8630459CC8C8B5E27F2CF8458C2FA4 92s gpgv: Can't check signature: No public key 92s dpkg-source: warning: cannot verify inline signature for ./inetutils_2.5-6ubuntu1.dsc: no acceptable signature found 93s + chmod -R a+rX . 93s + cd src/. 93s + pwd 93s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest [08:14:33]: testing package inetutils version 2:2.5-6ubuntu1 93s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/ /tmp/autopkgtest-work.yy331h41/out/pkg/debian/ 93s autopkgtest: DBG: got reply from testbed: ok 93s autopkgtest: DBG: processing dependency build-essential 93s autopkgtest: DBG: processing dependency autoconf 93s autopkgtest: DBG: processing dependency automake 93s autopkgtest: DBG: processing dependency gettext 93s autopkgtest: DBG: processing dependency file 93s autopkgtest: DBG: processing dependency netbase 93s autopkgtest: DBG: processing dependency net-tools 93s autopkgtest: DBG: processing dependency inetutils-tools 93s autopkgtest: DBG: marked alternatives ['inetutils-tools'] as a synthesised dependency 93s autopkgtest: DBG: processing dependency inetutils-syslogd 93s autopkgtest: DBG: marked alternatives ['inetutils-syslogd'] as a synthesised dependency 93s autopkgtest: DBG: processing dependency inetutils-inetd 93s autopkgtest: DBG: marked alternatives ['inetutils-inetd'] as a synthesised dependency 93s autopkgtest: DBG: processing dependency inetutils-telnet 93s autopkgtest: DBG: marked alternatives ['inetutils-telnet'] as a synthesised dependency 93s 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'] 94s autopkgtest: DBG: processing dependency build-essential 94s autopkgtest: DBG: processing dependency autoconf 94s autopkgtest: DBG: processing dependency automake 94s autopkgtest: DBG: processing dependency gettext 94s autopkgtest: DBG: processing dependency file 94s autopkgtest: DBG: processing dependency netbase 94s autopkgtest: DBG: processing dependency net-tools 94s autopkgtest: DBG: processing dependency inetutils-ftp 94s autopkgtest: DBG: marked alternatives ['inetutils-ftp'] as a synthesised dependency 94s autopkgtest: DBG: processing dependency inetutils-ftpd 94s autopkgtest: DBG: marked alternatives ['inetutils-ftpd'] as a synthesised dependency 94s autopkgtest: DBG: processing dependency inetutils-traceroute 94s autopkgtest: DBG: marked alternatives ['inetutils-traceroute'] as a synthesised dependency 94s 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'] 94s autopkgtest [08:14:34]: build not needed 94s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/build.M0K/src/ /tmp/autopkgtest-work.yy331h41/out/tests-tree/ 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: processing dependency build-essential 95s autopkgtest: DBG: processing dependency autoconf 95s autopkgtest: DBG: processing dependency automake 95s autopkgtest: DBG: processing dependency gettext 95s autopkgtest: DBG: processing dependency file 95s autopkgtest: DBG: processing dependency netbase 95s autopkgtest: DBG: processing dependency net-tools 95s autopkgtest: DBG: processing dependency inetutils-tools 95s autopkgtest: DBG: marked alternatives ['inetutils-tools'] as a synthesised dependency 95s autopkgtest: DBG: processing dependency inetutils-syslogd 95s autopkgtest: DBG: marked alternatives ['inetutils-syslogd'] as a synthesised dependency 95s autopkgtest: DBG: processing dependency inetutils-inetd 95s autopkgtest: DBG: marked alternatives ['inetutils-inetd'] as a synthesised dependency 95s autopkgtest: DBG: processing dependency inetutils-telnet 95s autopkgtest: DBG: marked alternatives ['inetutils-telnet'] as a synthesised dependency 95s 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'] 96s autopkgtest: DBG: processing dependency build-essential 96s autopkgtest: DBG: processing dependency autoconf 96s autopkgtest: DBG: processing dependency automake 96s autopkgtest: DBG: processing dependency gettext 96s autopkgtest: DBG: processing dependency file 96s autopkgtest: DBG: processing dependency netbase 96s autopkgtest: DBG: processing dependency net-tools 96s autopkgtest: DBG: processing dependency inetutils-ftp 96s autopkgtest: DBG: marked alternatives ['inetutils-ftp'] as a synthesised dependency 96s autopkgtest: DBG: processing dependency inetutils-ftpd 96s autopkgtest: DBG: marked alternatives ['inetutils-ftpd'] as a synthesised dependency 96s autopkgtest: DBG: processing dependency inetutils-traceroute 96s autopkgtest: DBG: marked alternatives ['inetutils-traceroute'] as a synthesised dependency 96s 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'] 96s autopkgtest [08:14:36]: test test-commands: preparing testbed 96s 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'] 96s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 96s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-tools', 'inetutils-syslogd', 'inetutils-inetd', 'inetutils-telnet'] 96s autopkgtest: DBG: install-deps: satisfying build-essential, autoconf, automake, gettext, file, netbase, net-tools, inetutils-tools, inetutils-syslogd, inetutils-inetd, inetutils-telnet 96s autopkgtest: DBG: can use apt-get on testbed: True 96s 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'] 96s Reading package lists... 96s Building dependency tree... 96s Reading state information... 96s Starting pkgProblemResolver with broken count: 0 96s Starting 2 pkgProblemResolver with broken count: 0 96s Done 96s The following packages were automatically installed and are no longer required: 96s libestr0 libfastjson4 96s Use 'sudo apt autoremove' to remove them. 96s The following packages will be REMOVED: 96s rsyslog 96s The following NEW packages will be installed: 96s autoconf automake autotools-dev build-essential cpp cpp-14 96s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ g++-14 g++-14-s390x-linux-gnu 96s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 96s gettext inetutils-inetd inetutils-syslogd inetutils-tools libasan8 libcc1-0 96s libgcc-14-dev libgomp1 libisl23 libitm1 libmpc3 libstdc++-14-dev libubsan1 96s m4 net-tools tcpd update-inetd 96s 0 upgraded, 33 newly installed, 1 to remove and 0 not upgraded. 96s Need to get 51.5 MB of archives. 96s After this operation, 163 MB of additional disk space will be used. 96s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-syslogd s390x 2:2.5-6ubuntu1 [64.5 kB] 97s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x tcpd s390x 7.6.q-35 [24.8 kB] 97s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x update-inetd all 4.53 [24.0 kB] 97s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-inetd s390x 2:2.5-6ubuntu1 [48.0 kB] 97s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 97s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 97s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 97s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 97s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 97s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 97s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 97s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 97s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 97s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 97s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 97s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 97s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 97s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 97s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 97s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 97s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 98s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 98s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 98s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 98s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 98s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 98s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 98s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 98s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 98s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 98s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 98s Get:32 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-tools s390x 2:2.5-6ubuntu1 [81.5 kB] 98s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x net-tools s390x 2.10-1.1ubuntu1 [207 kB] 98s Preconfiguring packages ... 98s Fetched 51.5 MB in 2s (28.2 MB/s) 99s (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 ... 55929 files and directories currently installed.) 99s Removing rsyslog (8.2412.0-2ubuntu1) ... 99s Selecting previously unselected package inetutils-syslogd. 99s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 99s Preparing to unpack .../00-inetutils-syslogd_2%3a2.5-6ubuntu1_s390x.deb ... 99s Unpacking inetutils-syslogd (2:2.5-6ubuntu1) ... 99s Selecting previously unselected package tcpd. 99s Preparing to unpack .../01-tcpd_7.6.q-35_s390x.deb ... 99s Unpacking tcpd (7.6.q-35) ... 99s Selecting previously unselected package update-inetd. 99s Preparing to unpack .../02-update-inetd_4.53_all.deb ... 99s Unpacking update-inetd (4.53) ... 99s Selecting previously unselected package inetutils-inetd. 99s Preparing to unpack .../03-inetutils-inetd_2%3a2.5-6ubuntu1_s390x.deb ... 99s Unpacking inetutils-inetd (2:2.5-6ubuntu1) ... 99s Selecting previously unselected package m4. 99s Preparing to unpack .../04-m4_1.4.19-5_s390x.deb ... 99s Unpacking m4 (1.4.19-5) ... 99s Selecting previously unselected package autoconf. 99s Preparing to unpack .../05-autoconf_2.72-3_all.deb ... 99s Unpacking autoconf (2.72-3) ... 99s Selecting previously unselected package autotools-dev. 99s Preparing to unpack .../06-autotools-dev_20220109.1_all.deb ... 99s Unpacking autotools-dev (20220109.1) ... 99s Selecting previously unselected package automake. 99s Preparing to unpack .../07-automake_1%3a1.17-3_all.deb ... 99s Unpacking automake (1:1.17-3) ... 99s Selecting previously unselected package libisl23:s390x. 99s Preparing to unpack .../08-libisl23_0.27-1_s390x.deb ... 99s Unpacking libisl23:s390x (0.27-1) ... 99s Selecting previously unselected package libmpc3:s390x. 99s Preparing to unpack .../09-libmpc3_1.3.1-1build2_s390x.deb ... 99s Unpacking libmpc3:s390x (1.3.1-1build2) ... 99s Selecting previously unselected package cpp-14-s390x-linux-gnu. 99s Preparing to unpack .../10-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 99s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 99s Selecting previously unselected package cpp-14. 99s Preparing to unpack .../11-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 99s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 99s Selecting previously unselected package cpp-s390x-linux-gnu. 99s Preparing to unpack .../12-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 99s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 99s Selecting previously unselected package cpp. 99s Preparing to unpack .../13-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 99s Unpacking cpp (4:14.2.0-1ubuntu1) ... 99s Selecting previously unselected package libcc1-0:s390x. 99s Preparing to unpack .../14-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 99s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 99s Selecting previously unselected package libgomp1:s390x. 99s Preparing to unpack .../15-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 99s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 99s Selecting previously unselected package libitm1:s390x. 99s Preparing to unpack .../16-libitm1_15-20250213-1ubuntu1_s390x.deb ... 99s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 99s Selecting previously unselected package libasan8:s390x. 99s Preparing to unpack .../17-libasan8_15-20250213-1ubuntu1_s390x.deb ... 99s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 99s Selecting previously unselected package libubsan1:s390x. 99s Preparing to unpack .../18-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 99s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 99s Selecting previously unselected package libgcc-14-dev:s390x. 99s Preparing to unpack .../19-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 99s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 99s Selecting previously unselected package gcc-14-s390x-linux-gnu. 99s Preparing to unpack .../20-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 99s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 99s Selecting previously unselected package gcc-14. 99s Preparing to unpack .../21-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 99s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 100s Selecting previously unselected package gcc-s390x-linux-gnu. 100s Preparing to unpack .../22-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 100s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 100s Selecting previously unselected package gcc. 100s Preparing to unpack .../23-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 100s Unpacking gcc (4:14.2.0-1ubuntu1) ... 100s Selecting previously unselected package libstdc++-14-dev:s390x. 100s Preparing to unpack .../24-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 100s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 100s Selecting previously unselected package g++-14-s390x-linux-gnu. 100s Preparing to unpack .../25-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 100s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 100s Selecting previously unselected package g++-14. 100s Preparing to unpack .../26-g++-14_14.2.0-17ubuntu1_s390x.deb ... 100s Unpacking g++-14 (14.2.0-17ubuntu1) ... 100s Selecting previously unselected package g++-s390x-linux-gnu. 100s Preparing to unpack .../27-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 100s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 100s Selecting previously unselected package g++. 100s Preparing to unpack .../28-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 100s Unpacking g++ (4:14.2.0-1ubuntu1) ... 100s Selecting previously unselected package build-essential. 100s Preparing to unpack .../29-build-essential_12.10ubuntu1_s390x.deb ... 100s Unpacking build-essential (12.10ubuntu1) ... 100s Selecting previously unselected package gettext. 100s Preparing to unpack .../30-gettext_0.23.1-1_s390x.deb ... 100s Unpacking gettext (0.23.1-1) ... 100s Selecting previously unselected package inetutils-tools. 100s Preparing to unpack .../31-inetutils-tools_2%3a2.5-6ubuntu1_s390x.deb ... 100s Unpacking inetutils-tools (2:2.5-6ubuntu1) ... 100s Selecting previously unselected package net-tools. 100s Preparing to unpack .../32-net-tools_2.10-1.1ubuntu1_s390x.deb ... 100s Unpacking net-tools (2.10-1.1ubuntu1) ... 100s Setting up net-tools (2.10-1.1ubuntu1) ... 100s Setting up update-inetd (4.53) ... 100s Setting up m4 (1.4.19-5) ... 100s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 100s Setting up autotools-dev (20220109.1) ... 100s Setting up inetutils-syslogd (2:2.5-6ubuntu1) ... 100s Created symlink '/etc/systemd/system/syslogd.service' → '/usr/lib/systemd/system/inetutils-syslogd.service'. 100s Removed '/etc/systemd/system/syslog.service'. 100s Created symlink '/etc/systemd/system/syslog.service' → '/usr/lib/systemd/system/inetutils-syslogd.service'. 100s Created symlink '/etc/systemd/system/multi-user.target.wants/inetutils-syslogd.service' → '/usr/lib/systemd/system/inetutils-syslogd.service'. 101s Setting up libmpc3:s390x (1.3.1-1build2) ... 101s Setting up autoconf (2.72-3) ... 101s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 101s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 101s Setting up inetutils-tools (2:2.5-6ubuntu1) ... 101s Setting up libisl23:s390x (0.27-1) ... 101s Setting up tcpd (7.6.q-35) ... 101s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 101s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 101s Setting up automake (1:1.17-3) ... 101s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 101s Setting up gettext (0.23.1-1) ... 101s Setting up inetutils-inetd (2:2.5-6ubuntu1) ... 101s Created symlink '/etc/systemd/system/inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 101s Created symlink '/etc/systemd/system/multi-user.target.wants/inetutils-inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 101s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 101s Setting up cpp-14 (14.2.0-17ubuntu1) ... 101s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 101s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 101s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 101s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 101s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 101s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 101s Setting up cpp (4:14.2.0-1ubuntu1) ... 101s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 101s Setting up gcc-14 (14.2.0-17ubuntu1) ... 101s Setting up g++-14 (14.2.0-17ubuntu1) ... 101s Setting up gcc (4:14.2.0-1ubuntu1) ... 101s Setting up g++ (4:14.2.0-1ubuntu1) ... 101s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 101s Setting up build-essential (12.10ubuntu1) ... 101s Processing triggers for libc-bin (2.40-4ubuntu1) ... 101s Processing triggers for man-db (2.13.0-1) ... 102s Processing triggers for install-info (7.1.1-1) ... 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-tools'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-syslogd'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-inetd'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-telnet'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4hJkOK/test-commands-packages.all"], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-commands-packages.all /tmp/autopkgtest-work.yy331h41/out/test-commands-packages.all 104s autopkgtest: DBG: got reply from testbed: ok 104s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4hJkOK/build.M0K/src'], kind short, sout raw, serr raw, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4hJkOK/build.M0K/src already exists 104s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '/tmp/autopkgtest.4hJkOK/build.M0K/src'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [08:14:44]: test test-commands: [----------------------- 104s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4hJkOK/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4hJkOK/test-commands-artifacts --chdir=/tmp/autopkgtest.4hJkOK/build.M0K/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.4hJkOK/test-commands-stderr --stdout=/tmp/autopkgtest.4hJkOK/test-commands-stdout --tmp=/tmp/autopkgtest.4hJkOK/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=inetutils/2:2.5-6ubuntu1 ncurses/6.5+20250216-1' --make-executable=/tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-commands -- /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-commands"], kind test, sout raw, serr raw, env [] 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4hJkOK/test-commands-artifacts 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: changing to directory: /tmp/autopkgtest.4hJkOK/build.M0K/src 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: LANG=C.UTF-8 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LANGUAGE 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_ADDRESS 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_ALL 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_COLLATE 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_CTYPE 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_IDENTIFICATION 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_MEASUREMENT 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_MESSAGES 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_MONETARY 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_NAME 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_NUMERIC 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_PAPER 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_TELEPHONE 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_TIME 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: pretending to be a login shell 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: will write standard error to /tmp/autopkgtest.4hJkOK/test-commands-stderr 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: will write stdout to /tmp/autopkgtest.4hJkOK/test-commands-stdout 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4hJkOK/autopkgtest_tmp 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=inetutils/2:2.5-6ubuntu1 ncurses/6.5+20250216-1 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: marking as executable: /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-commands 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: command to run: /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-commands 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: copying /tmp/tmp.FI0MRwiMwi/out to stdout and file: /tmp/autopkgtest.4hJkOK/test-commands-stdout 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: copying /tmp/tmp.FI0MRwiMwi/err to standard error and file: /tmp/autopkgtest.4hJkOK/test-commands-stdout 104s /tmp/autopkgtest.4hJkOK/wrapper.sh: writing script pid 2292 to /tmp/autopkgtest_script_pid 115s checking build system type... s390x-ibm-linux-gnu 115s checking host system type... s390x-ibm-linux-gnu 115s checking for a BSD-compatible install... /usr/bin/install -c 115s checking whether sleep supports fractional seconds... yes 115s checking filesystem timestamp resolution... 0.01 115s checking whether build environment is sane... configure: error: newly created file is older than distributed files! 115s Check your system clock 115s no 115s /tmp/autopkgtest.4hJkOK/wrapper.sh: checking for leaked background processes... 115s /tmp/autopkgtest.4hJkOK/wrapper.sh: waiting for tee/cat subprocesses... 115s /tmp/autopkgtest.4hJkOK/wrapper.sh: cleaning up... 115s /tmp/autopkgtest.4hJkOK/wrapper.sh: Exit status: 1 115s autopkgtest: DBG: testbed command exited with code 1 115s autopkgtest [08:14:55]: test test-commands: -----------------------] 115s autopkgtest: DBG: testbed executing test finished with exit status 1 115s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-commands-stdout /tmp/autopkgtest-work.yy331h41/out/test-commands-stdout 115s autopkgtest: DBG: got reply from testbed: ok 115s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-commands-stderr /tmp/autopkgtest-work.yy331h41/out/test-commands-stderr 115s autopkgtest: DBG: got reply from testbed: ok 115s test-commands FAIL non-zero exit status 1 115s autopkgtest [08:14:55]: test test-commands: - - - - - - - - - - results - - - - - - - - - - 115s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-commands-artifacts/ /tmp/autopkgtest-work.yy331h41/out/artifacts/ 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4hJkOK/test-commands-artifacts', '/tmp/autopkgtest.4hJkOK/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [08:14:56]: test test-root-commands: preparing testbed 116s 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'] 116s autopkgtest: DBG: testbed reset 116s autopkgtest: DBG: sending command to testbed: revert 186s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.4hJkOK 186s autopkgtest: DBG: sending command to testbed: print-execute-command 186s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.cml6aj3n/runcmd 186s autopkgtest: DBG: sending command to testbed: capabilities 186s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system suggested-normal-user=ubuntu ok revert root-on-testbed isolation-machine 186s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'suggested-normal-user=ubuntu', 'ok', 'revert', 'root-on-testbed', 'isolation-machine', 'has_internet'] 186s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.4hJkOK/wrapper.sh 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/wrapper.sh'], kind short, sout raw, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest [08:16:06]: testbed dpkg architecture: s390x 186s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 186s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest [08:16:06]: testbed apt version: 2.9.30 186s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed has eatmydata 187s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest [08:16:07]: @@@@@@@@@@@@@@@@@@@@ test bed setup 187s 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 [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest [08:16:07]: testbed release detected to be: plucky 187s 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 [] 187s autopkgtest: DBG: testbed command exited with code 0 187s 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 [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: adding APT source: Types: deb deb-src 187s URIs: http://ftpmaster.internal/ubuntu/ 187s Suites: plucky-proposed 187s Components: main restricted universe multiverse 187s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 187s 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 [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 187s Package: * 187s Pin: release plucky-proposed 187s Pin-Priority: 500 187s 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 [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest [08:16:07]: updating testbed package index (apt update) 187s 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'] 188s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 188s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 188s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 188s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 188s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 188s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 188s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 188s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 188s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 188s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 188s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 189s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 189s Fetched 1651 kB in 1s (1798 kB/s) 189s Reading package lists... 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 189s Package: * 189s Pin: release plucky-proposed 189s Pin-Priority: 100 189s 189s Package: src:inetutils:any src:ncurses:any 189s Pin: release plucky-proposed 189s Pin-Priority: 995 189s 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:inetutils:any src:ncurses:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s 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.4hJkOK/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s 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'] 190s + lsb_release --codename --short 190s + RELEASE=plucky 190s + cat 190s + [ plucky != trusty ] 190s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 190s Reading package lists... 190s Building dependency tree... 190s Reading state information... 190s Calculating upgrade... 190s The following packages were automatically installed and are no longer required: 190s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 190s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 190s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 190s linux-tools-6.11.0-8-generic 190s Use 'sudo apt autoremove' to remove them. 190s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 190s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 190s + /usr/lib/apt/apt-helper analyze-pattern ?true 190s + uname -r 190s + sed s/\./\\./g 190s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 190s + apt list ?obsolete 190s + + cut -d/ -f1 190s tail -n+2 190s + grep -v ^linux-.*6\.12\.0-15-generic.* 190s + true 190s + obsolete_pkgs= 190s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 190s Reading package lists... 190s Building dependency tree... 190s Reading state information... 190s The following packages will be REMOVED: 190s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 190s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 190s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 190s linux-tools-6.11.0-8-generic* 191s 0 upgraded, 0 newly installed, 9 to remove and 8 not upgraded. 191s After this operation, 167 MB disk space will be freed. 191s (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.) 191s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 191s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 191s Removing libpython3.12t64:s390x (3.12.9-1) ... 191s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 191s Removing libnsl2:s390x (1.3.0-3build3) ... 191s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 191s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 191s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 192s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 192s Processing triggers for libc-bin (2.40-4ubuntu1) ... 192s (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 ... 55930 files and directories currently installed.) 192s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 192s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 192s + grep -q trusty /etc/lsb-release 192s + [ ! -d /usr/share/doc/unattended-upgrades ] 192s + [ ! -d /usr/share/doc/lxd ] 192s + [ ! -d /usr/share/doc/lxd-client ] 192s + [ ! -d /usr/share/doc/snapd ] 192s + type iptables 192s + cat 192s + chmod 755 /etc/rc.local 192s + . /etc/rc.local 192s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 192s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 192s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 192s + uname -m 192s + [ s390x = ppc64le ] 192s + [ -d /run/systemd/system ] 192s + systemd-detect-virt --quiet --vm 192s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 192s + cat 192s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 192s + echo COMPRESS=lz4 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest [08:16:12]: upgrading testbed (apt dist-upgrade and autopurge) 192s 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'] 192s Reading package lists... 192s Building dependency tree... 192s Reading state information... 192s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 192s Starting 2 pkgProblemResolver with broken count: 0 192s Done 192s Entering ResolveByKeep 193s 193s The following packages will be upgraded: 193s inetutils-telnet libncurses6 libncursesw6 libtinfo6 ncurses-base ncurses-bin 193s ncurses-term telnet 193s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 193s Need to get 1011 kB of archives. 193s After this operation, 16.4 kB of additional disk space will be used. 193s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ncurses-bin s390x 6.5+20250216-1 [197 kB] 193s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ncurses-base all 6.5+20250216-1 [25.9 kB] 193s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ncurses-term all 6.5+20250216-1 [276 kB] 193s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libncursesw6 s390x 6.5+20250216-1 [158 kB] 193s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libncurses6 s390x 6.5+20250216-1 [122 kB] 193s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libtinfo6 s390x 6.5+20250216-1 [117 kB] 193s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x inetutils-telnet s390x 2:2.5-6ubuntu1 [111 kB] 193s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x telnet all 0.17+2.5-6ubuntu1 [3694 B] 194s Fetched 1011 kB in 1s (1356 kB/s) 194s (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 ... 55928 files and directories currently installed.) 194s Preparing to unpack .../ncurses-bin_6.5+20250216-1_s390x.deb ... 194s Unpacking ncurses-bin (6.5+20250216-1) over (6.5+20250125-2) ... 194s Setting up ncurses-bin (6.5+20250216-1) ... 194s (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 ... 55928 files and directories currently installed.) 194s Preparing to unpack .../ncurses-base_6.5+20250216-1_all.deb ... 194s Unpacking ncurses-base (6.5+20250216-1) over (6.5+20250125-2) ... 194s Setting up ncurses-base (6.5+20250216-1) ... 194s (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 ... 55928 files and directories currently installed.) 194s Preparing to unpack .../ncurses-term_6.5+20250216-1_all.deb ... 194s Unpacking ncurses-term (6.5+20250216-1) over (6.5+20250125-2) ... 194s Preparing to unpack .../libncursesw6_6.5+20250216-1_s390x.deb ... 194s Unpacking libncursesw6:s390x (6.5+20250216-1) over (6.5+20250125-2) ... 194s Preparing to unpack .../libncurses6_6.5+20250216-1_s390x.deb ... 194s Unpacking libncurses6:s390x (6.5+20250216-1) over (6.5+20250125-2) ... 194s Preparing to unpack .../libtinfo6_6.5+20250216-1_s390x.deb ... 194s Unpacking libtinfo6:s390x (6.5+20250216-1) over (6.5+20250125-2) ... 194s Setting up libtinfo6:s390x (6.5+20250216-1) ... 194s (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 ... 55929 files and directories currently installed.) 194s Preparing to unpack .../inetutils-telnet_2%3a2.5-6ubuntu1_s390x.deb ... 194s Unpacking inetutils-telnet (2:2.5-6ubuntu1) over (2:2.5-5ubuntu1) ... 194s Preparing to unpack .../telnet_0.17+2.5-6ubuntu1_all.deb ... 194s Unpacking telnet (0.17+2.5-6ubuntu1) over (0.17+2.5-5ubuntu1) ... 194s Setting up inetutils-telnet (2:2.5-6ubuntu1) ... 194s Setting up libncurses6:s390x (6.5+20250216-1) ... 194s Setting up libncursesw6:s390x (6.5+20250216-1) ... 194s Setting up ncurses-term (6.5+20250216-1) ... 194s Setting up telnet (0.17+2.5-6ubuntu1) ... 194s Processing triggers for man-db (2.13.0-1) ... 195s Processing triggers for libc-bin (2.40-4ubuntu1) ... 195s autopkgtest: DBG: testbed command exited with code 0 195s 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'] 195s Reading package lists... 195s Building dependency tree... 195s Reading state information... 195s Starting pkgProblemResolver with broken count: 0 195s Starting 2 pkgProblemResolver with broken count: 0 195s Done 195s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 195s autopkgtest: DBG: testbed command exited with code 0 195s 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.4hJkOK/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 195s autopkgtest: DBG: testbed command exited with code 1 195s autopkgtest [08:16:15]: rebooting testbed after setup commands that affected boot 195s autopkgtest: DBG: sending command to testbed: reboot 211s autopkgtest: DBG: got reply from testbed: ok 211s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 211s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 211s autopkgtest: DBG: testbed command exited with code 0 211s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot 212s autopkgtest: DBG: got reply from testbed: ok 212s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare 212s autopkgtest: DBG: got reply from testbed: ok 212s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: testbed command ['uname', '-srv'], 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.4hJkOK/testbed-packages"], 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.4hJkOK/testbed-packages /tmp/autopkgtest-work.yy331h41/out/testbed-packages 213s autopkgtest: DBG: got reply from testbed: ok 213s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 213s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 213s autopkgtest: DBG: testbed command exited with code 0 213s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot 214s autopkgtest: DBG: got reply from testbed: ok 214s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK'], kind short, sout raw, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare 214s autopkgtest: DBG: got reply from testbed: ok 214s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 215s autopkgtest: DBG: testbed command exited with code 0 215s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4hJkOK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 215s autopkgtest: DBG: testbed command exited with code 0 215s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 215s autopkgtest: DBG: testbed command exited with code 0 215s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 215s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'autoconf', 'automake', 'gettext', 'file', 'netbase', 'net-tools', 'inetutils-ftp', 'inetutils-ftpd', 'inetutils-traceroute'] 215s autopkgtest: DBG: install-deps: satisfying build-essential, autoconf, automake, gettext, file, netbase, net-tools, inetutils-ftp, inetutils-ftpd, inetutils-traceroute 215s autopkgtest: DBG: can use apt-get on testbed: True 215s 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'] 215s Reading package lists... 215s Building dependency tree... 215s Reading state information... 215s Starting pkgProblemResolver with broken count: 0 215s Starting 2 pkgProblemResolver with broken count: 0 215s Done 216s The following NEW packages will be installed: 216s autoconf automake autotools-dev build-essential cpp cpp-14 216s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ g++-14 g++-14-s390x-linux-gnu 216s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 216s gettext inetutils-ftp inetutils-ftpd inetutils-inetd inetutils-traceroute 216s libasan8 libcc1-0 libgcc-14-dev libgomp1 libisl23 libitm1 libmpc3 216s libstdc++-14-dev libubsan1 m4 net-tools tcpd update-inetd 216s 0 upgraded, 34 newly installed, 0 to remove and 0 not upgraded. 216s Need to get 51.6 MB of archives. 216s After this operation, 165 MB of additional disk space will be used. 216s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x tcpd s390x 7.6.q-35 [24.8 kB] 216s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x update-inetd all 4.53 [24.0 kB] 216s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-inetd s390x 2:2.5-6ubuntu1 [48.0 kB] 216s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 216s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 216s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 216s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 216s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 217s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 217s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 219s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 219s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 219s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 219s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 219s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 219s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 219s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 219s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 220s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 220s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 224s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 224s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 224s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 224s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 225s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 227s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 227s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 227s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 227s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 227s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 227s Get:31 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-ftp s390x 2:2.5-6ubuntu1 [87.5 kB] 227s Get:32 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-ftpd s390x 2:2.5-6ubuntu1 [76.3 kB] 227s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x net-tools s390x 2.10-1.1ubuntu1 [207 kB] 227s Get:34 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x inetutils-traceroute s390x 2:2.5-6ubuntu1 [44.0 kB] 228s Preconfiguring packages ... 228s Fetched 51.6 MB in 12s (4378 kB/s) 228s Selecting previously unselected package tcpd. 228s (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 ... 55929 files and directories currently installed.) 228s Preparing to unpack .../00-tcpd_7.6.q-35_s390x.deb ... 228s Unpacking tcpd (7.6.q-35) ... 228s Selecting previously unselected package update-inetd. 228s Preparing to unpack .../01-update-inetd_4.53_all.deb ... 228s Unpacking update-inetd (4.53) ... 228s Selecting previously unselected package inetutils-inetd. 228s Preparing to unpack .../02-inetutils-inetd_2%3a2.5-6ubuntu1_s390x.deb ... 228s Unpacking inetutils-inetd (2:2.5-6ubuntu1) ... 228s Selecting previously unselected package m4. 228s Preparing to unpack .../03-m4_1.4.19-5_s390x.deb ... 228s Unpacking m4 (1.4.19-5) ... 228s Selecting previously unselected package autoconf. 228s Preparing to unpack .../04-autoconf_2.72-3_all.deb ... 228s Unpacking autoconf (2.72-3) ... 228s Selecting previously unselected package autotools-dev. 228s Preparing to unpack .../05-autotools-dev_20220109.1_all.deb ... 228s Unpacking autotools-dev (20220109.1) ... 228s Selecting previously unselected package automake. 228s Preparing to unpack .../06-automake_1%3a1.17-3_all.deb ... 228s Unpacking automake (1:1.17-3) ... 228s Selecting previously unselected package libisl23:s390x. 228s Preparing to unpack .../07-libisl23_0.27-1_s390x.deb ... 228s Unpacking libisl23:s390x (0.27-1) ... 228s Selecting previously unselected package libmpc3:s390x. 228s Preparing to unpack .../08-libmpc3_1.3.1-1build2_s390x.deb ... 228s Unpacking libmpc3:s390x (1.3.1-1build2) ... 228s Selecting previously unselected package cpp-14-s390x-linux-gnu. 228s Preparing to unpack .../09-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 228s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 228s Selecting previously unselected package cpp-14. 228s Preparing to unpack .../10-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 228s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 228s Selecting previously unselected package cpp-s390x-linux-gnu. 228s Preparing to unpack .../11-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 228s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 228s Selecting previously unselected package cpp. 228s Preparing to unpack .../12-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 228s Unpacking cpp (4:14.2.0-1ubuntu1) ... 228s Selecting previously unselected package libcc1-0:s390x. 228s Preparing to unpack .../13-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 228s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 228s Selecting previously unselected package libgomp1:s390x. 228s Preparing to unpack .../14-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 228s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 228s Selecting previously unselected package libitm1:s390x. 228s Preparing to unpack .../15-libitm1_15-20250213-1ubuntu1_s390x.deb ... 228s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 228s Selecting previously unselected package libasan8:s390x. 228s Preparing to unpack .../16-libasan8_15-20250213-1ubuntu1_s390x.deb ... 228s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 228s Selecting previously unselected package libubsan1:s390x. 228s Preparing to unpack .../17-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 228s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 228s Selecting previously unselected package libgcc-14-dev:s390x. 228s Preparing to unpack .../18-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 228s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 228s Selecting previously unselected package gcc-14-s390x-linux-gnu. 228s Preparing to unpack .../19-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 228s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 228s Selecting previously unselected package gcc-14. 228s Preparing to unpack .../20-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 228s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 228s Selecting previously unselected package gcc-s390x-linux-gnu. 228s Preparing to unpack .../21-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 228s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 228s Selecting previously unselected package gcc. 228s Preparing to unpack .../22-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 228s Unpacking gcc (4:14.2.0-1ubuntu1) ... 228s Selecting previously unselected package libstdc++-14-dev:s390x. 228s Preparing to unpack .../23-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 228s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 229s Selecting previously unselected package g++-14-s390x-linux-gnu. 229s Preparing to unpack .../24-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 229s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 229s Selecting previously unselected package g++-14. 229s Preparing to unpack .../25-g++-14_14.2.0-17ubuntu1_s390x.deb ... 229s Unpacking g++-14 (14.2.0-17ubuntu1) ... 229s Selecting previously unselected package g++-s390x-linux-gnu. 229s Preparing to unpack .../26-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 229s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 229s Selecting previously unselected package g++. 229s Preparing to unpack .../27-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 229s Unpacking g++ (4:14.2.0-1ubuntu1) ... 229s Selecting previously unselected package build-essential. 229s Preparing to unpack .../28-build-essential_12.10ubuntu1_s390x.deb ... 229s Unpacking build-essential (12.10ubuntu1) ... 229s Selecting previously unselected package gettext. 229s Preparing to unpack .../29-gettext_0.23.1-1_s390x.deb ... 229s Unpacking gettext (0.23.1-1) ... 229s Selecting previously unselected package inetutils-ftp. 229s Preparing to unpack .../30-inetutils-ftp_2%3a2.5-6ubuntu1_s390x.deb ... 229s Unpacking inetutils-ftp (2:2.5-6ubuntu1) ... 229s Selecting previously unselected package inetutils-ftpd. 229s Preparing to unpack .../31-inetutils-ftpd_2%3a2.5-6ubuntu1_s390x.deb ... 229s Unpacking inetutils-ftpd (2:2.5-6ubuntu1) ... 229s Selecting previously unselected package net-tools. 229s Preparing to unpack .../32-net-tools_2.10-1.1ubuntu1_s390x.deb ... 229s Unpacking net-tools (2.10-1.1ubuntu1) ... 229s Selecting previously unselected package inetutils-traceroute. 229s Preparing to unpack .../33-inetutils-traceroute_2%3a2.5-6ubuntu1_s390x.deb ... 229s Unpacking inetutils-traceroute (2:2.5-6ubuntu1) ... 229s Setting up net-tools (2.10-1.1ubuntu1) ... 229s Setting up update-inetd (4.53) ... 229s Setting up m4 (1.4.19-5) ... 229s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 229s Setting up inetutils-traceroute (2:2.5-6ubuntu1) ... 229s update-alternatives: using /usr/bin/inetutils-traceroute to provide /usr/bin/traceroute (traceroute) in auto mode 229s Setting up autotools-dev (20220109.1) ... 229s Setting up inetutils-ftp (2:2.5-6ubuntu1) ... 229s Setting up libmpc3:s390x (1.3.1-1build2) ... 229s Setting up autoconf (2.72-3) ... 229s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 229s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 229s Setting up libisl23:s390x (0.27-1) ... 229s Setting up tcpd (7.6.q-35) ... 229s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 229s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 229s Setting up automake (1:1.17-3) ... 229s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 229s Setting up gettext (0.23.1-1) ... 229s Setting up inetutils-inetd (2:2.5-6ubuntu1) ... 229s Created symlink '/etc/systemd/system/inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 229s Created symlink '/etc/systemd/system/multi-user.target.wants/inetutils-inetd.service' → '/usr/lib/systemd/system/inetutils-inetd.service'. 229s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 229s Setting up cpp-14 (14.2.0-17ubuntu1) ... 229s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 229s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 229s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 229s Setting up inetutils-ftpd (2:2.5-6ubuntu1) ... 230s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 230s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 230s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 230s Setting up cpp (4:14.2.0-1ubuntu1) ... 230s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 230s Setting up gcc-14 (14.2.0-17ubuntu1) ... 230s Setting up g++-14 (14.2.0-17ubuntu1) ... 230s Setting up gcc (4:14.2.0-1ubuntu1) ... 230s Setting up g++ (4:14.2.0-1ubuntu1) ... 230s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 230s Setting up build-essential (12.10ubuntu1) ... 230s Processing triggers for libc-bin (2.40-4ubuntu1) ... 230s Processing triggers for man-db (2.13.0-1) ... 231s Processing triggers for install-info (7.1.1-1) ... 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-ftp'], kind short, sout pipe, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-ftpd'], kind short, sout pipe, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'inetutils-traceroute'], kind short, sout pipe, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4hJkOK/test-root-commands-packages.all"], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-root-commands-packages.all /tmp/autopkgtest-work.yy331h41/out/test-root-commands-packages.all 232s autopkgtest: DBG: got reply from testbed: ok 232s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4hJkOK/build.M0K/src'], kind short, sout raw, serr raw, env [] 232s autopkgtest: DBG: testbed command exited with code 1 232s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4hJkOK/build.M0K'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.yy331h41/out/tests-tree/ /tmp/autopkgtest.4hJkOK/build.M0K/src/ 234s autopkgtest: DBG: got reply from testbed: ok 234s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.4hJkOK/build.M0K/src'], kind short, sout raw, serr pipe, env [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest [08:16:54]: test test-root-commands: [----------------------- 234s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.4hJkOK/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4hJkOK/test-root-commands-artifacts --chdir=/tmp/autopkgtest.4hJkOK/build.M0K/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.4hJkOK/test-root-commands-stderr --stdout=/tmp/autopkgtest.4hJkOK/test-root-commands-stdout --tmp=/tmp/autopkgtest.4hJkOK/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--env=ADT_TEST_TRIGGERS=inetutils/2:2.5-6ubuntu1 ncurses/6.5+20250216-1' --make-executable=/tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-root-commands -- /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-root-commands"], kind test, sout raw, serr raw, env [] 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4hJkOK/test-root-commands-artifacts 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: changing to directory: /tmp/autopkgtest.4hJkOK/build.M0K/src 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: LANG=C.UTF-8 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LANGUAGE 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_ADDRESS 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_ALL 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_COLLATE 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_CTYPE 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_IDENTIFICATION 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_MEASUREMENT 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_MESSAGES 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_MONETARY 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_NAME 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_NUMERIC 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_PAPER 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_TELEPHONE 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: unsetting environment: LC_TIME 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: pretending to be a login shell 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: will write standard error to /tmp/autopkgtest.4hJkOK/test-root-commands-stderr 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: will write stdout to /tmp/autopkgtest.4hJkOK/test-root-commands-stdout 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4hJkOK/autopkgtest_tmp 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=inetutils/2:2.5-6ubuntu1 ncurses/6.5+20250216-1 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: marking as executable: /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-root-commands 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: command to run: /tmp/autopkgtest.4hJkOK/build.M0K/src/debian/tests/test-root-commands 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: copying /tmp/tmp.1d26njl2gv/out to stdout and file: /tmp/autopkgtest.4hJkOK/test-root-commands-stdout 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: copying /tmp/tmp.1d26njl2gv/err to standard error and file: /tmp/autopkgtest.4hJkOK/test-root-commands-stdout 234s /tmp/autopkgtest.4hJkOK/wrapper.sh: writing script pid 1757 to /tmp/autopkgtest_script_pid 245s checking build system type... s390x-ibm-linux-gnu 245s checking host system type... s390x-ibm-linux-gnu 245s checking for a BSD-compatible install... /usr/bin/install -c 245s checking whether sleep supports fractional seconds... yes 245s checking filesystem timestamp resolution... 0.01 245s checking whether build environment is sane... yes 245s checking for a race-free mkdir -p... /usr/bin/mkdir -p 245s checking for gawk... gawk 245s checking whether make sets $(MAKE)... yes 245s checking whether make supports nested variables... yes 245s checking xargs -n works... yes 245s checking for gcc... gcc 245s checking whether the C compiler works... yes 245s checking for C compiler default output file name... a.out 245s checking for suffix of executables... 245s checking whether we are cross compiling... no 245s checking for suffix of object files... o 245s checking whether the compiler supports GNU C... yes 245s checking whether gcc accepts -g... yes 245s checking for gcc option to enable C11 features... none needed 245s checking whether gcc understands -c and -o together... yes 245s checking whether the compiler is clang... no 245s checking for compiler option needed when checking for declarations... none 245s checking whether make supports the include directive... yes (GNU style) 245s checking dependency style of gcc... gcc3 245s checking for stdio.h... yes 245s checking for stdlib.h... yes 245s checking for string.h... yes 245s checking for inttypes.h... yes 245s checking for stdint.h... yes 245s checking for strings.h... yes 245s checking for sys/stat.h... yes 245s checking for sys/types.h... yes 245s checking for unistd.h... yes 245s checking for wchar.h... yes 245s checking for minix/config.h... no 246s checking for features.h... yes 246s checking for linewrap.h... no 246s checking for arpa/inet.h... yes 246s checking for sys/socket.h... yes 246s checking for uchar.h... yes 246s checking for sys/param.h... yes 246s checking for dirent.h... yes 246s checking for error.h... yes 246s checking for fnmatch.h... yes 246s checking for pty.h... yes 246s checking for termios.h... yes 246s checking for sys/vfs.h... yes 246s checking for netdb.h... yes 246s checking for netinet/in.h... yes 246s checking for getopt.h... yes 246s checking for sys/cdefs.h... yes 246s checking for stdio_ext.h... yes 246s checking for grp.h... yes 246s checking for glob.h... yes 246s checking for threads.h... yes 246s checking for limits.h... yes 246s checking for crtdefs.h... no 246s checking for wctype.h... yes 246s checking for langinfo.h... yes 246s checking for xlocale.h... no 246s checking for utmp.h... yes 246s checking for util.h... no 246s checking for libutil.h... no 246s checking for sys/mman.h... yes 246s checking for obstack.h... yes 246s checking for poll.h... yes 246s checking for sys/ioctl.h... yes 246s checking for sys/filio.h... no 246s checking for utmpx.h... yes 246s checking for OS.h... no 246s checking for malloc.h... yes 246s checking for sys/select.h... yes 246s checking for sys/time.h... yes 246s checking for stdbool.h... yes 246s checking for stdckdint.h... yes 246s checking for sys/random.h... yes 246s checking for sys/uio.h... yes 247s checking for sysexits.h... yes 247s checking for vfork.h... no 247s checking whether it is safe to define __EXTENSIONS__... yes 247s checking whether _XOPEN_SOURCE should be defined... no 247s checking how to run the C preprocessor... gcc -E 247s checking for egrep -e... /usr/bin/grep -E 247s checking for Minix Amsterdam compiler... no 247s checking for ar... ar 247s checking the archiver (ar) interface... ar 247s checking for ar... (cached) ar 247s checking for ranlib... ranlib 247s checking for gcc option to enable large file support... none needed 247s configure: autobuild project... GNU inetutils 247s configure: autobuild revision... 2.5 247s configure: autobuild hostname... autopkgtest 247s configure: autobuild timestamp... 20250219T081707Z 247s checking the archiver (ar) interface... (cached) ar 247s checking for ar... (cached) ar 247s checking for dd... /usr/bin/dd 247s checking for mktemp... /usr/bin/mktemp 247s checking for netstat... /usr/bin/netstat 247s checking for rm... /usr/bin/rm 247s checking how to run the C preprocessor... gcc -E 247s checking for grep that handles long lines and -e... /usr/bin/grep 247s checking for egrep... /usr/bin/grep -E 247s checking for fgrep... /usr/bin/grep -F 247s checking whether make sets $(MAKE)... (cached) yes 247s checking for ranlib... (cached) ranlib 247s checking for bison... no 247s checking for byacc... no 247s checking whether ln -s works... yes 247s checking for a sed that does not truncate output... /usr/bin/sed 247s checking for size_t... yes 247s checking for working alloca.h... yes 247s checking for alloca... yes 247s checking for inline... inline 247s checking for C/C++ restrict keyword... __restrict__ 247s checking for gcc options needed to detect all undeclared functions... none needed 247s checking whether clearerr_unlocked is declared... yes 247s checking whether feof_unlocked is declared... yes 247s checking whether ferror_unlocked is declared... yes 247s checking whether fflush_unlocked is declared... yes 247s checking whether fgets_unlocked is declared... yes 247s checking whether fputc_unlocked is declared... yes 247s checking whether fputs_unlocked is declared... yes 247s checking whether fread_unlocked is declared... yes 247s checking whether fwrite_unlocked is declared... yes 247s checking whether getc_unlocked is declared... yes 247s checking whether getchar_unlocked is declared... yes 247s checking whether putc_unlocked is declared... yes 247s checking whether putchar_unlocked is declared... yes 247s checking for flockfile... yes 247s checking for funlockfile... yes 247s checking for btowc... yes 247s checking for mbrtowc... yes 247s checking for mbsinit... yes 247s checking for _set_invalid_parameter_handler... no 247s checking for fchdir... yes 247s checking for fcntl... yes 247s checking for symlink... yes 247s checking for fdopendir... yes 247s checking for fnmatch... yes 247s checking for mbsrtowcs... yes 248s checking for fstatat... yes 248s checking for openat... yes 248s checking for fstatfs... yes 248s checking for getdtablesize... yes 248s checking for getpass... yes 248s checking for getexecname... no 248s checking for getusershell... yes 248s checking for glob_pattern_p... yes 248s checking for isblank... yes 248s checking for iswcntrl... yes 248s checking for lstat... yes 248s checking for mprotect... yes 248s checking for memset_explicit... no 248s checking for memset_s... no 248s checking for getgrouplist... yes 248s checking for mkstemp... yes 248s checking for pipe... yes 248s checking for utmpname... yes 248s checking for utmpxname... yes 248s checking for iswctype... yes 248s checking for setenv... yes 248s checking for sleep... yes 248s checking for snprintf... yes 248s checking for strndup... yes 248s checking for vasnprintf... no 248s checking for wcrtomb... yes 248s checking for fork... yes 248s checking for vfork... yes 248s checking for getpagesize... yes 248s checking whether strerror_r is declared... yes 248s checking whether strerror_r returns char *... yes 248s checking whether the preprocessor supports include_next... yes 248s checking whether source code line length is unlimited... yes 248s checking whether uses 'inline' correctly... yes 248s checking for nl_langinfo and CODESET... yes 248s checking for a traditional french locale... none 248s checking whether char8_t is correctly defined... yes 248s checking whether char16_t is correctly defined... yes 248s checking whether char32_t is correctly defined... yes 248s checking for bit size of wchar_t... 32 248s checking for mbstate_t... yes 249s checking for a traditional japanese locale... none 249s checking for a french Unicode locale... none 249s checking for a transitional chinese locale... none 249s checking whether mbrtowc handles incomplete characters... guessing yes 249s checking whether mbrtowc works as well as mbtowc... guessing yes 249s checking whether mbrtoc32 is declared... yes 249s checking for mbrtoc32... yes 249s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 249s checking whether malloc is ptrdiff_t safe... yes 249s checking whether malloc, realloc, calloc set errno on failure... yes 249s checking if environ is properly declared... yes 249s checking for complete errno.h... yes 249s checking for error... yes 249s checking whether error_at_line is declared... yes 249s checking for error_at_line... yes 249s checking for working error function... yes 249s checking whether ctype.h defines __header_inline... no 249s checking whether fchdir is declared... yes 250s checking for working fcntl.h... yes 250s checking for pid_t... yes 250s checking for mode_t... yes 250s checking for promoted mode_t type... mode_t 250s checking whether strmode is declared... no 250s checking whether fopen recognizes a trailing slash... yes 250s checking whether fflush works on input streams... no 250s checking for library containing forkpty... none required 250s checking whether stdin defaults to large file offsets... yes 250s checking whether fseeko is declared... yes 250s checking for fseeko... yes 250s checking whether fflush works on input streams... (cached) no 250s checking whether stat file-mode macros are broken... no 250s checking for nlink_t... yes 250s checking whether lstat correctly handles trailing slash... yes 250s checking whether ftello is declared... yes 250s checking whether ungetc works on arbitrary bytes... yes 250s checking for ftello... yes 250s checking whether ftello works... yes 250s checking for O_CLOEXEC... yes 250s checking whether is self-contained... yes 250s checking for shutdown... yes 250s checking whether defines the SHUT_* macros... yes 251s checking for struct sockaddr_storage... yes 251s checking for sa_family_t... yes 251s checking for struct sockaddr_storage.ss_family... yes 251s checking for library containing gethostbyname... none required 251s checking for gethostbyname... yes 251s checking for library containing getservbyname... none required 251s checking for getservbyname... yes 251s checking for library containing inet_ntop... none required 251s checking whether inet_ntop is declared... yes 251s checking for IPv4 sockets... yes 251s checking for IPv6 sockets... yes 251s checking whether getcwd (NULL, 0) allocates memory for result... yes 251s checking for getcwd with POSIX signature... yes 251s checking whether getcwd is declared... yes 251s checking whether getdelim is declared... yes 251s checking whether getdtablesize is declared... yes 251s checking for uid_t... yes 251s checking for gid_t... yes 251s checking type of array argument to getgroups... gid_t 251s checking whether getline is declared... yes 251s checking whether getlogin_r is declared... yes 251s checking whether getlogin is declared... yes 251s checking for getopt.h... (cached) yes 251s checking for getopt_long_only... yes 251s checking whether getopt is POSIX compatible... yes 251s checking for working GNU getopt function... yes 251s checking for working GNU getopt_long function... yes 251s checking whether flockfile is declared... yes 251s checking whether funlockfile is declared... yes 251s checking for pthread.h... yes 251s checking for pthread_kill in -lpthread... yes 251s checking whether POSIX threads API is available... yes 252s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 252s checking whether setlocale (category, NULL) is multithread-safe... yes 252s checking for off_t... yes 252s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 252s checking whether limits.h has SSIZE_MAX... yes 252s checking for wint_t... yes 252s checking whether wint_t is large enough... yes 252s checking whether the compiler produces multi-arch binaries... no 252s checking whether stdint.h conforms to C99... yes 252s checking whether stdint.h works without ISO C predefines... yes 252s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 252s checking whether iswcntrl works... yes 252s checking for towlower... yes 252s checking for wctype_t... yes 252s checking for wctrans_t... yes 252s checking whether wctype supports the "blank" and "punct" character classes... yes 252s checking whether langinfo.h defines CODESET... yes 252s checking whether langinfo.h defines T_FMT_AMPM... yes 252s checking whether langinfo.h defines ALTMON_1... yes 252s checking whether langinfo.h defines ERA... yes 252s checking whether langinfo.h defines YESEXPR... yes 252s checking for wchar_t... yes 252s checking for good max_align_t... yes 252s checking whether NULL can be used in arbitrary expressions... yes 252s checking for unreachable... no 252s checking whether locale.h defines locale_t... yes 252s checking whether locale.h conforms to POSIX:2001... yes 252s checking whether struct lconv is properly defined... yes 252s checking whether imported symbols can be declared weak... yes 252s checking for multithread API to use... posix 252s checking whether malloc (0) returns nonnull... yes 252s checking for mmap... yes 252s checking for MAP_ANONYMOUS... yes 252s checking whether memchr works... yes 252s checking whether memrchr is declared... yes 252s checking whether defines MIN and MAX... no 252s checking whether defines MIN and MAX... yes 252s checking for library containing setsockopt... none needed 252s checking for ld used by gcc... /usr/bin/ld 252s checking if the linker (/usr/bin/ld) is GNU ld... yes 252s checking for shared library run path origin... done 252s checking 32-bit host C ABI... no 252s checking for ELF binary format... yes 252s checking for the common suffixes of directories in the library search path... lib,lib,lib 252s checking whether to use systemd APIs... no 252s checking whether endutent is declared... yes 252s checking for struct utmpx.ut_user... yes 252s checking for struct utmp.ut_user... yes 252s checking for struct utmpx.ut_name... yes 252s checking for struct utmp.ut_name... yes 252s checking for struct utmpx.ut_type... yes 253s checking for struct utmp.ut_type... yes 253s checking for struct utmpx.ut_pid... yes 253s checking for struct utmp.ut_pid... yes 253s checking for struct utmp.ut_tv... yes 253s checking for struct utmpx.ut_host... yes 253s checking for struct utmp.ut_host... yes 253s checking for struct utmpx.ut_id... yes 253s checking for struct utmp.ut_id... yes 253s checking for struct utmpx.ut_session... yes 253s checking for struct utmp.ut_session... yes 253s checking for struct utmpx.ut_exit... yes 253s checking for struct utmp.ut_exit... yes 253s checking for struct utmpx.ut_exit.ut_exit... no 253s checking for struct utmpx.ut_exit.e_exit... yes 253s checking for struct utmp.ut_exit.e_exit... yes 253s checking for struct utmpx.ut_exit.ut_termination... no 253s checking for struct utmpx.ut_exit.e_termination... yes 253s checking for struct utmp.ut_exit.e_termination... yes 253s checking whether sysinfo is declared... yes 253s checking for sys/sysctl.h... no 253s checking for sysctl... no 253s checking whether alarm is declared... yes 253s checking whether is self-contained... yes 253s checking whether setenv is declared... yes 253s checking for search.h... yes 253s checking for tsearch... yes 253s checking for sigset_t... yes 253s checking for volatile sig_atomic_t... yes 253s checking for sighandler_t... yes 254s checking whether snprintf returns a byte count as in C99... yes 254s checking whether printf supports POSIX/XSI format strings with positions... yes 254s checking whether snprintf is declared... yes 254s checking whether fcloseall is declared... yes 254s checking whether getw is declared... yes 254s checking whether putw is declared... yes 254s checking which flavor of printf attribute matches inttypes macros... system 254s checking whether ecvt is declared... yes 254s checking whether fcvt is declared... yes 254s checking whether gcvt is declared... yes 254s checking whether MB_CUR_MAX is correct... guessing yes 254s checking whether strdup is declared... yes 254s checking whether strerror(0) succeeds... yes 254s checking whether strndup is declared... yes 254s checking whether strnlen is declared... yes 254s checking whether declares ioctl... yes 254s checking for struct timeval... yes 254s checking for wide-enough struct timeval.tv_sec member... yes 254s checking for struct timespec in ... yes 254s checking for TIME_UTC in ... yes 254s checking whether execvpe is declared... yes 254s checking for util.h... (cached) no 254s checking for libutil.h... (cached) no 254s checking for inttypes.h... yes 254s checking for stdint.h... yes 254s checking for intmax_t... yes 254s checking whether snprintf truncates the result as in C99... yes 254s checking where to find the exponent in a 'double'... word 0 bit 20 254s checking for wcslen... yes 254s checking for snprintf... (cached) yes 254s checking for strnlen... yes 254s checking for wcrtomb... (cached) yes 254s checking whether _snprintf is declared... no 254s checking whether vsnprintf is declared... yes 254s checking whether wcsdup is declared... yes 254s checking for C compiler option to allow warnings... -Wno-error 254s checking for alignas and alignof... yes, macros 254s checking for alloca as a compiler built-in... yes 254s checking whether program_invocation_name is declared... yes 254s checking whether program_invocation_short_name is declared... yes 254s checking whether program_invocation_name is defined... yes 254s checking whether program_invocation_short_name is defined... yes 254s checking for static_assert... yes, an macro 254s checking whether btowc(0) is correct... yes 254s checking whether btowc(EOF) is correct... guessing yes 254s checking whether btowc is consistent with mbrtowc in the C locale... no 255s checking for __builtin_expect... yes 255s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 255s checking whether this system supports file names of any length... no 255s checking for library containing clock_gettime... none required 255s checking for clock_getres... yes 255s checking for clock_gettime... yes 255s checking for clock_settime... yes 255s checking for closedir... yes 255s checking for d_ino member in directory struct... yes 255s checking for d_type member in directory struct... yes 255s checking for dirfd... yes 255s checking whether dirfd is declared... yes 255s checking whether dirfd is a macro... no 255s checking whether // is distinct from /... no 255s checking whether dup works... yes 255s checking whether dup2 works... yes 255s checking whether fcntl handles F_DUPFD correctly... yes 255s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 255s checking whether fdopendir is declared... yes 255s checking whether fdopendir works... yes 255s checking for mempcpy... yes 255s checking for flexible array member... yes 255s checking whether conversion from 'int' to 'long double' works... yes 255s checking for working POSIX fnmatch... yes 255s checking whether fopen supports the mode character 'x'... yes 255s checking whether fopen supports the mode character 'e'... yes 255s checking whether forkpty is declared... yes 255s checking for const-safe forkpty signature... yes 255s checking whether free is known to preserve errno... yes 255s checking for fseeko... (cached) yes 255s checking whether fflush works on input streams... (cached) no 255s checking for _fseeki64... no 255s checking whether fstatat (..., 0) works... yes 255s checking for ftello... (cached) yes 255s checking whether ftello works... (cached) yes 255s checking for struct statfs.f_type... yes 255s checking for __fsword_t... yes 255s checking for fts_open... yes 255s checking for library containing getaddrinfo... none required 255s checking for getaddrinfo... yes 255s checking whether gai_strerror is declared... yes 255s checking whether gai_strerrorA is declared... no 255s checking for gai_strerror with POSIX signature... yes 255s checking for struct sockaddr.sa_len... no 256s checking whether getaddrinfo is declared... yes 256s checking whether freeaddrinfo is declared... yes 256s checking whether getnameinfo is declared... yes 256s checking for struct addrinfo... yes 256s checking whether getcwd handles long file names properly... yes 256s checking for getpagesize... yes 256s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 256s checking for getdelim... yes 256s checking for working getdelim function... yes 256s checking for getdomainname... yes 256s checking whether getdomainname is declared... yes 256s checking for getdomainname's second argument type... size_t 256s checking whether getdtablesize works... yes 256s checking for getgroups... yes 256s checking for working getgroups... yes 256s checking whether getgroups handles negative values... yes 256s checking for gethostname... yes 256s checking for HOST_NAME_MAX... yes 256s checking for getline... yes 256s checking for working getline function... yes 256s checking for getlogin_r... yes 256s checking whether getlogin_r works with small buffers... yes 256s checking for getprogname... no 256s checking whether program_invocation_name is declared... (cached) yes 256s checking whether program_invocation_name is declared... (cached) yes 256s checking whether program_invocation_short_name is declared... (cached) yes 256s checking whether __argv is declared... no 256s checking for getrandom... yes 256s checking whether getrandom is compatible with its GNU+BSD signature... yes 256s checking whether getusershell is declared... yes 256s checking for glob... yes 256s checking for GNU glob interface version 1 or 2... yes 256s checking whether glob lists broken symlinks... yes 256s checking whether glob NOTDIR*/ omits symlink to nondir... yes 256s checking for library containing gethostbyname... (cached) none required 256s checking for gethostbyname... (cached) yes 256s checking for library containing inet_ntop... (cached) none required 256s checking whether inet_ntop is declared... (cached) yes 256s checking whether the compiler generally respects inline... yes 256s checking for ioctl... yes 256s checking for ioctl with POSIX signature... no 256s checking for iswblank... yes 256s checking whether iswblank is declared... yes 256s checking whether iswdigit is ISO C compliant... guessing yes 257s checking whether iswpunct is consistent with ispunct... yes 257s checking whether iswxdigit is ISO C compliant... guessing yes 257s checking whether the compiler supports the __inline keyword... yes 257s checking whether localeconv works... yes 257s checking for pthread_rwlock_t... yes 257s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 257s checking for login_tty... yes 257s checking whether lseek detects pipes... yes 257s checking whether SEEK_DATA works but is incompatible with GNU... no 257s checking whether malloc (0) returns nonnull... (cached) yes 257s checking whether mbrtoc32 works on empty input... yes 257s checking whether the C locale is free of encoding errors... no 257s checking whether mbrtowc handles a NULL pwc argument... guessing yes 257s checking whether mbrtowc handles a NULL string argument... guessing yes 257s checking whether mbrtowc has a correct return value... guessing yes 257s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 257s checking whether mbrtowc stores incomplete characters... guessing no 257s checking whether mbrtowc works on empty input... yes 257s checking whether the C locale is free of encoding errors... no 257s checking whether mbsrtowcs works... guessing yes 257s checking whether the C locale is free of encoding errors... (cached) no 257s checking for mbtowc... yes 257s checking for mempcpy... (cached) yes 257s checking for memrchr... yes 257s checking for explicit_memset... no 257s checking whether mkdir handles trailing slash... yes 257s checking whether mkdir handles trailing dot... yes 257s checking for working mkstemp... yes 257s checking whether is self-contained... yes 257s checking for nl_langinfo... yes 257s checking whether YESEXPR works... yes 257s checking for obstacks that work with any size object... no 257s checking whether open recognizes a trailing slash... yes 257s checking for opendir... yes 257s checking whether openpty is declared... yes 257s checking for const-safe openpty signature... yes 257s checking for poll... yes 257s checking for posix_openpt... yes 257s checking whether program_invocation_name is declared... (cached) yes 257s checking whether program_invocation_short_name is declared... (cached) yes 257s checking for rawmemchr... yes 257s checking for readdir... yes 257s checking for readline... no 257s checking for readline/readline.h... no 258s checking for readline/history.h... no 258s checking whether realloc (0, 0) returns nonnull... yes 258s checking for reallocarray... yes 258s checking for working re_compile_pattern... yes 258s checking for rewinddir... yes 258s checking whether select supports a 0 argument... yes 258s checking whether select detects invalid fds... yes 258s checking for library containing getservbyname... (cached) none required 258s checking for getservbyname... (cached) yes 258s checking whether setenv validates arguments... yes 258s checking for HOST_NAME_MAX... (cached) yes 258s checking for sethostname... yes 258s checking whether sethostname is declared... yes 258s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 258s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 258s checking for stdint.h... (cached) yes 258s checking for SIZE_MAX... yes 258s checking whether sleep is declared... yes 259s checking for working sleep... yes 259s checking for snprintf... (cached) yes 259s checking whether snprintf respects a size of 1... yes 259s checking for socklen_t... yes 259s checking for ssize_t... yes 259s checking whether stat handles trailing slashes on files... yes 259s checking for struct stat.st_atim.tv_nsec... yes 259s checking whether struct stat.st_atim is of type struct timespec... yes 259s checking for struct stat.st_birthtimespec.tv_nsec... no 259s checking for struct stat.st_birthtimensec... no 259s checking for struct stat.st_birthtim.tv_nsec... no 259s checking for va_copy... yes 259s checking for bool, true, false... no 259s checking for strcasecmp... yes 259s checking for strncasecmp... yes 259s checking whether strncasecmp is declared... yes 259s checking for strchrnul... yes 259s checking whether strchrnul works... yes 259s checking for working strerror function... yes 259s checking for working strndup... yes 259s checking for working strnlen... yes 259s checking for variable-length arrays... yes 259s checking for ptrdiff_t... yes 259s checking for vasprintf... yes 259s checking for vsnprintf... yes 259s checking whether snprintf respects a size of 1... (cached) yes 260s checking whether wcrtomb works in the C locale... yes 260s checking whether wcrtomb return value is correct... guessing yes 260s checking for wmemchr... yes 260s checking for wmempcpy... yes 260s checking for stdint.h... (cached) yes 260s checking for library containing inet_ntoa... none required 260s checking for initscr in -lncurses... no 260s checking for tgetent in -ltermcap... no 260s checking whether tgetent needs support... no 260s checking for tgetent in -lcurses... no 260s checking whether tgetent is declared... no 260s checking for tgetent in -ltermlib... no 260s checking for crypt in -lcrypt... yes 260s checking for login in -lutil... yes 260s checking for loginx in -lutil... no 260s checking for logout in -lutil... yes 260s checking for logoutx in -lutil... no 260s checking for logwtmp in -lutil... yes 260s checking for logwtmpx in -lutil... no 260s checking for protocols/talkd.h... yes 260s checking for rcmd... yes 260s checking for rcmd_af... yes 260s checking for orcmd... no 260s checking for orcmd_af... no 260s checking for rresvport_af... yes 260s checking for iruserok... yes 260s checking for iruserok_af... yes 260s checking for iruserok_sa... no 260s checking for ruserok... yes 260s checking for ruserok_af... yes 260s checking for AF_INET6... yes 260s checking for IPV6_V6ONLY... yes 260s checking for struct sockaddr_storage... (cached) yes 260s checking for struct sockaddr_in6... yes 260s checking for struct addrinfo... (cached) yes 260s checking for getnameinfo... yes 260s checking for netinet/icmp6.h... yes 260s checking for netinet/ip6.h... yes 260s checking for struct icmp6_filter... yes 260s checking for struct icmp6_hdr... yes 260s checking for IPV6_HOPLIMIT... yes 260s checking for IPV6_2292HOPLIMIT... yes 260s checking for IPV6_RECVHOPLIMIT... yes 260s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 260s checking for locale.h... yes 260s checking for setlocale... yes 260s checking for arpa/nameser.h... yes 260s checking for arpa/tftp.h... yes 260s checking for fcntl.h... yes 260s checking for features.h... (cached) yes 260s checking for glob.h... (cached) yes 260s checking for memory.h... yes 260s checking for netinet/ether.h... yes 260s checking for netinet/in_systm.h... yes 261s checking for netinet/ip.h... yes 261s checking for netinet/ip_icmp.h... yes 261s checking for netinet/ip_var.h... no 261s checking for security/pam_appl.h... no 261s checking for shadow.h... yes 261s checking for stropts.h... no 261s checking for sys/tty.h... no 261s checking for sys/utsname.h... yes 261s checking for sys/ptyvar.h... no 261s checking for sys/msgbuf.h... no 261s checking for sys/filio.h... (cached) no 261s checking for sys/ioctl_compat.h... no 261s checking for sys/cdefs.h... (cached) yes 261s checking for sys/stream.h... no 261s checking for sys/mkdev.h... no 261s checking for sys/sockio.h... no 261s checking for sys/sysmacros.h... yes 261s checking for sys/param.h... (cached) yes 261s checking for sys/file.h... yes 261s checking for sys/proc.h... no 261s checking for sys/select.h... (cached) yes 261s checking for sys/wait.h... yes 261s checking for sys/resource.h... yes 261s checking for stropts.h... (cached) no 261s checking for tcpd.h... no 261s checking for utmp.h... (cached) yes 261s checking for utmpx.h... (cached) yes 261s checking for unistd.h... (cached) yes 261s checking for vis.h... no 261s checking for struct if_nameindex... yes 261s checking for sigset_t... (cached) yes 261s checking for sig_atomic_t... yes 261s checking for struct sockaddr_in.sin_len... no 261s checking for struct sockaddr_in6.sin6_len... no 261s checking for struct sockaddr_storage.ss_len... no 261s checking for struct passwd.pw_expire... no 261s checking for struct passwd.pw_change... no 261s checking for struct lastlog... yes 261s checking for struct utmp.ut_type... (cached) yes 261s checking for struct utmp.ut_pid... (cached) yes 261s checking for struct utmp.ut_line... yes 261s checking for struct utmp.ut_id... (cached) yes 261s checking for struct utmp.ut_user... (cached) yes 261s checking for struct utmp.ut_host... (cached) yes 261s checking for struct utmp.ut_exit... (cached) yes 261s checking for struct utmp.ut_session... (cached) yes 261s checking for struct utmp.ut_tv... (cached) yes 261s checking for struct utmp.ut_time... yes 261s checking for struct utmp.ut_addr_v6... yes 261s checking for struct utmp.ut_name... (cached) yes 261s checking for struct lastlogx... no 261s checking for struct lastlogx.ll_ss... no 261s checking for struct utmpx.ut_user... (cached) yes 261s checking for struct utmpx.ut_name... (cached) yes 261s checking for struct utmpx.ut_id... (cached) yes 261s checking for struct utmpx.ut_line... yes 261s checking for struct utmpx.ut_pid... (cached) yes 261s checking for struct utmpx.ut_type... (cached) yes 261s checking for struct utmpx.ut_exit... (cached) yes 261s checking for struct utmpx.ut_tv... yes 261s checking for struct utmpx.ut_session... (cached) yes 261s checking for struct utmpx.ut_syslen... no 261s checking for struct utmpx.ut_host... (cached) yes 261s checking for struct utmpx.ut_ss... no 261s checking for struct utmpx.ut_addr_v6... yes 261s checking for struct ifreq.ifr_index... no 261s checking for struct ifreq.ifr_netmask... yes 261s checking for struct ifreq.ifr_broadaddr... yes 261s checking for struct ifreq.ifr_mtu... yes 261s checking for struct ifreq.ifr_map... yes 261s checking for struct sockaddr.sa_len... (cached) no 261s checking for struct hostent.h_addr_list... yes 261s checking for struct stat.st_atim.tv_nsec... (cached) yes 261s checking for struct stat.st_atim.tv_usec... no 261s checking for struct stat.st_blksize... yes 261s checking for struct stat.st_ctim.tv_nsec... yes 261s checking for struct stat.st_ctim.tv_usec... no 261s checking for struct stat.st_mtim.tv_nsec... yes 261s checking for struct stat.st_mtim.tv_usec... no 261s checking for struct tftphdr.th_u... no 261s checking for working fork... yes 261s checking for working vfork... (cached) yes 262s checking for working mmap... yes 262s checking for cfsetspeed... yes 262s checking for cgetent... no 262s checking for dirfd... (cached) yes 262s checking for flock... yes 262s checking for fork... (cached) yes 262s checking for fpathconf... yes 262s checking for ftruncate... yes 262s checking for getcwd... yes 262s checking for getmsg... no 262s checking for getpwuid_r... yes 262s checking for getspnam... yes 262s checking for getutxent... yes 262s checking for getutxuser... no 262s checking for initgroups... yes 262s checking for initsetproctitle... no 262s checking for killpg... yes 262s checking for ptsname... yes 262s checking for pututline... yes 262s checking for pututxline... yes 262s checking for setegid... yes 262s checking for seteuid... yes 262s checking for setpgid... yes 262s checking for setlogin... no 262s checking for setsid... yes 262s checking for setregid... yes 262s checking for setreuid... yes 262s checking for setresgid... yes 262s checking for setresuid... yes 262s checking for setutent_r... no 262s checking for sigaction... yes 262s checking for sigvec... no 262s checking for strchr... yes 262s checking for setproctitle... no 262s checking for tcgetattr... yes 262s checking for tzset... yes 262s checking for utimes... yes 262s checking for utime... yes 262s checking for uname... yes 262s checking for updwtmp... yes 262s checking for updwtmpx... yes 262s checking for vhangup... yes 263s checking for wait3... yes 263s checking for wait4... yes 263s checking for __opendir2... no 263s checking for __rcmd_errstr... yes 263s checking for __check_rhosts_file... yes 263s checking for login... yes 263s checking for loginx... no 263s checking for logout... yes 263s checking for logoutx... no 263s checking for logwtmp... yes 263s checking for logwtmpx... no 263s checking for crypt... yes 263s checking for _obstack_free... yes 263s checking for setpgid... (cached) yes 263s checking for hstrerror... yes 263s checking whether hstrerror is declared... yes 263s checking whether telcmds is declared... yes 263s checking whether telopts is declared... no 263s checking for Schedule... no 263s checking for Session_Key... no 263s checking whether enctype_names is const char... no 263s checking whether crypt is declared... yes 263s checking for syslog internal macros... yes 263s checking for CODE... yes 263s checking whether prioritynames is declared... yes 263s checking whether fclose is declared... yes 263s checking whether pclose is declared... yes 263s checking whether getcwd is declared... (cached) yes 263s checking whether getlogin is declared... (cached) yes 263s checking whether getpass is declared... yes 263s checking whether getusershell is declared... (cached) yes 263s checking whether ttyname is declared... yes 263s checking whether getgrnam is declared... yes 263s checking whether initgroups is declared... yes 263s checking whether htons is declared... yes 263s checking for h_errno... yes 263s checking whether h_errno is declared... yes 263s checking for SEEK_ macros... yes 263s checking for _FILENO macros... yes 263s checking for fd_set macros... yes 263s checking for paths.h... yes 263s checking for value of PATH_BSHELL... from _PATH_BSHELL in 263s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 263s checking for value of PATH_CP... /usr/bin/cp 263s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 263s checking for value of PATH_DEV... from _PATH_DEV in 263s checking for value of PATH_TTY_PFX... from _PATH_DEV in 263s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 263s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 263s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 263s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 263s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 263s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 263s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 263s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 263s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 263s checking for value of PATH_UTMP... from _PATH_UTMP in 263s checking for value of PATH_UTMPX... from _PATH_UTMPX in 263s checking for value of PATH_WTMP... from _PATH_WTMP in 263s checking for value of PATH_WTMPX... from _PATH_WTMPX in 263s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 263s checking for value of PATH_LOG... from _PATH_LOG in 264s checking for value of PATH_KLOG... from _PATH_KLOG in 264s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 264s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 264s checking for value of PATH_LOGIN... /usr/bin/login 264s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 264s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 264s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 264s checking for value of PATH_RSH... (default) $(bindir)/rsh 264s checking for value of PATH_TMP... from _PATH_TMP in 264s checking for value of PATH_TTY... from _PATH_TTY in 264s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 264s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 264s checking for value of PATH_PROCNET_DEV... /proc/net/dev 264s checking that generated files are newer than configure... done 264s configure: creating ./config.status 264s config.status: creating Makefile 264s config.status: creating summary.sh 264s config.status: creating lib/Makefile 264s config.status: creating libinetutils/Makefile 264s config.status: creating libtelnet/Makefile 264s config.status: creating libicmp/Makefile 264s config.status: creating libls/Makefile 264s config.status: creating src/Makefile 264s config.status: creating telnet/Makefile 264s config.status: creating telnetd/Makefile 264s config.status: creating ftp/Makefile 264s config.status: creating ftpd/Makefile 264s config.status: creating talk/Makefile 264s config.status: creating talkd/Makefile 264s config.status: creating whois/Makefile 264s config.status: creating ping/Makefile 264s config.status: creating ifconfig/Makefile 264s config.status: creating ifconfig/system/Makefile 264s config.status: creating tests/Makefile 264s config.status: creating confpaths.h 264s config.status: creating config.h 264s config.status: executing depfiles commands 265s config.status: executing summary commands 265s Summary of build decisions: 265s 265s Clients: 265s 265s dnsdomainname no 265s ftp yes 265s hostname no 265s ifconfig no 265s logger no 265s ping no 265s ping6 no 265s rcp no 265s rexec no 265s rlogin no 265s rsh no 265s talk no 265s telnet no 265s tftp no 265s traceroute yes 265s whois no 265s 265s Servers: 265s 265s ftpd yes 265s inetd no 265s rexecd no 265s rlogind no 265s rshd no 265s syslogd no 265s talkd no 265s telnetd no 265s tftpd no 265s uucpd no 265s 265s Support: 265s 265s libls no 265s make: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/lib' 265s make: Warning: File '../aclocal.m4' has modification time 59 s in the future 265s make[1]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src' 265s make[1]: Warning: File 'aclocal.m4' has modification time 58 s in the future 265s cd . && /bin/bash /tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing automake-1.17 --gnu 268s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing' autoconf 270s /bin/bash ./config.status --recheck 270s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-servers --disable-clients --disable-ping --disable-ping6 --enable-ftp --enable-ftpd --enable-traceroute --no-create --no-recursion 270s checking build system type... s390x-ibm-linux-gnu 270s checking host system type... s390x-ibm-linux-gnu 270s checking for a BSD-compatible install... /usr/bin/install -c 270s checking whether sleep supports fractional seconds... yes 270s checking filesystem timestamp resolution... 0.01 270s checking whether build environment is sane... yes 270s checking for a race-free mkdir -p... /usr/bin/mkdir -p 270s checking for gawk... gawk 270s checking whether make sets $(MAKE)... yes 270s checking whether make supports nested variables... yes 270s checking xargs -n works... yes 270s checking for gcc... gcc 270s checking whether the C compiler works... yes 270s checking for C compiler default output file name... a.out 270s checking for suffix of executables... 270s checking whether we are cross compiling... no 270s checking for suffix of object files... o 270s checking whether the compiler supports GNU C... yes 270s checking whether gcc accepts -g... yes 270s checking for gcc option to enable C11 features... none needed 270s checking whether gcc understands -c and -o together... yes 270s checking whether the compiler is clang... no 270s checking for compiler option needed when checking for declarations... none 270s checking whether make supports the include directive... yes (GNU style) 270s checking dependency style of gcc... gcc3 270s checking for stdio.h... yes 270s checking for stdlib.h... yes 270s checking for string.h... yes 270s checking for inttypes.h... yes 270s checking for stdint.h... yes 270s checking for strings.h... yes 270s checking for sys/stat.h... yes 270s checking for sys/types.h... yes 270s checking for unistd.h... yes 270s checking for wchar.h... yes 270s checking for minix/config.h... no 270s checking for features.h... yes 270s checking for linewrap.h... no 270s checking for arpa/inet.h... yes 270s checking for sys/socket.h... yes 270s checking for uchar.h... yes 270s checking for sys/param.h... yes 270s checking for dirent.h... yes 270s checking for error.h... yes 270s checking for fnmatch.h... yes 270s checking for pty.h... yes 271s checking for termios.h... yes 271s checking for sys/vfs.h... yes 271s checking for netdb.h... yes 271s checking for netinet/in.h... yes 271s checking for getopt.h... yes 271s checking for sys/cdefs.h... yes 271s checking for stdio_ext.h... yes 271s checking for grp.h... yes 271s checking for glob.h... yes 271s checking for threads.h... yes 271s checking for limits.h... yes 271s checking for crtdefs.h... no 271s checking for wctype.h... yes 271s checking for langinfo.h... yes 271s checking for xlocale.h... no 271s checking for utmp.h... yes 271s checking for util.h... no 271s checking for libutil.h... no 271s checking for sys/mman.h... yes 271s checking for obstack.h... yes 271s checking for poll.h... yes 271s checking for sys/ioctl.h... yes 271s checking for sys/filio.h... no 271s checking for utmpx.h... yes 271s checking for OS.h... no 271s checking for malloc.h... yes 271s checking for sys/select.h... yes 271s checking for sys/time.h... yes 271s checking for stdbool.h... yes 271s checking for stdckdint.h... yes 271s checking for sys/random.h... yes 271s checking for sys/uio.h... yes 271s checking for sysexits.h... yes 271s checking for vfork.h... no 271s checking whether it is safe to define __EXTENSIONS__... yes 271s checking whether _XOPEN_SOURCE should be defined... no 271s checking how to run the C preprocessor... gcc -E 271s checking for egrep -e... /usr/bin/grep -E 271s checking for Minix Amsterdam compiler... no 271s checking for ar... ar 271s checking the archiver (ar) interface... ar 271s checking for ar... (cached) ar 271s checking for ranlib... ranlib 271s checking for gcc option to enable large file support... none needed 271s configure: autobuild project... GNU inetutils 271s configure: autobuild revision... 2.5 271s configure: autobuild hostname... autopkgtest 271s configure: autobuild timestamp... 20250219T081731Z 271s checking the archiver (ar) interface... (cached) ar 271s checking for ar... (cached) ar 271s checking for dd... /usr/bin/dd 271s checking for mktemp... /usr/bin/mktemp 271s checking for netstat... /usr/bin/netstat 271s checking for rm... /usr/bin/rm 271s checking how to run the C preprocessor... gcc -E 271s checking for grep that handles long lines and -e... /usr/bin/grep 271s checking for egrep... /usr/bin/grep -E 271s checking for fgrep... /usr/bin/grep -F 271s checking whether make sets $(MAKE)... (cached) yes 271s checking for ranlib... (cached) ranlib 271s checking for bison... no 271s checking for byacc... no 271s checking whether ln -s works... yes 271s checking for a sed that does not truncate output... /usr/bin/sed 271s checking for size_t... yes 271s checking for working alloca.h... yes 271s checking for alloca... yes 272s checking for inline... inline 272s checking for C/C++ restrict keyword... __restrict__ 272s checking for gcc options needed to detect all undeclared functions... none needed 272s checking whether clearerr_unlocked is declared... yes 272s checking whether feof_unlocked is declared... yes 272s checking whether ferror_unlocked is declared... yes 272s checking whether fflush_unlocked is declared... yes 272s checking whether fgets_unlocked is declared... yes 272s checking whether fputc_unlocked is declared... yes 272s checking whether fputs_unlocked is declared... yes 272s checking whether fread_unlocked is declared... yes 272s checking whether fwrite_unlocked is declared... yes 272s checking whether getc_unlocked is declared... yes 272s checking whether getchar_unlocked is declared... yes 272s checking whether putc_unlocked is declared... yes 272s checking whether putchar_unlocked is declared... yes 272s checking for flockfile... yes 272s checking for funlockfile... yes 272s checking for btowc... yes 272s checking for mbrtowc... yes 272s checking for mbsinit... yes 272s checking for _set_invalid_parameter_handler... no 272s checking for fchdir... yes 272s checking for fcntl... yes 272s checking for symlink... yes 272s checking for fdopendir... yes 272s checking for fnmatch... yes 272s checking for mbsrtowcs... yes 272s checking for fstatat... yes 272s checking for openat... yes 272s checking for fstatfs... yes 272s checking for getdtablesize... yes 272s checking for getpass... yes 272s checking for getexecname... no 272s checking for getusershell... yes 272s checking for glob_pattern_p... yes 272s checking for isblank... yes 272s checking for iswcntrl... yes 272s checking for lstat... yes 273s checking for mprotect... yes 273s checking for memset_explicit... no 273s checking for memset_s... no 273s checking for getgrouplist... yes 273s checking for mkstemp... yes 273s checking for pipe... yes 273s checking for utmpname... yes 273s checking for utmpxname... yes 273s checking for iswctype... yes 273s checking for setenv... yes 273s checking for sleep... yes 273s checking for snprintf... yes 273s checking for strndup... yes 273s checking for vasnprintf... no 273s checking for wcrtomb... yes 273s checking for fork... yes 273s checking for vfork... yes 273s checking for getpagesize... yes 273s checking whether strerror_r is declared... yes 273s checking whether strerror_r returns char *... yes 273s checking whether the preprocessor supports include_next... yes 273s checking whether source code line length is unlimited... yes 273s checking whether uses 'inline' correctly... yes 273s checking for nl_langinfo and CODESET... yes 273s checking for a traditional french locale... none 273s checking whether char8_t is correctly defined... yes 273s checking whether char16_t is correctly defined... yes 273s checking whether char32_t is correctly defined... yes 273s checking for bit size of wchar_t... 32 273s checking for mbstate_t... yes 273s checking for a traditional japanese locale... none 273s checking for a french Unicode locale... none 273s checking for a transitional chinese locale... none 273s checking whether mbrtowc handles incomplete characters... guessing yes 273s checking whether mbrtowc works as well as mbtowc... guessing yes 273s checking whether mbrtoc32 is declared... yes 273s checking for mbrtoc32... yes 273s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 273s checking whether malloc is ptrdiff_t safe... yes 273s checking whether malloc, realloc, calloc set errno on failure... yes 273s checking if environ is properly declared... yes 273s checking for complete errno.h... yes 273s checking for error... yes 273s checking whether error_at_line is declared... yes 274s checking for error_at_line... yes 274s checking for working error function... yes 274s checking whether ctype.h defines __header_inline... no 274s checking whether fchdir is declared... yes 275s checking for working fcntl.h... yes 275s checking for pid_t... yes 275s checking for mode_t... yes 275s checking for promoted mode_t type... mode_t 275s checking whether strmode is declared... no 275s checking whether fopen recognizes a trailing slash... yes 275s checking whether fflush works on input streams... no 275s checking for library containing forkpty... none required 275s checking whether stdin defaults to large file offsets... yes 275s checking whether fseeko is declared... yes 275s checking for fseeko... yes 275s checking whether fflush works on input streams... (cached) no 275s checking whether stat file-mode macros are broken... no 275s checking for nlink_t... yes 275s checking whether lstat correctly handles trailing slash... yes 275s checking whether ftello is declared... yes 275s checking whether ungetc works on arbitrary bytes... yes 275s checking for ftello... yes 275s checking whether ftello works... yes 275s checking for O_CLOEXEC... yes 275s checking whether is self-contained... yes 275s checking for shutdown... yes 275s checking whether defines the SHUT_* macros... yes 275s checking for struct sockaddr_storage... yes 275s checking for sa_family_t... yes 275s checking for struct sockaddr_storage.ss_family... yes 275s checking for library containing gethostbyname... none required 275s checking for gethostbyname... yes 275s checking for library containing getservbyname... none required 275s checking for getservbyname... yes 275s checking for library containing inet_ntop... none required 275s checking whether inet_ntop is declared... yes 275s checking for IPv4 sockets... yes 276s checking for IPv6 sockets... yes 276s checking whether getcwd (NULL, 0) allocates memory for result... yes 276s checking for getcwd with POSIX signature... yes 276s checking whether getcwd is declared... yes 276s checking whether getdelim is declared... yes 276s checking whether getdtablesize is declared... yes 276s checking for uid_t... yes 276s checking for gid_t... yes 276s checking type of array argument to getgroups... gid_t 276s checking whether getline is declared... yes 276s checking whether getlogin_r is declared... yes 276s checking whether getlogin is declared... yes 276s checking for getopt.h... (cached) yes 276s checking for getopt_long_only... yes 276s checking whether getopt is POSIX compatible... yes 276s checking for working GNU getopt function... yes 276s checking for working GNU getopt_long function... yes 276s checking whether flockfile is declared... yes 276s checking whether funlockfile is declared... yes 276s checking for pthread.h... yes 276s checking for pthread_kill in -lpthread... yes 276s checking whether POSIX threads API is available... yes 276s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 276s checking whether setlocale (category, NULL) is multithread-safe... yes 276s checking for off_t... yes 276s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 276s checking whether limits.h has SSIZE_MAX... yes 276s checking for wint_t... yes 276s checking whether wint_t is large enough... yes 276s checking whether the compiler produces multi-arch binaries... no 277s checking whether stdint.h conforms to C99... yes 277s checking whether stdint.h works without ISO C predefines... yes 277s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 277s checking whether iswcntrl works... yes 277s checking for towlower... yes 277s checking for wctype_t... yes 277s checking for wctrans_t... yes 277s checking whether wctype supports the "blank" and "punct" character classes... yes 277s checking whether langinfo.h defines CODESET... yes 277s checking whether langinfo.h defines T_FMT_AMPM... yes 277s checking whether langinfo.h defines ALTMON_1... yes 277s checking whether langinfo.h defines ERA... yes 277s checking whether langinfo.h defines YESEXPR... yes 277s checking for wchar_t... yes 277s checking for good max_align_t... yes 277s checking whether NULL can be used in arbitrary expressions... yes 277s checking for unreachable... no 277s checking whether locale.h defines locale_t... yes 277s checking whether locale.h conforms to POSIX:2001... yes 277s checking whether struct lconv is properly defined... yes 277s checking whether imported symbols can be declared weak... yes 277s checking for multithread API to use... posix 277s checking whether malloc (0) returns nonnull... yes 277s checking for mmap... yes 277s checking for MAP_ANONYMOUS... yes 277s checking whether memchr works... yes 277s checking whether memrchr is declared... yes 277s checking whether defines MIN and MAX... no 277s checking whether defines MIN and MAX... yes 277s checking for library containing setsockopt... none needed 277s checking for ld used by gcc... /usr/bin/ld 277s checking if the linker (/usr/bin/ld) is GNU ld... yes 277s checking for shared library run path origin... done 277s checking 32-bit host C ABI... no 277s checking for ELF binary format... yes 277s checking for the common suffixes of directories in the library search path... lib,lib,lib 277s checking whether to use systemd APIs... no 277s checking whether endutent is declared... yes 277s checking for struct utmpx.ut_user... yes 277s checking for struct utmp.ut_user... yes 277s checking for struct utmpx.ut_name... yes 277s checking for struct utmp.ut_name... yes 277s checking for struct utmpx.ut_type... yes 277s checking for struct utmp.ut_type... yes 277s checking for struct utmpx.ut_pid... yes 277s checking for struct utmp.ut_pid... yes 277s checking for struct utmp.ut_tv... yes 277s checking for struct utmpx.ut_host... yes 277s checking for struct utmp.ut_host... yes 278s checking for struct utmpx.ut_id... yes 278s checking for struct utmp.ut_id... yes 278s checking for struct utmpx.ut_session... yes 278s checking for struct utmp.ut_session... yes 278s checking for struct utmpx.ut_exit... yes 278s checking for struct utmp.ut_exit... yes 278s checking for struct utmpx.ut_exit.ut_exit... no 278s checking for struct utmpx.ut_exit.e_exit... yes 278s checking for struct utmp.ut_exit.e_exit... yes 278s checking for struct utmpx.ut_exit.ut_termination... no 278s checking for struct utmpx.ut_exit.e_termination... yes 278s checking for struct utmp.ut_exit.e_termination... yes 278s checking whether sysinfo is declared... yes 278s checking for sys/sysctl.h... no 278s checking for sysctl... no 278s checking whether alarm is declared... yes 278s checking whether is self-contained... yes 278s checking whether setenv is declared... yes 278s checking for search.h... yes 278s checking for tsearch... yes 278s checking for sigset_t... yes 278s checking for volatile sig_atomic_t... yes 278s checking for sighandler_t... yes 278s checking whether snprintf returns a byte count as in C99... yes 278s checking whether printf supports POSIX/XSI format strings with positions... yes 278s checking whether snprintf is declared... yes 278s checking whether fcloseall is declared... yes 278s checking whether getw is declared... yes 278s checking whether putw is declared... yes 278s checking which flavor of printf attribute matches inttypes macros... system 279s checking whether ecvt is declared... yes 279s checking whether fcvt is declared... yes 279s checking whether gcvt is declared... yes 279s checking whether MB_CUR_MAX is correct... guessing yes 279s checking whether strdup is declared... yes 279s checking whether strerror(0) succeeds... yes 279s checking whether strndup is declared... yes 279s checking whether strnlen is declared... yes 279s checking whether declares ioctl... yes 279s checking for struct timeval... yes 279s checking for wide-enough struct timeval.tv_sec member... yes 279s checking for struct timespec in ... yes 279s checking for TIME_UTC in ... yes 279s checking whether execvpe is declared... yes 279s checking for util.h... (cached) no 279s checking for libutil.h... (cached) no 279s checking for inttypes.h... yes 279s checking for stdint.h... yes 279s checking for intmax_t... yes 279s checking whether snprintf truncates the result as in C99... yes 279s checking where to find the exponent in a 'double'... word 0 bit 20 279s checking for wcslen... yes 279s checking for snprintf... (cached) yes 279s checking for strnlen... yes 279s checking for wcrtomb... (cached) yes 279s checking whether _snprintf is declared... no 279s checking whether vsnprintf is declared... yes 279s checking whether wcsdup is declared... yes 279s checking for C compiler option to allow warnings... -Wno-error 279s checking for alignas and alignof... yes, macros 279s checking for alloca as a compiler built-in... yes 279s checking whether program_invocation_name is declared... yes 279s checking whether program_invocation_short_name is declared... yes 279s checking whether program_invocation_name is defined... yes 279s checking whether program_invocation_short_name is defined... yes 279s checking for static_assert... yes, an macro 279s checking whether btowc(0) is correct... yes 279s checking whether btowc(EOF) is correct... guessing yes 279s checking whether btowc is consistent with mbrtowc in the C locale... no 279s checking for __builtin_expect... yes 279s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 279s checking whether this system supports file names of any length... no 279s checking for library containing clock_gettime... none required 279s checking for clock_getres... yes 279s checking for clock_gettime... yes 279s checking for clock_settime... yes 279s checking for closedir... yes 279s checking for d_ino member in directory struct... yes 280s checking for d_type member in directory struct... yes 280s checking for dirfd... yes 280s checking whether dirfd is declared... yes 280s checking whether dirfd is a macro... no 280s checking whether // is distinct from /... no 280s checking whether dup works... yes 280s checking whether dup2 works... yes 280s checking whether fcntl handles F_DUPFD correctly... yes 280s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 280s checking whether fdopendir is declared... yes 280s checking whether fdopendir works... yes 280s checking for mempcpy... yes 280s checking for flexible array member... yes 280s checking whether conversion from 'int' to 'long double' works... yes 280s checking for working POSIX fnmatch... yes 280s checking whether fopen supports the mode character 'x'... yes 280s checking whether fopen supports the mode character 'e'... yes 280s checking whether forkpty is declared... yes 280s checking for const-safe forkpty signature... yes 280s checking whether free is known to preserve errno... yes 280s checking for fseeko... (cached) yes 280s checking whether fflush works on input streams... (cached) no 280s checking for _fseeki64... no 280s checking whether fstatat (..., 0) works... yes 280s checking for ftello... (cached) yes 280s checking whether ftello works... (cached) yes 280s checking for struct statfs.f_type... yes 280s checking for __fsword_t... yes 280s checking for fts_open... yes 280s checking for library containing getaddrinfo... none required 280s checking for getaddrinfo... yes 280s checking whether gai_strerror is declared... yes 280s checking whether gai_strerrorA is declared... no 280s checking for gai_strerror with POSIX signature... yes 280s checking for struct sockaddr.sa_len... no 280s checking whether getaddrinfo is declared... yes 280s checking whether freeaddrinfo is declared... yes 280s checking whether getnameinfo is declared... yes 280s checking for struct addrinfo... yes 280s checking whether getcwd handles long file names properly... yes 281s checking for getpagesize... yes 281s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 281s checking for getdelim... yes 281s checking for working getdelim function... yes 281s checking for getdomainname... yes 281s checking whether getdomainname is declared... yes 281s checking for getdomainname's second argument type... size_t 281s checking whether getdtablesize works... yes 281s checking for getgroups... yes 281s checking for working getgroups... yes 281s checking whether getgroups handles negative values... yes 281s checking for gethostname... yes 281s checking for HOST_NAME_MAX... yes 281s checking for getline... yes 281s checking for working getline function... yes 281s checking for getlogin_r... yes 281s checking whether getlogin_r works with small buffers... yes 281s checking for getprogname... no 281s checking whether program_invocation_name is declared... (cached) yes 281s checking whether program_invocation_name is declared... (cached) yes 281s checking whether program_invocation_short_name is declared... (cached) yes 281s checking whether __argv is declared... no 281s checking for getrandom... yes 281s checking whether getrandom is compatible with its GNU+BSD signature... yes 281s checking whether getusershell is declared... yes 281s checking for glob... yes 281s checking for GNU glob interface version 1 or 2... yes 281s checking whether glob lists broken symlinks... yes 281s checking whether glob NOTDIR*/ omits symlink to nondir... yes 281s checking for library containing gethostbyname... (cached) none required 281s checking for gethostbyname... (cached) yes 281s checking for library containing inet_ntop... (cached) none required 281s checking whether inet_ntop is declared... (cached) yes 281s checking whether the compiler generally respects inline... yes 281s checking for ioctl... yes 281s checking for ioctl with POSIX signature... no 281s checking for iswblank... yes 281s checking whether iswblank is declared... yes 281s checking whether iswdigit is ISO C compliant... guessing yes 281s checking whether iswpunct is consistent with ispunct... yes 281s checking whether iswxdigit is ISO C compliant... guessing yes 281s checking whether the compiler supports the __inline keyword... yes 281s checking whether localeconv works... yes 281s checking for pthread_rwlock_t... yes 282s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 282s checking for login_tty... yes 282s checking whether lseek detects pipes... yes 282s checking whether SEEK_DATA works but is incompatible with GNU... no 282s checking whether malloc (0) returns nonnull... (cached) yes 282s checking whether mbrtoc32 works on empty input... yes 282s checking whether the C locale is free of encoding errors... no 282s checking whether mbrtowc handles a NULL pwc argument... guessing yes 282s checking whether mbrtowc handles a NULL string argument... guessing yes 282s checking whether mbrtowc has a correct return value... guessing yes 282s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 282s checking whether mbrtowc stores incomplete characters... guessing no 282s checking whether mbrtowc works on empty input... yes 282s checking whether the C locale is free of encoding errors... no 282s checking whether mbsrtowcs works... guessing yes 282s checking whether the C locale is free of encoding errors... (cached) no 282s checking for mbtowc... yes 282s checking for mempcpy... (cached) yes 282s checking for memrchr... yes 282s checking for explicit_memset... no 282s checking whether mkdir handles trailing slash... yes 282s checking whether mkdir handles trailing dot... yes 282s checking for working mkstemp... yes 282s checking whether is self-contained... yes 282s checking for nl_langinfo... yes 282s checking whether YESEXPR works... yes 282s checking for obstacks that work with any size object... no 282s checking whether open recognizes a trailing slash... yes 282s checking for opendir... yes 282s checking whether openpty is declared... yes 282s checking for const-safe openpty signature... yes 282s checking for poll... yes 282s checking for posix_openpt... yes 282s checking whether program_invocation_name is declared... (cached) yes 282s checking whether program_invocation_short_name is declared... (cached) yes 282s checking for rawmemchr... yes 282s checking for readdir... yes 282s checking for readline... no 282s checking for readline/readline.h... no 282s checking for readline/history.h... no 282s checking whether realloc (0, 0) returns nonnull... yes 282s checking for reallocarray... yes 283s checking for working re_compile_pattern... yes 283s checking for rewinddir... yes 283s checking whether select supports a 0 argument... yes 283s checking whether select detects invalid fds... yes 283s checking for library containing getservbyname... (cached) none required 283s checking for getservbyname... (cached) yes 283s checking whether setenv validates arguments... yes 283s checking for HOST_NAME_MAX... (cached) yes 283s checking for sethostname... yes 283s checking whether sethostname is declared... yes 283s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 283s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 283s checking for stdint.h... (cached) yes 283s checking for SIZE_MAX... yes 283s checking whether sleep is declared... yes 284s checking for working sleep... yes 284s checking for snprintf... (cached) yes 284s checking whether snprintf respects a size of 1... yes 284s checking for socklen_t... yes 284s checking for ssize_t... yes 284s checking whether stat handles trailing slashes on files... yes 284s checking for struct stat.st_atim.tv_nsec... yes 284s checking whether struct stat.st_atim is of type struct timespec... yes 284s checking for struct stat.st_birthtimespec.tv_nsec... no 284s checking for struct stat.st_birthtimensec... no 284s checking for struct stat.st_birthtim.tv_nsec... no 284s checking for va_copy... yes 284s checking for bool, true, false... no 284s checking for strcasecmp... yes 284s checking for strncasecmp... yes 284s checking whether strncasecmp is declared... yes 284s checking for strchrnul... yes 284s checking whether strchrnul works... yes 284s checking for working strerror function... yes 284s checking for working strndup... yes 284s checking for working strnlen... yes 284s checking for variable-length arrays... yes 284s checking for ptrdiff_t... yes 284s checking for vasprintf... yes 284s checking for vsnprintf... yes 284s checking whether snprintf respects a size of 1... (cached) yes 284s checking whether wcrtomb works in the C locale... yes 284s checking whether wcrtomb return value is correct... guessing yes 284s checking for wmemchr... yes 284s checking for wmempcpy... yes 284s checking for stdint.h... (cached) yes 285s checking for library containing inet_ntoa... none required 285s checking for initscr in -lncurses... no 285s checking for tgetent in -ltermcap... no 285s checking whether tgetent needs support... no 285s checking for tgetent in -lcurses... no 285s checking whether tgetent is declared... no 285s checking for tgetent in -ltermlib... no 285s checking for crypt in -lcrypt... yes 285s checking for login in -lutil... yes 285s checking for loginx in -lutil... no 285s checking for logout in -lutil... yes 285s checking for logoutx in -lutil... no 285s checking for logwtmp in -lutil... yes 285s checking for logwtmpx in -lutil... no 285s checking for protocols/talkd.h... yes 285s checking for rcmd... yes 285s checking for rcmd_af... yes 285s checking for orcmd... no 285s checking for orcmd_af... no 285s checking for rresvport_af... yes 285s checking for iruserok... yes 285s checking for iruserok_af... yes 285s checking for iruserok_sa... no 285s checking for ruserok... yes 285s checking for ruserok_af... yes 285s checking for AF_INET6... yes 285s checking for IPV6_V6ONLY... yes 285s checking for struct sockaddr_storage... (cached) yes 285s checking for struct sockaddr_in6... yes 285s checking for struct addrinfo... (cached) yes 285s checking for getnameinfo... yes 285s checking for netinet/icmp6.h... yes 285s checking for netinet/ip6.h... yes 285s checking for struct icmp6_filter... yes 285s checking for struct icmp6_hdr... yes 285s checking for IPV6_HOPLIMIT... yes 285s checking for IPV6_2292HOPLIMIT... yes 285s checking for IPV6_RECVHOPLIMIT... yes 285s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 285s checking for locale.h... yes 285s checking for setlocale... yes 285s checking for arpa/nameser.h... yes 285s checking for arpa/tftp.h... yes 285s checking for fcntl.h... yes 285s checking for features.h... (cached) yes 285s checking for glob.h... (cached) yes 285s checking for memory.h... yes 285s checking for netinet/ether.h... yes 285s checking for netinet/in_systm.h... yes 285s checking for netinet/ip.h... yes 285s checking for netinet/ip_icmp.h... yes 286s checking for netinet/ip_var.h... no 286s checking for security/pam_appl.h... no 286s checking for shadow.h... yes 286s checking for stropts.h... no 286s checking for sys/tty.h... no 286s checking for sys/utsname.h... yes 286s checking for sys/ptyvar.h... no 286s checking for sys/msgbuf.h... no 286s checking for sys/filio.h... (cached) no 286s checking for sys/ioctl_compat.h... no 286s checking for sys/cdefs.h... (cached) yes 286s checking for sys/stream.h... no 286s checking for sys/mkdev.h... no 286s checking for sys/sockio.h... no 286s checking for sys/sysmacros.h... yes 286s checking for sys/param.h... (cached) yes 286s checking for sys/file.h... yes 286s checking for sys/proc.h... no 286s checking for sys/select.h... (cached) yes 286s checking for sys/wait.h... yes 286s checking for sys/resource.h... yes 286s checking for stropts.h... (cached) no 286s checking for tcpd.h... no 286s checking for utmp.h... (cached) yes 286s checking for utmpx.h... (cached) yes 286s checking for unistd.h... (cached) yes 286s checking for vis.h... no 286s checking for struct if_nameindex... yes 286s checking for sigset_t... (cached) yes 286s checking for sig_atomic_t... yes 286s checking for struct sockaddr_in.sin_len... no 286s checking for struct sockaddr_in6.sin6_len... no 286s checking for struct sockaddr_storage.ss_len... no 286s checking for struct passwd.pw_expire... no 286s checking for struct passwd.pw_change... no 286s checking for struct lastlog... yes 286s checking for struct utmp.ut_type... (cached) yes 286s checking for struct utmp.ut_pid... (cached) yes 286s checking for struct utmp.ut_line... yes 286s checking for struct utmp.ut_id... (cached) yes 286s checking for struct utmp.ut_user... (cached) yes 286s checking for struct utmp.ut_host... (cached) yes 286s checking for struct utmp.ut_exit... (cached) yes 286s checking for struct utmp.ut_session... (cached) yes 286s checking for struct utmp.ut_tv... (cached) yes 286s checking for struct utmp.ut_time... yes 286s checking for struct utmp.ut_addr_v6... yes 286s checking for struct utmp.ut_name... (cached) yes 286s checking for struct lastlogx... no 286s checking for struct lastlogx.ll_ss... no 286s checking for struct utmpx.ut_user... (cached) yes 286s checking for struct utmpx.ut_name... (cached) yes 286s checking for struct utmpx.ut_id... (cached) yes 286s checking for struct utmpx.ut_line... yes 286s checking for struct utmpx.ut_pid... (cached) yes 286s checking for struct utmpx.ut_type... (cached) yes 286s checking for struct utmpx.ut_exit... (cached) yes 286s checking for struct utmpx.ut_tv... yes 286s checking for struct utmpx.ut_session... (cached) yes 286s checking for struct utmpx.ut_syslen... no 286s checking for struct utmpx.ut_host... (cached) yes 286s checking for struct utmpx.ut_ss... no 286s checking for struct utmpx.ut_addr_v6... yes 286s checking for struct ifreq.ifr_index... no 286s checking for struct ifreq.ifr_netmask... yes 286s checking for struct ifreq.ifr_broadaddr... yes 286s checking for struct ifreq.ifr_mtu... yes 286s checking for struct ifreq.ifr_map... yes 286s checking for struct sockaddr.sa_len... (cached) no 286s checking for struct hostent.h_addr_list... yes 286s checking for struct stat.st_atim.tv_nsec... (cached) yes 286s checking for struct stat.st_atim.tv_usec... no 286s checking for struct stat.st_blksize... yes 286s checking for struct stat.st_ctim.tv_nsec... yes 286s checking for struct stat.st_ctim.tv_usec... no 286s checking for struct stat.st_mtim.tv_nsec... yes 286s checking for struct stat.st_mtim.tv_usec... no 286s checking for struct tftphdr.th_u... no 286s checking for working fork... yes 286s checking for working vfork... (cached) yes 287s checking for working mmap... yes 287s checking for cfsetspeed... yes 287s checking for cgetent... no 287s checking for dirfd... (cached) yes 287s checking for flock... yes 287s checking for fork... (cached) yes 287s checking for fpathconf... yes 287s checking for ftruncate... yes 287s checking for getcwd... yes 287s checking for getmsg... no 287s checking for getpwuid_r... yes 287s checking for getspnam... yes 287s checking for getutxent... yes 287s checking for getutxuser... no 287s checking for initgroups... yes 287s checking for initsetproctitle... no 287s checking for killpg... yes 287s checking for ptsname... yes 287s checking for pututline... yes 287s checking for pututxline... yes 287s checking for setegid... yes 287s checking for seteuid... yes 287s checking for setpgid... yes 287s checking for setlogin... no 287s checking for setsid... yes 287s checking for setregid... yes 287s checking for setreuid... yes 287s checking for setresgid... yes 287s checking for setresuid... yes 287s checking for setutent_r... no 287s checking for sigaction... yes 287s checking for sigvec... no 287s checking for strchr... yes 287s checking for setproctitle... no 287s checking for tcgetattr... yes 287s checking for tzset... yes 287s checking for utimes... yes 287s checking for utime... yes 287s checking for uname... yes 287s checking for updwtmp... yes 287s checking for updwtmpx... yes 287s checking for vhangup... yes 287s checking for wait3... yes 288s checking for wait4... yes 288s checking for __opendir2... no 288s checking for __rcmd_errstr... yes 288s checking for __check_rhosts_file... yes 288s checking for login... yes 288s checking for loginx... no 288s checking for logout... yes 288s checking for logoutx... no 288s checking for logwtmp... yes 288s checking for logwtmpx... no 288s checking for crypt... yes 288s checking for _obstack_free... yes 288s checking for setpgid... (cached) yes 288s checking for hstrerror... yes 288s checking whether hstrerror is declared... yes 288s checking whether telcmds is declared... yes 288s checking whether telopts is declared... no 288s checking for Schedule... no 288s checking for Session_Key... no 288s checking whether enctype_names is const char... no 288s checking whether crypt is declared... yes 288s checking for syslog internal macros... yes 288s checking for CODE... yes 288s checking whether prioritynames is declared... yes 288s checking whether fclose is declared... yes 288s checking whether pclose is declared... yes 288s checking whether getcwd is declared... (cached) yes 288s checking whether getlogin is declared... (cached) yes 288s checking whether getpass is declared... yes 288s checking whether getusershell is declared... (cached) yes 288s checking whether ttyname is declared... yes 288s checking whether getgrnam is declared... yes 288s checking whether initgroups is declared... yes 288s checking whether htons is declared... yes 288s checking for h_errno... yes 288s checking whether h_errno is declared... yes 288s checking for SEEK_ macros... yes 288s checking for _FILENO macros... yes 288s checking for fd_set macros... yes 288s checking for paths.h... yes 288s checking for value of PATH_BSHELL... from _PATH_BSHELL in 288s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 288s checking for value of PATH_CP... /usr/bin/cp 288s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 288s checking for value of PATH_DEV... from _PATH_DEV in 288s checking for value of PATH_TTY_PFX... from _PATH_DEV in 288s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 288s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 288s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 288s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 288s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 288s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 288s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 288s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 288s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 288s checking for value of PATH_UTMP... from _PATH_UTMP in 288s checking for value of PATH_UTMPX... from _PATH_UTMPX in 288s checking for value of PATH_WTMP... from _PATH_WTMP in 288s checking for value of PATH_WTMPX... from _PATH_WTMPX in 288s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 288s checking for value of PATH_LOG... from _PATH_LOG in 288s checking for value of PATH_KLOG... from _PATH_KLOG in 289s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 289s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 289s checking for value of PATH_LOGIN... /usr/bin/login 289s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 289s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 289s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 289s checking for value of PATH_RSH... (default) $(bindir)/rsh 289s checking for value of PATH_TMP... from _PATH_TMP in 289s checking for value of PATH_TTY... from _PATH_TTY in 289s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 289s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 289s checking for value of PATH_PROCNET_DEV... /proc/net/dev 289s checking that generated files are newer than configure... done 289s configure: creating ./config.status 289s /bin/bash ./config.status 289s config.status: creating Makefile 289s config.status: creating summary.sh 289s config.status: creating lib/Makefile 289s config.status: creating libinetutils/Makefile 289s config.status: creating libtelnet/Makefile 289s config.status: creating libicmp/Makefile 289s config.status: creating libls/Makefile 289s config.status: creating src/Makefile 289s config.status: creating telnet/Makefile 289s config.status: creating telnetd/Makefile 289s config.status: creating ftp/Makefile 289s config.status: creating ftpd/Makefile 289s config.status: creating talk/Makefile 289s config.status: creating talkd/Makefile 289s config.status: creating whois/Makefile 289s config.status: creating ping/Makefile 289s config.status: creating ifconfig/Makefile 289s config.status: creating ifconfig/system/Makefile 289s config.status: creating tests/Makefile 289s config.status: creating confpaths.h 289s config.status: creating config.h 289s config.status: config.h is unchanged 289s config.status: executing depfiles commands 290s config.status: executing summary commands 290s Summary of build decisions: 290s 290s Clients: 290s 290s dnsdomainname no 290s ftp yes 290s hostname no 290s ifconfig no 290s logger no 290s ping no 290s ping6 no 290s rcp no 290s rexec no 290s rlogin no 290s rsh no 290s talk no 290s telnet no 290s tftp no 290s traceroute yes 290s whois no 290s 290s Servers: 290s 290s ftpd yes 290s inetd no 290s rexecd no 290s rlogind no 290s rshd no 290s syslogd no 290s talkd no 290s telnetd no 290s tftpd no 290s uucpd no 290s 290s Support: 290s 290s libls no 290s make[1]: Warning: File 'aclocal.m4' has modification time 34 s in the future 290s cd . && /bin/bash /tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing automake-1.17 --gnu 292s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing' autoconf 294s /bin/bash ./config.status --recheck 294s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-servers --disable-clients --disable-ping --disable-ping6 --enable-ftp --enable-ftpd --enable-traceroute --no-create --no-recursion 294s checking build system type... s390x-ibm-linux-gnu 294s checking host system type... s390x-ibm-linux-gnu 294s checking for a BSD-compatible install... /usr/bin/install -c 294s checking whether sleep supports fractional seconds... yes 294s checking filesystem timestamp resolution... 0.01 294s checking whether build environment is sane... yes 294s checking for a race-free mkdir -p... /usr/bin/mkdir -p 294s checking for gawk... gawk 294s checking whether make sets $(MAKE)... yes 294s checking whether make supports nested variables... yes 294s checking xargs -n works... yes 294s checking for gcc... gcc 294s checking whether the C compiler works... yes 294s checking for C compiler default output file name... a.out 294s checking for suffix of executables... 294s checking whether we are cross compiling... no 294s checking for suffix of object files... o 294s checking whether the compiler supports GNU C... yes 294s checking whether gcc accepts -g... yes 294s checking for gcc option to enable C11 features... none needed 294s checking whether gcc understands -c and -o together... yes 294s checking whether the compiler is clang... no 294s checking for compiler option needed when checking for declarations... none 294s checking whether make supports the include directive... yes (GNU style) 294s checking dependency style of gcc... gcc3 294s checking for stdio.h... yes 294s checking for stdlib.h... yes 294s checking for string.h... yes 294s checking for inttypes.h... yes 294s checking for stdint.h... yes 294s checking for strings.h... yes 294s checking for sys/stat.h... yes 294s checking for sys/types.h... yes 294s checking for unistd.h... yes 294s checking for wchar.h... yes 294s checking for minix/config.h... no 295s checking for features.h... yes 295s checking for linewrap.h... no 295s checking for arpa/inet.h... yes 295s checking for sys/socket.h... yes 295s checking for uchar.h... yes 295s checking for sys/param.h... yes 295s checking for dirent.h... yes 295s checking for error.h... yes 295s checking for fnmatch.h... yes 295s checking for pty.h... yes 295s checking for termios.h... yes 295s checking for sys/vfs.h... yes 295s checking for netdb.h... yes 295s checking for netinet/in.h... yes 295s checking for getopt.h... yes 295s checking for sys/cdefs.h... yes 295s checking for stdio_ext.h... yes 295s checking for grp.h... yes 295s checking for glob.h... yes 295s checking for threads.h... yes 295s checking for limits.h... yes 295s checking for crtdefs.h... no 295s checking for wctype.h... yes 295s checking for langinfo.h... yes 295s checking for xlocale.h... no 295s checking for utmp.h... yes 295s checking for util.h... no 295s checking for libutil.h... no 295s checking for sys/mman.h... yes 295s checking for obstack.h... yes 295s checking for poll.h... yes 295s checking for sys/ioctl.h... yes 295s checking for sys/filio.h... no 295s checking for utmpx.h... yes 295s checking for OS.h... no 295s checking for malloc.h... yes 295s checking for sys/select.h... yes 295s checking for sys/time.h... yes 295s checking for stdbool.h... yes 295s checking for stdckdint.h... yes 295s checking for sys/random.h... yes 295s checking for sys/uio.h... yes 295s checking for sysexits.h... yes 296s checking for vfork.h... no 296s checking whether it is safe to define __EXTENSIONS__... yes 296s checking whether _XOPEN_SOURCE should be defined... no 296s checking how to run the C preprocessor... gcc -E 296s checking for egrep -e... /usr/bin/grep -E 296s checking for Minix Amsterdam compiler... no 296s checking for ar... ar 296s checking the archiver (ar) interface... ar 296s checking for ar... (cached) ar 296s checking for ranlib... ranlib 296s checking for gcc option to enable large file support... none needed 296s configure: autobuild project... GNU inetutils 296s configure: autobuild revision... 2.5 296s configure: autobuild hostname... autopkgtest 296s configure: autobuild timestamp... 20250219T081756Z 296s checking the archiver (ar) interface... (cached) ar 296s checking for ar... (cached) ar 296s checking for dd... /usr/bin/dd 296s checking for mktemp... /usr/bin/mktemp 296s checking for netstat... /usr/bin/netstat 296s checking for rm... /usr/bin/rm 296s checking how to run the C preprocessor... gcc -E 296s checking for grep that handles long lines and -e... /usr/bin/grep 296s checking for egrep... /usr/bin/grep -E 296s checking for fgrep... /usr/bin/grep -F 296s checking whether make sets $(MAKE)... (cached) yes 296s checking for ranlib... (cached) ranlib 296s checking for bison... no 296s checking for byacc... no 296s checking whether ln -s works... yes 296s checking for a sed that does not truncate output... /usr/bin/sed 296s checking for size_t... yes 296s checking for working alloca.h... yes 296s checking for alloca... yes 296s checking for inline... inline 296s checking for C/C++ restrict keyword... __restrict__ 296s checking for gcc options needed to detect all undeclared functions... none needed 296s checking whether clearerr_unlocked is declared... yes 296s checking whether feof_unlocked is declared... yes 296s checking whether ferror_unlocked is declared... yes 296s checking whether fflush_unlocked is declared... yes 296s checking whether fgets_unlocked is declared... yes 296s checking whether fputc_unlocked is declared... yes 296s checking whether fputs_unlocked is declared... yes 296s checking whether fread_unlocked is declared... yes 296s checking whether fwrite_unlocked is declared... yes 296s checking whether getc_unlocked is declared... yes 296s checking whether getchar_unlocked is declared... yes 296s checking whether putc_unlocked is declared... yes 296s checking whether putchar_unlocked is declared... yes 296s checking for flockfile... yes 296s checking for funlockfile... yes 296s checking for btowc... yes 296s checking for mbrtowc... yes 296s checking for mbsinit... yes 296s checking for _set_invalid_parameter_handler... no 296s checking for fchdir... yes 296s checking for fcntl... yes 296s checking for symlink... yes 296s checking for fdopendir... yes 296s checking for fnmatch... yes 296s checking for mbsrtowcs... yes 296s checking for fstatat... yes 296s checking for openat... yes 297s checking for fstatfs... yes 297s checking for getdtablesize... yes 297s checking for getpass... yes 297s checking for getexecname... no 297s checking for getusershell... yes 297s checking for glob_pattern_p... yes 297s checking for isblank... yes 297s checking for iswcntrl... yes 297s checking for lstat... yes 297s checking for mprotect... yes 297s checking for memset_explicit... no 297s checking for memset_s... no 297s checking for getgrouplist... yes 297s checking for mkstemp... yes 297s checking for pipe... yes 297s checking for utmpname... yes 297s checking for utmpxname... yes 297s checking for iswctype... yes 297s checking for setenv... yes 297s checking for sleep... yes 297s checking for snprintf... yes 297s checking for strndup... yes 297s checking for vasnprintf... no 297s checking for wcrtomb... yes 297s checking for fork... yes 297s checking for vfork... yes 297s checking for getpagesize... yes 297s checking whether strerror_r is declared... yes 297s checking whether strerror_r returns char *... yes 297s checking whether the preprocessor supports include_next... yes 297s checking whether source code line length is unlimited... yes 297s checking whether uses 'inline' correctly... yes 297s checking for nl_langinfo and CODESET... yes 297s checking for a traditional french locale... none 297s checking whether char8_t is correctly defined... yes 297s checking whether char16_t is correctly defined... yes 297s checking whether char32_t is correctly defined... yes 297s checking for bit size of wchar_t... 32 297s checking for mbstate_t... yes 298s checking for a traditional japanese locale... none 298s checking for a french Unicode locale... none 298s checking for a transitional chinese locale... none 298s checking whether mbrtowc handles incomplete characters... guessing yes 298s checking whether mbrtowc works as well as mbtowc... guessing yes 298s checking whether mbrtoc32 is declared... yes 298s checking for mbrtoc32... yes 298s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 298s checking whether malloc is ptrdiff_t safe... yes 298s checking whether malloc, realloc, calloc set errno on failure... yes 298s checking if environ is properly declared... yes 298s checking for complete errno.h... yes 298s checking for error... yes 298s checking whether error_at_line is declared... yes 298s checking for error_at_line... yes 298s checking for working error function... yes 298s checking whether ctype.h defines __header_inline... no 298s checking whether fchdir is declared... yes 299s checking for working fcntl.h... yes 299s checking for pid_t... yes 299s checking for mode_t... yes 299s checking for promoted mode_t type... mode_t 299s checking whether strmode is declared... no 299s checking whether fopen recognizes a trailing slash... yes 299s checking whether fflush works on input streams... no 299s checking for library containing forkpty... none required 299s checking whether stdin defaults to large file offsets... yes 299s checking whether fseeko is declared... yes 299s checking for fseeko... yes 299s checking whether fflush works on input streams... (cached) no 299s checking whether stat file-mode macros are broken... no 299s checking for nlink_t... yes 299s checking whether lstat correctly handles trailing slash... yes 299s checking whether ftello is declared... yes 299s checking whether ungetc works on arbitrary bytes... yes 299s checking for ftello... yes 299s checking whether ftello works... yes 299s checking for O_CLOEXEC... yes 299s checking whether is self-contained... yes 299s checking for shutdown... yes 299s checking whether defines the SHUT_* macros... yes 300s checking for struct sockaddr_storage... yes 300s checking for sa_family_t... yes 300s checking for struct sockaddr_storage.ss_family... yes 300s checking for library containing gethostbyname... none required 300s checking for gethostbyname... yes 300s checking for library containing getservbyname... none required 300s checking for getservbyname... yes 300s checking for library containing inet_ntop... none required 300s checking whether inet_ntop is declared... yes 300s checking for IPv4 sockets... yes 300s checking for IPv6 sockets... yes 300s checking whether getcwd (NULL, 0) allocates memory for result... yes 300s checking for getcwd with POSIX signature... yes 300s checking whether getcwd is declared... yes 300s checking whether getdelim is declared... yes 300s checking whether getdtablesize is declared... yes 300s checking for uid_t... yes 300s checking for gid_t... yes 300s checking type of array argument to getgroups... gid_t 300s checking whether getline is declared... yes 300s checking whether getlogin_r is declared... yes 300s checking whether getlogin is declared... yes 300s checking for getopt.h... (cached) yes 300s checking for getopt_long_only... yes 300s checking whether getopt is POSIX compatible... yes 300s checking for working GNU getopt function... yes 300s checking for working GNU getopt_long function... yes 300s checking whether flockfile is declared... yes 300s checking whether funlockfile is declared... yes 300s checking for pthread.h... yes 301s checking for pthread_kill in -lpthread... yes 301s checking whether POSIX threads API is available... yes 301s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 301s checking whether setlocale (category, NULL) is multithread-safe... yes 301s checking for off_t... yes 301s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 301s checking whether limits.h has SSIZE_MAX... yes 301s checking for wint_t... yes 301s checking whether wint_t is large enough... yes 301s checking whether the compiler produces multi-arch binaries... no 301s checking whether stdint.h conforms to C99... yes 301s checking whether stdint.h works without ISO C predefines... yes 301s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 301s checking whether iswcntrl works... yes 301s checking for towlower... yes 301s checking for wctype_t... yes 301s checking for wctrans_t... yes 301s checking whether wctype supports the "blank" and "punct" character classes... yes 301s checking whether langinfo.h defines CODESET... yes 301s checking whether langinfo.h defines T_FMT_AMPM... yes 301s checking whether langinfo.h defines ALTMON_1... yes 301s checking whether langinfo.h defines ERA... yes 301s checking whether langinfo.h defines YESEXPR... yes 301s checking for wchar_t... yes 301s checking for good max_align_t... yes 301s checking whether NULL can be used in arbitrary expressions... yes 301s checking for unreachable... no 301s checking whether locale.h defines locale_t... yes 301s checking whether locale.h conforms to POSIX:2001... yes 301s checking whether struct lconv is properly defined... yes 301s checking whether imported symbols can be declared weak... yes 301s checking for multithread API to use... posix 301s checking whether malloc (0) returns nonnull... yes 301s checking for mmap... yes 301s checking for MAP_ANONYMOUS... yes 301s checking whether memchr works... yes 301s checking whether memrchr is declared... yes 301s checking whether defines MIN and MAX... no 301s checking whether defines MIN and MAX... yes 301s checking for library containing setsockopt... none needed 301s checking for ld used by gcc... /usr/bin/ld 301s checking if the linker (/usr/bin/ld) is GNU ld... yes 301s checking for shared library run path origin... done 301s checking 32-bit host C ABI... no 301s checking for ELF binary format... yes 301s checking for the common suffixes of directories in the library search path... lib,lib,lib 301s checking whether to use systemd APIs... no 301s checking whether endutent is declared... yes 301s checking for struct utmpx.ut_user... yes 301s checking for struct utmp.ut_user... yes 301s checking for struct utmpx.ut_name... yes 301s checking for struct utmp.ut_name... yes 302s checking for struct utmpx.ut_type... yes 302s checking for struct utmp.ut_type... yes 302s checking for struct utmpx.ut_pid... yes 302s checking for struct utmp.ut_pid... yes 302s checking for struct utmp.ut_tv... yes 302s checking for struct utmpx.ut_host... yes 302s checking for struct utmp.ut_host... yes 302s checking for struct utmpx.ut_id... yes 302s checking for struct utmp.ut_id... yes 302s checking for struct utmpx.ut_session... yes 302s checking for struct utmp.ut_session... yes 302s checking for struct utmpx.ut_exit... yes 302s checking for struct utmp.ut_exit... yes 302s checking for struct utmpx.ut_exit.ut_exit... no 302s checking for struct utmpx.ut_exit.e_exit... yes 302s checking for struct utmp.ut_exit.e_exit... yes 302s checking for struct utmpx.ut_exit.ut_termination... no 302s checking for struct utmpx.ut_exit.e_termination... yes 302s checking for struct utmp.ut_exit.e_termination... yes 302s checking whether sysinfo is declared... yes 302s checking for sys/sysctl.h... no 302s checking for sysctl... no 302s checking whether alarm is declared... yes 302s checking whether is self-contained... yes 302s checking whether setenv is declared... yes 302s checking for search.h... yes 302s checking for tsearch... yes 302s checking for sigset_t... yes 302s checking for volatile sig_atomic_t... yes 302s checking for sighandler_t... yes 303s checking whether snprintf returns a byte count as in C99... yes 303s checking whether printf supports POSIX/XSI format strings with positions... yes 303s checking whether snprintf is declared... yes 303s checking whether fcloseall is declared... yes 303s checking whether getw is declared... yes 303s checking whether putw is declared... yes 303s checking which flavor of printf attribute matches inttypes macros... system 303s checking whether ecvt is declared... yes 303s checking whether fcvt is declared... yes 303s checking whether gcvt is declared... yes 303s checking whether MB_CUR_MAX is correct... guessing yes 303s checking whether strdup is declared... yes 303s checking whether strerror(0) succeeds... yes 303s checking whether strndup is declared... yes 303s checking whether strnlen is declared... yes 303s checking whether declares ioctl... yes 303s checking for struct timeval... yes 303s checking for wide-enough struct timeval.tv_sec member... yes 303s checking for struct timespec in ... yes 303s checking for TIME_UTC in ... yes 303s checking whether execvpe is declared... yes 303s checking for util.h... (cached) no 303s checking for libutil.h... (cached) no 303s checking for inttypes.h... yes 303s checking for stdint.h... yes 303s checking for intmax_t... yes 303s checking whether snprintf truncates the result as in C99... yes 303s checking where to find the exponent in a 'double'... word 0 bit 20 303s checking for wcslen... yes 303s checking for snprintf... (cached) yes 303s checking for strnlen... yes 303s checking for wcrtomb... (cached) yes 303s checking whether _snprintf is declared... no 303s checking whether vsnprintf is declared... yes 303s checking whether wcsdup is declared... yes 303s checking for C compiler option to allow warnings... -Wno-error 303s checking for alignas and alignof... yes, macros 303s checking for alloca as a compiler built-in... yes 303s checking whether program_invocation_name is declared... yes 303s checking whether program_invocation_short_name is declared... yes 303s checking whether program_invocation_name is defined... yes 303s checking whether program_invocation_short_name is defined... yes 303s checking for static_assert... yes, an macro 303s checking whether btowc(0) is correct... yes 303s checking whether btowc(EOF) is correct... guessing yes 303s checking whether btowc is consistent with mbrtowc in the C locale... no 304s checking for __builtin_expect... yes 304s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 304s checking whether this system supports file names of any length... no 304s checking for library containing clock_gettime... none required 304s checking for clock_getres... yes 304s checking for clock_gettime... yes 304s checking for clock_settime... yes 304s checking for closedir... yes 304s checking for d_ino member in directory struct... yes 304s checking for d_type member in directory struct... yes 304s checking for dirfd... yes 304s checking whether dirfd is declared... yes 304s checking whether dirfd is a macro... no 304s checking whether // is distinct from /... no 304s checking whether dup works... yes 304s checking whether dup2 works... yes 304s checking whether fcntl handles F_DUPFD correctly... yes 304s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 304s checking whether fdopendir is declared... yes 304s checking whether fdopendir works... yes 304s checking for mempcpy... yes 304s checking for flexible array member... yes 304s checking whether conversion from 'int' to 'long double' works... yes 304s checking for working POSIX fnmatch... yes 304s checking whether fopen supports the mode character 'x'... yes 304s checking whether fopen supports the mode character 'e'... yes 304s checking whether forkpty is declared... yes 304s checking for const-safe forkpty signature... yes 304s checking whether free is known to preserve errno... yes 304s checking for fseeko... (cached) yes 304s checking whether fflush works on input streams... (cached) no 304s checking for _fseeki64... no 304s checking whether fstatat (..., 0) works... yes 304s checking for ftello... (cached) yes 304s checking whether ftello works... (cached) yes 304s checking for struct statfs.f_type... yes 304s checking for __fsword_t... yes 304s checking for fts_open... yes 304s checking for library containing getaddrinfo... none required 304s checking for getaddrinfo... yes 304s checking whether gai_strerror is declared... yes 304s checking whether gai_strerrorA is declared... no 304s checking for gai_strerror with POSIX signature... yes 305s checking for struct sockaddr.sa_len... no 305s checking whether getaddrinfo is declared... yes 305s checking whether freeaddrinfo is declared... yes 305s checking whether getnameinfo is declared... yes 305s checking for struct addrinfo... yes 305s checking whether getcwd handles long file names properly... yes 305s checking for getpagesize... yes 305s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 305s checking for getdelim... yes 305s checking for working getdelim function... yes 305s checking for getdomainname... yes 305s checking whether getdomainname is declared... yes 305s checking for getdomainname's second argument type... size_t 305s checking whether getdtablesize works... yes 305s checking for getgroups... yes 305s checking for working getgroups... yes 305s checking whether getgroups handles negative values... yes 305s checking for gethostname... yes 305s checking for HOST_NAME_MAX... yes 305s checking for getline... yes 305s checking for working getline function... yes 305s checking for getlogin_r... yes 305s checking whether getlogin_r works with small buffers... yes 305s checking for getprogname... no 305s checking whether program_invocation_name is declared... (cached) yes 305s checking whether program_invocation_name is declared... (cached) yes 305s checking whether program_invocation_short_name is declared... (cached) yes 305s checking whether __argv is declared... no 305s checking for getrandom... yes 305s checking whether getrandom is compatible with its GNU+BSD signature... yes 305s checking whether getusershell is declared... yes 305s checking for glob... yes 305s checking for GNU glob interface version 1 or 2... yes 305s checking whether glob lists broken symlinks... yes 305s checking whether glob NOTDIR*/ omits symlink to nondir... yes 305s checking for library containing gethostbyname... (cached) none required 305s checking for gethostbyname... (cached) yes 305s checking for library containing inet_ntop... (cached) none required 305s checking whether inet_ntop is declared... (cached) yes 305s checking whether the compiler generally respects inline... yes 305s checking for ioctl... yes 305s checking for ioctl with POSIX signature... no 306s checking for iswblank... yes 306s checking whether iswblank is declared... yes 306s checking whether iswdigit is ISO C compliant... guessing yes 306s checking whether iswpunct is consistent with ispunct... yes 306s checking whether iswxdigit is ISO C compliant... guessing yes 306s checking whether the compiler supports the __inline keyword... yes 306s checking whether localeconv works... yes 306s checking for pthread_rwlock_t... yes 306s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 306s checking for login_tty... yes 306s checking whether lseek detects pipes... yes 306s checking whether SEEK_DATA works but is incompatible with GNU... no 306s checking whether malloc (0) returns nonnull... (cached) yes 306s checking whether mbrtoc32 works on empty input... yes 306s checking whether the C locale is free of encoding errors... no 306s checking whether mbrtowc handles a NULL pwc argument... guessing yes 306s checking whether mbrtowc handles a NULL string argument... guessing yes 306s checking whether mbrtowc has a correct return value... guessing yes 306s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 306s checking whether mbrtowc stores incomplete characters... guessing no 306s checking whether mbrtowc works on empty input... yes 306s checking whether the C locale is free of encoding errors... no 306s checking whether mbsrtowcs works... guessing yes 306s checking whether the C locale is free of encoding errors... (cached) no 306s checking for mbtowc... yes 306s checking for mempcpy... (cached) yes 306s checking for memrchr... yes 306s checking for explicit_memset... no 306s checking whether mkdir handles trailing slash... yes 306s checking whether mkdir handles trailing dot... yes 306s checking for working mkstemp... yes 306s checking whether is self-contained... yes 306s checking for nl_langinfo... yes 306s checking whether YESEXPR works... yes 306s checking for obstacks that work with any size object... no 306s checking whether open recognizes a trailing slash... yes 306s checking for opendir... yes 306s checking whether openpty is declared... yes 306s checking for const-safe openpty signature... yes 306s checking for poll... yes 306s checking for posix_openpt... yes 306s checking whether program_invocation_name is declared... (cached) yes 306s checking whether program_invocation_short_name is declared... (cached) yes 306s checking for rawmemchr... yes 306s checking for readdir... yes 307s checking for readline... no 307s checking for readline/readline.h... no 307s checking for readline/history.h... no 307s checking whether realloc (0, 0) returns nonnull... yes 307s checking for reallocarray... yes 307s checking for working re_compile_pattern... yes 307s checking for rewinddir... yes 307s checking whether select supports a 0 argument... yes 307s checking whether select detects invalid fds... yes 307s checking for library containing getservbyname... (cached) none required 307s checking for getservbyname... (cached) yes 307s checking whether setenv validates arguments... yes 307s checking for HOST_NAME_MAX... (cached) yes 307s checking for sethostname... yes 307s checking whether sethostname is declared... yes 307s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 307s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 307s checking for stdint.h... (cached) yes 307s checking for SIZE_MAX... yes 307s checking whether sleep is declared... yes 308s checking for working sleep... yes 308s checking for snprintf... (cached) yes 308s checking whether snprintf respects a size of 1... yes 308s checking for socklen_t... yes 308s checking for ssize_t... yes 308s checking whether stat handles trailing slashes on files... yes 308s checking for struct stat.st_atim.tv_nsec... yes 308s checking whether struct stat.st_atim is of type struct timespec... yes 308s checking for struct stat.st_birthtimespec.tv_nsec... no 308s checking for struct stat.st_birthtimensec... no 308s checking for struct stat.st_birthtim.tv_nsec... no 308s checking for va_copy... yes 308s checking for bool, true, false... no 308s checking for strcasecmp... yes 308s checking for strncasecmp... yes 308s checking whether strncasecmp is declared... yes 308s checking for strchrnul... yes 308s checking whether strchrnul works... yes 308s checking for working strerror function... yes 308s checking for working strndup... yes 308s checking for working strnlen... yes 308s checking for variable-length arrays... yes 309s checking for ptrdiff_t... yes 309s checking for vasprintf... yes 309s checking for vsnprintf... yes 309s checking whether snprintf respects a size of 1... (cached) yes 309s checking whether wcrtomb works in the C locale... yes 309s checking whether wcrtomb return value is correct... guessing yes 309s checking for wmemchr... yes 309s checking for wmempcpy... yes 309s checking for stdint.h... (cached) yes 309s checking for library containing inet_ntoa... none required 309s checking for initscr in -lncurses... no 309s checking for tgetent in -ltermcap... no 309s checking whether tgetent needs support... no 309s checking for tgetent in -lcurses... no 309s checking whether tgetent is declared... no 309s checking for tgetent in -ltermlib... no 309s checking for crypt in -lcrypt... yes 309s checking for login in -lutil... yes 309s checking for loginx in -lutil... no 309s checking for logout in -lutil... yes 309s checking for logoutx in -lutil... no 309s checking for logwtmp in -lutil... yes 309s checking for logwtmpx in -lutil... no 309s checking for protocols/talkd.h... yes 309s checking for rcmd... yes 309s checking for rcmd_af... yes 309s checking for orcmd... no 309s checking for orcmd_af... no 309s checking for rresvport_af... yes 309s checking for iruserok... yes 309s checking for iruserok_af... yes 309s checking for iruserok_sa... no 309s checking for ruserok... yes 309s checking for ruserok_af... yes 309s checking for AF_INET6... yes 309s checking for IPV6_V6ONLY... yes 309s checking for struct sockaddr_storage... (cached) yes 309s checking for struct sockaddr_in6... yes 309s checking for struct addrinfo... (cached) yes 309s checking for getnameinfo... yes 309s checking for netinet/icmp6.h... yes 309s checking for netinet/ip6.h... yes 309s checking for struct icmp6_filter... yes 309s checking for struct icmp6_hdr... yes 309s checking for IPV6_HOPLIMIT... yes 309s checking for IPV6_2292HOPLIMIT... yes 309s checking for IPV6_RECVHOPLIMIT... yes 309s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 310s checking for locale.h... yes 310s checking for setlocale... yes 310s checking for arpa/nameser.h... yes 310s checking for arpa/tftp.h... yes 310s checking for fcntl.h... yes 310s checking for features.h... (cached) yes 310s checking for glob.h... (cached) yes 310s checking for memory.h... yes 310s checking for netinet/ether.h... yes 310s checking for netinet/in_systm.h... yes 310s checking for netinet/ip.h... yes 310s checking for netinet/ip_icmp.h... yes 310s checking for netinet/ip_var.h... no 310s checking for security/pam_appl.h... no 310s checking for shadow.h... yes 310s checking for stropts.h... no 310s checking for sys/tty.h... no 310s checking for sys/utsname.h... yes 310s checking for sys/ptyvar.h... no 310s checking for sys/msgbuf.h... no 310s checking for sys/filio.h... (cached) no 310s checking for sys/ioctl_compat.h... no 310s checking for sys/cdefs.h... (cached) yes 310s checking for sys/stream.h... no 310s checking for sys/mkdev.h... no 310s checking for sys/sockio.h... no 310s checking for sys/sysmacros.h... yes 310s checking for sys/param.h... (cached) yes 310s checking for sys/file.h... yes 310s checking for sys/proc.h... no 310s checking for sys/select.h... (cached) yes 310s checking for sys/wait.h... yes 310s checking for sys/resource.h... yes 310s checking for stropts.h... (cached) no 310s checking for tcpd.h... no 310s checking for utmp.h... (cached) yes 310s checking for utmpx.h... (cached) yes 310s checking for unistd.h... (cached) yes 310s checking for vis.h... no 310s checking for struct if_nameindex... yes 310s checking for sigset_t... (cached) yes 310s checking for sig_atomic_t... yes 310s checking for struct sockaddr_in.sin_len... no 310s checking for struct sockaddr_in6.sin6_len... no 310s checking for struct sockaddr_storage.ss_len... no 310s checking for struct passwd.pw_expire... no 310s checking for struct passwd.pw_change... no 310s checking for struct lastlog... yes 310s checking for struct utmp.ut_type... (cached) yes 310s checking for struct utmp.ut_pid... (cached) yes 310s checking for struct utmp.ut_line... yes 310s checking for struct utmp.ut_id... (cached) yes 310s checking for struct utmp.ut_user... (cached) yes 310s checking for struct utmp.ut_host... (cached) yes 310s checking for struct utmp.ut_exit... (cached) yes 310s checking for struct utmp.ut_session... (cached) yes 310s checking for struct utmp.ut_tv... (cached) yes 310s checking for struct utmp.ut_time... yes 310s checking for struct utmp.ut_addr_v6... yes 310s checking for struct utmp.ut_name... (cached) yes 310s checking for struct lastlogx... no 310s checking for struct lastlogx.ll_ss... no 310s checking for struct utmpx.ut_user... (cached) yes 310s checking for struct utmpx.ut_name... (cached) yes 310s checking for struct utmpx.ut_id... (cached) yes 310s checking for struct utmpx.ut_line... yes 310s checking for struct utmpx.ut_pid... (cached) yes 310s checking for struct utmpx.ut_type... (cached) yes 310s checking for struct utmpx.ut_exit... (cached) yes 310s checking for struct utmpx.ut_tv... yes 310s checking for struct utmpx.ut_session... (cached) yes 310s checking for struct utmpx.ut_syslen... no 310s checking for struct utmpx.ut_host... (cached) yes 310s checking for struct utmpx.ut_ss... no 310s checking for struct utmpx.ut_addr_v6... yes 310s checking for struct ifreq.ifr_index... no 310s checking for struct ifreq.ifr_netmask... yes 310s checking for struct ifreq.ifr_broadaddr... yes 310s checking for struct ifreq.ifr_mtu... yes 311s checking for struct ifreq.ifr_map... yes 311s checking for struct sockaddr.sa_len... (cached) no 311s checking for struct hostent.h_addr_list... yes 311s checking for struct stat.st_atim.tv_nsec... (cached) yes 311s checking for struct stat.st_atim.tv_usec... no 311s checking for struct stat.st_blksize... yes 311s checking for struct stat.st_ctim.tv_nsec... yes 311s checking for struct stat.st_ctim.tv_usec... no 311s checking for struct stat.st_mtim.tv_nsec... yes 311s checking for struct stat.st_mtim.tv_usec... no 311s checking for struct tftphdr.th_u... no 311s checking for working fork... yes 311s checking for working vfork... (cached) yes 311s checking for working mmap... yes 311s checking for cfsetspeed... yes 311s checking for cgetent... no 311s checking for dirfd... (cached) yes 311s checking for flock... yes 311s checking for fork... (cached) yes 311s checking for fpathconf... yes 311s checking for ftruncate... yes 311s checking for getcwd... yes 311s checking for getmsg... no 311s checking for getpwuid_r... yes 311s checking for getspnam... yes 311s checking for getutxent... yes 311s checking for getutxuser... no 311s checking for initgroups... yes 311s checking for initsetproctitle... no 311s checking for killpg... yes 311s checking for ptsname... yes 311s checking for pututline... yes 311s checking for pututxline... yes 311s checking for setegid... yes 311s checking for seteuid... yes 311s checking for setpgid... yes 311s checking for setlogin... no 311s checking for setsid... yes 311s checking for setregid... yes 311s checking for setreuid... yes 311s checking for setresgid... yes 311s checking for setresuid... yes 311s checking for setutent_r... no 311s checking for sigaction... yes 311s checking for sigvec... no 311s checking for strchr... yes 312s checking for setproctitle... no 312s checking for tcgetattr... yes 312s checking for tzset... yes 312s checking for utimes... yes 312s checking for utime... yes 312s checking for uname... yes 312s checking for updwtmp... yes 312s checking for updwtmpx... yes 312s checking for vhangup... yes 312s checking for wait3... yes 312s checking for wait4... yes 312s checking for __opendir2... no 312s checking for __rcmd_errstr... yes 312s checking for __check_rhosts_file... yes 312s checking for login... yes 312s checking for loginx... no 312s checking for logout... yes 312s checking for logoutx... no 312s checking for logwtmp... yes 312s checking for logwtmpx... no 312s checking for crypt... yes 312s checking for _obstack_free... yes 312s checking for setpgid... (cached) yes 312s checking for hstrerror... yes 312s checking whether hstrerror is declared... yes 312s checking whether telcmds is declared... yes 312s checking whether telopts is declared... no 312s checking for Schedule... no 312s checking for Session_Key... no 312s checking whether enctype_names is const char... no 312s checking whether crypt is declared... yes 312s checking for syslog internal macros... yes 312s checking for CODE... yes 312s checking whether prioritynames is declared... yes 312s checking whether fclose is declared... yes 312s checking whether pclose is declared... yes 312s checking whether getcwd is declared... (cached) yes 312s checking whether getlogin is declared... (cached) yes 312s checking whether getpass is declared... yes 312s checking whether getusershell is declared... (cached) yes 312s checking whether ttyname is declared... yes 312s checking whether getgrnam is declared... yes 312s checking whether initgroups is declared... yes 312s checking whether htons is declared... yes 312s checking for h_errno... yes 312s checking whether h_errno is declared... yes 312s checking for SEEK_ macros... yes 312s checking for _FILENO macros... yes 312s checking for fd_set macros... yes 312s checking for paths.h... yes 312s checking for value of PATH_BSHELL... from _PATH_BSHELL in 312s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 313s checking for value of PATH_CP... /usr/bin/cp 313s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 313s checking for value of PATH_DEV... from _PATH_DEV in 313s checking for value of PATH_TTY_PFX... from _PATH_DEV in 313s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 313s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 313s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 313s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 313s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 313s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 313s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 313s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 313s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 313s checking for value of PATH_UTMP... from _PATH_UTMP in 313s checking for value of PATH_UTMPX... from _PATH_UTMPX in 313s checking for value of PATH_WTMP... from _PATH_WTMP in 313s checking for value of PATH_WTMPX... from _PATH_WTMPX in 313s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 313s checking for value of PATH_LOG... from _PATH_LOG in 313s checking for value of PATH_KLOG... from _PATH_KLOG in 313s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 313s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 313s checking for value of PATH_LOGIN... /usr/bin/login 313s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 313s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 313s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 313s checking for value of PATH_RSH... (default) $(bindir)/rsh 313s checking for value of PATH_TMP... from _PATH_TMP in 313s checking for value of PATH_TTY... from _PATH_TTY in 313s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 313s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 313s checking for value of PATH_PROCNET_DEV... /proc/net/dev 313s checking that generated files are newer than configure... done 313s configure: creating ./config.status 313s /bin/bash ./config.status 313s config.status: creating Makefile 314s config.status: creating summary.sh 314s config.status: creating lib/Makefile 314s config.status: creating libinetutils/Makefile 314s config.status: creating libtelnet/Makefile 314s config.status: creating libicmp/Makefile 314s config.status: creating libls/Makefile 314s config.status: creating src/Makefile 314s config.status: creating telnet/Makefile 314s config.status: creating telnetd/Makefile 314s config.status: creating ftp/Makefile 314s config.status: creating ftpd/Makefile 314s config.status: creating talk/Makefile 314s config.status: creating talkd/Makefile 314s config.status: creating whois/Makefile 314s config.status: creating ping/Makefile 314s config.status: creating ifconfig/Makefile 314s config.status: creating ifconfig/system/Makefile 314s config.status: creating tests/Makefile 314s config.status: creating confpaths.h 314s config.status: creating config.h 314s config.status: config.h is unchanged 314s config.status: executing depfiles commands 314s config.status: executing summary commands 314s Summary of build decisions: 314s 314s Clients: 314s 314s dnsdomainname no 314s ftp yes 314s hostname no 314s ifconfig no 314s logger no 314s ping no 314s ping6 no 314s rcp no 314s rexec no 314s rlogin no 314s rsh no 314s talk no 314s telnet no 314s tftp no 314s traceroute yes 314s whois no 314s 314s Servers: 314s 314s ftpd yes 314s inetd no 314s rexecd no 314s rlogind no 314s rshd no 314s syslogd no 314s talkd no 314s telnetd no 314s tftpd no 314s uucpd no 314s 314s Support: 314s 314s libls no 314s make[1]: Warning: File 'aclocal.m4' has modification time 9.6 s in the future 314s cd . && /bin/bash /tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing automake-1.17 --gnu 317s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing' autoconf 318s /bin/bash ./config.status --recheck 318s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-servers --disable-clients --disable-ping --disable-ping6 --enable-ftp --enable-ftpd --enable-traceroute --no-create --no-recursion 318s checking build system type... s390x-ibm-linux-gnu 318s checking host system type... s390x-ibm-linux-gnu 318s checking for a BSD-compatible install... /usr/bin/install -c 318s checking whether sleep supports fractional seconds... yes 319s checking filesystem timestamp resolution... 0.01 319s checking whether build environment is sane... yes 319s checking for a race-free mkdir -p... /usr/bin/mkdir -p 319s checking for gawk... gawk 319s checking whether make sets $(MAKE)... yes 319s checking whether make supports nested variables... yes 319s checking xargs -n works... yes 319s checking for gcc... gcc 319s checking whether the C compiler works... yes 319s checking for C compiler default output file name... a.out 319s checking for suffix of executables... 319s checking whether we are cross compiling... no 319s checking for suffix of object files... o 319s checking whether the compiler supports GNU C... yes 319s checking whether gcc accepts -g... yes 319s checking for gcc option to enable C11 features... none needed 319s checking whether gcc understands -c and -o together... yes 319s checking whether the compiler is clang... no 319s checking for compiler option needed when checking for declarations... none 319s checking whether make supports the include directive... yes (GNU style) 319s checking dependency style of gcc... gcc3 319s checking for stdio.h... yes 319s checking for stdlib.h... yes 319s checking for string.h... yes 319s checking for inttypes.h... yes 319s checking for stdint.h... yes 319s checking for strings.h... yes 319s checking for sys/stat.h... yes 319s checking for sys/types.h... yes 319s checking for unistd.h... yes 319s checking for wchar.h... yes 319s checking for minix/config.h... no 319s checking for features.h... yes 319s checking for linewrap.h... no 319s checking for arpa/inet.h... yes 319s checking for sys/socket.h... yes 319s checking for uchar.h... yes 319s checking for sys/param.h... yes 319s checking for dirent.h... yes 319s checking for error.h... yes 319s checking for fnmatch.h... yes 319s checking for pty.h... yes 319s checking for termios.h... yes 319s checking for sys/vfs.h... yes 319s checking for netdb.h... yes 319s checking for netinet/in.h... yes 319s checking for getopt.h... yes 319s checking for sys/cdefs.h... yes 319s checking for stdio_ext.h... yes 319s checking for grp.h... yes 319s checking for glob.h... yes 319s checking for threads.h... yes 319s checking for limits.h... yes 320s checking for crtdefs.h... no 320s checking for wctype.h... yes 320s checking for langinfo.h... yes 320s checking for xlocale.h... no 320s checking for utmp.h... yes 320s checking for util.h... no 320s checking for libutil.h... no 320s checking for sys/mman.h... yes 320s checking for obstack.h... yes 320s checking for poll.h... yes 320s checking for sys/ioctl.h... yes 320s checking for sys/filio.h... no 320s checking for utmpx.h... yes 320s checking for OS.h... no 320s checking for malloc.h... yes 320s checking for sys/select.h... yes 320s checking for sys/time.h... yes 320s checking for stdbool.h... yes 320s checking for stdckdint.h... yes 320s checking for sys/random.h... yes 320s checking for sys/uio.h... yes 320s checking for sysexits.h... yes 320s checking for vfork.h... no 320s checking whether it is safe to define __EXTENSIONS__... yes 320s checking whether _XOPEN_SOURCE should be defined... no 320s checking how to run the C preprocessor... gcc -E 320s checking for egrep -e... /usr/bin/grep -E 320s checking for Minix Amsterdam compiler... no 320s checking for ar... ar 320s checking the archiver (ar) interface... ar 320s checking for ar... (cached) ar 320s checking for ranlib... ranlib 320s checking for gcc option to enable large file support... none needed 320s configure: autobuild project... GNU inetutils 320s configure: autobuild revision... 2.5 320s configure: autobuild hostname... autopkgtest 320s configure: autobuild timestamp... 20250219T081820Z 320s checking the archiver (ar) interface... (cached) ar 320s checking for ar... (cached) ar 320s checking for dd... /usr/bin/dd 320s checking for mktemp... /usr/bin/mktemp 320s checking for netstat... /usr/bin/netstat 320s checking for rm... /usr/bin/rm 320s checking how to run the C preprocessor... gcc -E 320s checking for grep that handles long lines and -e... /usr/bin/grep 320s checking for egrep... /usr/bin/grep -E 320s checking for fgrep... /usr/bin/grep -F 320s checking whether make sets $(MAKE)... (cached) yes 320s checking for ranlib... (cached) ranlib 320s checking for bison... no 320s checking for byacc... no 320s checking whether ln -s works... yes 320s checking for a sed that does not truncate output... /usr/bin/sed 320s checking for size_t... yes 320s checking for working alloca.h... yes 320s checking for alloca... yes 320s checking for inline... inline 320s checking for C/C++ restrict keyword... __restrict__ 320s checking for gcc options needed to detect all undeclared functions... none needed 320s checking whether clearerr_unlocked is declared... yes 320s checking whether feof_unlocked is declared... yes 320s checking whether ferror_unlocked is declared... yes 320s checking whether fflush_unlocked is declared... yes 320s checking whether fgets_unlocked is declared... yes 320s checking whether fputc_unlocked is declared... yes 320s checking whether fputs_unlocked is declared... yes 321s checking whether fread_unlocked is declared... yes 321s checking whether fwrite_unlocked is declared... yes 321s checking whether getc_unlocked is declared... yes 321s checking whether getchar_unlocked is declared... yes 321s checking whether putc_unlocked is declared... yes 321s checking whether putchar_unlocked is declared... yes 321s checking for flockfile... yes 321s checking for funlockfile... yes 321s checking for btowc... yes 321s checking for mbrtowc... yes 321s checking for mbsinit... yes 321s checking for _set_invalid_parameter_handler... no 321s checking for fchdir... yes 321s checking for fcntl... yes 321s checking for symlink... yes 321s checking for fdopendir... yes 321s checking for fnmatch... yes 321s checking for mbsrtowcs... yes 321s checking for fstatat... yes 321s checking for openat... yes 321s checking for fstatfs... yes 321s checking for getdtablesize... yes 321s checking for getpass... yes 321s checking for getexecname... no 321s checking for getusershell... yes 321s checking for glob_pattern_p... yes 321s checking for isblank... yes 321s checking for iswcntrl... yes 321s checking for lstat... yes 321s checking for mprotect... yes 321s checking for memset_explicit... no 321s checking for memset_s... no 321s checking for getgrouplist... yes 321s checking for mkstemp... yes 321s checking for pipe... yes 321s checking for utmpname... yes 321s checking for utmpxname... yes 321s checking for iswctype... yes 321s checking for setenv... yes 321s checking for sleep... yes 322s checking for snprintf... yes 322s checking for strndup... yes 322s checking for vasnprintf... no 322s checking for wcrtomb... yes 322s checking for fork... yes 322s checking for vfork... yes 322s checking for getpagesize... yes 322s checking whether strerror_r is declared... yes 322s checking whether strerror_r returns char *... yes 322s checking whether the preprocessor supports include_next... yes 322s checking whether source code line length is unlimited... yes 322s checking whether uses 'inline' correctly... yes 322s checking for nl_langinfo and CODESET... yes 322s checking for a traditional french locale... none 322s checking whether char8_t is correctly defined... yes 322s checking whether char16_t is correctly defined... yes 322s checking whether char32_t is correctly defined... yes 322s checking for bit size of wchar_t... 32 322s checking for mbstate_t... yes 322s checking for a traditional japanese locale... none 322s checking for a french Unicode locale... none 322s checking for a transitional chinese locale... none 322s checking whether mbrtowc handles incomplete characters... guessing yes 322s checking whether mbrtowc works as well as mbtowc... guessing yes 322s checking whether mbrtoc32 is declared... yes 322s checking for mbrtoc32... yes 322s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 322s checking whether malloc is ptrdiff_t safe... yes 322s checking whether malloc, realloc, calloc set errno on failure... yes 322s checking if environ is properly declared... yes 322s checking for complete errno.h... yes 322s checking for error... yes 322s checking whether error_at_line is declared... yes 322s checking for error_at_line... yes 322s checking for working error function... yes 322s checking whether ctype.h defines __header_inline... no 322s checking whether fchdir is declared... yes 323s checking for working fcntl.h... yes 323s checking for pid_t... yes 323s checking for mode_t... yes 323s checking for promoted mode_t type... mode_t 324s checking whether strmode is declared... no 324s checking whether fopen recognizes a trailing slash... yes 324s checking whether fflush works on input streams... no 324s checking for library containing forkpty... none required 324s checking whether stdin defaults to large file offsets... yes 324s checking whether fseeko is declared... yes 324s checking for fseeko... yes 324s checking whether fflush works on input streams... (cached) no 324s checking whether stat file-mode macros are broken... no 324s checking for nlink_t... yes 324s checking whether lstat correctly handles trailing slash... yes 324s checking whether ftello is declared... yes 324s checking whether ungetc works on arbitrary bytes... yes 324s checking for ftello... yes 324s checking whether ftello works... yes 324s checking for O_CLOEXEC... yes 324s checking whether is self-contained... yes 324s checking for shutdown... yes 324s checking whether defines the SHUT_* macros... yes 324s checking for struct sockaddr_storage... yes 324s checking for sa_family_t... yes 324s checking for struct sockaddr_storage.ss_family... yes 324s checking for library containing gethostbyname... none required 324s checking for gethostbyname... yes 324s checking for library containing getservbyname... none required 324s checking for getservbyname... yes 324s checking for library containing inet_ntop... none required 324s checking whether inet_ntop is declared... yes 324s checking for IPv4 sockets... yes 324s checking for IPv6 sockets... yes 324s checking whether getcwd (NULL, 0) allocates memory for result... yes 324s checking for getcwd with POSIX signature... yes 324s checking whether getcwd is declared... yes 324s checking whether getdelim is declared... yes 324s checking whether getdtablesize is declared... yes 324s checking for uid_t... yes 324s checking for gid_t... yes 325s checking type of array argument to getgroups... gid_t 325s checking whether getline is declared... yes 325s checking whether getlogin_r is declared... yes 325s checking whether getlogin is declared... yes 325s checking for getopt.h... (cached) yes 325s checking for getopt_long_only... yes 325s checking whether getopt is POSIX compatible... yes 325s checking for working GNU getopt function... yes 325s checking for working GNU getopt_long function... yes 325s checking whether flockfile is declared... yes 325s checking whether funlockfile is declared... yes 325s checking for pthread.h... yes 325s checking for pthread_kill in -lpthread... yes 325s checking whether POSIX threads API is available... yes 325s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 325s checking whether setlocale (category, NULL) is multithread-safe... yes 325s checking for off_t... yes 325s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 325s checking whether limits.h has SSIZE_MAX... yes 325s checking for wint_t... yes 325s checking whether wint_t is large enough... yes 325s checking whether the compiler produces multi-arch binaries... no 325s checking whether stdint.h conforms to C99... yes 325s checking whether stdint.h works without ISO C predefines... yes 325s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 325s checking whether iswcntrl works... yes 325s checking for towlower... yes 325s checking for wctype_t... yes 325s checking for wctrans_t... yes 325s checking whether wctype supports the "blank" and "punct" character classes... yes 325s checking whether langinfo.h defines CODESET... yes 325s checking whether langinfo.h defines T_FMT_AMPM... yes 325s checking whether langinfo.h defines ALTMON_1... yes 325s checking whether langinfo.h defines ERA... yes 325s checking whether langinfo.h defines YESEXPR... yes 325s checking for wchar_t... yes 325s checking for good max_align_t... yes 325s checking whether NULL can be used in arbitrary expressions... yes 325s checking for unreachable... no 325s checking whether locale.h defines locale_t... yes 325s checking whether locale.h conforms to POSIX:2001... yes 325s checking whether struct lconv is properly defined... yes 326s checking whether imported symbols can be declared weak... yes 326s checking for multithread API to use... posix 326s checking whether malloc (0) returns nonnull... yes 326s checking for mmap... yes 326s checking for MAP_ANONYMOUS... yes 326s checking whether memchr works... yes 326s checking whether memrchr is declared... yes 326s checking whether defines MIN and MAX... no 326s checking whether defines MIN and MAX... yes 326s checking for library containing setsockopt... none needed 326s checking for ld used by gcc... /usr/bin/ld 326s checking if the linker (/usr/bin/ld) is GNU ld... yes 326s checking for shared library run path origin... done 326s checking 32-bit host C ABI... no 326s checking for ELF binary format... yes 326s checking for the common suffixes of directories in the library search path... lib,lib,lib 326s checking whether to use systemd APIs... no 326s checking whether endutent is declared... yes 326s checking for struct utmpx.ut_user... yes 326s checking for struct utmp.ut_user... yes 326s checking for struct utmpx.ut_name... yes 326s checking for struct utmp.ut_name... yes 326s checking for struct utmpx.ut_type... yes 326s checking for struct utmp.ut_type... yes 326s checking for struct utmpx.ut_pid... yes 326s checking for struct utmp.ut_pid... yes 326s checking for struct utmp.ut_tv... yes 326s checking for struct utmpx.ut_host... yes 326s checking for struct utmp.ut_host... yes 326s checking for struct utmpx.ut_id... yes 326s checking for struct utmp.ut_id... yes 326s checking for struct utmpx.ut_session... yes 326s checking for struct utmp.ut_session... yes 326s checking for struct utmpx.ut_exit... yes 326s checking for struct utmp.ut_exit... yes 326s checking for struct utmpx.ut_exit.ut_exit... no 326s checking for struct utmpx.ut_exit.e_exit... yes 326s checking for struct utmp.ut_exit.e_exit... yes 327s checking for struct utmpx.ut_exit.ut_termination... no 327s checking for struct utmpx.ut_exit.e_termination... yes 327s checking for struct utmp.ut_exit.e_termination... yes 327s checking whether sysinfo is declared... yes 327s checking for sys/sysctl.h... no 327s checking for sysctl... no 327s checking whether alarm is declared... yes 327s checking whether is self-contained... yes 327s checking whether setenv is declared... yes 327s checking for search.h... yes 327s checking for tsearch... yes 327s checking for sigset_t... yes 327s checking for volatile sig_atomic_t... yes 327s checking for sighandler_t... yes 327s checking whether snprintf returns a byte count as in C99... yes 327s checking whether printf supports POSIX/XSI format strings with positions... yes 327s checking whether snprintf is declared... yes 327s checking whether fcloseall is declared... yes 327s checking whether getw is declared... yes 327s checking whether putw is declared... yes 327s checking which flavor of printf attribute matches inttypes macros... system 327s checking whether ecvt is declared... yes 327s checking whether fcvt is declared... yes 327s checking whether gcvt is declared... yes 327s checking whether MB_CUR_MAX is correct... guessing yes 327s checking whether strdup is declared... yes 327s checking whether strerror(0) succeeds... yes 327s checking whether strndup is declared... yes 327s checking whether strnlen is declared... yes 327s checking whether declares ioctl... yes 327s checking for struct timeval... yes 327s checking for wide-enough struct timeval.tv_sec member... yes 327s checking for struct timespec in ... yes 327s checking for TIME_UTC in ... yes 327s checking whether execvpe is declared... yes 327s checking for util.h... (cached) no 327s checking for libutil.h... (cached) no 327s checking for inttypes.h... yes 327s checking for stdint.h... yes 327s checking for intmax_t... yes 327s checking whether snprintf truncates the result as in C99... yes 328s checking where to find the exponent in a 'double'... word 0 bit 20 328s checking for wcslen... yes 328s checking for snprintf... (cached) yes 328s checking for strnlen... yes 328s checking for wcrtomb... (cached) yes 328s checking whether _snprintf is declared... no 328s checking whether vsnprintf is declared... yes 328s checking whether wcsdup is declared... yes 328s checking for C compiler option to allow warnings... -Wno-error 328s checking for alignas and alignof... yes, macros 328s checking for alloca as a compiler built-in... yes 328s checking whether program_invocation_name is declared... yes 328s checking whether program_invocation_short_name is declared... yes 328s checking whether program_invocation_name is defined... yes 328s checking whether program_invocation_short_name is defined... yes 328s checking for static_assert... yes, an macro 328s checking whether btowc(0) is correct... yes 328s checking whether btowc(EOF) is correct... guessing yes 328s checking whether btowc is consistent with mbrtowc in the C locale... no 328s checking for __builtin_expect... yes 328s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 328s checking whether this system supports file names of any length... no 328s checking for library containing clock_gettime... none required 328s checking for clock_getres... yes 328s checking for clock_gettime... yes 328s checking for clock_settime... yes 328s checking for closedir... yes 328s checking for d_ino member in directory struct... yes 328s checking for d_type member in directory struct... yes 328s checking for dirfd... yes 328s checking whether dirfd is declared... yes 328s checking whether dirfd is a macro... no 328s checking whether // is distinct from /... no 328s checking whether dup works... yes 328s checking whether dup2 works... yes 328s checking whether fcntl handles F_DUPFD correctly... yes 328s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 328s checking whether fdopendir is declared... yes 328s checking whether fdopendir works... yes 328s checking for mempcpy... yes 328s checking for flexible array member... yes 328s checking whether conversion from 'int' to 'long double' works... yes 328s checking for working POSIX fnmatch... yes 328s checking whether fopen supports the mode character 'x'... yes 329s checking whether fopen supports the mode character 'e'... yes 329s checking whether forkpty is declared... yes 329s checking for const-safe forkpty signature... yes 329s checking whether free is known to preserve errno... yes 329s checking for fseeko... (cached) yes 329s checking whether fflush works on input streams... (cached) no 329s checking for _fseeki64... no 329s checking whether fstatat (..., 0) works... yes 329s checking for ftello... (cached) yes 329s checking whether ftello works... (cached) yes 329s checking for struct statfs.f_type... yes 329s checking for __fsword_t... yes 329s checking for fts_open... yes 329s checking for library containing getaddrinfo... none required 329s checking for getaddrinfo... yes 329s checking whether gai_strerror is declared... yes 329s checking whether gai_strerrorA is declared... no 329s checking for gai_strerror with POSIX signature... yes 329s checking for struct sockaddr.sa_len... no 329s checking whether getaddrinfo is declared... yes 329s checking whether freeaddrinfo is declared... yes 329s checking whether getnameinfo is declared... yes 329s checking for struct addrinfo... yes 329s checking whether getcwd handles long file names properly... yes 329s checking for getpagesize... yes 329s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 329s checking for getdelim... yes 329s checking for working getdelim function... yes 329s checking for getdomainname... yes 329s checking whether getdomainname is declared... yes 329s checking for getdomainname's second argument type... size_t 329s checking whether getdtablesize works... yes 329s checking for getgroups... yes 329s checking for working getgroups... yes 329s checking whether getgroups handles negative values... yes 329s checking for gethostname... yes 329s checking for HOST_NAME_MAX... yes 329s checking for getline... yes 330s checking for working getline function... yes 330s checking for getlogin_r... yes 330s checking whether getlogin_r works with small buffers... yes 330s checking for getprogname... no 330s checking whether program_invocation_name is declared... (cached) yes 330s checking whether program_invocation_name is declared... (cached) yes 330s checking whether program_invocation_short_name is declared... (cached) yes 330s checking whether __argv is declared... no 330s checking for getrandom... yes 330s checking whether getrandom is compatible with its GNU+BSD signature... yes 330s checking whether getusershell is declared... yes 330s checking for glob... yes 330s checking for GNU glob interface version 1 or 2... yes 330s checking whether glob lists broken symlinks... yes 330s checking whether glob NOTDIR*/ omits symlink to nondir... yes 330s checking for library containing gethostbyname... (cached) none required 330s checking for gethostbyname... (cached) yes 330s checking for library containing inet_ntop... (cached) none required 330s checking whether inet_ntop is declared... (cached) yes 330s checking whether the compiler generally respects inline... yes 330s checking for ioctl... yes 330s checking for ioctl with POSIX signature... no 330s checking for iswblank... yes 330s checking whether iswblank is declared... yes 330s checking whether iswdigit is ISO C compliant... guessing yes 330s checking whether iswpunct is consistent with ispunct... yes 330s checking whether iswxdigit is ISO C compliant... guessing yes 330s checking whether the compiler supports the __inline keyword... yes 330s checking whether localeconv works... yes 330s checking for pthread_rwlock_t... yes 330s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 330s checking for login_tty... yes 330s checking whether lseek detects pipes... yes 330s checking whether SEEK_DATA works but is incompatible with GNU... no 330s checking whether malloc (0) returns nonnull... (cached) yes 330s checking whether mbrtoc32 works on empty input... yes 330s checking whether the C locale is free of encoding errors... no 330s checking whether mbrtowc handles a NULL pwc argument... guessing yes 330s checking whether mbrtowc handles a NULL string argument... guessing yes 330s checking whether mbrtowc has a correct return value... guessing yes 330s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 330s checking whether mbrtowc stores incomplete characters... guessing no 330s checking whether mbrtowc works on empty input... yes 330s checking whether the C locale is free of encoding errors... no 330s checking whether mbsrtowcs works... guessing yes 330s checking whether the C locale is free of encoding errors... (cached) no 330s checking for mbtowc... yes 330s checking for mempcpy... (cached) yes 330s checking for memrchr... yes 330s checking for explicit_memset... no 330s checking whether mkdir handles trailing slash... yes 330s checking whether mkdir handles trailing dot... yes 331s checking for working mkstemp... yes 331s checking whether is self-contained... yes 331s checking for nl_langinfo... yes 331s checking whether YESEXPR works... yes 331s checking for obstacks that work with any size object... no 331s checking whether open recognizes a trailing slash... yes 331s checking for opendir... yes 331s checking whether openpty is declared... yes 331s checking for const-safe openpty signature... yes 331s checking for poll... yes 331s checking for posix_openpt... yes 331s checking whether program_invocation_name is declared... (cached) yes 331s checking whether program_invocation_short_name is declared... (cached) yes 331s checking for rawmemchr... yes 331s checking for readdir... yes 331s checking for readline... no 331s checking for readline/readline.h... no 331s checking for readline/history.h... no 331s checking whether realloc (0, 0) returns nonnull... yes 331s checking for reallocarray... yes 331s checking for working re_compile_pattern... yes 331s checking for rewinddir... yes 331s checking whether select supports a 0 argument... yes 331s checking whether select detects invalid fds... yes 331s checking for library containing getservbyname... (cached) none required 331s checking for getservbyname... (cached) yes 331s checking whether setenv validates arguments... yes 331s checking for HOST_NAME_MAX... (cached) yes 331s checking for sethostname... yes 331s checking whether sethostname is declared... yes 331s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 331s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 331s checking for stdint.h... (cached) yes 331s checking for SIZE_MAX... yes 331s checking whether sleep is declared... yes 332s checking for working sleep... yes 332s checking for snprintf... (cached) yes 332s checking whether snprintf respects a size of 1... yes 332s checking for socklen_t... yes 332s checking for ssize_t... yes 332s checking whether stat handles trailing slashes on files... yes 332s checking for struct stat.st_atim.tv_nsec... yes 332s checking whether struct stat.st_atim is of type struct timespec... yes 333s checking for struct stat.st_birthtimespec.tv_nsec... no 333s checking for struct stat.st_birthtimensec... no 333s checking for struct stat.st_birthtim.tv_nsec... no 333s checking for va_copy... yes 333s checking for bool, true, false... no 333s checking for strcasecmp... yes 333s checking for strncasecmp... yes 333s checking whether strncasecmp is declared... yes 333s checking for strchrnul... yes 333s checking whether strchrnul works... yes 333s checking for working strerror function... yes 333s checking for working strndup... yes 333s checking for working strnlen... yes 333s checking for variable-length arrays... yes 333s checking for ptrdiff_t... yes 333s checking for vasprintf... yes 333s checking for vsnprintf... yes 333s checking whether snprintf respects a size of 1... (cached) yes 333s checking whether wcrtomb works in the C locale... yes 333s checking whether wcrtomb return value is correct... guessing yes 333s checking for wmemchr... yes 333s checking for wmempcpy... yes 333s checking for stdint.h... (cached) yes 333s checking for library containing inet_ntoa... none required 333s checking for initscr in -lncurses... no 333s checking for tgetent in -ltermcap... no 333s checking whether tgetent needs support... no 333s checking for tgetent in -lcurses... no 333s checking whether tgetent is declared... no 333s checking for tgetent in -ltermlib... no 333s checking for crypt in -lcrypt... yes 333s checking for login in -lutil... yes 333s checking for loginx in -lutil... no 333s checking for logout in -lutil... yes 333s checking for logoutx in -lutil... no 333s checking for logwtmp in -lutil... yes 333s checking for logwtmpx in -lutil... no 333s checking for protocols/talkd.h... yes 333s checking for rcmd... yes 334s checking for rcmd_af... yes 334s checking for orcmd... no 334s checking for orcmd_af... no 334s checking for rresvport_af... yes 334s checking for iruserok... yes 334s checking for iruserok_af... yes 334s checking for iruserok_sa... no 334s checking for ruserok... yes 334s checking for ruserok_af... yes 334s checking for AF_INET6... yes 334s checking for IPV6_V6ONLY... yes 334s checking for struct sockaddr_storage... (cached) yes 334s checking for struct sockaddr_in6... yes 334s checking for struct addrinfo... (cached) yes 334s checking for getnameinfo... yes 334s checking for netinet/icmp6.h... yes 334s checking for netinet/ip6.h... yes 334s checking for struct icmp6_filter... yes 334s checking for struct icmp6_hdr... yes 334s checking for IPV6_HOPLIMIT... yes 334s checking for IPV6_2292HOPLIMIT... yes 334s checking for IPV6_RECVHOPLIMIT... yes 334s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 334s checking for locale.h... yes 334s checking for setlocale... yes 334s checking for arpa/nameser.h... yes 334s checking for arpa/tftp.h... yes 334s checking for fcntl.h... yes 334s checking for features.h... (cached) yes 334s checking for glob.h... (cached) yes 334s checking for memory.h... yes 334s checking for netinet/ether.h... yes 334s checking for netinet/in_systm.h... yes 334s checking for netinet/ip.h... yes 334s checking for netinet/ip_icmp.h... yes 334s checking for netinet/ip_var.h... no 334s checking for security/pam_appl.h... no 334s checking for shadow.h... yes 334s checking for stropts.h... no 334s checking for sys/tty.h... no 334s checking for sys/utsname.h... yes 334s checking for sys/ptyvar.h... no 334s checking for sys/msgbuf.h... no 334s checking for sys/filio.h... (cached) no 334s checking for sys/ioctl_compat.h... no 334s checking for sys/cdefs.h... (cached) yes 334s checking for sys/stream.h... no 334s checking for sys/mkdev.h... no 334s checking for sys/sockio.h... no 334s checking for sys/sysmacros.h... yes 334s checking for sys/param.h... (cached) yes 334s checking for sys/file.h... yes 335s checking for sys/proc.h... no 335s checking for sys/select.h... (cached) yes 335s checking for sys/wait.h... yes 335s checking for sys/resource.h... yes 335s checking for stropts.h... (cached) no 335s checking for tcpd.h... no 335s checking for utmp.h... (cached) yes 335s checking for utmpx.h... (cached) yes 335s checking for unistd.h... (cached) yes 335s checking for vis.h... no 335s checking for struct if_nameindex... yes 335s checking for sigset_t... (cached) yes 335s checking for sig_atomic_t... yes 335s checking for struct sockaddr_in.sin_len... no 335s checking for struct sockaddr_in6.sin6_len... no 335s checking for struct sockaddr_storage.ss_len... no 335s checking for struct passwd.pw_expire... no 335s checking for struct passwd.pw_change... no 335s checking for struct lastlog... yes 335s checking for struct utmp.ut_type... (cached) yes 335s checking for struct utmp.ut_pid... (cached) yes 335s checking for struct utmp.ut_line... yes 335s checking for struct utmp.ut_id... (cached) yes 335s checking for struct utmp.ut_user... (cached) yes 335s checking for struct utmp.ut_host... (cached) yes 335s checking for struct utmp.ut_exit... (cached) yes 335s checking for struct utmp.ut_session... (cached) yes 335s checking for struct utmp.ut_tv... (cached) yes 335s checking for struct utmp.ut_time... yes 335s checking for struct utmp.ut_addr_v6... yes 335s checking for struct utmp.ut_name... (cached) yes 335s checking for struct lastlogx... no 335s checking for struct lastlogx.ll_ss... no 335s checking for struct utmpx.ut_user... (cached) yes 335s checking for struct utmpx.ut_name... (cached) yes 335s checking for struct utmpx.ut_id... (cached) yes 335s checking for struct utmpx.ut_line... yes 335s checking for struct utmpx.ut_pid... (cached) yes 335s checking for struct utmpx.ut_type... (cached) yes 335s checking for struct utmpx.ut_exit... (cached) yes 335s checking for struct utmpx.ut_tv... yes 335s checking for struct utmpx.ut_session... (cached) yes 335s checking for struct utmpx.ut_syslen... no 335s checking for struct utmpx.ut_host... (cached) yes 335s checking for struct utmpx.ut_ss... no 335s checking for struct utmpx.ut_addr_v6... yes 335s checking for struct ifreq.ifr_index... no 335s checking for struct ifreq.ifr_netmask... yes 335s checking for struct ifreq.ifr_broadaddr... yes 335s checking for struct ifreq.ifr_mtu... yes 335s checking for struct ifreq.ifr_map... yes 335s checking for struct sockaddr.sa_len... (cached) no 335s checking for struct hostent.h_addr_list... yes 335s checking for struct stat.st_atim.tv_nsec... (cached) yes 335s checking for struct stat.st_atim.tv_usec... no 335s checking for struct stat.st_blksize... yes 335s checking for struct stat.st_ctim.tv_nsec... yes 335s checking for struct stat.st_ctim.tv_usec... no 335s checking for struct stat.st_mtim.tv_nsec... yes 335s checking for struct stat.st_mtim.tv_usec... no 335s checking for struct tftphdr.th_u... no 335s checking for working fork... yes 335s checking for working vfork... (cached) yes 335s checking for working mmap... yes 335s checking for cfsetspeed... yes 335s checking for cgetent... no 335s checking for dirfd... (cached) yes 335s checking for flock... yes 335s checking for fork... (cached) yes 335s checking for fpathconf... yes 335s checking for ftruncate... yes 335s checking for getcwd... yes 335s checking for getmsg... no 335s checking for getpwuid_r... yes 335s checking for getspnam... yes 335s checking for getutxent... yes 335s checking for getutxuser... no 335s checking for initgroups... yes 336s checking for initsetproctitle... no 336s checking for killpg... yes 336s checking for ptsname... yes 336s checking for pututline... yes 336s checking for pututxline... yes 336s checking for setegid... yes 336s checking for seteuid... yes 336s checking for setpgid... yes 336s checking for setlogin... no 336s checking for setsid... yes 336s checking for setregid... yes 336s checking for setreuid... yes 336s checking for setresgid... yes 336s checking for setresuid... yes 336s checking for setutent_r... no 336s checking for sigaction... yes 336s checking for sigvec... no 336s checking for strchr... yes 336s checking for setproctitle... no 336s checking for tcgetattr... yes 336s checking for tzset... yes 336s checking for utimes... yes 336s checking for utime... yes 336s checking for uname... yes 336s checking for updwtmp... yes 336s checking for updwtmpx... yes 336s checking for vhangup... yes 336s checking for wait3... yes 336s checking for wait4... yes 336s checking for __opendir2... no 336s checking for __rcmd_errstr... yes 336s checking for __check_rhosts_file... yes 336s checking for login... yes 336s checking for loginx... no 336s checking for logout... yes 336s checking for logoutx... no 336s checking for logwtmp... yes 336s checking for logwtmpx... no 336s checking for crypt... yes 337s checking for _obstack_free... yes 337s checking for setpgid... (cached) yes 337s checking for hstrerror... yes 337s checking whether hstrerror is declared... yes 337s checking whether telcmds is declared... yes 337s checking whether telopts is declared... no 337s checking for Schedule... no 337s checking for Session_Key... no 337s checking whether enctype_names is const char... no 337s checking whether crypt is declared... yes 337s checking for syslog internal macros... yes 337s checking for CODE... yes 337s checking whether prioritynames is declared... yes 337s checking whether fclose is declared... yes 337s checking whether pclose is declared... yes 337s checking whether getcwd is declared... (cached) yes 337s checking whether getlogin is declared... (cached) yes 337s checking whether getpass is declared... yes 337s checking whether getusershell is declared... (cached) yes 337s checking whether ttyname is declared... yes 337s checking whether getgrnam is declared... yes 337s checking whether initgroups is declared... yes 337s checking whether htons is declared... yes 337s checking for h_errno... yes 337s checking whether h_errno is declared... yes 337s checking for SEEK_ macros... yes 337s checking for _FILENO macros... yes 337s checking for fd_set macros... yes 337s checking for paths.h... yes 337s checking for value of PATH_BSHELL... from _PATH_BSHELL in 337s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 337s checking for value of PATH_CP... /usr/bin/cp 337s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 337s checking for value of PATH_DEV... from _PATH_DEV in 337s checking for value of PATH_TTY_PFX... from _PATH_DEV in 337s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 337s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 337s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 337s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 337s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 337s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 337s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 337s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 337s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 337s checking for value of PATH_UTMP... from _PATH_UTMP in 337s checking for value of PATH_UTMPX... from _PATH_UTMPX in 337s checking for value of PATH_WTMP... from _PATH_WTMP in 337s checking for value of PATH_WTMPX... from _PATH_WTMPX in 337s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 337s checking for value of PATH_LOG... from _PATH_LOG in 337s checking for value of PATH_KLOG... from _PATH_KLOG in 337s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 337s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 337s checking for value of PATH_LOGIN... /usr/bin/login 337s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 337s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 337s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 337s checking for value of PATH_RSH... (default) $(bindir)/rsh 337s checking for value of PATH_TMP... from _PATH_TMP in 337s checking for value of PATH_TTY... from _PATH_TTY in 337s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 337s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 337s checking for value of PATH_PROCNET_DEV... /proc/net/dev 338s checking that generated files are newer than configure... done 338s configure: creating ./config.status 338s /bin/bash ./config.status 338s config.status: creating Makefile 338s config.status: creating summary.sh 338s config.status: creating lib/Makefile 338s config.status: creating libinetutils/Makefile 338s config.status: creating libtelnet/Makefile 338s config.status: creating libicmp/Makefile 338s config.status: creating libls/Makefile 338s config.status: creating src/Makefile 338s config.status: creating telnet/Makefile 338s config.status: creating telnetd/Makefile 338s config.status: creating ftp/Makefile 338s config.status: creating ftpd/Makefile 338s config.status: creating talk/Makefile 338s config.status: creating talkd/Makefile 338s config.status: creating whois/Makefile 338s config.status: creating ping/Makefile 338s config.status: creating ifconfig/Makefile 338s config.status: creating ifconfig/system/Makefile 338s config.status: creating tests/Makefile 338s config.status: creating confpaths.h 338s config.status: creating config.h 338s config.status: config.h is unchanged 338s config.status: executing depfiles commands 338s config.status: executing summary commands 338s Summary of build decisions: 338s 338s Clients: 338s 338s dnsdomainname no 338s ftp yes 338s hostname no 338s ifconfig no 338s logger no 338s ping no 338s ping6 no 338s rcp no 338s rexec no 338s rlogin no 338s rsh no 338s talk no 338s telnet no 338s tftp no 338s traceroute yes 338s whois no 338s 338s Servers: 338s 338s ftpd yes 338s inetd no 338s rexecd no 338s rlogind no 338s rshd no 338s syslogd no 338s talkd no 338s telnetd no 338s tftpd no 338s uucpd no 338s 338s Support: 338s 338s libls no 338s cd . && /bin/bash /tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing automake-1.17 --gnu 341s CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash '/tmp/autopkgtest.4hJkOK/build.M0K/src/build-aux/missing' autoconf 343s /bin/bash ./config.status --recheck 343s running CONFIG_SHELL=/bin/bash /bin/bash ./configure --disable-libls --disable-servers --disable-clients --disable-ping --disable-ping6 --enable-ftp --enable-ftpd --enable-traceroute --no-create --no-recursion 343s checking build system type... s390x-ibm-linux-gnu 343s checking host system type... s390x-ibm-linux-gnu 343s checking for a BSD-compatible install... /usr/bin/install -c 343s checking whether sleep supports fractional seconds... yes 343s checking filesystem timestamp resolution... 0.01 343s checking whether build environment is sane... yes 343s checking for a race-free mkdir -p... /usr/bin/mkdir -p 343s checking for gawk... gawk 343s checking whether make sets $(MAKE)... yes 343s checking whether make supports nested variables... yes 343s checking xargs -n works... yes 343s checking for gcc... gcc 343s checking whether the C compiler works... yes 343s checking for C compiler default output file name... a.out 343s checking for suffix of executables... 343s checking whether we are cross compiling... no 343s checking for suffix of object files... o 343s checking whether the compiler supports GNU C... yes 343s checking whether gcc accepts -g... yes 343s checking for gcc option to enable C11 features... none needed 343s checking whether gcc understands -c and -o together... yes 343s checking whether the compiler is clang... no 343s checking for compiler option needed when checking for declarations... none 343s checking whether make supports the include directive... yes (GNU style) 343s checking dependency style of gcc... gcc3 343s checking for stdio.h... yes 343s checking for stdlib.h... yes 343s checking for string.h... yes 343s checking for inttypes.h... yes 343s checking for stdint.h... yes 343s checking for strings.h... yes 343s checking for sys/stat.h... yes 343s checking for sys/types.h... yes 343s checking for unistd.h... yes 343s checking for wchar.h... yes 343s checking for minix/config.h... no 343s checking for features.h... yes 343s checking for linewrap.h... no 343s checking for arpa/inet.h... yes 344s checking for sys/socket.h... yes 344s checking for uchar.h... yes 344s checking for sys/param.h... yes 344s checking for dirent.h... yes 344s checking for error.h... yes 344s checking for fnmatch.h... yes 344s checking for pty.h... yes 344s checking for termios.h... yes 344s checking for sys/vfs.h... yes 344s checking for netdb.h... yes 344s checking for netinet/in.h... yes 344s checking for getopt.h... yes 344s checking for sys/cdefs.h... yes 344s checking for stdio_ext.h... yes 344s checking for grp.h... yes 344s checking for glob.h... yes 344s checking for threads.h... yes 344s checking for limits.h... yes 344s checking for crtdefs.h... no 344s checking for wctype.h... yes 344s checking for langinfo.h... yes 344s checking for xlocale.h... no 344s checking for utmp.h... yes 344s checking for util.h... no 344s checking for libutil.h... no 344s checking for sys/mman.h... yes 344s checking for obstack.h... yes 344s checking for poll.h... yes 344s checking for sys/ioctl.h... yes 344s checking for sys/filio.h... no 344s checking for utmpx.h... yes 344s checking for OS.h... no 344s checking for malloc.h... yes 344s checking for sys/select.h... yes 344s checking for sys/time.h... yes 344s checking for stdbool.h... yes 344s checking for stdckdint.h... yes 344s checking for sys/random.h... yes 344s checking for sys/uio.h... yes 344s checking for sysexits.h... yes 344s checking for vfork.h... no 344s checking whether it is safe to define __EXTENSIONS__... yes 344s checking whether _XOPEN_SOURCE should be defined... no 344s checking how to run the C preprocessor... gcc -E 345s checking for egrep -e... /usr/bin/grep -E 345s checking for Minix Amsterdam compiler... no 345s checking for ar... ar 345s checking the archiver (ar) interface... ar 345s checking for ar... (cached) ar 345s checking for ranlib... ranlib 345s checking for gcc option to enable large file support... none needed 345s configure: autobuild project... GNU inetutils 345s configure: autobuild revision... 2.5 345s configure: autobuild hostname... autopkgtest 345s configure: autobuild timestamp... 20250219T081845Z 345s checking the archiver (ar) interface... (cached) ar 345s checking for ar... (cached) ar 345s checking for dd... /usr/bin/dd 345s checking for mktemp... /usr/bin/mktemp 345s checking for netstat... /usr/bin/netstat 345s checking for rm... /usr/bin/rm 345s checking how to run the C preprocessor... gcc -E 345s checking for grep that handles long lines and -e... /usr/bin/grep 345s checking for egrep... /usr/bin/grep -E 345s checking for fgrep... /usr/bin/grep -F 345s checking whether make sets $(MAKE)... (cached) yes 345s checking for ranlib... (cached) ranlib 345s checking for bison... no 345s checking for byacc... no 345s checking whether ln -s works... yes 345s checking for a sed that does not truncate output... /usr/bin/sed 345s checking for size_t... yes 345s checking for working alloca.h... yes 345s checking for alloca... yes 345s checking for inline... inline 345s checking for C/C++ restrict keyword... __restrict__ 345s checking for gcc options needed to detect all undeclared functions... none needed 345s checking whether clearerr_unlocked is declared... yes 345s checking whether feof_unlocked is declared... yes 345s checking whether ferror_unlocked is declared... yes 345s checking whether fflush_unlocked is declared... yes 345s checking whether fgets_unlocked is declared... yes 345s checking whether fputc_unlocked is declared... yes 345s checking whether fputs_unlocked is declared... yes 345s checking whether fread_unlocked is declared... yes 345s checking whether fwrite_unlocked is declared... yes 345s checking whether getc_unlocked is declared... yes 345s checking whether getchar_unlocked is declared... yes 345s checking whether putc_unlocked is declared... yes 345s checking whether putchar_unlocked is declared... yes 345s checking for flockfile... yes 345s checking for funlockfile... yes 345s checking for btowc... yes 345s checking for mbrtowc... yes 345s checking for mbsinit... yes 345s checking for _set_invalid_parameter_handler... no 345s checking for fchdir... yes 345s checking for fcntl... yes 345s checking for symlink... yes 345s checking for fdopendir... yes 345s checking for fnmatch... yes 345s checking for mbsrtowcs... yes 345s checking for fstatat... yes 345s checking for openat... yes 345s checking for fstatfs... yes 345s checking for getdtablesize... yes 346s checking for getpass... yes 346s checking for getexecname... no 346s checking for getusershell... yes 346s checking for glob_pattern_p... yes 346s checking for isblank... yes 346s checking for iswcntrl... yes 346s checking for lstat... yes 346s checking for mprotect... yes 346s checking for memset_explicit... no 346s checking for memset_s... no 346s checking for getgrouplist... yes 346s checking for mkstemp... yes 346s checking for pipe... yes 346s checking for utmpname... yes 346s checking for utmpxname... yes 346s checking for iswctype... yes 346s checking for setenv... yes 346s checking for sleep... yes 346s checking for snprintf... yes 346s checking for strndup... yes 346s checking for vasnprintf... no 346s checking for wcrtomb... yes 346s checking for fork... yes 346s checking for vfork... yes 346s checking for getpagesize... yes 346s checking whether strerror_r is declared... yes 346s checking whether strerror_r returns char *... yes 346s checking whether the preprocessor supports include_next... yes 346s checking whether source code line length is unlimited... yes 346s checking whether uses 'inline' correctly... yes 346s checking for nl_langinfo and CODESET... yes 346s checking for a traditional french locale... none 346s checking whether char8_t is correctly defined... yes 346s checking whether char16_t is correctly defined... yes 346s checking whether char32_t is correctly defined... yes 346s checking for bit size of wchar_t... 32 346s checking for mbstate_t... yes 346s checking for a traditional japanese locale... none 346s checking for a french Unicode locale... none 347s checking for a transitional chinese locale... none 347s checking whether mbrtowc handles incomplete characters... guessing yes 347s checking whether mbrtowc works as well as mbtowc... guessing yes 347s checking whether mbrtoc32 is declared... yes 347s checking for mbrtoc32... yes 347s checking whether mbrtoc32 works as well as mbrtowc... guessing yes 347s checking whether malloc is ptrdiff_t safe... yes 347s checking whether malloc, realloc, calloc set errno on failure... yes 347s checking if environ is properly declared... yes 347s checking for complete errno.h... yes 347s checking for error... yes 347s checking whether error_at_line is declared... yes 347s checking for error_at_line... yes 347s checking for working error function... yes 347s checking whether ctype.h defines __header_inline... no 347s checking whether fchdir is declared... yes 348s checking for working fcntl.h... yes 348s checking for pid_t... yes 348s checking for mode_t... yes 348s checking for promoted mode_t type... mode_t 348s checking whether strmode is declared... no 348s checking whether fopen recognizes a trailing slash... yes 348s checking whether fflush works on input streams... no 348s checking for library containing forkpty... none required 348s checking whether stdin defaults to large file offsets... yes 348s checking whether fseeko is declared... yes 348s checking for fseeko... yes 348s checking whether fflush works on input streams... (cached) no 348s checking whether stat file-mode macros are broken... no 348s checking for nlink_t... yes 348s checking whether lstat correctly handles trailing slash... yes 348s checking whether ftello is declared... yes 348s checking whether ungetc works on arbitrary bytes... yes 348s checking for ftello... yes 348s checking whether ftello works... yes 348s checking for O_CLOEXEC... yes 348s checking whether is self-contained... yes 348s checking for shutdown... yes 348s checking whether defines the SHUT_* macros... yes 348s checking for struct sockaddr_storage... yes 348s checking for sa_family_t... yes 348s checking for struct sockaddr_storage.ss_family... yes 349s checking for library containing gethostbyname... none required 349s checking for gethostbyname... yes 349s checking for library containing getservbyname... none required 349s checking for getservbyname... yes 349s checking for library containing inet_ntop... none required 349s checking whether inet_ntop is declared... yes 349s checking for IPv4 sockets... yes 349s checking for IPv6 sockets... yes 349s checking whether getcwd (NULL, 0) allocates memory for result... yes 349s checking for getcwd with POSIX signature... yes 349s checking whether getcwd is declared... yes 349s checking whether getdelim is declared... yes 349s checking whether getdtablesize is declared... yes 349s checking for uid_t... yes 349s checking for gid_t... yes 349s checking type of array argument to getgroups... gid_t 349s checking whether getline is declared... yes 349s checking whether getlogin_r is declared... yes 349s checking whether getlogin is declared... yes 349s checking for getopt.h... (cached) yes 349s checking for getopt_long_only... yes 349s checking whether getopt is POSIX compatible... yes 349s checking for working GNU getopt function... yes 349s checking for working GNU getopt_long function... yes 349s checking whether flockfile is declared... yes 349s checking whether funlockfile is declared... yes 349s checking for pthread.h... yes 349s checking for pthread_kill in -lpthread... yes 349s checking whether POSIX threads API is available... yes 349s checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes 349s checking whether setlocale (category, NULL) is multithread-safe... yes 350s checking for off_t... yes 350s checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... yes 350s checking whether limits.h has SSIZE_MAX... yes 350s checking for wint_t... yes 350s checking whether wint_t is large enough... yes 350s checking whether the compiler produces multi-arch binaries... no 350s checking whether stdint.h conforms to C99... yes 350s checking whether stdint.h works without ISO C predefines... yes 350s checking whether stdint.h has UINTMAX_WIDTH etc.... yes 350s checking whether iswcntrl works... yes 350s checking for towlower... yes 350s checking for wctype_t... yes 350s checking for wctrans_t... yes 350s checking whether wctype supports the "blank" and "punct" character classes... yes 350s checking whether langinfo.h defines CODESET... yes 350s checking whether langinfo.h defines T_FMT_AMPM... yes 350s checking whether langinfo.h defines ALTMON_1... yes 350s checking whether langinfo.h defines ERA... yes 350s checking whether langinfo.h defines YESEXPR... yes 350s checking for wchar_t... yes 350s checking for good max_align_t... yes 350s checking whether NULL can be used in arbitrary expressions... yes 350s checking for unreachable... no 350s checking whether locale.h defines locale_t... yes 350s checking whether locale.h conforms to POSIX:2001... yes 350s checking whether struct lconv is properly defined... yes 350s checking whether imported symbols can be declared weak... yes 350s checking for multithread API to use... posix 350s checking whether malloc (0) returns nonnull... yes 350s checking for mmap... yes 350s checking for MAP_ANONYMOUS... yes 350s checking whether memchr works... yes 350s checking whether memrchr is declared... yes 350s checking whether defines MIN and MAX... no 350s checking whether defines MIN and MAX... yes 350s checking for library containing setsockopt... none needed 350s checking for ld used by gcc... /usr/bin/ld 350s checking if the linker (/usr/bin/ld) is GNU ld... yes 350s checking for shared library run path origin... done 350s checking 32-bit host C ABI... no 350s checking for ELF binary format... yes 350s checking for the common suffixes of directories in the library search path... lib,lib,lib 350s checking whether to use systemd APIs... no 350s checking whether endutent is declared... yes 350s checking for struct utmpx.ut_user... yes 350s checking for struct utmp.ut_user... yes 350s checking for struct utmpx.ut_name... yes 350s checking for struct utmp.ut_name... yes 350s checking for struct utmpx.ut_type... yes 350s checking for struct utmp.ut_type... yes 350s checking for struct utmpx.ut_pid... yes 350s checking for struct utmp.ut_pid... yes 351s checking for struct utmp.ut_tv... yes 351s checking for struct utmpx.ut_host... yes 351s checking for struct utmp.ut_host... yes 351s checking for struct utmpx.ut_id... yes 351s checking for struct utmp.ut_id... yes 351s checking for struct utmpx.ut_session... yes 351s checking for struct utmp.ut_session... yes 351s checking for struct utmpx.ut_exit... yes 351s checking for struct utmp.ut_exit... yes 351s checking for struct utmpx.ut_exit.ut_exit... no 351s checking for struct utmpx.ut_exit.e_exit... yes 351s checking for struct utmp.ut_exit.e_exit... yes 351s checking for struct utmpx.ut_exit.ut_termination... no 351s checking for struct utmpx.ut_exit.e_termination... yes 351s checking for struct utmp.ut_exit.e_termination... yes 351s checking whether sysinfo is declared... yes 351s checking for sys/sysctl.h... no 351s checking for sysctl... no 351s checking whether alarm is declared... yes 351s checking whether is self-contained... yes 351s checking whether setenv is declared... yes 351s checking for search.h... yes 351s checking for tsearch... yes 351s checking for sigset_t... yes 351s checking for volatile sig_atomic_t... yes 351s checking for sighandler_t... yes 351s checking whether snprintf returns a byte count as in C99... yes 351s checking whether printf supports POSIX/XSI format strings with positions... yes 351s checking whether snprintf is declared... yes 351s checking whether fcloseall is declared... yes 352s checking whether getw is declared... yes 352s checking whether putw is declared... yes 352s checking which flavor of printf attribute matches inttypes macros... system 352s checking whether ecvt is declared... yes 352s checking whether fcvt is declared... yes 352s checking whether gcvt is declared... yes 352s checking whether MB_CUR_MAX is correct... guessing yes 352s checking whether strdup is declared... yes 352s checking whether strerror(0) succeeds... yes 352s checking whether strndup is declared... yes 352s checking whether strnlen is declared... yes 352s checking whether declares ioctl... yes 352s checking for struct timeval... yes 352s checking for wide-enough struct timeval.tv_sec member... yes 352s checking for struct timespec in ... yes 352s checking for TIME_UTC in ... yes 352s checking whether execvpe is declared... yes 352s checking for util.h... (cached) no 352s checking for libutil.h... (cached) no 352s checking for inttypes.h... yes 352s checking for stdint.h... yes 352s checking for intmax_t... yes 352s checking whether snprintf truncates the result as in C99... yes 352s checking where to find the exponent in a 'double'... word 0 bit 20 352s checking for wcslen... yes 352s checking for snprintf... (cached) yes 352s checking for strnlen... yes 352s checking for wcrtomb... (cached) yes 352s checking whether _snprintf is declared... no 352s checking whether vsnprintf is declared... yes 352s checking whether wcsdup is declared... yes 352s checking for C compiler option to allow warnings... -Wno-error 352s checking for alignas and alignof... yes, macros 352s checking for alloca as a compiler built-in... yes 352s checking whether program_invocation_name is declared... yes 352s checking whether program_invocation_short_name is declared... yes 352s checking whether program_invocation_name is defined... yes 352s checking whether program_invocation_short_name is defined... yes 352s checking for static_assert... yes, an macro 352s checking whether btowc(0) is correct... yes 352s checking whether btowc(EOF) is correct... guessing yes 352s checking whether btowc is consistent with mbrtowc in the C locale... no 352s checking for __builtin_expect... yes 352s checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes 352s checking whether this system supports file names of any length... no 352s checking for library containing clock_gettime... none required 352s checking for clock_getres... yes 352s checking for clock_gettime... yes 352s checking for clock_settime... yes 353s checking for closedir... yes 353s checking for d_ino member in directory struct... yes 353s checking for d_type member in directory struct... yes 353s checking for dirfd... yes 353s checking whether dirfd is declared... yes 353s checking whether dirfd is a macro... no 353s checking whether // is distinct from /... no 353s checking whether dup works... yes 353s checking whether dup2 works... yes 353s checking whether fcntl handles F_DUPFD correctly... yes 353s checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check 353s checking whether fdopendir is declared... yes 353s checking whether fdopendir works... yes 353s checking for mempcpy... yes 353s checking for flexible array member... yes 353s checking whether conversion from 'int' to 'long double' works... yes 353s checking for working POSIX fnmatch... yes 353s checking whether fopen supports the mode character 'x'... yes 353s checking whether fopen supports the mode character 'e'... yes 353s checking whether forkpty is declared... yes 353s checking for const-safe forkpty signature... yes 353s checking whether free is known to preserve errno... yes 353s checking for fseeko... (cached) yes 353s checking whether fflush works on input streams... (cached) no 353s checking for _fseeki64... no 353s checking whether fstatat (..., 0) works... yes 353s checking for ftello... (cached) yes 353s checking whether ftello works... (cached) yes 353s checking for struct statfs.f_type... yes 353s checking for __fsword_t... yes 353s checking for fts_open... yes 353s checking for library containing getaddrinfo... none required 353s checking for getaddrinfo... yes 353s checking whether gai_strerror is declared... yes 353s checking whether gai_strerrorA is declared... no 353s checking for gai_strerror with POSIX signature... yes 353s checking for struct sockaddr.sa_len... no 353s checking whether getaddrinfo is declared... yes 353s checking whether freeaddrinfo is declared... yes 353s checking whether getnameinfo is declared... yes 353s checking for struct addrinfo... yes 354s checking whether getcwd handles long file names properly... yes 354s checking for getpagesize... yes 354s checking whether getcwd succeeds when 4k < cwd_length < 16k... yes 354s checking for getdelim... yes 354s checking for working getdelim function... yes 354s checking for getdomainname... yes 354s checking whether getdomainname is declared... yes 354s checking for getdomainname's second argument type... size_t 354s checking whether getdtablesize works... yes 354s checking for getgroups... yes 354s checking for working getgroups... yes 354s checking whether getgroups handles negative values... yes 354s checking for gethostname... yes 354s checking for HOST_NAME_MAX... yes 354s checking for getline... yes 354s checking for working getline function... yes 354s checking for getlogin_r... yes 354s checking whether getlogin_r works with small buffers... yes 354s checking for getprogname... no 354s checking whether program_invocation_name is declared... (cached) yes 354s checking whether program_invocation_name is declared... (cached) yes 354s checking whether program_invocation_short_name is declared... (cached) yes 354s checking whether __argv is declared... no 354s checking for getrandom... yes 354s checking whether getrandom is compatible with its GNU+BSD signature... yes 354s checking whether getusershell is declared... yes 354s checking for glob... yes 354s checking for GNU glob interface version 1 or 2... yes 354s checking whether glob lists broken symlinks... yes 354s checking whether glob NOTDIR*/ omits symlink to nondir... yes 354s checking for library containing gethostbyname... (cached) none required 354s checking for gethostbyname... (cached) yes 354s checking for library containing inet_ntop... (cached) none required 354s checking whether inet_ntop is declared... (cached) yes 354s checking whether the compiler generally respects inline... yes 354s checking for ioctl... yes 354s checking for ioctl with POSIX signature... no 354s checking for iswblank... yes 354s checking whether iswblank is declared... yes 354s checking whether iswdigit is ISO C compliant... guessing yes 354s checking whether iswpunct is consistent with ispunct... yes 354s checking whether iswxdigit is ISO C compliant... guessing yes 354s checking whether the compiler supports the __inline keyword... yes 354s checking whether localeconv works... yes 354s checking for pthread_rwlock_t... yes 355s checking whether pthread_rwlock_rdlock prefers a writer to a reader... no 355s checking for login_tty... yes 355s checking whether lseek detects pipes... yes 355s checking whether SEEK_DATA works but is incompatible with GNU... no 355s checking whether malloc (0) returns nonnull... (cached) yes 355s checking whether mbrtoc32 works on empty input... yes 355s checking whether the C locale is free of encoding errors... no 355s checking whether mbrtowc handles a NULL pwc argument... guessing yes 355s checking whether mbrtowc handles a NULL string argument... guessing yes 355s checking whether mbrtowc has a correct return value... guessing yes 355s checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes 355s checking whether mbrtowc stores incomplete characters... guessing no 355s checking whether mbrtowc works on empty input... yes 355s checking whether the C locale is free of encoding errors... no 355s checking whether mbsrtowcs works... guessing yes 355s checking whether the C locale is free of encoding errors... (cached) no 355s checking for mbtowc... yes 355s checking for mempcpy... (cached) yes 355s checking for memrchr... yes 355s checking for explicit_memset... no 355s checking whether mkdir handles trailing slash... yes 355s checking whether mkdir handles trailing dot... yes 355s checking for working mkstemp... yes 355s checking whether is self-contained... yes 355s checking for nl_langinfo... yes 355s checking whether YESEXPR works... yes 355s checking for obstacks that work with any size object... no 355s checking whether open recognizes a trailing slash... yes 355s checking for opendir... yes 355s checking whether openpty is declared... yes 355s checking for const-safe openpty signature... yes 355s checking for poll... yes 355s checking for posix_openpt... yes 355s checking whether program_invocation_name is declared... (cached) yes 355s checking whether program_invocation_short_name is declared... (cached) yes 355s checking for rawmemchr... yes 355s checking for readdir... yes 355s checking for readline... no 355s checking for readline/readline.h... no 355s checking for readline/history.h... no 355s checking whether realloc (0, 0) returns nonnull... yes 355s checking for reallocarray... yes 355s checking for working re_compile_pattern... yes 356s checking for rewinddir... yes 356s checking whether select supports a 0 argument... yes 356s checking whether select detects invalid fds... yes 356s checking for library containing getservbyname... (cached) none required 356s checking for getservbyname... (cached) yes 356s checking whether setenv validates arguments... yes 356s checking for HOST_NAME_MAX... (cached) yes 356s checking for sethostname... yes 356s checking whether sethostname is declared... yes 356s checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes 356s checking whether setlocale (category, NULL) is multithread-safe... (cached) yes 356s checking for stdint.h... (cached) yes 356s checking for SIZE_MAX... yes 356s checking whether sleep is declared... yes 357s checking for working sleep... yes 357s checking for snprintf... (cached) yes 357s checking whether snprintf respects a size of 1... yes 357s checking for socklen_t... yes 357s checking for ssize_t... yes 357s checking whether stat handles trailing slashes on files... yes 357s checking for struct stat.st_atim.tv_nsec... yes 357s checking whether struct stat.st_atim is of type struct timespec... yes 357s checking for struct stat.st_birthtimespec.tv_nsec... no 357s checking for struct stat.st_birthtimensec... no 357s checking for struct stat.st_birthtim.tv_nsec... no 357s checking for va_copy... yes 357s checking for bool, true, false... no 357s checking for strcasecmp... yes 357s checking for strncasecmp... yes 357s checking whether strncasecmp is declared... yes 357s checking for strchrnul... yes 357s checking whether strchrnul works... yes 357s checking for working strerror function... yes 357s checking for working strndup... yes 357s checking for working strnlen... yes 357s checking for variable-length arrays... yes 357s checking for ptrdiff_t... yes 357s checking for vasprintf... yes 357s checking for vsnprintf... yes 357s checking whether snprintf respects a size of 1... (cached) yes 357s checking whether wcrtomb works in the C locale... yes 357s checking whether wcrtomb return value is correct... guessing yes 357s checking for wmemchr... yes 357s checking for wmempcpy... yes 357s checking for stdint.h... (cached) yes 357s checking for library containing inet_ntoa... none required 357s checking for initscr in -lncurses... no 357s checking for tgetent in -ltermcap... no 358s checking whether tgetent needs support... no 358s checking for tgetent in -lcurses... no 358s checking whether tgetent is declared... no 358s checking for tgetent in -ltermlib... no 358s checking for crypt in -lcrypt... yes 358s checking for login in -lutil... yes 358s checking for loginx in -lutil... no 358s checking for logout in -lutil... yes 358s checking for logoutx in -lutil... no 358s checking for logwtmp in -lutil... yes 358s checking for logwtmpx in -lutil... no 358s checking for protocols/talkd.h... yes 358s checking for rcmd... yes 358s checking for rcmd_af... yes 358s checking for orcmd... no 358s checking for orcmd_af... no 358s checking for rresvport_af... yes 358s checking for iruserok... yes 358s checking for iruserok_af... yes 358s checking for iruserok_sa... no 358s checking for ruserok... yes 358s checking for ruserok_af... yes 358s checking for AF_INET6... yes 358s checking for IPV6_V6ONLY... yes 358s checking for struct sockaddr_storage... (cached) yes 358s checking for struct sockaddr_in6... yes 358s checking for struct addrinfo... (cached) yes 358s checking for getnameinfo... yes 358s checking for netinet/icmp6.h... yes 358s checking for netinet/ip6.h... yes 358s checking for struct icmp6_filter... yes 358s checking for struct icmp6_hdr... yes 358s checking for IPV6_HOPLIMIT... yes 358s checking for IPV6_2292HOPLIMIT... yes 358s checking for IPV6_RECVHOPLIMIT... yes 358s checking for ICMP6_DST_UNREACH_BEYONDSCOPE... yes 358s checking for locale.h... yes 358s checking for setlocale... yes 358s checking for arpa/nameser.h... yes 358s checking for arpa/tftp.h... yes 358s checking for fcntl.h... yes 358s checking for features.h... (cached) yes 358s checking for glob.h... (cached) yes 358s checking for memory.h... yes 358s checking for netinet/ether.h... yes 358s checking for netinet/in_systm.h... yes 358s checking for netinet/ip.h... yes 358s checking for netinet/ip_icmp.h... yes 358s checking for netinet/ip_var.h... no 358s checking for security/pam_appl.h... no 358s checking for shadow.h... yes 359s checking for stropts.h... no 359s checking for sys/tty.h... no 359s checking for sys/utsname.h... yes 359s checking for sys/ptyvar.h... no 359s checking for sys/msgbuf.h... no 359s checking for sys/filio.h... (cached) no 359s checking for sys/ioctl_compat.h... no 359s checking for sys/cdefs.h... (cached) yes 359s checking for sys/stream.h... no 359s checking for sys/mkdev.h... no 359s checking for sys/sockio.h... no 359s checking for sys/sysmacros.h... yes 359s checking for sys/param.h... (cached) yes 359s checking for sys/file.h... yes 359s checking for sys/proc.h... no 359s checking for sys/select.h... (cached) yes 359s checking for sys/wait.h... yes 359s checking for sys/resource.h... yes 359s checking for stropts.h... (cached) no 359s checking for tcpd.h... no 359s checking for utmp.h... (cached) yes 359s checking for utmpx.h... (cached) yes 359s checking for unistd.h... (cached) yes 359s checking for vis.h... no 359s checking for struct if_nameindex... yes 359s checking for sigset_t... (cached) yes 359s checking for sig_atomic_t... yes 359s checking for struct sockaddr_in.sin_len... no 359s checking for struct sockaddr_in6.sin6_len... no 359s checking for struct sockaddr_storage.ss_len... no 359s checking for struct passwd.pw_expire... no 359s checking for struct passwd.pw_change... no 359s checking for struct lastlog... yes 359s checking for struct utmp.ut_type... (cached) yes 359s checking for struct utmp.ut_pid... (cached) yes 359s checking for struct utmp.ut_line... yes 359s checking for struct utmp.ut_id... (cached) yes 359s checking for struct utmp.ut_user... (cached) yes 359s checking for struct utmp.ut_host... (cached) yes 359s checking for struct utmp.ut_exit... (cached) yes 359s checking for struct utmp.ut_session... (cached) yes 359s checking for struct utmp.ut_tv... (cached) yes 359s checking for struct utmp.ut_time... yes 359s checking for struct utmp.ut_addr_v6... yes 359s checking for struct utmp.ut_name... (cached) yes 359s checking for struct lastlogx... no 359s checking for struct lastlogx.ll_ss... no 359s checking for struct utmpx.ut_user... (cached) yes 359s checking for struct utmpx.ut_name... (cached) yes 359s checking for struct utmpx.ut_id... (cached) yes 359s checking for struct utmpx.ut_line... yes 359s checking for struct utmpx.ut_pid... (cached) yes 359s checking for struct utmpx.ut_type... (cached) yes 359s checking for struct utmpx.ut_exit... (cached) yes 359s checking for struct utmpx.ut_tv... yes 359s checking for struct utmpx.ut_session... (cached) yes 359s checking for struct utmpx.ut_syslen... no 359s checking for struct utmpx.ut_host... (cached) yes 359s checking for struct utmpx.ut_ss... no 359s checking for struct utmpx.ut_addr_v6... yes 359s checking for struct ifreq.ifr_index... no 359s checking for struct ifreq.ifr_netmask... yes 359s checking for struct ifreq.ifr_broadaddr... yes 359s checking for struct ifreq.ifr_mtu... yes 359s checking for struct ifreq.ifr_map... yes 359s checking for struct sockaddr.sa_len... (cached) no 359s checking for struct hostent.h_addr_list... yes 359s checking for struct stat.st_atim.tv_nsec... (cached) yes 359s checking for struct stat.st_atim.tv_usec... no 359s checking for struct stat.st_blksize... yes 359s checking for struct stat.st_ctim.tv_nsec... yes 359s checking for struct stat.st_ctim.tv_usec... no 359s checking for struct stat.st_mtim.tv_nsec... yes 359s checking for struct stat.st_mtim.tv_usec... no 359s checking for struct tftphdr.th_u... no 359s checking for working fork... yes 359s checking for working vfork... (cached) yes 359s checking for working mmap... yes 360s checking for cfsetspeed... yes 360s checking for cgetent... no 360s checking for dirfd... (cached) yes 360s checking for flock... yes 360s checking for fork... (cached) yes 360s checking for fpathconf... yes 360s checking for ftruncate... yes 360s checking for getcwd... yes 360s checking for getmsg... no 360s checking for getpwuid_r... yes 360s checking for getspnam... yes 360s checking for getutxent... yes 360s checking for getutxuser... no 360s checking for initgroups... yes 360s checking for initsetproctitle... no 360s checking for killpg... yes 360s checking for ptsname... yes 360s checking for pututline... yes 360s checking for pututxline... yes 360s checking for setegid... yes 360s checking for seteuid... yes 360s checking for setpgid... yes 360s checking for setlogin... no 360s checking for setsid... yes 360s checking for setregid... yes 360s checking for setreuid... yes 360s checking for setresgid... yes 360s checking for setresuid... yes 360s checking for setutent_r... no 360s checking for sigaction... yes 360s checking for sigvec... no 360s checking for strchr... yes 360s checking for setproctitle... no 360s checking for tcgetattr... yes 360s checking for tzset... yes 360s checking for utimes... yes 360s checking for utime... yes 360s checking for uname... yes 360s checking for updwtmp... yes 360s checking for updwtmpx... yes 360s checking for vhangup... yes 360s checking for wait3... yes 361s checking for wait4... yes 361s checking for __opendir2... no 361s checking for __rcmd_errstr... yes 361s checking for __check_rhosts_file... yes 361s checking for login... yes 361s checking for loginx... no 361s checking for logout... yes 361s checking for logoutx... no 361s checking for logwtmp... yes 361s checking for logwtmpx... no 361s checking for crypt... yes 361s checking for _obstack_free... yes 361s checking for setpgid... (cached) yes 361s checking for hstrerror... yes 361s checking whether hstrerror is declared... yes 361s checking whether telcmds is declared... yes 361s checking whether telopts is declared... no 361s checking for Schedule... no 361s checking for Session_Key... no 361s checking whether enctype_names is const char... no 361s checking whether crypt is declared... yes 361s checking for syslog internal macros... yes 361s checking for CODE... yes 361s checking whether prioritynames is declared... yes 361s checking whether fclose is declared... yes 361s checking whether pclose is declared... yes 361s checking whether getcwd is declared... (cached) yes 361s checking whether getlogin is declared... (cached) yes 361s checking whether getpass is declared... yes 361s checking whether getusershell is declared... (cached) yes 361s checking whether ttyname is declared... yes 361s checking whether getgrnam is declared... yes 361s checking whether initgroups is declared... yes 361s checking whether htons is declared... yes 361s checking for h_errno... yes 361s checking whether h_errno is declared... yes 361s checking for SEEK_ macros... yes 361s checking for _FILENO macros... yes 361s checking for fd_set macros... yes 361s checking for paths.h... yes 361s checking for value of PATH_BSHELL... from _PATH_BSHELL in 361s checking for value of PATH_CONSOLE... from _PATH_CONSOLE in 361s checking for value of PATH_CP... /usr/bin/cp 361s checking for value of PATH_DEFPATH... from _PATH_DEFPATH in 361s checking for value of PATH_DEV... from _PATH_DEV in 361s checking for value of PATH_TTY_PFX... from _PATH_DEV in 361s checking for value of PATH_DEVNULL... from _PATH_DEVNULL in 361s checking for value of PATH_FTPLOGINMESG... (default) /etc/motd 361s checking for value of PATH_FTPUSERS... (default) $(sysconfdir)/ftpusers 361s checking for value of PATH_FTPCHROOT... (default) $(sysconfdir)/ftpchroot 361s checking for value of PATH_FTPWELCOME... (default) $(sysconfdir)/ftpwelcome 361s checking for value of PATH_FTPDPID... (default) $(runstatedir)/ftpd.pid 361s checking for value of PATH_INETDCONF... (default) $(sysconfdir)/inetd.conf 361s checking for value of PATH_INETDDIR... (default) $(sysconfdir)/inetd.d 361s checking for value of PATH_INETDPID... (default) $(runstatedir)/inetd.pid 361s checking for value of PATH_UTMP... from _PATH_UTMP in 361s checking for value of PATH_UTMPX... from _PATH_UTMPX in 362s checking for value of PATH_WTMP... from _PATH_WTMP in 362s checking for value of PATH_WTMPX... from _PATH_WTMPX in 362s checking for value of PATH_LASTLOG... from _PATH_LASTLOG in 362s checking for value of PATH_LOG... from _PATH_LOG in 362s checking for value of PATH_KLOG... from _PATH_KLOG in 362s checking for value of PATH_LOGCONF... (default) $(sysconfdir)/syslog.conf 362s checking for value of PATH_LOGCONFD... (default) $(sysconfdir)/syslog.d 362s checking for value of PATH_LOGIN... /usr/bin/login 362s checking for value of PATH_LOGPID... (default) $(runstatedir)/syslog.pid 362s checking for value of PATH_NOLOGIN... from _PATH_NOLOGIN in 362s checking for value of PATH_RLOGIN... (default) $(bindir)/rlogin 362s checking for value of PATH_RSH... (default) $(bindir)/rsh 362s checking for value of PATH_TMP... from _PATH_TMP in 362s checking for value of PATH_TTY... from _PATH_TTY in 362s checking for value of PATH_UUCICO... (default) $(libexecdir)/uucp/uucico 362s checking for value of PATH_HEQUIV... from _PATH_HEQUIV in 362s checking for value of PATH_PROCNET_DEV... /proc/net/dev 362s checking that generated files are newer than configure... done 362s configure: creating ./config.status 362s /bin/bash ./config.status 362s config.status: creating Makefile 362s config.status: creating summary.sh 362s config.status: creating lib/Makefile 362s config.status: creating libinetutils/Makefile 362s config.status: creating libtelnet/Makefile 362s config.status: creating libicmp/Makefile 362s config.status: creating libls/Makefile 362s config.status: creating src/Makefile 362s config.status: creating telnet/Makefile 362s config.status: creating telnetd/Makefile 362s config.status: creating ftp/Makefile 362s config.status: creating ftpd/Makefile 362s config.status: creating talk/Makefile 362s config.status: creating talkd/Makefile 362s config.status: creating whois/Makefile 362s config.status: creating ping/Makefile 362s config.status: creating ifconfig/Makefile 362s config.status: creating ifconfig/system/Makefile 363s config.status: creating tests/Makefile 363s config.status: creating confpaths.h 363s config.status: creating config.h 363s config.status: config.h is unchanged 363s config.status: executing depfiles commands 363s config.status: executing summary commands 363s Summary of build decisions: 363s 363s Clients: 363s 363s dnsdomainname no 363s ftp yes 363s hostname no 363s ifconfig no 363s logger no 363s ping no 363s ping6 no 363s rcp no 363s rexec no 363s rlogin no 363s rsh no 363s talk no 363s telnet no 363s tftp no 363s traceroute yes 363s whois no 363s 363s Servers: 363s 363s ftpd yes 363s inetd no 363s rexecd no 363s rlogind no 363s rshd no 363s syslogd no 363s talkd no 363s telnetd no 363s tftpd no 363s uucpd no 363s 363s Support: 363s 363s libls no 363s make[1]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src' 363s make[1]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src' 363s make[1]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src' 363s GEN alloca.h 363s GEN arpa/inet.h 363s GEN ctype.h 363s GEN dirent.h 363s GEN error.h 363s GEN fcntl.h 363s GEN getopt.h 363s GEN getopt-cdefs.h 363s GEN malloc/dynarray.gl.h 363s GEN malloc/dynarray-skeleton.gl.h 363s GEN malloc/scratch_buffer.gl.h 363s GEN glob-libc.gl.h 363s GEN inttypes.h 363s GEN langinfo.h 363s GEN limits.h 363s GEN locale.h 363s GEN netdb.h 363s GEN obstack.h 363s GEN poll.h 363s GEN pty.h 363s GEN signal.h 363s GEN stddef.h 363s GEN stdio.h 363s GEN stdlib.h 363s GEN string.h 363s GEN strings.h 363s GEN sys/ioctl.h 363s GEN sys/random.h 363s GEN sys/select.h 363s GEN sys/socket.h 363s GEN sys/stat.h 363s GEN sys/time.h 363s GEN sys/types.h 363s GEN sys/uio.h 363s GEN termios.h 363s GEN time.h 363s GEN uchar.h 363s GEN unicase.h 363s GEN unictype.h 363s GEN uninorm.h 363s GEN unistd.h 363s GEN unistr.h 363s GEN unitypes.h 363s GEN utmp.h 363s GEN wchar.h 363s GEN wctype.h 363s make all-recursive 363s make[1]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/lib' 363s make[2]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/lib' 363s CC libgnu_a-argp-ba.o 363s CC libgnu_a-argp-eexst.o 363s CC libgnu_a-argp-fmtstream.o 363s CC libgnu_a-argp-fs-xinl.o 363s CC libgnu_a-argp-help.o 364s CC libgnu_a-argp-parse.o 364s CC libgnu_a-argp-pin.o 364s CC libgnu_a-argp-pv.o 364s CC libgnu_a-argp-pvh.o 364s CC libgnu_a-argp-xinl.o 364s CC libgnu_a-argp-version-etc.o 364s CC libgnu_a-openat-proc.o 364s CC libgnu_a-basename-lgpl.o 364s CC libgnu_a-bitrotate.o 364s CC libgnu_a-btoc32.o 364s CC libgnu_a-btowc.o 364s CC libgnu_a-c32_apply_type_test.o 364s CC libgnu_a-c32_get_type_test.o 364s CC libgnu_a-c32isalnum.o 365s CC libgnu_a-c32isalpha.o 365s CC libgnu_a-c32isblank.o 365s CC libgnu_a-c32iscntrl.o 365s CC libgnu_a-c32isdigit.o 365s CC libgnu_a-c32isgraph.o 365s CC libgnu_a-c32islower.o 365s CC libgnu_a-c32isprint.o 365s CC libgnu_a-c32ispunct.o 365s CC libgnu_a-c32isspace.o 365s CC libgnu_a-c32isupper.o 365s CC libgnu_a-c32isxdigit.o 365s CC libgnu_a-c32tolower.o 365s CC libgnu_a-chdir-long.o 365s CC libgnu_a-cloexec.o 365s CC libgnu_a-cycle-check.o 365s CC libgnu_a-dirname-lgpl.o 365s CC libgnu_a-stripslash.o 365s CC libgnu_a-exitfail.o 365s CC libgnu_a-fcntl.o 365s CC libgnu_a-creat-safer.o 365s CC libgnu_a-open-safer.o 365s CC libgnu_a-fd-hook.o 365s CC libgnu_a-fd-safer-flag.o 365s CC libgnu_a-dup-safer-flag.o 365s CC libgnu_a-filemode.o 365s CC libgnu_a-filenamecat-lgpl.o 365s CC libgnu_a-fopen-safer.o 365s CC libgnu_a-fseek.o 365s CC libgnu_a-fseeko.o 365s CC libgnu_a-fts.o 366s CC libgnu_a-getopt.o 366s CC libgnu_a-getopt1.o 366s CC libgnu_a-getprogname.o 366s CC libgnu_a-getugroups.o 366s CC malloc/libgnu_a-dynarray_at_failure.o 366s CC malloc/libgnu_a-dynarray_emplace_enlarge.o 366s CC malloc/libgnu_a-dynarray_finalize.o 366s CC malloc/libgnu_a-dynarray_resize.o 366s CC malloc/libgnu_a-dynarray_resize_clear.o 366s CC malloc/libgnu_a-scratch_buffer_grow.o 366s CC malloc/libgnu_a-scratch_buffer_grow_preserve.o 366s CC malloc/libgnu_a-scratch_buffer_set_array_size.o 366s CC libgnu_a-hard-locale.o 366s CC libgnu_a-hash.o 366s CC libgnu_a-i-ring.o 366s CC libgnu_a-ialloc.o 366s CC libgnu_a-imaxtostr.o 367s CC libgnu_a-inttostr.o 367s CC libgnu_a-offtostr.o 367s CC libgnu_a-uinttostr.o 367s CC libgnu_a-umaxtostr.o 367s CC libgnu_a-ioctl.o 367s CC libgnu_a-localcharset.o 367s CC glthread/libgnu_a-lock.o 367s CC libgnu_a-malloca.o 367s CC libgnu_a-mbrtoc32.o 367s CC libgnu_a-mbrtowc.o 367s CC libgnu_a-mbsrtoc32s.o 367s CC libgnu_a-mbsrtowcs.o 367s CC libgnu_a-mbszero.o 367s CC libgnu_a-memset_explicit.o 367s CC libgnu_a-mgetgroups.o 367s CC libgnu_a-obstack.o 367s CC libgnu_a-openat-die.o 367s CC libgnu_a-openat-safer.o 367s CC libgnu_a-opendirat.o 367s CC libgnu_a-progname.o 367s CC libgnu_a-read-file.o 367s CC libgnu_a-readline.o 367s CC libgnu_a-readutmp.o 367s CC libgnu_a-same-inode.o 367s CC libgnu_a-save-cwd.o 367s CC libgnu_a-setlocale_null.o 367s CC libgnu_a-sockets.o 367s CC libgnu_a-stat-time.o 368s CC libgnu_a-strnlen1.o 368s CC libgnu_a-sys_socket.o 368s CC libgnu_a-tempname.o 368s CC glthread/libgnu_a-threadlib.o 368s CC unicase/libgnu_a-tolower.o 368s CC unictype/libgnu_a-ctype_alnum.o 368s CC unictype/libgnu_a-ctype_alpha.o 368s CC unictype/libgnu_a-ctype_blank.o 368s CC unictype/libgnu_a-ctype_cntrl.o 368s CC unictype/libgnu_a-ctype_digit.o 368s CC unictype/libgnu_a-ctype_graph.o 368s CC unictype/libgnu_a-ctype_lower.o 368s CC unictype/libgnu_a-ctype_print.o 368s CC unictype/libgnu_a-ctype_punct.o 368s CC unictype/libgnu_a-ctype_space.o 368s CC unictype/libgnu_a-ctype_upper.o 368s CC unictype/libgnu_a-ctype_xdigit.o 368s CC libgnu_a-unistd.o 368s CC libgnu_a-dup-safer.o 368s CC libgnu_a-fd-safer.o 368s CC libgnu_a-pipe-safer.o 368s CC unistr/libgnu_a-u32-chr.o 368s CC unistr/libgnu_a-u32-cpy.o 368s CC unistr/libgnu_a-u32-pcpy.o 368s CC unistr/libgnu_a-u32-strcat.o 368s CC unistr/libgnu_a-u32-strlen.o 368s CC libgnu_a-version-etc.o 368s CC libgnu_a-version-etc-fsf.o 368s CC libgnu_a-wctype-h.o 368s CC libgnu_a-xmalloc.o 368s CC libgnu_a-xalloc-die.o 368s CC libgnu_a-xgetcwd.o 368s CC libgnu_a-xgetdomainname.o 368s CC libgnu_a-xgethostname.o 368s CC libgnu_a-xsize.o 369s CC libgnu_a-xvasprintf.o 369s CC libgnu_a-xasprintf.o 369s CC asnprintf.o 369s CC fopen.o 369s CC mbsrtoc32s-state.o 369s CC mbsrtowcs-state.o 369s CC printf-args.o 369s CC printf-parse.o 369s CC vasnprintf.o 369s AR libgnu.a 369s make[2]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/lib' 369s make[1]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/lib' 369s make: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/lib' 369s make: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/libinetutils' 369s CC argcv.o 370s CC cleansess.o 370s cleansess.c: In function ‘cleanup_session’: 370s cleansess.c:65:3: warning: ignoring return value of ‘chown’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 370s 65 | chown (tty, 0, 0); 370s | ^~~~~~~~~~~~~~~~~ 370s cleansess.c:67:3: warning: ignoring return value of ‘fchown’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 370s 67 | fchown (pty_fd, 0, 0); 370s | ^~~~~~~~~~~~~~~~~~~~~ 370s CC daemon.o 370s CC defauthors.o 370s CC if_index.o 370s CC kcmd.o 370s CC kerberos5.o 370s CC krcmd.o 370s CC localhost.o 370s CC logwtmpko.o 370s In file included from logwtmpko.c:26: 370s logwtmp.c: In function ‘_logwtmp’: 370s logwtmp.c:83:9: warning: ignoring return value of ‘ftruncate’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 370s 83 | ftruncate (fd, st.st_size); 370s | ^~~~~~~~~~~~~~~~~~~~~~~~~~ 370s CC setsig.o 370s CC shishi.o 370s CC tftpsubs.o 370s CC ttymsg.o 370s CC utmp_init.o 370s CC utmp_logout.o 370s AR libinetutils.a 370s make: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/libinetutils' 370s make: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 370s 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 370s make check-am 370s make[1]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 370s CC identify.o 370s CCLD identify 370s make localhost readutmp runtime-ipv6 test-snprintf waitdaemon \ 370s utmp.sh traceroute-localhost.sh ftp-parser.sh ftp-regressions.sh 370s make[2]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 370s CC localhost.o 370s CCLD localhost 370s CC readutmp.o 370s CCLD readutmp 370s CC runtime-ipv6.o 370s CCLD runtime-ipv6 370s CC test-snprintf.o 370s CCLD test-snprintf 370s CC waitdaemon.o 370s CCLD waitdaemon 370s make[2]: Nothing to be done for 'utmp.sh'. 370s make[2]: Nothing to be done for 'traceroute-localhost.sh'. 370s make[2]: Nothing to be done for 'ftp-parser.sh'. 370s make[2]: Nothing to be done for 'ftp-regressions.sh'. 370s make[2]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 370s make check-TESTS 370s make[2]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 370s make[3]: Entering directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 370s PASS: localhost 370s SKIP: test-snprintf 370s PASS: waitdaemon 370s PASS: utmp.sh 370s PASS: traceroute-localhost.sh 371s PASS: ftp-parser.sh 371s PASS: ftp-regressions.sh 371s ============================================================================ 371s Testsuite summary for GNU inetutils 2.5 371s ============================================================================ 371s # TOTAL: 7 371s # PASS: 6 371s # SKIP: 1 371s # XFAIL: 0 371s # FAIL: 0 371s # XPASS: 0 371s # ERROR: 0 371s ============================================================================ 371s make[3]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 371s make[2]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 371s make[1]: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 371s make: Leaving directory '/tmp/autopkgtest.4hJkOK/build.M0K/src/tests' 371s /tmp/autopkgtest.4hJkOK/wrapper.sh: checking for leaked background processes... 371s /tmp/autopkgtest.4hJkOK/wrapper.sh: waiting for tee/cat subprocesses... 371s /tmp/autopkgtest.4hJkOK/wrapper.sh: cleaning up... 371s /tmp/autopkgtest.4hJkOK/wrapper.sh: Exit status: 0 371s autopkgtest: DBG: testbed command exited with code 0 371s autopkgtest [08:19:11]: test test-root-commands: -----------------------] 371s autopkgtest: DBG: testbed executing test finished with exit status 0 371s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-root-commands-stdout /tmp/autopkgtest-work.yy331h41/out/test-root-commands-stdout 371s autopkgtest: DBG: got reply from testbed: ok 371s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-root-commands-stderr /tmp/autopkgtest-work.yy331h41/out/test-root-commands-stderr 371s autopkgtest: DBG: got reply from testbed: ok 372s test-root-commands PASS 372s autopkgtest [08:19:12]: test test-root-commands: - - - - - - - - - - results - - - - - - - - - - 372s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4hJkOK/test-root-commands-artifacts/ /tmp/autopkgtest-work.yy331h41/out/artifacts/ 372s autopkgtest: DBG: got reply from testbed: ok 372s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4hJkOK/test-root-commands-artifacts', '/tmp/autopkgtest.4hJkOK/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 372s autopkgtest: DBG: testbed command exited with code 0 372s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 372s autopkgtest [08:19:12]: @@@@@@@@@@@@@@@@@@@@ summary 372s test-commands FAIL non-zero exit status 1 372s test-root-commands PASS 372s autopkgtest: DBG: testbed stop 372s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.4hJkOK 372s autopkgtest: DBG: sending command to testbed: close 389s autopkgtest: DBG: got reply from testbed: ok 389s autopkgtest: DBG: sending command to testbed: quit 389s nova [W] Using flock in prodstack6-s390x 389s Creating nova instance adt-plucky-s390x-inetutils-20250219-074843-juju-7f2275-prod-proposed-migration-environment-15-25022f25-6afb-4a2f-b0fe-21aecb0bfcc2 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 389s nova [W] Timed out waiting for d70ca90e-39e5-457a-bf6b-61ba01087a04 to get deleted. 389s nova [W] Using flock in prodstack6-s390x 389s Creating nova instance adt-plucky-s390x-inetutils-20250219-074843-juju-7f2275-prod-proposed-migration-environment-15-25022f25-6afb-4a2f-b0fe-21aecb0bfcc2 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 389s nova [W] Timed out waiting for 734c9a29-6f66-4996-9519-c085d970d64b to get deleted.